Parallel Feature Development
Assign each feature to its own agent. Ship a week's work in a day.
Instead of working on features sequentially, spin up a Claude Code agent for each one. amux manages them all from a single dashboard, prevents git conflicts, and tracks progress on a shared board.
How it works
- Register one session per feature:
amux register auth --dir ~/Dev/app --yolo - Start them all:
amux start auth && amux start search && amux start payments - Send each agent its task from the dashboard or CLI
- Monitor progress from the web UI or your phone
Git conflict avoidance
amux detects when two sessions share the same directory and branch, warning you before conflicts happen. One click isolates each agent onto its own branch.
Coordination via the board
Post tasks to the kanban board. Agents claim work atomically — no duplicated effort, no lock broker needed.
Get started with amux
Run dozens of Claude Code agents in parallel. Python 3 + tmux. Open source.
git clone https://github.com/mixpeek/amux && cd amux && ./install.sh
amux register myproject --dir ~/Dev/myproject --yolo
amux start myproject
amux serve # → https://localhost:8822View on GitHub