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 reusable Python utilities for distributing work across multiple LLM agents with isolated contexts, explicit coordination protocols, and failure handling. ## Core Features & Use Cases - Three Architecture Patterns: Implement supervisor/orchestrator, peer-to-peer swarm, and hierarchical agent structures with guidance on when each fits. - Coordination Utilities: Use the included Python module for message passing, task delegation, weighted consensus voting, handoff protocols, and circuit-breaker failure handling. - Framework References: Get implementation examples for LangGraph, AutoGen, and CrewAI from the references directory. - Use Case: When building a research assistant that must search multiple sources, analyze findings, and write reports in parallel, use this Skill to design a supervisor that delegates to specialized researcher, analyzer, and writer agents while avoiding the telephone game problem. ## Quick Start Ask the AI to design a multi-agent system with a supervisor coordinating specialized worker agents for your task.