@oai404iao/pi-subagent 0.5.0 → 0.5.1
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 +2 -0
- package/package.json +3 -3
- package/src/coordinator.ts +1 -0
package/README.md
CHANGED
|
@@ -288,6 +288,8 @@ Frontmatter:
|
|
|
288
288
|
| `thinking` | no | `off`, `minimal`, `low`, `medium`, `high`, `xhigh`, or `max`. |
|
|
289
289
|
|
|
290
290
|
For continuable children, `report` is retained even when the agent has a tool allowlist.
|
|
291
|
+
One-shot children exclude `report` through Pi's native `excludeTools`, including
|
|
292
|
+
late registrations by inherited extensions, even when `tools` is omitted.
|
|
291
293
|
|
|
292
294
|
### Tool policy and inherited extensions
|
|
293
295
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oai404iao/pi-subagent",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Durable, continuable subagents for Pi with spawn/fork providers and lifecycle controls.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"typebox": "*"
|
|
39
39
|
},
|
|
40
40
|
"optionalDependencies": {
|
|
41
|
-
"@oai404iao/pi-codex-minimal-tools": "3.0.
|
|
41
|
+
"@oai404iao/pi-codex-minimal-tools": "3.0.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@earendil-works/pi-agent-core": "0.86.1",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"optional": true
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "c791e1192d0547834c3e2f2bae7853fb214f9808"
|
|
92
92
|
}
|
package/src/coordinator.ts
CHANGED