-
Notifications
You must be signed in to change notification settings - Fork 0
Install Into Project
Note
Goal: Install the crickets plugins into Claude Code and/or Antigravity as native host plugins.
Prereqs: claude (Claude Code) and/or agy (Antigravity) on your PATH; git. No clone needed for the one-liner or the Claude marketplace.
crickets ships as native host plugins generated from one source (Build system design); the old install.sh dispatcher is gone (Build system design). There are six:
| Plugin | Standalone? | What it adds |
|---|---|---|
developer-workflows |
yes (base) | the six phase commands (/setup /plan /work /review /release /bugfix) + the explorer/evaluator agents + the harness-context SessionStart hook (Claude-only). |
developer-safety |
enhances developer-workflows
|
the kill-switch / steer / commit-on-stop hooks + the commit-no-coauthor / worktrees-operator-initiated conventions. |
code-review |
enhances developer-workflows' review
|
the adversarial-reviewer + cross-model adversarial-reviewer-cross agents, the evidence-tracker hook, and the standalone /code-review command. |
github-ci |
requires developer-workflows
|
CI workflows + dependabot-fixer. |
pii |
standalone | the PII guardrail — scrubber skill + pre-push detector. |
wiki-maintenance |
requires developer-workflows
|
Diátaxis wiki authoring + maintenance. |
Three ways in; all land the same plugins.
Option 1 — the one-liner (recommended). Installs the default set on whichever host(s) are present:
curl -fsSL https://raw.githubusercontent.com/alexherrero/crickets/main/bootstrap.sh | bashIt detects claude / agy: on Claude Code it adds the crickets marketplace and installs by name; on Antigravity it installs each plugin by path (the asymmetry below).
Option 2 — by name (Claude) or by path (Antigravity).
Important
The name@crickets marketplace syntax is Claude-only. Antigravity's agy has no marketplace-registration command, so install each plugin by its dist/antigravity/plugins/<group> path instead.
Claude Code — add the marketplace once, then install each plugin you want by name, one command per plugin (the names below are examples — install only what you need):
claude plugin marketplace add alexherrero/crickets
claude plugin install developer-workflows@crickets
claude plugin install code-review@crickets
# repeat for any of: developer-safety, github-ci, pii, wiki-maintenanceAntigravity (agy 1.0.2 or later) — by path from a clone; install developer-workflows first (two plugins require it):
git clone https://github.com/alexherrero/crickets.git ~/Antigravity/crickets
for p in developer-workflows developer-safety code-review github-ci pii wiki-maintenance; do
agy plugin install ~/Antigravity/crickets/dist/antigravity/plugins/$p
doneOption 3 — one plugin, no marketplace. Good for trying a single plugin. On Claude Code, load it for one session:
claude --plugin-dir ~/Antigravity/crickets/dist/claude-code/plugins/piiOn Antigravity, the same agy plugin install <path>, pointed at any one dist/antigravity/plugins/<group> dir.
claude plugin list # the @crickets plugins, enabled (user scope)
agy plugin list # the imported pluginsSome plugins have limited compatibility on Antigravity — see Compatibility for the per-plugin details.
- Using code review — a hands-on first run of one plugin.
- Modify a crickets plugin — the source → generate → dogfood loop.
- Compatibility — the per-host component + hook matrix.
🔧 How-to
- Install plugins
- Using code review
- Provision a repo's wiki
- Declare a project's Architecture
- Maintain a wiki — wiki-watcher
- Review a change — code review
- In-flight decision review — /doubt
- Author a design (pending)
- Run a named plan
- Spawn a worker in a worktree
- Run isolated tasks
- Configure main branch protection
- Integrate a worker
- See every active plan
- Run a coordinator-directed worker team (pending)
- Install the vault backend (pending)
- Sync a project board