What problem does it solve? Interactive command-line programs like REPLs, debuggers, and coding agents require a real TTY, which makes them hard to drive from automated scripts. This Skill lets you spawn, control, and monitor those interactive sessions through tmux without manual terminal work. ## Core Features & Use Cases - Session Management: Create isolated tmux sessions on private sockets, list running sessions, and clean them up when finished. - Input and Output Control: Send literal keystrokes or control keys to panes and capture scrollback history to read program output. - Output Waiting: Poll a pane for a regex or fixed string with a configurable timeout using the wait-for-text helper script. - Use Case: Launch five parallel coding agents (e.g., Codex) in separate tmux sessions, poll each pane for the shell prompt to detect completion, then capture the full output of finished sessions. ## Quick Start Start a detached tmux session on an isolated socket, send a command to it, and capture the pane output to see the result.