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 patterns and coordination utilities for distributing work across multiple language model agents with isolated contexts. ## 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 inter-agent messaging, task decomposition, handoff protocols, weighted consensus voting, and circuit-breaker failure handling. - Framework Implementations: Reference LangGraph, AutoGen, and CrewAI code examples for building supervisor graphs, group chats, and role-based crews. - Use Case: When building a research system where a single agent's context overflows, deploy a supervisor that routes subtasks to specialized researcher, analyzer, and writer agents, each operating in a clean context. ## Quick Start Ask the AI to design a multi-agent research system using the supervisor pattern with context isolation and weighted consensus for fact verification.