pi-better-subagents 0.1.3 → 0.1.4
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/LICENSE +21 -0
- package/README.md +19 -6
- package/package.json +6 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 1aboveio
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# pi-better-subagents
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
`pi-better-subagents` is a Pi extension for detached, sandboxed subagent runs that keep the foreground Pi session free.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Quick Answer
|
|
6
|
+
|
|
7
|
+
Use `pi-better-subagents` when you want Pi to launch independent agent work without blocking the current conversation. Each subagent runs in its own `pi -p` child process, reports back when finished, and keeps durable logs for later inspection.
|
|
6
8
|
|
|
7
9
|
## Core Features
|
|
8
10
|
|
|
@@ -24,11 +26,21 @@ Try it for one run:
|
|
|
24
26
|
pi -e npm:pi-better-subagents
|
|
25
27
|
```
|
|
26
28
|
|
|
27
|
-
Linux sandboxing uses `bubblewrap` when available
|
|
29
|
+
Linux sandboxing uses `bubblewrap` when available, for example from `sudo apt-get install bubblewrap`.
|
|
28
30
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
## When To Use
|
|
32
|
+
|
|
33
|
+
Use this package for independent coding, review, research, or verification work that can finish later. Do not use it for steps that need immediate foreground interaction or user clarification.
|
|
34
|
+
|
|
35
|
+
## Compatibility
|
|
36
|
+
|
|
37
|
+
| Requirement | Support |
|
|
38
|
+
|-------------|---------|
|
|
39
|
+
| Pi | Required |
|
|
40
|
+
| Install method | `pi install npm:pi-better-subagents` |
|
|
41
|
+
| macOS sandboxing | Supported by default |
|
|
42
|
+
| Linux sandboxing | Uses `bubblewrap` when available |
|
|
43
|
+
| Development runtime | Node.js 22+ |
|
|
32
44
|
|
|
33
45
|
## Update Or Remove
|
|
34
46
|
|
|
@@ -41,3 +53,4 @@ pi remove npm:pi-better-subagents
|
|
|
41
53
|
|
|
42
54
|
- Repository: https://github.com/1aboveio/pi-better-harness
|
|
43
55
|
- Detailed notes: https://github.com/1aboveio/pi-better-harness/blob/main/packages/pi-better-subagents/docs/usage.md
|
|
56
|
+
- License: https://github.com/1aboveio/pi-better-harness/blob/main/LICENSE
|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-better-subagents",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Pi extension for detached, sandboxed subagent runs that keep the foreground session free.",
|
|
5
|
+
"license": "MIT",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"keywords": [
|
|
7
8
|
"pi-package",
|
|
8
9
|
"pi-extension",
|
|
9
|
-
"
|
|
10
|
+
"pi",
|
|
11
|
+
"subagents",
|
|
12
|
+
"sandboxed-agents"
|
|
10
13
|
],
|
|
11
14
|
"pi": {
|
|
12
15
|
"extensions": [
|