From cmux-skills
Read, check, or re-check terminal pane output via cmux. Triggered by any mention of a pane — reading, listing, inspecting, debugging, or re-checking after a previous read (e.g., still failing, not fixed yet, check again, is it done).
How this skill is triggered — by the user, by Claude, or both
Slash command
/cmux-skills:paneThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read terminal pane output using cmux.
Read terminal pane output using cmux.
The cmux command must be installed and available in PATH. This skill is
designed for use with the cmux terminal multiplexer.
The user invoked this with: $ARGUMENTS
Arguments can be:
<number>: read full content from that pane<number> last: read only the last command and its output from that paneBased on the user's intent, choose one of two modes:
If $ARGUMENTS is empty or not provided, list available panes:
cmux list-panes
Show the results and let the user know they can run /pane <number> to
read a specific pane, or /pane <number> last for the last command only.
If a pane number is provided without last, read the full content:
SKILL_DIR="${CLAUDE_SKILL_DIR:-.}" && ${SKILL_DIR}/scripts/read-pane.sh N
Replace N with the pane number from $ARGUMENTS.
If a pane number is provided with last, extract only the last
command and its output:
SKILL_DIR="${CLAUDE_SKILL_DIR:-.}" && ${SKILL_DIR}/scripts/read-pane.sh N last
Replace N with the pane number.
Show the output in a fenced code block.
[selected] surface found): The pane number is
likely invalid. Run cmux list-panes and show available panes./pane -- list all available panes/pane 2 -- read full content from pane 2/pane 2 last -- read only the last command and output from pane 2Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub take0x/cmux-skills --plugin cmux-skills