A Developer's Guide to Unattended Coding

Set it up right, and you only check in once a day.

Prerequisites for unattended operation

  1. YOLO mode: Auto-approve tool-use prompts
  2. Self-healing: Recover from crashes automatically
  3. Task board: Agents know what to work on
  4. 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:8822
View on GitHub