tmux

star 153

Manage tmux terminal sessions

gebruder By gebruder schedule Updated 5/1/2026

name: tmux description: Manage tmux terminal sessions disable-model-invocation: true metadata: wirken: requires: bins: [tmux] permissions: tools: allow: [exec] egress: mode: deny inference: allow: ["*"]


Tmux

Manage tmux sessions, windows, and panes.

Sessions

  • List: tmux ls
  • New: tmux new-session -d -s <name>
  • Kill: tmux kill-session -t <name>
  • Send command: tmux send-keys -t <session> '<command>' Enter
  • Capture output: tmux capture-pane -t <session> -p

Windows and panes

  • New window: tmux new-window -t <session>
  • Split horizontal: tmux split-window -h -t <session>
  • Split vertical: tmux split-window -v -t <session>
  • List windows: tmux list-windows -t <session>

Tips

  • Use tmux send-keys + tmux capture-pane to run commands and read output in background sessions
  • Always check tmux ls before creating new sessions
Install via CLI
npx skills add https://github.com/gebruder/wirken --skill tmux
Repository Details
star Stars 153
call_split Forks 2
navigation Branch main
article Path SKILL.md
More from Creator