@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 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
- specialists/ project specialist definitions (.specialist.yaml)
79
- .specialists/ runtime data (jobs/, ready/) — gitignored
80
- hooks/ bundled hook scripts
81
- skills/ repo-local skills used by specialists
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