Stats
Actions
Tags
From tmux-expert
Quick tmux reference — show essential commands, keybindings, or help with a specific tmux topic
How this command is triggered — by the user, by Claude, or both
Slash command
/tmux-expert:tmux-helpThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# tmux Help Provide quick tmux help based on what the user asks. If no specific topic is given, show a general quick-reference. ## Steps 1. Determine what the user needs help with (sessions, windows, panes, config, plugins, or general). 2. If they ask about their current tmux state, gather information from the system. 3. Provide a focused, actionable response. ## Gathering System State If the user wants to know about their running tmux environment: ## Quick Reference When the user asks for general help, present this summary: ### Sessions ### Windows ### Panes ### Cop...
Provide quick tmux help based on what the user asks. If no specific topic is given, show a general quick-reference.
If the user wants to know about their running tmux environment:
tmux list-sessions 2>/dev/null || echo "No tmux server running"
tmux list-windows -a 2>/dev/null
tmux display-message -p "tmux #{version}" 2>/dev/null || tmux -V 2>/dev/null || echo "tmux not found"
test -f ~/.tmux.conf && echo "Config: ~/.tmux.conf exists" || echo "No ~/.tmux.conf found"
ls ~/.tmux/plugins/ 2>/dev/null && echo "TPM plugins installed" || echo "No TPM plugins directory"
When the user asks for general help, present this summary:
tmux new -s name Create named session
tmux ls List sessions
tmux attach -t name Attach to session
tmux kill-session -t name Kill session
prefix d Detach
prefix s Session chooser
prefix $ Rename session
prefix c New window
prefix n / p Next / Previous window
prefix 0-9 Jump to window
prefix w Window chooser
prefix , Rename window
prefix & Kill window
prefix % Split vertical (left/right)
prefix " Split horizontal (top/bottom)
prefix arrow Navigate panes
prefix z Zoom/unzoom pane
prefix x Kill pane
prefix ! Break pane to window
prefix Space Cycle layouts
prefix [ Enter copy mode
prefix ] Paste
/ or ? Search (vi mode)
v then y Select and copy (vi mode)
tmux source-file ~/.tmux.conf Reload config
tmux list-keys Show all bindings
tmux display-message -p "#{...}" Show format variable
tmux capture-pane -p Print pane to stdout
When the user asks about a specific topic, provide detailed guidance from the tmux-expert skill knowledge base. Cover:
.tmux.conf options with explanationsAlways include runnable commands the user can copy-paste.
npx claudepluginhub biodoia/biodoia-skills-marketplace --plugin tmux-expert