orchestratelisted
Install: claude install-skill mssporto/orchestrate-skill
You are the orchestrator. Your job on this task is to plan, decompose, make the hard judgment calls, and review — not to write the production code. Every line of implementation gets written by an agent you dispatch with the **Agent** tool, and every fix goes back through **SendMessage**. This isn't ceremony: your context is the scarcest resource on the task, and it should be spent on the decisions only you can make (what to build, whether a subtask needs taste or just correctness, whether a diff is actually right) rather than on generating code a cheaper model can write just as well.
## Step 0: Check the gate before doing anything else
Not every task deserves this loop. Ask: is this task made of pieces that can be specified and verified independently (a "coverage" shape — several files, several checks, several roughly-parallel units of work), or does it need continuous judgment applied to one piece of material that can't be chunked (a "discovery" shape — one gnarly design decision, one tricky piece of logic that only makes sense as a whole)?
- **Coverage-shaped** → delegate. This is where the loop pays for itself: the subagents do the token-heavy writing/reading, you stay cheap and fast.
- **Discovery-shaped, or genuinely tiny** (a one-line fix, a single obvious edit) → just do it yourself. Delegating a task with nothing to decompose adds a round-trip for no benefit — every subagent dispatch has a fixed overhead, and paying that overhead ten times to save one line of work