@jaggerxtrm/specialists 3.2.1 → 3.3.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/README.md +24 -4
- package/dist/index.js +1604 -852
- package/package.json +2 -1
- package/hooks/specialists-complete.mjs +0 -60
- package/hooks/specialists-session-start.mjs +0 -105
- package/specialists/auto-remediation.specialist.yaml +0 -70
- package/specialists/bug-hunt.specialist.yaml +0 -94
- package/specialists/codebase-explorer.specialist.yaml +0 -79
- package/specialists/feature-design.specialist.yaml +0 -88
- package/specialists/init-session.specialist.yaml +0 -60
- package/specialists/overthinker.specialist.yaml +0 -63
- package/specialists/parallel-review.specialist.yaml +0 -61
- package/specialists/planner.specialist.yaml +0 -87
- package/specialists/report-generator.specialist.yaml +0 -59
- package/specialists/specialist-author.specialist.yaml +0 -56
- package/specialists/sync-docs.specialist.yaml +0 -53
- package/specialists/test-runner.specialist.yaml +0 -58
- package/specialists/xt-merge.specialist.yaml +0 -78
package/README.md
CHANGED
|
@@ -24,6 +24,13 @@ specialists init
|
|
|
24
24
|
specialists list
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
`sp` is a shorter alias for `specialists` — both commands are identical:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
sp list
|
|
31
|
+
sp run bug-hunt --bead <id> --background
|
|
32
|
+
```
|
|
33
|
+
|
|
27
34
|
Tracked work:
|
|
28
35
|
|
|
29
36
|
```bash
|
|
@@ -71,14 +78,27 @@ specialists doctor
|
|
|
71
78
|
| Skills shipped in this repo | [docs/skills.md](docs/skills.md) |
|
|
72
79
|
| xtrm / worktree integration | [docs/worktree.md](docs/worktree.md) |
|
|
73
80
|
| RPC mode notes | [docs/pi-rpc.md](docs/pi-rpc.md) |
|
|
81
|
+
| Pi subprocess isolation and extensions | [docs/pi-session.md](docs/pi-session.md) |
|
|
74
82
|
|
|
75
83
|
## Project structure
|
|
76
84
|
|
|
77
85
|
```text
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
hooks/
|
|
81
|
-
skills/
|
|
86
|
+
config/
|
|
87
|
+
├── specialists/ canonical specialist definitions (.specialist.yaml)
|
|
88
|
+
├── hooks/ bundled hook scripts
|
|
89
|
+
├── skills/ repo-local skills used by specialists
|
|
90
|
+
└── extensions/ pi extensions (future)
|
|
91
|
+
.specialists/
|
|
92
|
+
├── default/ canonical assets (from init)
|
|
93
|
+
│ ├── specialists/
|
|
94
|
+
│ ├── hooks/
|
|
95
|
+
│ └── skills/
|
|
96
|
+
├── user/ custom additions
|
|
97
|
+
│ ├── specialists/
|
|
98
|
+
│ ├── hooks/
|
|
99
|
+
│ └── skills/
|
|
100
|
+
├── jobs/ runtime — gitignored
|
|
101
|
+
└── ready/ runtime — gitignored
|
|
82
102
|
src/ CLI, server, loader, runner, tools
|
|
83
103
|
```
|
|
84
104
|
|