pi-subagentura 1.0.2 → 1.0.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/README.md +6 -11
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# pi-subagentura
|
|
2
2
|
|
|
3
|
+
[](https://npmjs.com/package/pi-subagentura) [](https://github.com/lmn451/pi-subagentura)
|
|
4
|
+
|
|
5
|
+
> **Note:** The `docs/` folder is managed by the [`pi-docs`](https://github.com/lmn451/pi-docs) package.
|
|
6
|
+
|
|
3
7
|
A public [Pi](https://pi.dev) package that adds two in-process sub-agent tools:
|
|
4
8
|
|
|
5
9
|
- `subagent_with_context` — spawn a sub-agent that inherits the full conversation history
|
|
@@ -14,6 +18,8 @@ The sub-agents run inside the current Pi process, stream live progress back to t
|
|
|
14
18
|
- Keep tool feedback lightweight with live status updates
|
|
15
19
|
- Avoid subprocess overhead for sub-agent execution
|
|
16
20
|
|
|
21
|
+

|
|
22
|
+
|
|
17
23
|
## Installation
|
|
18
24
|
|
|
19
25
|
Install globally:
|
|
@@ -92,17 +98,6 @@ bun test
|
|
|
92
98
|
bun run pack:check
|
|
93
99
|
```
|
|
94
100
|
|
|
95
|
-
## Release
|
|
96
|
-
|
|
97
|
-
Publishing is handled by GitHub Actions when you push a `v*` tag that matches `package.json`.
|
|
98
|
-
|
|
99
|
-
Example:
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
npm version patch
|
|
103
|
-
git push origin master --follow-tags
|
|
104
|
-
```
|
|
105
|
-
|
|
106
101
|
## Contributing
|
|
107
102
|
|
|
108
103
|
Contributions are welcome. See [CONTRIBUTING.md](./CONTRIBUTING.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-subagentura",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Public Pi package that adds in-process sub-agents via the SDK",
|
|
5
5
|
"main": "subagent.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -49,5 +49,6 @@
|
|
|
49
49
|
"@mariozechner/pi-ai": "*",
|
|
50
50
|
"@mariozechner/pi-tui": "*",
|
|
51
51
|
"typebox": "*"
|
|
52
|
-
}
|
|
52
|
+
},
|
|
53
|
+
"packageManager": "bun@1.3.11"
|
|
53
54
|
}
|