@jaggerxtrm/specialists 2.1.8 → 2.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +8 -1
  2. package/dist/index.js +16474 -16414
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -92,7 +92,14 @@ npm install -g @jaggerxtrm/specialists
92
92
  specialists install
93
93
  ```
94
94
 
95
- Installs: **pi** (`@mariozechner/pi-coding-agent`), **beads** (`@beads/bd`), **dolt** (interactive sudo on Linux / brew on macOS), registers the `specialists` MCP at user scope, scaffolds `~/.agents/specialists/`, and installs the `main-guard` PreToolUse hook (`~/.claude/hooks/main-guard.mjs`) to protect `main`/`master` branches from direct edits.
95
+ Installs: **pi** (`@mariozechner/pi-coding-agent`), **beads** (`@beads/bd`), **dolt** (interactive sudo on Linux / brew on macOS), registers the `specialists` MCP at user scope, scaffolds `~/.agents/specialists/`, copies built-in specialists, and installs four Claude Code hooks into `~/.claude/hooks/`:
96
+
97
+ | Hook | Event | Enforces |
98
+ |------|-------|---------|
99
+ | `specialists-main-guard.mjs` | `PreToolUse` | No direct edits/commits on `main`/`master` — use a feature branch |
100
+ | `beads-edit-gate.mjs` | `PreToolUse` | No file edits without an `in_progress` beads issue (beads projects only) |
101
+ | `beads-commit-gate.mjs` | `PreToolUse` | No `git commit` while issues are still `in_progress` — close them first |
102
+ | `beads-stop-gate.mjs` | `Stop` | Agent cannot declare done while `in_progress` issues remain |
96
103
 
97
104
  After running, **restart Claude Code** to load the MCP. Re-run `specialists install` at any time to update or repair the installation.
98
105