@jaggerxtrm/specialists 3.3.0 → 3.3.1

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 (2) hide show
  1. package/dist/index.js +7 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -20562,10 +20562,9 @@ async function run14() {
20562
20562
  lines.push(` ${cmd2("specialists list")} ${flag("--category analysis")} # filter by category`);
20563
20563
  lines.push(` ${cmd2("specialists list")} ${flag("--json")} # machine-readable JSON`);
20564
20564
  lines.push("");
20565
- lines.push(` Scopes (searched in order):`);
20566
- lines.push(` ${blue2("project")} ./specialists/*.specialist.yaml`);
20567
- lines.push(` ${blue2("user")} ~/.specialists/*.specialist.yaml`);
20568
- lines.push(` ${blue2("system")} bundled specialists (shipped with the package)`);
20565
+ lines.push(` Scopes (searched in order, user wins on name collision):`);
20566
+ lines.push(` ${blue2("user")} .specialists/user/specialists/*.specialist.yaml`);
20567
+ lines.push(` ${blue2("default")} .specialists/default/specialists/*.specialist.yaml`);
20569
20568
  lines.push("");
20570
20569
  lines.push(section2("4. Running a Specialist"));
20571
20570
  lines.push("");
@@ -20576,6 +20575,10 @@ async function run14() {
20576
20575
  lines.push(` ${cmd2("specialists run code-review")} ${flag("--prompt")} ${dim9('"..."')} ${flag("--background")}`);
20577
20576
  lines.push(` ${dim9(" # → Job started: job_a1b2c3d4")}`);
20578
20577
  lines.push("");
20578
+ lines.push(` ${bold7("Follow")} (background + stream live output in one command):`);
20579
+ lines.push(` ${cmd2("specialists run code-review")} ${flag("--prompt")} ${dim9('"..."')} ${flag("--follow")}`);
20580
+ lines.push(` ${dim9(" # starts in background, streams output live, exits when complete")}`);
20581
+ lines.push("");
20579
20582
  lines.push(` Override model for one run:`);
20580
20583
  lines.push(` ${cmd2("specialists run code-review")} ${flag("--model")} ${dim9("anthropic/claude-opus-4-6")} ${flag("--prompt")} ${dim9('"..."')}`);
20581
20584
  lines.push("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaggerxtrm/specialists",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
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",