Quickstart
The fastest path is prompt mode: give a plain-English task and let warden handle the rest. No repo, no flags.
warden start "review the auth module for security issues"# spawned agent-a1b2 (classifying…) — attach with `warden attach agent-a1b2`What just happened:
- A new agent got an ID like
agent-a1b2and is launched in the directory you ran the command from (your “master shell” cwd) — no per-agent directory is created. - It’s running
claudeon your prompt inside a tmux window. - The type shows as
classifying…for a moment, then the daemon labels it (e.g.analysis) automatically.
Now watch and interact:
warden ls # see it in the listwarden status agent-a1b2 # full detail + event historywarden tail agent-a1b2 # recent terminal outputwarden send agent-a1b2 "also check the session cookie handling"warden attach agent-a1b2 # drop into its terminal (Ctrl-b d to detach)warden done agent-a1b2 # tear it down when finishedThat’s the whole loop. Everything else is variations on it.
The lifecycle of an agent
Section titled “The lifecycle of an agent”start ──▶ spawning ──▶ working ⇄ idle ⇄ waiting_for_input ──▶ done └─▶ errored / orphanedStatus is driven by Claude Code lifecycle hooks plus the daemon’s poller. You don’t set it manually.
Typical workflows
Section titled “Typical workflows”Ad-hoc investigation (prompt mode):
warden start "find and fix the flaky test in the payments suite"warden lswarden tail <id>warden send <id> "skip the integration tests for now"warden done <id>Ticketed development (managed worktree):
warden start PROJ-350 --type development # worktree + branchwarden status PROJ-350warden attach PROJ-350 # jump in when neededwarden done PROJ-350 # guarded teardownReviewing a PR:
warden start --type pr-review --pr 1234warden tail prreview-...warden done prreview-...