What problem does it solve? Interactive command-line programs running inside tmux sessions are hard to supervise programmatically: you cannot easily read their output, respond to prompts, or check whether a long-running job is waiting for confirmation. This Skill provides the commands and helper scripts to inspect, drive, and monitor tmux sessions and panes from an automated workflow. ## Core Features & Use Cases - Session and pane inspection: List sessions, windows, and panes, and capture pane output including full scrollback for review. - Input injection: Send literal text, Enter, and special keys like Ctrl-C or Escape to any target pane using the session:window.pane addressing format. - Prompt monitoring: Poll pane output for patterns such as confirmation prompts and respond only when the prompt is understood, using the included find-sessions.sh and wait-for-text.sh helpers. - Use Case: A background worker process in a detached tmux session pauses at a "proceed?" prompt. Use wait-for-text.sh to detect the prompt, capture the pane to verify context, then send "y" followed by Enter to let the job continue. ## Quick Start Ask the assistant to list the running tmux sessions and capture the recent output of a specific pane to check what it is waiting for.