From orchestrate
Fan a large task out across parallel AI agents. Planners scope and publish tasks, workers execute, and a script reconciles the tree from disk. Use when explicitly invoking /orchestrate with a large goal that benefits from parallel decomposition.
How this skill is triggered — by the user, by Claude, or both
Slash command
/orchestrate:orchestrateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fan out a large task across parallel agents. Workers don't talk to each other — they hand results up through structured handoffs.
Fan out a large task across parallel agents. Workers don't talk to each other — they hand results up through structured handoffs.
| Node | Runs Loop? | Scope | Output |
|---|---|---|---|
| Planner | yes | Entire user goal | User-facing message + optional PR |
| Subplanner | yes | One slice of parent scope | Handoff to parent |
| Worker | no | One concrete task | Handoff to spawning planner |
| Verifier | no | Acceptance criteria | Verdict handoff |
npx claudepluginhub andersonlimahw/lemon-ai-hub --plugin orchestrateUse only when the user explicitly types `/orchestrate <goal>` to decompose a large task, spawn a tree of parallel cloud-agent workers/subplanners/verifiers via the Cursor SDK, and collect structured handoffs; do not invoke autonomously.
Coordinates multi-agent work across plan/implement/test/review phases, fanning out 3+ independent workstreams. Includes a GO/NO-GO gate to assess scope and verify subagent claims.
How SKULL delegates work to subagents and teams. Triggers on "delegate", "spawn agents", "parallel agents", "fan out", "run these in parallel", "subagent", "orchestrate", "build a team for this", or whenever a task splits into independent chunks, needs a fresh-eyes review, or means reading many files. Teaches the orchestrator-worker pattern: pick the right primitive (subagent vs agent-team vs background session), write a complete delegation brief, parallelize only when it pays, scale effort to the task, and verify with an adversarial reviewer. Use to plan and run any multi-agent push.