tmux
Original:🇺🇸 English
Translated
2 scripts
Remote control tmux sessions for interactive CLIs (python, gdb, etc.) by sending keystrokes and scraping pane output.
7installs
Sourcemitsuhiko/agent-stuff
Added on
NPX Install
npx skill4agent add mitsuhiko/agent-stuff tmuxTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →tmux Skill
Use tmux as a programmable terminal multiplexer for interactive work. Works on Linux and macOS with stock tmux; avoid custom config by using a private socket.
Quickstart (isolated socket)
bash
SOCKET_DIR=${TMPDIR:-/tmp}/claude-tmux-sockets # well-known dir for all agent sockets
mkdir -p "$SOCKET_DIR"
SOCKET="$SOCKET_DIR/claude.sock" # keep agent sessions separate from your personal tmux
SESSION=claude-python # slug-like names; avoid spaces
tmux -S "$SOCKET" new -d -s "$SESSION" -n shell
tmux -S "$SOCKET" send-keys -t "$SESSION":0.0 -- 'python3 -q' Enter
tmux -S "$SOCKET" capture-pane -p -J -t "$SESSION":0.0 -S -200 # watch output
tmux -S "$SOCKET" kill-session -t "$SESSION" # clean upAfter starting a session ALWAYS tell the user how to monitor the session by giving them a command to copy paste:
To monitor this session yourself:
tmux -S "$SOCKET" attach -t claude-lldb
Or to capture the output once:
tmux -S "$SOCKET" capture-pane -p -J -t claude-lldb:0.0 -S -200This must ALWAYS be printed right after a session was started and once again at the end of the tool loop. But the earlier you send it, the happier the user will be.
Socket convention
- Agents MUST place tmux sockets under (defaults to
CLAUDE_TMUX_SOCKET_DIR) and use${TMPDIR:-/tmp}/claude-tmux-socketsso we can enumerate/clean them. Create the dir first:tmux -S "$SOCKET".mkdir -p "$CLAUDE_TMUX_SOCKET_DIR" - Default socket path to use unless you must isolate further: .
SOCKET="$CLAUDE_TMUX_SOCKET_DIR/claude.sock"
Targeting panes and naming
- Target format: , defaults to
{session}:{window}.{pane}if omitted. Keep names short (e.g.,:0.0,claude-py).claude-gdb - Use consistently to stay on the private socket path. If you need user config, drop
-S "$SOCKET"; otherwise-f /dev/nullgives a clean config.-f /dev/null - Inspect: ,
tmux -S "$SOCKET" list-sessions.tmux -S "$SOCKET" list-panes -a
Finding sessions
- List sessions on your active socket with metadata: ; add
./scripts/find-sessions.sh -S "$SOCKET"to filter.-q partial-name - Scan all sockets under the shared directory: (uses
./scripts/find-sessions.sh --allorCLAUDE_TMUX_SOCKET_DIR).${TMPDIR:-/tmp}/claude-tmux-sockets
Sending input safely
- Prefer literal sends to avoid shell splitting:
tmux -L "$SOCKET" send-keys -t target -l -- "$cmd" - When composing inline commands, use single quotes or ANSI C quoting to avoid expansion: .
tmux ... send-keys -t target -- $'python3 -m http.server 8000' - To send control keys: ,
tmux ... send-keys -t target C-c,C-d,C-z, etc.Escape
Watching output
- Capture recent history (joined lines to avoid wrapping artifacts): .
tmux -L "$SOCKET" capture-pane -p -J -t target -S -200 - For continuous monitoring, poll with the helper script (below) instead of (which does not watch pane output).
tmux wait-for - You can also temporarily attach to observe: ; detach with
tmux -L "$SOCKET" attach -t "$SESSION".Ctrl+b d - When giving instructions to a user, explicitly print a copy/paste monitor command alongside the action don't assume they remembered the command.
Spawning Processes
Some special rules for processes:
- when asked to debug, use lldb by default
- when starting a python interactive shell, always set the environment variable. This is very important as the non-basic console interferes with your send-keys.
PYTHON_BASIC_REPL=1
Synchronizing / waiting for prompts
- Use timed polling to avoid races with interactive tools. Example: wait for a Python prompt before sending code:
bash
./scripts/wait-for-text.sh -t "$SESSION":0.0 -p '^>>>' -T 15 -l 4000 - For long-running commands, poll for completion text (,
"Type quit to exit", etc.) before proceeding."Program exited"
Interactive tool recipes
- Python REPL: ; wait for
tmux ... send-keys -- 'python3 -q' Enter; send code with^>>>; interrupt with-l. Always withC-c.PYTHON_BASIC_REPL - gdb: ; disable paging
tmux ... send-keys -- 'gdb --quiet ./a.out' Enter; break withtmux ... send-keys -- 'set pagination off' Enter; issueC-c,bt, etc.; exit viainfo localsthen confirmquit.y - Other TTY apps (ipdb, psql, mysql, node, bash): same pattern—start the program, poll for its prompt, then send literal text and Enter.
Cleanup
- Kill a session when done: .
tmux -S "$SOCKET" kill-session -t "$SESSION" - Kill all sessions on a socket: .
tmux -S "$SOCKET" list-sessions -F '#{session_name}' | xargs -r -n1 tmux -S "$SOCKET" kill-session -t - Remove everything on the private socket: .
tmux -S "$SOCKET" kill-server
Helper: wait-for-text.sh
./scripts/wait-for-text.shbash
./scripts/wait-for-text.sh -t session:0.0 -p 'pattern' [-F] [-T 20] [-i 0.5] [-l 2000]- /
-tpane target (required)--target - /
-pregex to match (required); add--patternfor fixed string-F - timeout seconds (integer, default 15)
-T - poll interval seconds (default 0.5)
-i - history lines to search from the pane (integer, default 1000)
-l - Exits 0 on first match, 1 on timeout. On failure prints the last captured text to stderr to aid debugging.