amux vs Cowork

Parallel coding agent fleet vs. a single computer-use agent — different scale, different model.

Claude Cowork is Anthropic's agentic product for autonomous computer-use. Available on all paid Claude plans via the Claude desktop app, it takes a goal, operates your computer — browsing, coding, running commands, interacting with GUIs — and returns a finished deliverable. One task, one agent, one result.

amux is an open-source control plane for running a parallel AI engineering team. It launches, monitors, and self-heals dozens of Claude Code, Codex, or Gemini CLI sessions simultaneously, coordinates them via a shared kanban board, and lets you manage the fleet from your phone. Single Python file, MIT licensed, zero external dependencies.

The core difference: one agent vs. a fleet

Cowork is built around a single-agent, task-completion model. You describe a goal; it works through it autonomously; you review the result. That model is powerful for complex, multi-step tasks that require navigating GUIs or interacting with desktop applications.

amux is built around a fleet model. You queue 20 tasks on the board; 10 agents claim tasks atomically and work in parallel; all 20 tasks are done in roughly the same time as one sequential agent. The watchdog keeps every session alive overnight — context compaction, crash recovery, automatic tool-approval — so you queue work before bed and review pull requests in the morning.

Feature comparison

FeatureamuxClaude Cowork
Agent countUnlimited parallel sessions (10–50+ typical)Single agent per task
Execution modelClaude Code / Codex / Gemini CLI via tmuxComputer-use (GUI, browser, files)
Task coordinationShared kanban board with atomic claimingSingle task queue
Overnight operationBuilt-in — self-healing watchdog, YOLO modeLimited (single session)
Self-healingAuto-compact, crash restart, tool-approval auto-respondNot a stated feature
Mobile managementNative iOS app + PWA — full fleet control from phoneDesktop app required
Open sourceYes (MIT + Commons Clause)No (Anthropic product)
CostFree + API tokensIncluded in Claude paid plans; agent usage bills from credit pool
SetupPython 3 + tmux, ~5 minClaude desktop app
Git integrationPer-session worktrees, commit-guard, verify-gateFile system access
Model choiceClaude Code, Codex, Gemini CLI (route by task)Claude only
InfrastructureYour machine (local-first)Your computer (Anthropic's desktop app)

Where Cowork is the better fit

Where amux is the better fit

The throughput question

If you have 20 tasks to complete and one Cowork session, you run them sequentially: task 1, then 2, then 3. If each takes 30 minutes, the batch takes 10 hours. With amux running 10 parallel sessions claiming from the same board, the same 20 tasks complete in roughly 1 hour. For teams with a steady backlog of coding work, the throughput difference is the deciding factor.

Get started with amux

Run an AI engineering team from your dashboard or phone. Open source, Python 3 + tmux.

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