Releases: affaan-m/claude-swarm
Releases · affaan-m/claude-swarm
v0.2.0 — Demo Mode, Opus Quality Gate, Task Retry
What's New in v0.2.0
Demo Mode (--demo)
See Claude Swarm in action instantly — no API key needed! An animated TUI simulation showcases the full swarm experience with realistic task decomposition, parallel agent execution, and live dashboard updates. Perfect for presentations and hackathon judging.
claude-swarm --demoOpus 4.6 Quality Gate (Phase 2.5)
After all agents complete their work, Opus 4.6 reviews the combined output for:
- Correctness — bugs, logic errors, security issues
- Consistency — do agents' outputs work together cohesively?
- Completeness — was the original task fully addressed?
- Integration — problems between different agents' work
This doubles the Opus 4.6 touchpoints (planning + review), mirroring how senior engineers review junior engineers' parallel work.
Task Retry
Failed tasks are automatically retried with configurable limits:
claude-swarm --retry 3 "Build auth system" # up to 3 attempts per taskStats
- 44 tests passing (30 → 44)
- 10 source modules (8 → 10)
- 2,693 total lines (1,488 → 2,693)
- 12 CLI flags (8 → 12)
All Changes
--demoflag for animated TUI simulation (2 built-in scenarios)--quality-gate/--no-quality-gateto enable/disable Opus review--retryflag for configurable task retry limits- Quality report display in UI (score, verdict, per-task reviews)
- Quality gate events in session replay
- Architecture diagram updated with Phase 2.5
- Comprehensive "How Opus 4.6 Is Used" documentation
v0.1.0 — Initial Release
Claude Swarm v0.1.0
Multi-agent orchestration for Claude Code — built for the Claude Code Hackathon (Feb 10-16, 2026).
Features
- Task Decomposition — Opus 4.6 breaks complex tasks into dependency graphs
- Parallel Agent Execution — Independent subtasks run simultaneously via Agent SDK
- File Conflict Detection — Pessimistic locking prevents agents from stepping on each other
- Budget Enforcement — Hard cost limit with graceful cancellation
- Rich Terminal UI — htop-style dashboard with real-time progress
- Session Recording & Replay — JSONL event log for post-mortem review
- YAML Config — Declarative swarm topologies via
swarm.yaml
Install
pip install claude-swarm
# or from source
git clone https://github.com/affaan-m/claude-swarm && cd claude-swarm && pip install -e .Quick Start
export ANTHROPIC_API_KEY="sk-ant-..."
claude-swarm "Refactor auth module from Express to Next.js API routes"Stats
- 1,488 lines of Python
- 30 tests passing
- 8 source modules