Skip to content

What is warden?

warden (aliased as wd) lets you run many coding-agent sessions in parallel and watch them from one place. Each agent is a real agent process (Claude Code by default — warden drives multiple backends) running inside its own detached tmux window. You spawn agents, watch what they’re doing, talk to them, and tear them down — without juggling terminals by hand.

It is a single Go binary (warden, aliased as wd) that spawns, monitors, and tears down coding-agent sessions of different task types — creating a git worktree only for the types that need one — backed by a local daemon and an embedded FileDB session store (no database server to run).

One binary, multiple faces: warden daemon is the single writer to the on-disk session store, serving a loopback REST API and running a background poller. warden ls|status|start|done|attach|send|tail are thin HTTP clients to the daemon. warden mcp is a stdio MCP server that bridges MCP tool calls to the same REST API, enabling an orchestrator agent session to query agents and talk to a specific running agent. A short alias wd (a symlink to warden) is installed alongside it.

FaceWhat it isYou run it…
daemonThe single long-running process. Owns the on-disk session store, serves a REST API (loopback by default; token-gated remote access optional), and runs a background poller that keeps each agent’s status and subject fresh.Once, in the background (a service).
CLI clientls, status, start, done, attach, send, tail, the git/check lifecycle verbs (commit/push/sync/check), and more — thin HTTP clients that talk to the daemon.Whenever you want to act on agents.
TUI cockpitwarden tui (or bare warden) — a live tmux-based terminal dashboard of the whole fleet.When you want a terminal cockpit.
Web GUIA React dashboard the daemon embeds and serves alongside the API — tabbed mission control with live SSE, interactive terminals, and an attention queue.Open the daemon’s address in a browser.
MCP serverwarden mcp — a stdio bridge so an orchestrator agent session (e.g. Claude) can manage agents through tool calls.Wired into an orchestrator agent’s MCP config.
Interactive REPL (experimental)warden repl — a local-LLM conductor REPL that turns plain-English intent into confirmed warden actions, spending no cloud-model tokens.When you want NL control without an MCP orchestrator session.

Settings live in a config file (~/.warden/config.yaml; warden config prints the resolved values), overridable by environment variables. Everything flows through the daemon, so the daemon must be running before any other command will work.