CLI tool for orchestrating AI coding agents in tmux sessions. Agents can use the same binary to spawn and communicate with other agents.
tmux is the only required external dependency from the binary - there is no setup needed. You should be able to copy the manually built or released binaries as you'd like.
make build # builds ./agent
make install # installs to GOPATH/bin# Spawn an agent
agent spawn researcher --backend claude
# Send a message
agent send researcher "analyze the auth module"
# Queue a message (delivered when idle)
agent queue researcher "summarize when done"
# Check status and capture output
agent status researcher
agent capture researcher --lines 100
# Clean up
agent cleanup researcherBuilt-in: claude, aider
Custom backends via JSON config:
agent spawn helper --backend-config my-backend.jsonAll state lives in .gomuxai/ next to the binary. Delete the folder to reset.