A Developer's Guide to Unattended Coding
Set it up right, and you only check in once a day.
Prerequisites for unattended operation
- YOLO mode: Auto-approve tool-use prompts
- Self-healing: Recover from crashes automatically
- Task board: Agents know what to work on
- Git isolation: Agents don't conflict with each other
amux provides all four. Register sessions with --yolo, and the watchdog handles the rest.
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