← ClaudeAtlas

agentic-orchestrationlisted

Patterns for multi-agent coordination, task decomposition, handoffs, and workflow orchestration. Use when designing or debugging agent systems, splitting a large task across sub-agents, defining handoff contracts, or choosing an orchestration topology.
frankxai/claude-skills-library · ★ 15 · AI & Automation · score 73
Install: claude install-skill frankxai/claude-skills-library
# Agentic Orchestration Patterns This skill covers patterns for coordinating multiple AI agents, decomposing complex tasks, managing handoffs, and building robust agent workflows. --- ## Orchestration Fundamentals ### Agent Hierarchy Model ``` ┌─────────────────────────────────────────────────────┐ │ ORCHESTRATOR AGENT │ │ (Strategic coordination, task routing, synthesis) │ ├─────────────────────────────────────────────────────┤ │ │ │ ┌──────────────┐ ┌─────────���────┐ ┌────────────┐ │ │ │ Specialist │ │ Specialist │ │ Specialist │ │ │ │ Agent A │ │ Agent B │ │ Agent C │ │ │ │ (Domain 1) │ │ (Domain 2) │ │ (Domain 3) │ │ │ └──────────────┘ └──────────────┘ └────────────┘ │ │ │ └─────────────────────────────────────────────────────┘ ``` ### Core Principles 1. **Single Responsibility**: Each agent has one clear domain 2. **Explicit Handoffs**: Clear protocols for transferring work 3. **Context Preservation**: State travels with the task 4. **Graceful Degradation**: System works if agents fail 5. **Observable Execution**: Can see what each agent is doing --- ## Task Decomposition Patterns ### Pattern 1: Hierarchical Decomposition ``` Complex Task: "Build a feature for user authentication" Decomposed: ├── Research Phase (Research Agent) │ ├── Analyze existing auth patterns in codebase │ ├─