@jaggerxtrm/specialists 2.1.13 → 2.1.14

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 CHANGED
@@ -195,13 +195,18 @@ Pre-script output is formatted as `<pre_flight_context>` XML and available in `t
195
195
 
196
196
  ## CLI
197
197
 
198
- Once installed globally, the `specialists` command provides:
198
+ Once installed globally, `specialists <command>` provides:
199
199
 
200
200
  | Command | Description |
201
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 |
202
+ | `specialists install` | Full-stack installer: pi, beads, dolt, MCP registration, hooks |
203
+ | `specialists init` | Scaffold `./specialists/` and inject usage block into `AGENTS.md` |
204
+ | `specialists list` | List discovered specialists with model, description, and scope |
205
+ | `specialists edit <name> --<field> <value>` | Edit a specialist field in-place |
206
+ | `specialists run <name>` | Run a specialist and stream output to stdout |
207
+ | `specialists status` | Show system health: specialists, pi, beads, MCP |
208
+ | `specialists version` | Print installed package version |
209
+ | `specialists help` | Show command reference |
205
210
  | `specialists` | Start the MCP server (called by Claude Code — not for direct use) |
206
211
 
207
212
  ### specialists list
@@ -218,6 +223,59 @@ Specialists (9)
218
223
 
219
224
  Scopes: `[project]` = `./specialists/` (or `.claude/specialists/`), `[user]` = `~/.agents/specialists/`
220
225
 
226
+ Filter by scope or category: `specialists list --scope user --category analysis`
227
+
228
+ ### specialists edit
229
+
230
+ Edit individual fields without opening the file:
231
+
232
+ ```bash
233
+ specialists edit init-session --model anthropic/claude-sonnet-4-6
234
+ specialists edit bug-hunt --permission MEDIUM
235
+ specialists edit overthinker --timeout 300000
236
+ specialists edit codebase-explorer --tags "analysis,architecture"
237
+ specialists edit my-spec --description "New description" --dry-run
238
+ ```
239
+
240
+ Editable fields: `model`, `fallback-model`, `description`, `permission`, `timeout`, `tags`
241
+
242
+ ### specialists run
243
+
244
+ Run a specialist directly from the terminal — no MCP required:
245
+
246
+ ```bash
247
+ # Inline prompt
248
+ specialists run init-session --prompt "What changed recently?"
249
+
250
+ # Pipe from stdin
251
+ echo "Analyse the architecture" | specialists run codebase-explorer
252
+
253
+ # Override model, skip beads
254
+ specialists run overthinker --prompt "Refactor strategy?" --model anthropic/claude-sonnet-4-6 --no-beads
255
+ ```
256
+
257
+ Output streams to stdout in real time. Model, duration, and bead ID appear on stderr.
258
+
259
+ ### specialists status
260
+
261
+ ```
262
+ specialists status
263
+
264
+ ── Specialists ───────────────────────────
265
+ ✓ 9 found (9 project)
266
+
267
+ ── pi (coding agent runtime) ────────────
268
+ ✓ v0.57.1 — 4 providers active (anthropic, google-gemini-cli, qwen, zai)
269
+
270
+ ── beads (issue tracker) ────────────────
271
+ ✓ bd installed v0.59.0
272
+ ✓ .beads/ present in project
273
+
274
+ ── MCP ───────────────────────────────────
275
+ ✓ specialists binary installed /usr/local/bin/specialists
276
+ verify registration: claude mcp get specialists
277
+ ```
278
+
221
279
  ---
222
280
 
223
281
  ## Development
package/bin/install.js CHANGED
@@ -303,14 +303,14 @@ process.exit(0);
303
303
 
304
304
  const BEADS_EDIT_GATE_ENTRY = {
305
305
  matcher: 'Edit|Write|MultiEdit|NotebookEdit|mcp__serena__replace_symbol_body|mcp__serena__insert_after_symbol|mcp__serena__insert_before_symbol',
306
- hooks: [{ type: 'command', command: BEADS_EDIT_GATE_FILE, timeout: 10 }],
306
+ hooks: [{ type: 'command', command: BEADS_EDIT_GATE_FILE, timeout: 10000 }],
307
307
  };
308
308
  const BEADS_COMMIT_GATE_ENTRY = {
309
309
  matcher: 'Bash',
310
- hooks: [{ type: 'command', command: BEADS_COMMIT_GATE_FILE, timeout: 10 }],
310
+ hooks: [{ type: 'command', command: BEADS_COMMIT_GATE_FILE, timeout: 10000 }],
311
311
  };
312
312
  const BEADS_STOP_GATE_ENTRY = {
313
- hooks: [{ type: 'command', command: BEADS_STOP_GATE_FILE, timeout: 10 }],
313
+ hooks: [{ type: 'command', command: BEADS_STOP_GATE_FILE, timeout: 10000 }],
314
314
  };
315
315
 
316
316
  function installHook() {
package/dist/index.js CHANGED
@@ -18149,7 +18149,7 @@ import { execFileSync } from "node:child_process";
18149
18149
  import { fileURLToPath } from "node:url";
18150
18150
  import { dirname as dirname2, join as join4 } from "node:path";
18151
18151
  async function run() {
18152
- const installerPath = join4(dirname2(fileURLToPath(import.meta.url)), "..", "..", "bin", "install.js");
18152
+ const installerPath = join4(dirname2(fileURLToPath(import.meta.url)), "..", "bin", "install.js");
18153
18153
  execFileSync(process.execPath, [installerPath], { stdio: "inherit" });
18154
18154
  }
18155
18155
  var init_install = () => {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaggerxtrm/specialists",
3
- "version": "2.1.13",
3
+ "version": "2.1.14",
4
4
  "description": "OmniSpecialist — 7-tool MCP orchestration layer powered by the Specialist System. Discover and execute .specialist.yaml files across project/user/system scopes via pi.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",