Install
openclaw skills install ai-pa-browser-clawdbotHeadless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection
openclaw skills install ai-pa-browser-clawdbotFast browser automation via accessibility tree snapshots and ref-based element selection.
Use agent-browser (this skill) when:
Use built-in browser tool when:
agent-browser open <url>
agent-browser snapshot -i --json # Get interactive elements with refs
agent-browser click @e2
agent-browser fill @e3 "text"
agent-browser wait --load networkidle
agent-browser snapshot -i --json # Re-snapshot after navigation
# Navigate
agent-browser open <url> | back | forward | reload | close
# Snapshot
agent-browser snapshot -i --json # Always use these flags
agent-browser snapshot -s "#main" -i # Scope to selector
# Interact (use @refs from snapshot)
agent-browser click @e1
agent-browser fill @e2 "text"
agent-browser press Enter
agent-browser select @e3 "value"
agent-browser scroll down 500
# Wait
agent-browser wait --load networkidle
agent-browser wait --text "Success"
agent-browser wait @e1
# State
agent-browser state save auth.json
agent-browser state load auth.json
npm install -g agent-browser
agent-browser install # Download Chromium
agent-browser install --with-deps # Linux: + system deps
For complete command list: read skills/ai-pa-browser-clawdbot/references/commands.md
For examples: read skills/ai-pa-browser-clawdbot/references/examples.md