@jaggerxtrm/specialists 3.12.0 → 3.14.0

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 (42) hide show
  1. package/config/hooks/specialists-session-start.mjs +1 -1
  2. package/config/mandatory-rules/bead-id-verbatim.md +14 -0
  3. package/config/mandatory-rules/per-turn-handoff-schema.md +16 -0
  4. package/config/skills/specialists-creator/SKILL.md +16 -0
  5. package/config/skills/update-specialists/SKILL.md +183 -350
  6. package/config/skills/using-kpi/SKILL.md +86 -0
  7. package/config/skills/using-script-specialists/SKILL.md +7 -5
  8. package/config/skills/using-specialists-v2/SKILL.md +1 -1
  9. package/config/skills/using-specialists-v3/SKILL.md +530 -112
  10. package/config/specialists/changelog-keeper.specialist.json +2 -1
  11. package/config/specialists/code-sanity.specialist.json +3 -1
  12. package/config/specialists/debugger.specialist.json +3 -1
  13. package/config/specialists/executor.specialist.json +3 -1
  14. package/config/specialists/explorer.specialist.json +2 -1
  15. package/config/specialists/overthinker.specialist.json +2 -1
  16. package/config/specialists/planner.specialist.json +3 -1
  17. package/config/specialists/researcher.specialist.json +2 -1
  18. package/config/specialists/reviewer.specialist.json +3 -1
  19. package/config/specialists/security-auditor.specialist.json +53 -10
  20. package/config/specialists/specialists-creator.specialist.json +2 -2
  21. package/config/specialists/sync-docs.specialist.json +3 -1
  22. package/config/specialists/test-runner.specialist.json +2 -1
  23. package/dist/index.js +634 -498
  24. package/dist/lib.js +183 -62
  25. package/dist/types/cli/help.d.ts.map +1 -1
  26. package/dist/types/cli/run.d.ts.map +1 -1
  27. package/dist/types/cli/script.d.ts.map +1 -1
  28. package/dist/types/cli/serve.d.ts +11 -2
  29. package/dist/types/cli/serve.d.ts.map +1 -1
  30. package/dist/types/cli/version-check.d.ts +3 -0
  31. package/dist/types/cli/version-check.d.ts.map +1 -1
  32. package/dist/types/index.d.ts +1 -1
  33. package/dist/types/specialist/mandatory-rules.d.ts +5 -0
  34. package/dist/types/specialist/mandatory-rules.d.ts.map +1 -1
  35. package/dist/types/specialist/observability-sqlite.d.ts +1 -0
  36. package/dist/types/specialist/observability-sqlite.d.ts.map +1 -1
  37. package/dist/types/specialist/schema.d.ts +27 -0
  38. package/dist/types/specialist/schema.d.ts.map +1 -1
  39. package/dist/types/specialist/script-runner.d.ts +5 -1
  40. package/dist/types/specialist/script-runner.d.ts.map +1 -1
  41. package/package.json +4 -4
  42. package/config/specialists/.serena/project.yml +0 -151
@@ -124,7 +124,7 @@ lines.push('');
124
124
  lines.push('- `--bead` on edit-capable specialists auto-provisions worktree');
125
125
  lines.push('- Reviewer enters with `--job <exec-job>`; `--worktree`/`--job` exclusive');
126
126
  lines.push('- `sp epic merge <epic>` for epic chains; `sp merge <chain>` for standalone');
127
- lines.push('- `sp ps`/`sp feed`/`sp result` (sp poll deprecated)');
127
+ lines.push('- `sp ps`/`sp feed`/`sp result`');
128
128
  lines.push('- `--keep-alive` required so reviewer/overthinker can be `sp resume`d');
129
129
  lines.push('- `sp merge` fails after `sp stop` cleans status.json — see unitAI-ofjvj');
130
130
 
@@ -0,0 +1,14 @@
1
+ # bead-id-verbatim
2
+
3
+ ## Rule
4
+ Source bead-id arguments verbatim from injected context: `bead_id`, branch name, prior turn output, or `bd create` output. Do not retype bead ids from memory or regenerate them.
5
+
6
+ ## Command scope
7
+ Applies only to bd commands that take a bead id, especially `bd close`, `bd update`, `bd dep add`, `bd dep list`, and `bd show`.
8
+
9
+ ## Legit cases
10
+ - New bead creation: id may not exist yet; once `bd create` returns it, copy exact text forward.
11
+ - Narrative prose: may mention bead ids freely. Only command arguments must be verbatim.
12
+
13
+ ## Failure example
14
+ Today logs showed `unitAI-m8744.2` and `unitAI-m8744.3` retyped as `unitAI-m87442` and `unitAI-m87443`; `bd close` then failed with `issue id not found`.
@@ -0,0 +1,16 @@
1
+ ---
2
+ name: per-turn-handoff-schema
3
+ kind: mandatory-rule
4
+ ---
5
+ End every `run_complete` turn, resume turns included, with JSON last. Use `docs/specialists/handoff-schema.md` for required common fields and role-specific fields. Keep block small and valid. Minimal block:
6
+
7
+ ```json
8
+ {
9
+ "status": "success",
10
+ "summary": "Done.",
11
+ "files_changed": [],
12
+ "follow_ups": [],
13
+ "risks": [],
14
+ "verification": []
15
+ }
16
+ ```
@@ -13,6 +13,22 @@ synced_at: 236ca5e6
13
13
 
14
14
  > Source of truth: `src/specialist/schema.ts` | Runtime: `src/specialist/runner.ts`
15
15
 
16
+
17
+ ## Canonical References
18
+
19
+ When a custom specialist needs a standard rule or skill, reference the canonical asset by name instead of copying its file into the repo. Runtime/package fallback resolves canonical mandatory rules and skills when no project-local override exists.
20
+
21
+ Example:
22
+
23
+ ```json
24
+ {
25
+ "mandatory_rules": { "template_sets": ["serena-cheatsheet"] },
26
+ "skills": { "paths": ["releasing"] }
27
+ }
28
+ ```
29
+
30
+ Only create project-local copies when intentionally changing canonical behavior. After setting references, run `sp config show <name> --resolved` to verify the resolved runtime surface.
31
+
16
32
  ---
17
33
 
18
34
  ## ACTION REQUIRED BEFORE ANYTHING ELSE