/** * pi-subagent Extension * * Provides `spawn_subagent` tool — agent calls with cwd + prompt, gets a fresh * child pi process's response back. Sub-agents run with --no-extensions, * --no-skills, --no-prompt-templates, and --no-context-files — clean slate * that only sees the focused task prompt. * * Wraps spawnPi from @shog-lab/pi-utils. * * Use cases: * - Run tests / read code in an isolated context * - Generate a SKILL.md from raw observations * - Classify content without bias from the parent agent's loaded context * * History: extracted from @shog-lab/pi-toolkit 0.2.x as a separate package * in toolkit 0.3.0 (BREAKING: install @shog-lab/pi-subagent to keep this tool). */ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; export default function subagentExtension(pi: ExtensionAPI): void; //# sourceMappingURL=index.d.ts.map