Skills now live in .agents/skills/ — the standard convention aligned with Pi, OpenAI Codex, and the Agent Skills spec. .claude/skills is a symlink back to .agents/skills/ so Claude Code still discovers them. Updated CLAUDE.md to document the setup.
12 lines
360 B
Bash
Executable file
12 lines
360 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
URL="${1:-https://example.com/form}"
|
|
SURFACE="${2:-surface:1}"
|
|
|
|
cmux browser "$SURFACE" goto "$URL"
|
|
cmux browser "$SURFACE" get url
|
|
cmux browser "$SURFACE" wait --load-state complete --timeout-ms 15000
|
|
cmux browser "$SURFACE" snapshot --interactive
|
|
|
|
echo "Now run fill/click commands using refs from the snapshot above."
|