@0xkobold/pi-orchestration
Agnostic subagent orchestration for pi-coding-agent. Supports single, chain, parallel, and fork execution modes with depth limiting and worktree isolation.
Package details
Install @0xkobold/pi-orchestration from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:@0xkobold/pi-orchestration- Package
@0xkobold/pi-orchestration- Version
0.3.0- Published
- Apr 7, 2026
- Downloads
- 828/mo ยท 43/wk
- Author
- moikapy
- License
- MIT
- Types
- extension
- Size
- 408 KB
- Dependencies
- 0 dependencies ยท 3 peers
Pi manifest JSON
{
"extensions": [
"./dist/index.js"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
pi-orchestration
Agnostic subagent orchestration for pi-coding-agent
A TypeScript package for orchestrating multi-agent workflows with depth limiting, worktree isolation, and model flexibility.
Features
- Single Execution: Spawn a single typed agent with a task
- Chain Execution: Execute agents in sequence, passing output between steps
- Parallel Execution: Execute multiple agents concurrently with limits
- Fork Execution: Share parent's context for efficiency
Agent Types
| Type | Emoji | Purpose | Depth Limit |
|---|---|---|---|
scout |
๐ | Fast reconnaissance | 0 |
specialist |
๐ง | Domain expert | 1 |
worker |
โ๏ธ | Implementation | 1 |
reviewer |
๐๏ธ | Quality validation | 0 |
coordinator |
๐ฏ | Task orchestration | โ |
Model Flexibility
pi-orchestration inherits the parent agent's model registry and selects the best model for each agent type:
// "auto" = use parent's ctx.modelRegistry (default)
{ agent: "worker", model: "auto" }
// Explicit model
{ agent: "worker", model: "ollama/qwen2.5-coder:14b" }
// Use parent's current model
{ agent: "reviewer", model: "inherit" }
Supported Providers
ollama/*- Local or cloud Ollama modelsclaude/*- Anthropic Claudeanthropic/*- Alias for claude/- Any custom provider registered via pi-coding-agent
Installation
npm install @0xkobold/pi-orchestration
Usage
Single Execution
import { orchestrate } from "@0xkobold/pi-orchestration";
const result = await orchestrate({
agent: "worker",
task: "Implement user authentication",
}, ctx);
console.log(result.content);
Chain Execution
const result = await orchestrate({
chain: [
{ agent: "scout", task: "Analyze the codebase structure" },
{ agent: "planner", task: "Create implementation plan" },
{ agent: "worker", task: "Implement the feature" },
{ agent: "reviewer", task: "Review the changes" },
],
}, ctx);
Parallel Execution
const result = await orchestrate({
parallel: [
{ agent: "scout", task: "Audit frontend security" },
{ agent: "scout", task: "Audit backend security" },
{ agent: "scout", task: "Audit infrastructure" },
],
}, ctx);
With Options
const result = await orchestrate({
agent: "worker",
task: "Refactor authentication module",
cwd: "/path/to/project",
timeout: 60000, // 60 second timeout
maxOutput: 5000, // 5000 character max output
isolation: {
type: "worktree",
diffOnComplete: true,
autoApply: false,
},
model: "ollama/qwen2.5-coder:14b",
}, ctx);
API
orchestrate(options, ctx)
Main orchestration function.
Options:
agent- Agent type for single executiontask- Task descriptionchain- Array of steps for chain executionparallel- Array of tasks for parallel executioncwd- Working directorytimeout- Timeout in millisecondsmaxOutput- Maximum output lengthisolation- Isolation configurationmodel- Model overridecontext- Context mode:fresh,fork, orinherit
Returns: OrchestrateResult | ChainResult | ParallelResult
Tools
orchestrate- Main orchestration tool (single, chain, parallel execution)orchestrate_status- Check engine status and pi CLI availability
Architecture
src/
โโโ core/ # Types and agent definitions
โโโ utils/ # Model selection, depth tracking, templates
โโโ modes/ # Single, chain, parallel, fork execution
โโโ execution/ # Main orchestration engine
โโโ tools/ # pi-coding-agent skill definitions
License
MIT