multi-agent-swarm
Installation
SKILL.md
Multi-Agent Swarm Orchestration
Advanced patterns for coordinating multiple Claude Code agents working on the same codebase or problem.
Swarm Patterns
1. Fan-Out / Fan-In (Parallel Decomposition)
Best for: Independent subtasks that can be merged.
Orchestrator
├── Agent A → Task 1 → Result A
├── Agent B → Task 2 → Result B
├── Agent C → Task 3 → Result C
└── Merge Results → Final Output