Skip to content

agent-orchestrate

Advancedworkflow

Decompose → assign → coordinate → synthesize results. Every orchestration produces a coherent unified output.

ONLY use when explicitly coordinating multiple specialized agents on a shared task, designing multi-agent pipelines, routing tasks between agents, synthesizing results from parallel agents, or managing agent handoffs and context flow.

Do NOT use for single-task requests — use system-design, evidence-research, code-review, or feature-implement instead.

Triggers: “coordinate agents”, “multi-agent workflow”, “agent pipeline”, “assign tasks to agents”, “parallel agents”, “orchestrate this workflow”

  • orch-agent-orchestrator — decompose request into skill execution plan
  • orch-delegation — assign skills to agents/models
  • orch-multi-agent — manage concurrent execution, state, partial failures
  • orch-result-synthesis — merge parallel outputs, surface contradictions
  • quality-evaluate — evaluate the orchestration output quality
  • fault-resilience — add fault tolerance to the orchestration
  • orchestration-config (read/write) — inspect or patch orchestration configuration
  • model-discover — list available models and capabilities
{
"request": "Run architecture review, security audit, and performance analysis on the new payment service in parallel"
}

Output: Coordinated results from three parallel agent tasks, contradiction surface, and unified synthesis.