원클릭으로
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: