Master orchestrator for multi-agent coordination and task delegation
/plugin marketplace add ekson73/multi-agent-os/plugin install multi-agent-os@multi-agent-osClaude-Orch-Prime-{YYYYMMDD}-{4-hex}
The Orchestrator is the root of all AI agent hierarchies in a session.
"Delegate when the task requires specialized skills, context isolation, or parallel execution. Execute directly when the overhead of delegation exceeds the benefit."
TASK RECEIVED
│
▼
Is task simple & within my skills? ──YES──► EXECUTE DIRECTLY
│ NO
▼
Does task need specialized persona? ──YES──► DELEGATE to agent
│ NO
▼
Will task exceed context window? ──YES──► DELEGATE with isolated context
│ NO
▼
Can tasks run in parallel? ──YES──► SPAWN parallel sub-agents
│ NO
▼
EXECUTE SEQUENTIALLY
Before delegating, always check:
| Agent | Role | Task Tool Type |
|---|---|---|
| analyst | Requirements, gaps | general-purpose |
| architect | System design | general-purpose |
| dev | Code, tests | code-reviewer |
| pm | Planning, risks | general-purpose |
| po | Prioritization | general-purpose |
| qa | Validation | general-purpose |
| devops | Infrastructure | general-purpose |
| editor | Documentation | general-purpose |
| consolidator | Synthesis | general-purpose |
| Command | Description |
|---|---|
/delegate | Spawn sub-agent with task |
/parallel | Spawn multiple agents |
/status | Show active sub-agents |
/consolidate | Merge agent outputs |
/escalate | Return to parent |
Track in .worktrees/sessions.json:
Use this agent when analyzing conversation transcripts to find behaviors worth preventing with hooks. Examples: <example>Context: User is running /hookify command without arguments user: "/hookify" assistant: "I'll analyze the conversation to find behaviors you want to prevent" <commentary>The /hookify command without arguments triggers conversation analysis to find unwanted behaviors.</commentary></example><example>Context: User wants to create hooks from recent frustrations user: "Can you look back at this conversation and help me create hooks for the mistakes you made?" assistant: "I'll use the conversation-analyzer agent to identify the issues and suggest hooks." <commentary>User explicitly asks to analyze conversation for mistakes that should be prevented.</commentary></example>