@bacnh85/pi-subagent 0.12.2 → 0.12.3
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/CHANGELOG.md +6 -0
- package/README.md +9 -7
- package/package.json +12 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# pi-subagent
|
|
1
|
+
# @bacnh85/pi-subagent
|
|
2
2
|
|
|
3
3
|
Isolated in-process subagents for Pi. The `subagent` tool supports single, parallel (8 tasks, 4 concurrent), and chained execution; `/agent` opens inspectable child threads.
|
|
4
4
|
|
|
@@ -6,8 +6,6 @@ Isolated in-process subagents for Pi. The `subagent` tool supports single, paral
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
pi install npm:@bacnh85/pi-subagent
|
|
9
|
-
# local checkout
|
|
10
|
-
pi install ./pi-subagent
|
|
11
9
|
```
|
|
12
10
|
|
|
13
11
|
Requires Node.js >= 20.18.
|
|
@@ -171,12 +169,16 @@ The raw `stopReason` from the Pi SDK is preserved in the result.
|
|
|
171
169
|
|
|
172
170
|
`pi-subagent` owns the `pi-subagent:run` event contract for one named-agent request. `pi-review` uses it for isolated review. Requests use an immediate boolean `accept()` claim and exactly one `respond()` callback; this suppresses duplicate responders while missing services and timeouts remain caller-controlled.
|
|
173
171
|
|
|
172
|
+
## Changelog
|
|
173
|
+
|
|
174
|
+
See [CHANGELOG.md](CHANGELOG.md) for release history.
|
|
175
|
+
|
|
174
176
|
## Compatibility
|
|
175
177
|
|
|
176
|
-
- Requires `@earendil-works/pi-coding-agent >=0.80.0 <0.
|
|
177
|
-
- Requires `@earendil-works/pi-ai >=0.80.0 <0.
|
|
178
|
-
- Requires `@earendil-works/pi-agent-core >=0.80.0 <0.
|
|
179
|
-
- Requires `@earendil-works/pi-tui >=0.80.0 <0.
|
|
178
|
+
- Requires `@earendil-works/pi-coding-agent >=0.80.0 <0.83.0`
|
|
179
|
+
- Requires `@earendil-works/pi-ai >=0.80.0 <0.83.0`
|
|
180
|
+
- Requires `@earendil-works/pi-agent-core >=0.80.0 <0.83.0`
|
|
181
|
+
- Requires `@earendil-works/pi-tui >=0.80.0 <0.83.0`
|
|
180
182
|
- Requires `typebox >=1.3.0 <2.0.0`
|
|
181
183
|
- Requires Node.js >= 20.18
|
|
182
184
|
|
package/package.json
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bacnh85/pi-subagent",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.3",
|
|
4
4
|
"description": "In-process subagents for Pi with isolated SDK sessions, parallel and chained delegation, and inspectable threads.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"publishConfig": {
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
8
10
|
"homepage": "https://github.com/bacnh85/pi-extensions/tree/main/pi-subagent",
|
|
9
11
|
"repository": {
|
|
10
12
|
"type": "git",
|
|
11
13
|
"url": "git+https://github.com/bacnh85/pi-extensions.git",
|
|
12
14
|
"directory": "pi-subagent"
|
|
13
15
|
},
|
|
14
|
-
"bugs": {
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/bacnh85/pi-extensions/issues"
|
|
18
|
+
},
|
|
15
19
|
"keywords": [
|
|
16
20
|
"pi-package",
|
|
17
21
|
"pi-extension",
|
|
@@ -38,7 +42,11 @@
|
|
|
38
42
|
"extensions/security.ts",
|
|
39
43
|
"extensions/package.json"
|
|
40
44
|
],
|
|
41
|
-
"pi": {
|
|
45
|
+
"pi": {
|
|
46
|
+
"extensions": [
|
|
47
|
+
"./extensions/index.ts"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
42
50
|
"engines": {
|
|
43
51
|
"node": ">=20.18"
|
|
44
52
|
},
|