Multi-agent AI orchestrator that commands multiple Claude agents simultaneously for parallel task execution.
- Orchestrator: Central coordinator that decomposes tasks and manages workers
- Worker Agents: Subprocess-based Claude agents executing subtasks in parallel
- Shared Memory: Redis-backed state for inter-agent communication
- Event Bus: Pub/sub coordination via Redis
src/cli.ts- Command-line interface entry pointsrc/orchestrator/orchestrator.ts- Main coordination logicsrc/workers/worker-process.ts- Worker subprocess entrysrc/memory/shared-memory.ts- Redis state management
# Start Redis
docker-compose up -d
# Run a task
npm run dev -- run "your task description" --project /path/to/projectnpm install
npm run typecheck
npm test