What problem does it solve? Single-agent systems hit context window limits, suffer from context degradation, and cannot parallelize work across independent subtasks. This Skill provides architectural guidance and reusable Python building blocks for distributing work across multiple agents with isolated contexts, explicit coordination protocols, and failure handling. ## Core Features & Use Cases - Architecture Pattern Selection: Choose between supervisor/orchestrator, peer-to-peer swarm, and hierarchical patterns based on coordination needs, with documented trade-offs for each. - Coordination Utilities: Use the included Python module for message passing, task decomposition, worker routing, handoff protocols, weighted consensus voting, and circuit-breaker failure handling. - Framework References: Implement patterns in LangGraph, AutoGen, or CrewAI using the framework-specific code examples in the references directory. - Use Case: When building a research system where a supervisor delegates search, analysis, fact-checking, and writing to specialized agents, use this Skill to design the routing, consensus, and error-recovery logic. ## Quick Start Ask the AI to design a multi-agent system using the supervisor pattern with specialized worker agents and weighted consensus for decision-making.