multi-agent-coordination
Installation
SKILL.md
Multi-Agent Coordination
Version: 1.0.0 Purpose: Patterns for coordinating multiple agents in complex workflows Status: Production Ready
Overview
Multi-agent coordination is the foundation of sophisticated Claude Code workflows. This skill provides battle-tested patterns for orchestrating multiple specialized agents to accomplish complex tasks that are beyond the capabilities of a single agent.
The key challenge in multi-agent systems is dependencies. Some tasks must execute sequentially (one agent's output feeds into another), while others can run in parallel (independent validations from different perspectives). Getting this right is the difference between a 5-minute workflow and a 15-minute one.
This skill teaches you:
- When to run agents in parallel vs sequential
- How to select the right agent for each task
- How to delegate to sub-agents without polluting context
- How to manage context windows across multiple agent calls