@jaggerxtrm/specialists 2.1.8 → 2.1.10
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.
- package/README.md +35 -1
- package/dist/index.js +16568 -16406
- 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
|
|
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
|
|
|
@@ -186,6 +193,33 @@ Pre-script output is formatted as `<pre_flight_context>` XML and available in `t
|
|
|
186
193
|
|
|
187
194
|
---
|
|
188
195
|
|
|
196
|
+
## CLI
|
|
197
|
+
|
|
198
|
+
Once installed globally, the `specialists` command provides:
|
|
199
|
+
|
|
200
|
+
| Command | Description |
|
|
201
|
+
|---------|-------------|
|
|
202
|
+
| `specialists install` | Full-stack installer: pi, beads, dolt, MCP registration, hooks, scaffold |
|
|
203
|
+
| `specialists list` | List all discovered specialists with model, description, and scope |
|
|
204
|
+
| `specialists version` | Print the installed package version |
|
|
205
|
+
| `specialists` | Start the MCP server (called by Claude Code — not for direct use) |
|
|
206
|
+
|
|
207
|
+
### specialists list
|
|
208
|
+
|
|
209
|
+
```
|
|
210
|
+
Specialists (9)
|
|
211
|
+
|
|
212
|
+
auto-remediation google-gemini-cli/gemini-3-flash-preview Autonomous self-healing workflow... [project]
|
|
213
|
+
bug-hunt anthropic/claude-sonnet-4-6 Autonomously investigates bugs... [project]
|
|
214
|
+
codebase-explorer google-gemini-cli/gemini-3-flash-preview Explores codebase structure... [project]
|
|
215
|
+
init-session anthropic/claude-haiku-4-5 Gathers git/commit context... [project]
|
|
216
|
+
overthinker anthropic/claude-sonnet-4-6 Multi-phase deep reasoning... [project]
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
Scopes: `[project]` = `./specialists/` (or `.claude/specialists/`), `[user]` = `~/.agents/specialists/`
|
|
220
|
+
|
|
221
|
+
---
|
|
222
|
+
|
|
189
223
|
## Development
|
|
190
224
|
|
|
191
225
|
```bash
|