Large-Scale Refactoring
Assign each module to its own agent. Refactor a monolith in a day.
Breaking a monolith into services? Migrating from one framework to another? Split the work across agents — each one handles a module, and amux coordinates the effort.
Example: migrating from Express to Fastify
- Create an agent per route group:
auth-routes,user-routes,billing-routes - Each agent migrates its routes independently
- Use the kanban board to track which modules are done
- Git conflict detection prevents agents from stepping on each other
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