What problem does it solve?
This Skill enables you to manage multiple concurrent processes by using tmux to organize servers, long-running tasks, and agent orchestration across separate panes. It helps keep work isolated and visible without blocking the main chat.
Core Features & Use Cases
- Create and manage multiple tmux windows and panes to run different tasks in parallel.
- Send commands and text to specific panes, including multi-line instructions, while keeping sessions persistent.
- Use in development, testing, and operations workflows to orchestrate services and background processes without losing context.
Quick Start
Start a tmux session if not already running, create a new window named 'server-log', and send a command to that window:
- tmux new-window -n server-log -d
- tmux send-keys -t server-log "npm start" C-m
To interact with another pane, split panes and direct commands using -t targets, and use tmux commands as needed to monitor logs.