
Cmux Ref
- 397 installs
- 23 repo stars
- Updated July 15, 2026
- manaflow-ai/cmux-skills
Helps with ai & agent building tasks.
About
cmux-ref is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- cmux-ref
- AI & Agent Building
- AI-coding skill
Cmux Ref by the numbers
- 397 all-time installs (skills.sh)
- +49 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #1,968 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/manaflow-ai/cmux-skills --skill cmux-refAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 397 |
|---|---|
| repo stars | ★ 23 |
| Last updated | July 15, 2026 |
| Repository | manaflow-ai/cmux-skills ↗ |
What it does
Helps with ai & agent building tasks.
Files
cmux Ref
Use this skill when the user pastes cmux topology identifiers and expects the agent to target that exact workspace, pane, surface, or window. Treat those identifiers as explicit routing context for later instructions.
What To Recognize
Users may paste any mix of these fields, in plain text, Markdown, JSON, YAML, shell-style assignments, or logs:
workspace_ref=workspace:1
workspace_id=D9C23F06-55C8-4EF6-96D2-F2531B3327A8
pane_ref=pane:2
pane_id=60495E4A-56E3-469D-A274-A7877F48B54D
surface_ref=surface:370
surface_id=661B301A-2423-44F1-B789-7AEA1021CFCERecognize these keys:
window_ref,window_idworkspace_ref,workspace_idpane_ref,pane_idsurface_ref,surface_id
Also recognize bare refs near user intent, such as workspace:1, pane:2, or surface:370.
Meaning
*_refvalues are short cmux refs such asworkspace:1,pane:2, andsurface:370. They are convenient for immediate CLI calls in the same cmux instance, but can be renumbered after state changes.*_idvalues are UUIDs for the same objects. Prefer them for identity checks and stale-ref recovery when both forms are available.- The most specific provided object is the default target:
surfacebeatspane,panebeatsworkspace, andworkspacebeatswindow. - A complete block describes a hierarchy. Do not mix a
surface_idfrom one pasted block with aworkspace_reffrom another unless the user clearly says they belong together.
Workflow
Step 1: Parse The Block
Extract keys case-insensitively. Accept = or : separators and ignore quotes, commas, and code fences.
Useful pattern:
\b(window|workspace|pane|surface)_(ref|id)\b\s*[:=]\s*["']?([A-Za-z0-9:-]+)["']?If the user provides only bare refs, bind the most specific one as the target:
workspace:1 pane:2 surface:370Step 2: Announce The Target
When taking action, say the exact target briefly:
I will target surface:370 in pane:2, workspace:1.If a UUID is present, keep it in your internal target record and include it when useful for disambiguation:
I will target surface:370 (661B301A-2423-44F1-B789-7AEA1021CFCE).Step 3: Verify Before Mutating
Before sending text, closing anything, moving surfaces, changing layout, or reading a screen for a non-current target, verify the target exists in the active cmux socket.
Use the current cmux CLI and request both refs and UUIDs:
cmux --json --id-format both tree --all
cmux --json --id-format both identify
cmux --json --id-format both list-pane-surfaces --workspace <workspace_ref_or_id>If a ref is stale but the UUID exists in tree --all, use the current ref associated with that UUID. If neither the ref nor UUID can be found, stop and ask the user for a fresh cmux ref block.
Step 4: Use Explicit Targets
Do not fall back to the visually focused workspace when the user pasted explicit refs. Pass the parsed workspace, pane, and surface to cmux commands.
Examples:
cmux read-screen --workspace workspace:1 --surface surface:370 --scrollback --lines 120
cmux send --workspace workspace:1 --surface surface:370 "npm test\n"
cmux new-surface --workspace workspace:1 --pane pane:2 --type terminal --focus false
cmux open ./report.html --workspace workspace:1 --pane pane:2 --no-focusIf the command accepts only one handle, use the most specific relevant handle. Prefer the UUID when the command accepts UUIDs and you have verified it maps to the intended object.
Ambiguity Rules
Ask one concise question only when the target cannot be inferred safely:
- Multiple unrelated ref blocks are pasted and the instruction says only "use this" or "that one".
- A workspace ref and surface ref are both present but verification shows they belong to different current hierarchies.
- The pasted identifiers are stale and no UUID match exists in
cmux --json --id-format both tree --all.
Do not ask when one complete block is present. Use the most specific target in that block.
Safety Rules
- User-provided cmux refs override caller environment variables and visual focus.
- Preserve both the ref and UUID in notes or scripts when available.
- Do not change focus just to verify or use a target. Prefer non-disruptive commands and
--focus falseor--no-focuswhen supported. - Do not close, move, or send input to a target until it has been verified in the current socket.
- Browser snapshot element refs are separate from cmux topology refs. Use
cmux-browserfor DOM or webview snapshot refs.
interface:
display_name: "cmux Ref"
short_description: "Interpret pasted cmux workspace, pane, surface, and window refs or UUIDs as explicit target context."
default_prompt: "Use this skill to parse pasted cmux_ref/cmux_id context such as workspace_ref, workspace_id, pane_ref, pane_id, surface_ref, or surface_id, then bind subsequent cmux actions to the exact target instead of relying on focus."