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

  1. Create an agent per route group: auth-routes, user-routes, billing-routes
  2. Each agent migrates its routes independently
  3. Use the kanban board to track which modules are done
  4. 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:8822
View on GitHub