← ClaudeAtlas

agent-orchestrationlisted

Agent orchestration capability pack. Gives AI agents the judgment rules for building reliable multi-agent systems — framework selection (LangGraph / CrewAI / AutoGen v0.4+ / OpenAI Agents SDK / Claude Agent SDK), Supervisor vs Swarm topology, durable execution with Temporal event sourcing, human-in-the-loop interrupt/resume patterns, and tool-permission models. Research-grounded rules from framework docs, Temporal durable-execution patterns, and production complexity-cliff analysis. Use for any multi-agent architecture, orchestration framework choice, checkpoint/recovery design, HITL gating, or agent tool-permission task.
Sheldon-92/TAD · ★ 3 · AI & Automation · score 79
Install: claude install-skill Sheldon-92/TAD
**CONSUMES**: User multi-agent / orchestration task + target workflow description + step count / duration estimate + optional existing framework choice **PRODUCES**: Applied orchestration judgment rules + framework selection rationale + topology decision (supervisor/swarm) + durability/checkpoint plan + HITL interrupt design + tool-permission audit # Agent Orchestration Capability Pack **Version**: 0.1.0 **Compatibility**: Claude Code (Phase 1); Codex / Cursor / Gemini in Phase 3 **License**: Apache 2.0 --- ## What This Pack Does AI agents wire up multi-agent systems by copying a framework's quickstart. They pick LangGraph because it is popular, not because the workflow needs deterministic state. They build swarms with 8 peer agents and never reason about the O(n²) failure surface. They run 300-step agents on bare retry loops, then are surprised when step 280 crashes and restarts from step 1 — re-sending the emails it already sent. They auto-approve every tool call because adding a human gate "later" never happens. This pack embeds the judgment rules that orchestration engineers apply automatically — rules from framework documentation, Temporal durable-execution patterns, and production reliability data. **Pack = orchestration judgment. Your workflow system = process constraints. No overlap.** --- ## Cross-Cutting Rule: The Complexity Cliff — Reliability Decays Exponentially with Step Count > **Cumulative agent reliability is `P(fail) = 1 - (1 - p)^s`, where `p` is