What problem does it solve? Single-agent systems hit context window limits, degrade through accumulated noise, and cannot parallelize work across independent subtasks. This Skill provides architectural patterns and reusable coordination code for distributing work across multiple LLM agents without losing control or blowing up token budgets. ## Core Features & Use Cases - Architecture Selection: Guidance for choosing between supervisor/orchestrator, peer-to-peer swarm, and hierarchical patterns based on coordination needs rather than organizational metaphor. - Coordination Building Blocks: A Python module with message buses, supervisor task decomposition, handoff protocols, weighted consensus voting, and circuit-breaker failure handling. - Framework References: Implementation examples for LangGraph, AutoGen, and CrewAI covering supervisors, swarms, context isolation, and debate protocols. - Use Case: When building a research pipeline where a coordinator delegates search, analysis, fact-checking, and writing to specialized agents, use this Skill to structure handoffs, prevent error propagation, and budget for the roughly 15x token cost of multi-agent runs. ## Quick Start Ask the AI to design a multi-agent architecture for your task using the supervisor or swarm pattern and generate the coordination scaffolding from the included Python utilities.