Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Multi-agent orchestration for Claude Code — decompose tasks, coordinate agents, visualize everything in a rich terminal UI
| Date | Stars |
|---|---|
| 2026-07-31 | 304 |
| 2026-08-06 | 309 |
Today
+5 stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# Claude Swarm [](https://pypi.org/project/claude-swarm/) [](https://www.python.org/downloads/) [](https://opensource.org/licenses/MIT) []() **Multi-agent orchestration for Claude Code** — decompose complex tasks into parallel subtasks, coordinate agents in real-time, and visualize everything in a rich terminal UI. Built with the [Claude Agent SDK](https://github.com/anthropics/claude-agent-sdk-python) for the [Claude Code Hackathon](https://cerebralvalley.ai/hackathons/claude-code-hackathon-aaHFuycPfjQa5dNaxZpU) (Feb 10-16, 2026). ## How It Works ``` You: "Refactor auth module from Express middleware to Next.js API routes" Claude Swarm: Phase 1: Opus 4.6 decomposes task into dependency graph Phase 2: Parallel agents execute subtasks with live dashboard Phase 2.5: Opus 4.6 Quality Gate reviews all agent outputs Phase 3: Results summary with costs and session replay ``` 1. **Task Decomposition** — Describe a complex task. Opus 4.6 analyzes your codebase and breaks it into a dependency graph of subtasks 2. **Parallel Agent Spawning** — Independent subtasks run simultaneously via Claude Agent SDK. Dependent tasks wait. 3. **Real-time Coordination** — File conflict detection prevents agents from stepping on each other. Budget enforcement stops runaway costs. 4. **Opus Quality Gate** — After agents complete, Opus 4.6 reviews the combined output for correctness, consistency, and completeness 5. **Rich Terminal UI** — `htop`-style dashboard showing agent progress, tool usage, costs, and file conflicts in real-time 6. **Session Replay** — Every swarm execution is recorded. Replay any session to review what each agent did. ## Quick Start ```bash # See it in action instantly (no API key needed!) pip install claude-swarm claude-swarm --demo # Or install from source git clone https://github.com/affaan-m/claude-swarm cd claude-swarm pip install -e . # Set your API key for real usage export ANTHROPIC_API_KEY="sk-ant-..." # Run a swarm claude-swarm "Refactor auth module from Express middleware to Next.js API routes" # Dry run (shows plan without executing) claude-swarm --dry-run "Add user authentication with JWT" # Custom budget, agents, and retries claude-swarm --budget 3.0 --max-agents 6 --retry 2 "Build a REST API for user management" # Disable quality gate for faster execution claude-swarm --no-quality-gate "Quick fix: update README" ``` ## Architecture ``` ┌───────────────────────────────────────────────┐ │ Claude Swarm CLI │ │ │ │ Phase 1: Decompose │ │ ┌─────────────────────────────────────────┐ │ │ │ Opus 4.6 Task Decomposer │ │ │ │ "Add auth" -> [create routes, │ │ │ │ add middleware, write tests, review] │ │ │ └──────────────┬──────────────────────────┘ │ │ │ dependency graph │ │ Phase 2: Execute │ │ ┌──────────────▼──────────────────────────┐ │ │ │ Swarm Orchestrator │ │ │ │ │ │ │ │ Wave 1: ┌────────┐ ┌────────┐ │ │ │ │ │ Agent 1 │ │ Agent 2 │ (parallel)│ │ │ │ coder │ │ coder │ │ │ │ │ └────┬────┘ └────┬────┘ │ │ │ │ Wave 2: └─────┬─────┘ │ │ │ │ ┌─────▼─────┐ │ │ │ │ │ Agent 3 │ (depends) │ │ │ │ │ tester │ │ │ │ │ └─────┬─────┘ │ │ │ │ Wave 3: ┌─────▼─────┐ │ │ │ │ │ Agent 4 │ (depends) │ │ │ │ │ reviewer │ │
Excerpt of 10,483 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:7b84d63166449414, topic:agents, topic:multi-agent, desc:multi-agent