Manage AI agents in tmux: spawn sessions, send messages, wait, capture replies, inspect fleets, and tear down safely. Use for tmux-hosted CLI agents. Don't use for SSH, GNU screen, or GUI apps.
Manage AI agents in tmux: spawn sessions, send messages, wait, capture replies, inspect fleets, and tear down safely. Use for tmux-hosted CLI agents. Don't use for SSH, GNU screen, or GUI apps.
license
MIT
compatibility
Requires `tmux` on PATH. Optional Python 3 for wait/preflight/broadcast helpers.
Manage CLI agents in separate tmux sessions. Treat each session as one agent; orchestrate it with send-keys and capture-pane. Relay reply deltas instead of whole screens to protect the context/token budget.
New sessions open in a terminal tab inside the current app by default. If the environment cannot open one, create the session detached and print the exact attach command. Never invoke attach-session from a non-TTY tool.
Use herdr-agent-comms instead when agents live in Herdr.
When to Use
Route directly to the required mode; do not read unrelated references.
Task
Start
Spawn an agent
Phase 1
Message or steer an existing agent
Phase 2
Read a pane, show status, or inspect
Phase 5
Broadcast to a fleet
Phase 6
Shut down an agent
Phase 6
Main agent's own context is filling up
Phase 7 HANDOFF
Prerequisites
Run command -v tmux; stop with installation guidance if it fails.
Resolve helper scripts using references/tmux-recipes.md when messaging, waiting, or broadcasting.
Confirm the exact session and inspect its pane before writing to it.
Critical Rules
Confirm destructive actions. Never send exit//quit, kill a session, or kill the server without explicit approval.
Fail closed before every send. Only preflight exit 0 is sendable. Exit 2 means working, 3 blocked, and 4 unverifiable.
Use a fresh proof cycle. Every message needs a new baseline file and split completion marker. Never reuse either for a follow-up.
Send text and Enter separately. For multiline/code-heavy text, use tmux paste-buffer; see references/tmux-recipes.md.
Bound waiting. Use a wall-clock cap or at most 2–3 re-waits. Surface a stall instead of polling forever.
Keep reads bounded. Start with capture-pane -S -40 and widen only when the reply is truncated.
Escalate blocked panes. A trust/auth/permission dialog requires a human; do not type task text into it.
Run exactly one orchestrator. Only the current main agent writes to fleet sessions. Orchestrator is a role, not a session: after a Phase 7 HANDOFF ack, the outgoing agent goes read-only and issues no further send-keys, spawns, or kills.
Gate your own context. Self-check at every Phase 7 gate point; at or above the threshold, HANDOFF instead of continuing to fill this window.
Workflow
Run Phases 1–6 in order for a send. A read-only status/inspect operation may jump to Phase 5. Phase 7 is the orchestrator's own context gate, evaluated at its named gate points rather than in sequence.
Phase 1 — Create or Discover
List sessions:
tmux list-sessions 2>/dev/null || echo"no tmux server running yet"
Name new sessions <folder>-<short-task> (for example, myrepo-reviewer). Avoid collisions with tmux has-session before creating one. Launch the requested interactive CLI in a new app terminal tab; if no tab facility exists, use detached mode and print tmux attach-session -t <name> for the human.
After spawn, require readiness before assigning work:
Exit 0 is ready, 3 is blocked, 2 is timeout, and 1 is error. Spawn fleets first, then check readiness concurrently. Read references/tmux-recipes.md for naming, tab/detached branches, script resolution, and fleet readiness.
Complete when: every created session has an exact name and passes the ready gate, or the failure is surfaced without sending work.
Phase 2 — Resolve the Exact Target
tmux has-session -t "$target" 2>/dev/null
If missing, list sessions and ask on ambiguity; never guess. Use session:window.pane for a specific pane.
Complete when: one existing tmux target is confirmed.
Phase 3 — Baseline, Preflight, and Send
Read references/delivery-and-waiting.md before sending. Follow its contract:
Capture -S -80 to a temporary baseline file.
Mint a fresh suffix and define completion_marker="TAC_DONE_$suffix".
Append an instruction that prints TAC_DONE_ joined with the suffix only after completion.
Run preflight_send.py immediately before dispatch; send only on exit 0.
Send message text, then send Enter in a separate call.
Check once for post-send activity against the baseline. If unchanged, re-preflight before one recovery Enter; fail if still unchanged.
On multiline/code-heavy input, use paste-buffer rather than shell escaping. Always clean up temporary files on failure.
Complete when: post-send activity proves delivery, or a descriptive failure is surfaced. Typed text alone is not proof.
Handle exit 0 as settled, 1 as error, 2 as timeout, and 3 as blocked. Before relaying an actionable result, independently compare two short capped-tail captures. Changing output/spinner means working; unchanged output without completion means stalled.
Read references/delivery-and-waiting.md for delivery recovery, wait modes, advisory verdicts, and the anti-deadloop budget.
Complete when: a fresh marker and independent bounded read verify the reply, or the bounded wait ends with an explicit state.
Phase 5 — Read, Status, or Inspect
Read a reply with:
tmux capture-pane -t "$target" -p -S -40
Widen stepwise if capture starts mid-sentence; use unbounded scrollback only as a last resort. Relay substantive lines, not TUI chrome or old turns.
For status, remain read-only and report: agent ID, exact session, state (in-progress, done, blocked, unknown), short progress, start time, and workdir. For inspect, resolve one exact session, include a bounded tail and pane details, then print—but do not run—the human attach command.
Read references/tmux-recipes.md for classification commands, periodic fleet status, scrollback, and troubleshooting.
Complete when: the requested reply or status is concise, target-specific, and not truncated.
Phase 6 — Continue, Broadcast, or Tear Down
Continue: restart Phase 3 with a fresh baseline and marker.
Broadcast: run "$here/broadcast.sh" "<message>" <session...>; it preflights, sends first, then waits concurrently. Do not serialize send/wait by agent.
Long fleet run: emit a read-only status table about every five minutes within the same overall wait budget.
Tear down: after explicit confirmation, prefer tmux kill-session -t <name> over tmux kill-server.
Complete when: every follow-up has an independent proof cycle, broadcast failures are reported per target, or confirmed teardown affects only named sessions.
Phase 7 — Hand Off the Orchestrator Role
Long fleet runs outlive one context window. Self-check your own usage at three gate points — before a spawn wave, before a broadcast, and after each relayed capture — never mid-cycle between a send and its wait.
Self-reported usage
Action
P >= threshold (default 50, overridable in conversation)
HANDOFF
P < threshold
Continue as main
UNKNOWN or unavailable
Count relayed reads and spawn waves; HANDOFF at 20 reads or 4 spawn waves
HANDOFF spawns a successor with the same Phase 1 machinery — <folder>-main-g<N>, app terminal tab by default, ready-gated — then delivers a compact handoff brief through the Phase 3 cycle (paste-buffer, since it is multi-line) and waits for the ack HANDOFF ACCEPTED gen=<N> fleet=<k>. After the ack, that session is the orchestrator; this agent goes read-only and prints the successor's tmux attach-session command for the human. A successor that fails readiness or never acks means the HANDOFF failed: stay main, report the unused session, and ask before killing it.
Read references/context-succession.md for the gate-point table, UNKNOWN fallback logging, full procedure, and the brief template. Never paste transcripts or diffs into a brief.
Complete when: the gate decision is recorded with a percentage or an explicit UNKNOWN fallback, and any HANDOFF has a ready successor session, a delivered brief, a received ack, and no write from the outgoing agent afterward.
Acceptance Criteria
Every write targets a confirmed session and immediately follows a successful preflight.
Every message has a fresh baseline, split marker, delivery check, bounded wait, and independent capped-tail verification.
No blocked dialog receives task text; no destructive command runs without confirmation.
Fleet sends and readiness checks run concurrently, with partial failures identified by session.
The context gate is evaluated at each gate point, and any HANDOFF ends with exactly one acked orchestrator.
The expected output is the requested reply/status plus the adapted Step Completion Report below—not raw unbounded scrollback.
For spawn, report Session created and Ready gate; for status, report Read-only; for teardown, report Confirmed and Session killed. Use ⚠ for recovered delivery or an escalated stall.