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/capture-workflow.sh

164 tokens · o200k_base · 491 bytes

Source excerpt starting at line 1.
#!/usr/bin/env bashset -euo pipefail if [[ -z "${1:-}" ]]; then  printf 'Usage: %s <surface> [output-directory]\n' "${0##*/}" >&2  exit 2fi SURFACE="$1"OUT_DIR="${2:-./browser-artifacts}"mkdir -p "$OUT_DIR" TS="$(date +%Y%m%d-%H%M%S)"cmux browser --surface "$SURFACE" snapshot --interactive > "$OUT_DIR/snapshot-$TS.txt"cmux browser --surface "$SURFACE" screenshot > "$OUT_DIR/screenshot-$TS.b64" echo "Wrote: $OUT_DIR/snapshot-$TS.txt"echo "Wrote: $OUT_DIR/screenshot-$TS.b64" 
Referenced from SKILL.md