@jaggerxtrm/specialists 3.12.0 → 3.13.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.
- package/config/hooks/specialists-session-start.mjs +1 -1
- package/config/mandatory-rules/bead-id-verbatim.md +14 -0
- package/config/mandatory-rules/per-turn-handoff-schema.md +16 -0
- package/config/skills/specialists-creator/SKILL.md +16 -0
- package/config/skills/update-specialists/SKILL.md +183 -350
- package/config/skills/using-kpi/SKILL.md +86 -0
- package/config/skills/using-specialists-v2/SKILL.md +1 -1
- package/config/skills/using-specialists-v3/SKILL.md +390 -112
- package/config/specialists/changelog-keeper.specialist.json +2 -1
- package/config/specialists/code-sanity.specialist.json +3 -1
- package/config/specialists/debugger.specialist.json +3 -1
- package/config/specialists/executor.specialist.json +3 -1
- package/config/specialists/explorer.specialist.json +2 -1
- package/config/specialists/overthinker.specialist.json +2 -1
- package/config/specialists/planner.specialist.json +3 -1
- package/config/specialists/researcher.specialist.json +2 -1
- package/config/specialists/reviewer.specialist.json +3 -1
- package/config/specialists/security-auditor.specialist.json +53 -10
- package/config/specialists/specialists-creator.specialist.json +2 -2
- package/config/specialists/sync-docs.specialist.json +3 -1
- package/config/specialists/test-runner.specialist.json +2 -1
- package/dist/index.js +247 -355
- package/dist/lib.js +38 -19
- package/dist/types/cli/help.d.ts.map +1 -1
- package/dist/types/cli/run.d.ts.map +1 -1
- package/dist/types/cli/version-check.d.ts +3 -0
- package/dist/types/cli/version-check.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/specialist/mandatory-rules.d.ts +5 -0
- package/dist/types/specialist/mandatory-rules.d.ts.map +1 -1
- package/package.json +4 -4
- 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`
|
|
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
|