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

templates/form-automation.sh

144 tokens · o200k_base · 468 bytes

Source excerpt starting at line 1.
#!/usr/bin/env bashset -euo pipefail if [[ -z "${1:-}" || -z "${2:-}" ]]; then  printf 'Usage: %s <url> <surface>\n' "${0##*/}" >&2  exit 2fi URL="$1"SURFACE="$2" cmux browser --surface "$SURFACE" goto "$URL"cmux browser --surface "$SURFACE" get urlcmux browser --surface "$SURFACE" wait --load-state complete --timeout-ms 15000cmux browser --surface "$SURFACE" snapshot --interactive echo "Now run fill/click commands using refs from the snapshot above." 
Referenced from SKILL.md