cmux-browser

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗

End-user browser automation with cmux. Use when you need to open sites, inspect or interact with browser surfaces, wait for page state, and extract data without stealing focus.

skills/cmux-browser/SKILL.md

Download bundle ↓
main · 6f118af13 bundle filesScanned 2026-09-15

references/snapshot-refs.md

306 tokens · o200k_base · 1,237 bytes

Source excerpt starting at line 1.
# Snapshot and Refs Instead of dumping the DOM and guessing selectors, snapshot the page and act on the returned refs (`e1`, `e2`, ...). Related: [commands.md](commands.md), [../SKILL.md](../SKILL.md). Set `SURFACE` from creation or[surface discovery](surface-discovery.md) before taking the snapshot. ```bashcmux browser --surface "$SURFACE" snapshotcmux browser --surface "$SURFACE" snapshot --interactivecmux browser --surface "$SURFACE" snapshot --interactive --compact --max-depth 3 cmux browser --surface "$SURFACE" fill e10 "$APP_USERNAME"cmux browser --surface "$SURFACE" fill e11 "$APP_PASSWORD"cmux browser --surface "$SURFACE" click e12``` ## Ref lifecycle Refs are invalidated when page structure changes. Snapshot before interacting, re-snapshot after navigation and modal open/close, and use `--snapshot-after` on mutating actions so the fresh snapshot comes back with the result. ## Troubleshooting - **`not_found` / stale ref**: take a fresh `snapshot --interactive`.- **Element missing on visibility or timing**: `wait --selector "#target" --timeout-ms 10000`, or `scroll --dy 400`, then re-snapshot.- **Too many elements**: scope the snapshot, e.g. `snapshot --selector "form#checkout" --interactive`. 
Referenced from SKILL.md