ワンクリックで
tmux
Understand window and pane layout of tmux and use that context to answer questions like "what is happening in the bottom pane?"
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Understand window and pane layout of tmux and use that context to answer questions like "what is happening in the bottom pane?"
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | tmux |
| description | Understand window and pane layout of tmux and use that context to answer questions like "what is happening in the bottom pane?" |
This skill enables Claude to understand and interact with tmux panes in the user's active terminal session. Claude can identify pane positions, read pane contents, and respond to spatial references like "left pane" or "bottom pane."
Claude uses two commands to understand the tmux window structure:
Get pane list with active status:
tmux list-panes
Output format:
0: [175x62] [history 398/2000, 288087 bytes] %1
1: [98x37] [history 91/2000, 125313 bytes] %14
2: [98x24] [history 1886/2000, 1548986 bytes] %17 (active)
Get layout structure:
tmux display-message -p '#{window_layout}'
Output format:
00ef,274x63,0,0{175x63,0,0,1,98x63,176,0[98x38,176,0,14,98x24,176,39,17]}
This layout string encodes:
[...] and horizontal {...} splits# Capture the active pane
tmux capture-pane -p
# Capture a specific pane by ID
tmux capture-pane -p -t %14
# Capture with scrollback history
tmux capture-pane -p -S -1000
When the user references panes spatially (e.g., "left pane", "top pane", "bottom right"):
tmux list-panes and tmux display-message -p '#{window_layout}'{horizontal} splits and [vertical] splitstmux capture-pane -p -t %ID with the identified pane IDTwo panes side-by-side:
Two panes stacked:
Complex layouts (3+ panes):
User: "Check the error in the left pane" Claude process:
tmux list-panes and tmux display-message -p '#{window_layout}'tmux capture-pane -p -t %1User: "What's running in the bottom pane?" Claude process: