@henryqw/pi-subagent 2.0.1 → 2.0.2
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 +10 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,17 +6,22 @@ Delegate one bounded task to one isolated Pi process. Main chooses the role and
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
pi install npm:@henryqw/pi-task-models
|
|
9
|
+
pi install npm:@henryqw/pi-multi-codex
|
|
9
10
|
pi install npm:@henryqw/pi-subagent
|
|
10
11
|
```
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
## With
|
|
14
|
+
|
|
15
|
+
| Package | Why |
|
|
16
|
+
| --- | --- |
|
|
17
|
+
| `@henryqw/pi-task-models` | Required. Shared `fast` / `balanced` / `frontier` routes. |
|
|
18
|
+
| `@henryqw/pi-multi-codex` | Required. Child uses Main's active Codex slot. |
|
|
13
19
|
|
|
14
20
|
## Use
|
|
15
21
|
|
|
16
|
-
| Surface | Purpose |
|
|
17
|
-
| --- | --- |
|
|
18
|
-
| `delegate_task` | Start one isolated child for `role`, `task`, and optional `modelClass`. |
|
|
19
|
-
| `/task-models` | Configure shared `fast`, `balanced`, and `frontier` profiles. |
|
|
22
|
+
| Surface | Type | Purpose |
|
|
23
|
+
| --- | --- | --- |
|
|
24
|
+
| `delegate_task` | tool | Start one isolated child for `role`, `task`, and optional `modelClass`. |
|
|
20
25
|
|
|
21
26
|
`modelClass` is `fast`, `balanced`, or `frontier`. Omitted class uses `balanced`. Primary route is resolved against current scoped text models; fallback is tried only before launch. If no route is usable, delegation rejects with `Run /task-models`. A started child is never retried.
|
|
22
27
|
|