@rohaquinlop/pi-subagents 1.1.0 → 1.1.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 +4 -4
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -10,9 +10,9 @@ pi install @rohaquinlop/pi-subagents
|
|
|
10
10
|
|
|
11
11
|
| Agent | Tools | Model | Purpose |
|
|
12
12
|
|-------|-------|-------|---------|
|
|
13
|
-
| **scout** | read, grep, find, ls |
|
|
14
|
-
| **researcher** | web_search, web_fetch |
|
|
15
|
-
| **worker** | read, write, edit, safe_bash, web_search, web_fetch, subagent |
|
|
13
|
+
| **scout** | read, grep, find, ls | deepseek-v4-flash | Fast codebase recon |
|
|
14
|
+
| **researcher** | web_search, web_fetch | deepseek-v4-flash | Web research |
|
|
15
|
+
| **worker** | read, write, edit, safe_bash, web_search, web_fetch, subagent | deepseek-v4-flash | Code changes (can dispatch scout/researcher to protect its own context) |
|
|
16
16
|
|
|
17
17
|
`worker` is allowlisted to spawn only `scout` and `researcher` (via `subagent_agents` in its frontmatter), so the chain stops at depth 2 — a worker cannot recurse into another worker.
|
|
18
18
|
|
|
@@ -75,7 +75,7 @@ Frontmatter fields:
|
|
|
75
75
|
- **name** (required) — unique agent name, used in `{ agent: "my-agent" }` calls
|
|
76
76
|
- **description** — short description
|
|
77
77
|
- **tools** — comma-separated list of tools the agent needs (builtin or extension). Include `subagent` here to let this agent spawn other agents.
|
|
78
|
-
- **model** — model identifier (
|
|
78
|
+
- **model** — provider-agnostic model identifier (e.g. `deepseek-v4-flash`). Pi resolves it from any registered provider that serves it.
|
|
79
79
|
- **thinking** — reasoning level: `off`, `low`, `medium`, `high` (defaults to `medium`)
|
|
80
80
|
- **subagent_agents** — if `subagent` is in `tools`, restrict which agents this one may spawn. Comma-separated list of agent names. Omit for no restriction. Enforced by passing `PI_SUBAGENT_ALLOWED` env to the child `pi` process — the child's subagents extension filters its registry before any tool description sees it, so the child LLM literally can't reference an agent outside the allowlist.
|
|
81
81
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rohaquinlop/pi-subagents",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Pi extension for delegating tasks to subagents — parallel execution, agent discovery, and TUI rendering",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package",
|
|
7
|
+
"subagent",
|
|
8
|
+
"parallel",
|
|
9
|
+
"coding-agent",
|
|
10
|
+
"extension"
|
|
11
|
+
],
|
|
6
12
|
"license": "MIT",
|
|
7
13
|
"author": "rohaquinlop",
|
|
8
14
|
"repository": {
|
|
@@ -17,7 +23,9 @@
|
|
|
17
23
|
"README.md"
|
|
18
24
|
],
|
|
19
25
|
"pi": {
|
|
20
|
-
"extensions": [
|
|
26
|
+
"extensions": [
|
|
27
|
+
"./index.ts"
|
|
28
|
+
]
|
|
21
29
|
},
|
|
22
30
|
"peerDependencies": {
|
|
23
31
|
"@earendil-works/pi-coding-agent": "*",
|