What problem does it solve? Single-agent systems hit context window limits, suffer from context poisoning, and degrade on complex tasks. This Skill guides the design of multi-agent architectures that distribute work across isolated context windows while avoiding coordination pitfalls like supervisor bottlenecks, sycophantic consensus, and error propagation cascades. ## Core Features & Use Cases - Architecture Pattern Selection: Choose between supervisor/orchestrator, peer-to-peer swarm, and hierarchical patterns based on coordination needs rather than organizational metaphor. - Coordination Building Blocks: Use the included Python utilities for message passing, handoff protocols, weighted consensus voting, and circuit-breaker failure handling. - Framework Implementation Guidance: Reference LangGraph, AutoGen, and CrewAI code examples when implementing a specific pattern. - Use Case: When building a research pipeline where a single agent's context overflows, use this Skill to decompose the work into researcher, analyzer, fact-checker, and writer agents with explicit handoff protocols and weighted consensus for final decisions. ## Quick Start Ask the AI to design a multi-agent architecture for a research workflow using the supervisor pattern with explicit handoff protocols and failure handling.