@rohaquinlop/pi-subagents
Pi extension for delegating tasks to subagents — parallel execution, agent discovery, and TUI rendering
Package details
Install @rohaquinlop/pi-subagents from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:@rohaquinlop/pi-subagents- Package
@rohaquinlop/pi-subagents- Version
0.3.0- Published
- Jun 21, 2026
- Downloads
- not available
- Author
- rohaquinlop
- License
- MIT
- Types
- extension
- Size
- 58.6 KB
- Dependencies
- 0 dependencies · 3 peers
Pi manifest JSON
{
"extensions": [
"./index.ts"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
@rohaquinlop/pi-subagents
A pi extension that registers a single subagent tool with three agents:
Installation
pi install @rohaquinlop/pi-subagents
| Agent | Tools | Model | Purpose |
|---|---|---|---|
| scout | read, grep, find, ls | deepseek-v4-flash | Fast codebase recon |
| researcher | web_search, web_fetch | deepseek-v4-flash | Web research |
| 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) |
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.
Dependencies
safe_bash ships in this repo (tools/safe-bash.ts). web_search and web_fetch do not — researcher and worker depend on them. Grab those two extensions from amosblomqvist/pi-config (extensions/web-search/, extensions/web-fetch/) and drop them into ~/.pi/agent/extensions/. Without them the affected agents will launch with an empty tool allowlist and silently do nothing useful.
Usage
One tool call = one subagent:
{ "agent": "scout", "task": "Find all auth-related files in src/" }
To fan out, emit multiple subagent tool calls in the same assistant turn — pi runs them in parallel automatically. A per-process semaphore caps simultaneous subagents at maxConcurrency (default 4); calls past the cap wait their turn.
Each subagent runs as an isolated pi process with no inherited context — all context must be in the task description.
Config
Optional config.json next to index.ts:
{ "maxConcurrency": 4 }
Output
Subagents return text only — there's no file handoff. If the parent needs artifacts, instruct the subagent to write them and return the path.
Large outputs (>DEFAULT_MAX_BYTES) are head-truncated before being returned to the parent.
UI
Two levels, toggled with ctrl+o:
- Collapsed (default): the tool call shows one line —
subagent <agent> <60-char task preview>. The result block shows the agent header (status, tool count, duration), the chronological tool log (one line per call, running calls marked with▸), the latest prose "thinking" line, and a usage line (tokens in/out, cache, cost, context-window gauge). - Expanded: the call header streams the full task body live as the parent writes it (like
write/edit). The result block additionally renders the subagent's full final output as markdown. Nested children (when a worker spawns scout/researcher) render inline, indented under the row that dispatched them, with their own per-row context gauge.
Registering Agents from Other Extensions
Other extensions can dynamically register and unregister agents at runtime. This is useful for domain-specific agents that should only be available when a particular extension is active.
1. Define agent .md files
Create markdown files with YAML frontmatter in your extension's directory (e.g. my-extension/agents/my-agent.md):
---
name: my-agent
description: Does a specific thing
tools: web_search, video_extract
model: claude-sonnet-4-20250514
---
You are an agent that does a specific thing...
Frontmatter fields:
- name (required) — unique agent name, used in
{ agent: "my-agent" }calls - description — short description
- tools — comma-separated list of tools the agent needs (builtin or extension). Include
subagenthere to let this agent spawn other agents. - model — provider-agnostic model identifier (e.g.
deepseek-v4-flash). Pi resolves it from any registered provider that serves it. - thinking — reasoning level:
off,low,medium,high(defaults tomedium) - subagent_agents — if
subagentis intools, restrict which agents this one may spawn. Comma-separated list of agent names. Omit for no restriction. Enforced by passingPI_SUBAGENT_ALLOWEDenv to the childpiprocess — 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.
The markdown body becomes the agent's system prompt.
2. Register agents via globalThis.__pi_subagents
Pi loads extensions via jiti, which creates separate module instances. Direct imports from the subagents extension will reference a different agents array than the one the subagent tool uses. Use the globalThis bridge instead:
import { parseFrontmatter } from "@earendil-works/pi-coding-agent";
import * as fs from "node:fs";
import * as path from "node:path";
interface AgentConfig {
name: string;
description: string;
tools: string[];
model: string;
thinking: string; // "off" | "low" | "medium" | "high"
systemPrompt: string;
filePath: string;
subagentAgents?: string[]; // optional spawn-allowlist when `subagent` is in tools
}
const AGENTS_DIR = path.join(path.dirname(new URL(import.meta.url).pathname), "agents");
function registerMyAgents(): void {
const subagents = (globalThis as any).__pi_subagents as
| { registerAgent: (config: AgentConfig) => void; unregisterAgent: (name: string) => void }
| undefined;
if (!subagents) return; // subagents extension not loaded
for (const entry of fs.readdirSync(AGENTS_DIR)) {
if (!entry.endsWith(".md")) continue;
const filePath = path.join(AGENTS_DIR, entry);
const content = fs.readFileSync(filePath, "utf-8");
const { frontmatter, body } = parseFrontmatter<Record<string, string>>(content);
if (!frontmatter.name) continue;
const tools = (frontmatter.tools || "").split(",").map(t => t.trim()).filter(Boolean);
const subagentAgents = frontmatter.subagent_agents
? frontmatter.subagent_agents.split(",").map(t => t.trim()).filter(Boolean)
: undefined;
try {
subagents.registerAgent({
name: frontmatter.name,
description: frontmatter.description || "",
tools,
model: frontmatter.model || "anthropic/claude-sonnet-4-6",
thinking: frontmatter.thinking || "medium",
systemPrompt: body,
filePath,
...(subagentAgents ? { subagentAgents } : {}),
});
} catch {
// Already registered — skip
}
}
}
Call registerMyAgents() when your extension activates (e.g. in a command handler). The agents become available to the subagent tool immediately.
3. Adding custom tool support
If your agents need tools beyond the built-in set, those tools must be mapped in the CUSTOM_TOOL_EXTENSIONS record in subagents/index.ts:
const CUSTOM_TOOL_EXTENSIONS: Record<string, string> = {
web_search: path.join(EXT_BASE, "web-search", "index.ts"),
web_fetch: path.join(EXT_BASE, "web-fetch", "index.ts"),
safe_bash: path.join(TOOLS_DIR, "safe-bash.ts"),
video_extract: path.join(EXT_BASE, "video-extract", "index.ts"),
youtube_search: path.join(EXT_BASE, "youtube-search", "index.ts"),
google_image_search: path.join(EXT_BASE, "google-image-search", "index.ts"),
};
Built-in tools (read, write, edit, bash, grep, find, ls) work automatically. Any other tool the agent lists in its frontmatter must have a corresponding entry here pointing to the extension's index.ts.
The subagent tool itself is listed in CUSTOM_TOOL_EXTENSIONS pointing back to this extension's own index.ts — that's how an agent like worker can recursively spawn other agents. Recursion is bounded only by each agent's subagent_agents allowlist (e.g. worker can spawn scout/researcher, neither of which declares the subagent tool, so the chain stops at depth 2).
4. Model-specific extensions (no manual mapping)
Extensions that apply to specific models (not tools) can declare appliesToModels
in their package.json and auto-load without any CUSTOM_TOOL_EXTENSIONS mapping:
{
"pi": {
"extensions": ["./extensions/index.ts"],
"appliesToModels": ["deepseek-*"]
}
}
When a subagent's configured model matches one of the patterns, the extension is
loaded via --extension in the child process. Glob patterns (* wildcard) match
the model ID (the portion after the last /, e.g. deepseek-v4-flash in
nan/deepseek-v4-flash). Plain strings without wildcards match the provider
name (the portion before the /, e.g. nan in nan/deepseek-v4-flash).
Matching is case-insensitive.
Structure
@rohaquinlop/pi-subagents/
├── index.ts # Extension entry point
├── agents/ # Built-in agent configs (frontmatter + system prompt)
├── lib/ # Pure helper functions (agent discovery, frontmatter parsing)
└── tools/ # Extensions loaded into subagent processes
└── safe-bash.ts # bash with dangerous command blocking