
Using Tmux For Interactive Commands
Run interactive CLI commands in tmux panes so agents can send keystrokes and read output.
Install
npx skills add https://github.com/obra/superpowers-lab --skill using-tmux-for-interactive-commandsWhat is this skill?
- tmux pane lifecycle for long-running commands.
- Send keys and capture scrollback safely.
- Pairs with Superpowers debugging workflows.
Adoption & trust: 349 installs on skills.sh; 364 GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Lark Drivelarksuite/cli
Lark Sharedlarksuite/cli
Lark Minuteslarksuite/cli
Tzstxixu-me/skills
Runcomfy Cliagentspace-so/runcomfy-agent-skills
Caveman Helpjuliusbrussee/caveman
Journey fit
Common Questions / FAQ
Is Using Tmux For Interactive Commands safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Using Tmux For Interactive Commands
# Using tmux for Interactive Commands ## Overview Interactive CLI tools (vim, interactive git rebase, REPLs, etc.) cannot be controlled through standard bash because they require a real terminal. tmux provides detached sessions that can be controlled programmatically via `send-keys` and `capture-pane`. ## When to Use **Use tmux when:** - Running vim, nano, or other text editors programmatically - Controlling interactive REPLs (Python, Node, etc.) - Handling interactive git commands (`git rebase -i`, `git add -p`) - Working with full-screen terminal apps (htop, etc.) - Commands that require terminal control codes or readline **Don't use for:** - Simple non-interactive commands (use regular Bash tool) - Commands that accept input via stdin redirection - One-shot commands that don't need interaction ## Quick Reference | Task | Command | |------|---------| | Start session | `tmux new-session -d -s <name> <command>` | | Send input | `tmux send-keys -t <name> 'text' Enter` | | Capture output | `tmux capture-pane -t <name> -p` | | Stop session | `tmux kill-session -t <name>` | | List sessions | `tmux list-sessions` | ## Core Pattern ### Before (Won't Work) ```bash # This hangs because vim expects interactive terminal bash -c "vim file.txt" ``` ### After (Works) ```bash # Create detached tmux session tmux new-session -d -s edit_session vim file.txt # Send commands (Enter, Escape are tmux key names) tmux send-keys -t edit_session 'i' 'Hello World' Escape ':wq' Enter # Capture what's on screen tmux capture-pane -t edit_session -p # Clean up tmux kill-session -t edit_session ``` ## Implementation ### Basic Workflow 1. **Create detached session** with the interactive command 2. **Wait briefly** for initialization (100-500ms depending on command) 3. **Send input** using `send-keys` (can send special keys like Enter, Escape) 4. **Capture output** using `capture-pane -p` to see current screen state 5. **Repeat** steps 3-4 as needed 6. **Terminate** session when done ### Special Keys Common tmux key names: - `Enter` - Return/newline - `Escape` - ESC key - `C-c` - Ctrl+C - `C-x` - Ctrl+X - `Up`, `Down`, `Left`, `Right` - Arrow keys - `Space` - Space bar - `BSpace` - Backspace ### Working Directory Specify working directory when creating session: ```bash tmux new-session -d -s git_session -c /path/to/repo git rebase -i HEAD~3 ``` ### Helper Wrapper For easier use, see `/home/jesse/git/interactive-command/tmux-wrapper.sh`: ```bash # Start session /path/to/tmux-wrapper.sh start <session-name> <command> [args...] # Send input /path/to/tmux-wrapper.sh send <session-name> 'text' Enter # Capture current state /path/to/tmux-wrapper.sh capture <session-name> # Stop /path/to/tmux-wrapper.sh stop <session-name> ``` ## Common Patterns ### Python REPL ```bash tmux new-session -d -s python python3 -i tmux send-keys -t python 'import math' Enter tmux send-keys -t python 'print(math.pi)' Enter tmux capture-pane -t python -p # See output tmux kill-session -t python ``` ### Vim Editing ```bash tmux new-session -d -s vim vim /tmp/file.txt sleep 0.3 # Wait for vim to start tmux send-keys -t vim 'i' 'New content' Escape ':wq' Enter # File is now saved ``` ### Interactive Git Rebase ```bash tmux new-session -d -s rebase -c /repo/path git rebase -i HEAD~3 sleep 0.5 tmux capture-pane -t rebase -p # See rebase editor # Send commands to modify rebase instructions tmux send-keys -t rebase 'Down' 'Home' 'squash' Escape tmux send-keys -t rebase ':wq' Enter ``` ## Common Mistakes ### Not Waiting After Session Start **Problem:** Capturing immediately after `new-session` shows blank screen **Fix:** Add brief sleep (100-500ms) before first capture ```b