154 lines
3.4 KiB
Markdown
Raw Permalink Normal View History

2026-01-17 11:52:50 +00:00
---
name: tmux
description: Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
metadata:
{ "openclaw": { "emoji": "🧵", "os": ["darwin", "linux"], "requires": { "bins": ["tmux"] } } }
2026-01-17 11:52:50 +00:00
---
# tmux Session Control
2026-01-17 11:52:50 +00:00
Control tmux sessions by sending keystrokes and reading output. Essential for managing Claude Code sessions.
2026-01-17 11:52:50 +00:00
## When to Use
2026-01-17 11:52:50 +00:00
**USE this skill when:**
2026-01-17 11:52:50 +00:00
- Monitoring Claude/Codex sessions in tmux
- Sending input to interactive terminal applications
- Scraping output from long-running processes in tmux
- Navigating tmux panes/windows programmatically
- Checking on background work in existing sessions
2026-01-17 11:52:50 +00:00
## When NOT to Use
2026-01-17 11:52:50 +00:00
**DON'T use this skill when:**
2026-01-17 11:52:50 +00:00
- Running one-off shell commands → use `exec` tool directly
- Starting new background processes → use `exec` with `background:true`
- Non-interactive scripts → use `exec` tool
- The process isn't in tmux
- You need to create a new tmux session → use `exec` with `tmux new-session`
2026-01-17 11:52:50 +00:00
## Example Sessions
2026-01-17 11:52:50 +00:00
| Session | Purpose |
| ----------------------- | --------------------------- |
| `shared` | Primary interactive session |
| `worker-2` - `worker-8` | Parallel worker sessions |
2026-01-17 11:52:50 +00:00
## Common Commands
2026-01-17 11:52:50 +00:00
### List Sessions
2026-01-17 11:52:50 +00:00
```bash
tmux list-sessions
tmux ls
```
2026-01-17 11:52:50 +00:00
### Capture Output
```bash
# Last 20 lines of pane
tmux capture-pane -t shared -p | tail -20
2026-01-17 11:52:50 +00:00
# Entire scrollback
tmux capture-pane -t shared -p -S -
2026-01-17 11:52:50 +00:00
# Specific pane in window
tmux capture-pane -t shared:0.0 -p
```
2026-01-17 11:52:50 +00:00
### Send Keys
2026-01-17 11:52:50 +00:00
```bash
# Send text (doesn't press Enter)
tmux send-keys -t shared "hello"
# Send text + Enter
tmux send-keys -t shared "y" Enter
# Send special keys
tmux send-keys -t shared Enter
tmux send-keys -t shared Escape
tmux send-keys -t shared C-c # Ctrl+C
tmux send-keys -t shared C-d # Ctrl+D (EOF)
tmux send-keys -t shared C-z # Ctrl+Z (suspend)
```
2026-01-17 11:52:50 +00:00
### Window/Pane Navigation
2026-01-17 11:52:50 +00:00
```bash
# Select window
tmux select-window -t shared:0
2026-01-17 11:52:50 +00:00
# Select pane
tmux select-pane -t shared:0.1
2026-01-17 11:52:50 +00:00
# List windows
tmux list-windows -t shared
```
### Session Management
2026-01-17 11:52:50 +00:00
```bash
# Create new session
tmux new-session -d -s newsession
2026-01-17 11:52:50 +00:00
# Kill session
tmux kill-session -t sessionname
2026-01-17 11:52:50 +00:00
# Rename session
tmux rename-session -t old new
```
2026-01-17 11:52:50 +00:00
## Sending Input Safely
For interactive TUIs (Claude Code, Codex, etc.), split text and Enter into separate sends to avoid paste/multiline edge cases:
```bash
tmux send-keys -t shared -l -- "Please apply the patch in src/foo.ts"
sleep 0.1
tmux send-keys -t shared Enter
```
## Claude Code Session Patterns
### Check if Session Needs Input
2026-01-17 11:52:50 +00:00
```bash
# Look for prompts
tmux capture-pane -t worker-3 -p | tail -10 | grep -E "|Yes.*No|proceed|permission"
2026-01-17 11:52:50 +00:00
```
### Approve Claude Code Prompt
```bash
# Send 'y' and Enter
tmux send-keys -t worker-3 'y' Enter
2026-01-17 11:52:50 +00:00
# Or select numbered option
tmux send-keys -t worker-3 '2' Enter
```
2026-01-17 11:52:50 +00:00
### Check All Sessions Status
2026-01-17 11:52:50 +00:00
```bash
for s in shared worker-2 worker-3 worker-4 worker-5 worker-6 worker-7 worker-8; do
echo "=== $s ==="
tmux capture-pane -t $s -p 2>/dev/null | tail -5
done
```
2026-01-17 11:52:50 +00:00
### Send Task to Session
2026-01-17 11:52:50 +00:00
```bash
tmux send-keys -t worker-4 "Fix the bug in auth.js" Enter
2026-01-17 11:52:50 +00:00
```
## Notes
- Use `capture-pane -p` to print to stdout (essential for scripting)
- `-S -` captures entire scrollback history
- Target format: `session:window.pane` (e.g., `shared:0.0`)
- Sessions persist across SSH disconnects