Bug Triage and Fixing

File bugs on the board. Agents claim and fix them autonomously.

Post bugs to the amux kanban board. Start a pool of agents. Each agent claims a bug atomically, reproduces it, writes a fix, and adds tests. You review the PRs.

Atomic task claiming

POST /api/board/:id/claim is a SQLite compare-and-swap. Even with 20 agents racing for the same queue, each bug gets claimed exactly once. No Redis required.

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:8822
View on GitHub