Skip to main content

Amux

Isolated workspaces in seconds. Run multiple AI agents without conflicts.

Instant Isolation

Create isolated Git worktree environments in seconds, not minutes. No Docker, no VMs, just pure Git efficiency.

True Parallel Development

Run multiple AI agents simultaneously without conflicts. Each agent works in its own workspace with zero interference.

CLI and MCP Integration

Works with CLI tools like fzf and ripgrep. Full MCP support for AI assistants like Claude Code.

Quick Example

# Create isolated workspaces for parallel development
amux ws create feat-auth
amux ws create fix-security
amux ws create docs-update

# Run different AI agents in each workspace
amux run claude --workspace feat-auth
amux run gpt --workspace fix-security
amux run gemini --workspace docs-update

# Monitor all agents
amux ps
┌─────────┬────────┬───────────────┬────────┐
│ SESSION │ AGENT  │ WORKSPACE     │ STATUS │
├─────────┼────────┼───────────────┼────────┤
│ sess-1a │ claude │ feat-auth     │ 🟢 busy │
│ sess-2b │ gpt    │ fix-security  │ 🟢 busy │
│ sess-3c │ gemini │ docs-update   │ 🟢 busy │
└─────────┴────────┴───────────────┴────────┘