Skip to content

Orchestration Skills

The orch-* family coordinates multiple agents and skills to solve complex compound tasks. These skills operate at the meta-level — they manage other skills, not code directly.

Skill IDDescriptionModel Class
orch-agent-orchestratorTop-level orchestrator: decomposes a complex request into a skill execution plan, then coordinates executionstrong
orch-delegationDelegates sub-tasks to appropriate agents or skill chains based on capability matchingcheap
orch-multi-agentManages concurrent execution of multiple agent instances, tracks state, handles partial failuresstrong
orch-result-synthesisAggregates outputs from multiple parallel skill runs into a coherent, non-contradictory unified resultstrong
SituationSkill(s)
Request spans multiple domains/skillsorch-agent-orchestrator
Need to fan out work to parallel agentsorch-multi-agent + orch-delegation
Combining results from 3+ parallel runsorch-result-synthesis
Complex compound taskAll four in sequence
  • orchestrate — primary consumer; all four coordinated
  • meta-routing — uses orch-agent-orchestrator to route compound requests
  • research — uses orch-result-synthesis to merge multi-model research outputs
Complex Request
orch-agent-orchestrator → decompose into skill plan
orch-delegation → assign skills to agents/models
orch-multi-agent → execute in parallel, track state
orch-result-synthesis → merge, deduplicate, unify output

orch-result-synthesis never discards contradictions — it surfaces them:

[SYNTHESIS NOTE] GPT-5.4 and Claude Haiku 4.5 disagree on X.
- GPT-5.4 position: ...
- Claude Haiku 4.5 position: ...
- Resolution: deferred to strong-model judgment (Claude Sonnet 4.6)