A web dashboard for managing parallel AI coding agents. Built on top of workmux, which handles git worktrees and tmux orchestration — webmux adds a browser UI with embedded terminals, live status tracking, and CI integration.
demo.mp4
Spin up new worktrees with one click. Pick a profile, type a prompt, and webmux creates the worktree, starts the agent, and begins streaming output. Merge or remove worktrees when you're done.
View and interact with your agents directly in the browser. Each worktree gets its own terminal session, streamed live via WebSocket. You can watch agents work, send prompts, and switch between worktrees instantly — no need to juggle tmux windows manually.
See pull request status, CI check results, and review comments right next to each worktree. No more switching to GitHub to check if your agent's PR passed CI.
Track dev server ports across worktrees. webmux polls configured services and shows live health badges so you know which worktrees have their servers running.
Run agents in isolated Docker containers for untrusted or experimental work. webmux manages the container lifecycle, port forwarding, and volume mounts automatically.
# 1. Install prerequisites
cargo install workmux # or: brew install raine/workmux/workmux
sudo apt install tmux # or: brew install tmux
curl -fsSL https://bun.sh/install | bash
# 2. Install webmux
bun install -g webmux
# 3. Set up your project
cd /path/to/your/project
webmux init # creates .workmux.yaml and .webmux.yaml
# 4. Start the dashboard
webmux # opens on http://localhost:5111| Tool | Purpose |
|---|---|
| bun | Runtime |
| workmux | Worktree + tmux orchestration |
| tmux | Terminal multiplexer |
| git | Worktree management |
| gh | PR and CI status (optional) |
| docker | Sandbox profile only (optional) |
webmux uses two config files in the project root:
.workmux.yaml— Controls worktree directory, pane layout, agent selection, and lifecycle hooks. See the workmux docs..webmux.yaml— Dashboard-specific config: service health checks, profiles, linked repos, and Docker sandbox settings.
.webmux.yaml example
name: My Project
services:
- name: BE
portEnv: BACKEND_PORT
portStart: 5111
portStep: 10
- name: FE
portEnv: FRONTEND_PORT
portStart: 5112
portStep: 10
profiles:
default:
name: default
sandbox:
name: sandbox
image: my-sandbox
envPassthrough:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
extraMounts:
- hostPath: ~/.codex
guestPath: /root/.codex
writable: true
systemPrompt: >
You are running inside a sandboxed container.
Backend port: ${BACKEND_PORT}. Frontend port: ${FRONTEND_PORT}.
linkedRepos:
- repo: myorg/related-service
alias: svc.webmux.yaml full schema
| Parameter | Type | Required | Description |
|---|---|---|---|
name |
string | no | Project name shown in sidebar and browser tab |
services[].name |
string | yes | Display name shown in the dashboard |
services[].portEnv |
string | yes | Env var containing the service port |
services[].portStart |
number | no | Base port for auto-allocation |
services[].portStep |
number | no | Port increment per worktree slot (default: 1) |
profiles.default.name |
string | yes | Identifier for the default profile |
profiles.default.systemPrompt |
string | no | Agent system prompt; ${VAR} placeholders expanded at runtime |
profiles.default.envPassthrough |
string[] | no | Env vars passed to the agent process |
profiles.sandbox.name |
string | yes (if used) | Identifier for the sandbox profile |
profiles.sandbox.image |
string | yes (if used) | Docker image for containers |
profiles.sandbox.systemPrompt |
string | no | Agent system prompt for sandbox |
profiles.sandbox.envPassthrough |
string[] | no | Host env vars forwarded into the container |
profiles.sandbox.extraMounts[].hostPath |
string | yes | Host path to mount (~ expands to $HOME) |
profiles.sandbox.extraMounts[].guestPath |
string | no | Container mount path (defaults to hostPath) |
profiles.sandbox.extraMounts[].writable |
boolean | no | true for read-write; omit or false for read-only |
linkedRepos[].repo |
string | yes | GitHub repo slug (e.g. org/repo) |
linkedRepos[].alias |
string | no | Short label for the UI |
| Shortcut | Action |
|---|---|
Cmd+Up/Down |
Navigate between worktrees |
Cmd+K |
Create new worktree |
Cmd+M |
Merge selected worktree |
Cmd+D |
Remove selected worktree |


