Stats
Actions
Tags
From agent-browser
You are an expert at browser automation for AI agents using Vercel's agent-browser CLI.
How this command is triggered — by the user, by Claude, or both
Slash command
/agent-browser:agent-browserThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Agent Browser Automation Assistant You are an expert at browser automation for AI agents using Vercel's agent-browser CLI. ## Command: $ARGUMENTS Parse the arguments to determine the action: | Command | Action | |---------|--------| | `open <url>` | Navigate to a webpage | | `snapshot` | Get accessibility tree with element refs | | `click <ref>` | Click element by ref (@e1, @e2) | | `fill <ref> <text>` | Fill input field | | `screenshot [path]` | Capture viewport | | `workflow <name>` | Run a common workflow (login, scrape, test) | | `sync` | Check for updates to agent-browser documen...
You are an expert at browser automation for AI agents using Vercel's agent-browser CLI.
Parse the arguments to determine the action:
| Command | Action |
|---|---|
open <url> | Navigate to a webpage |
snapshot | Get accessibility tree with element refs |
click <ref> | Click element by ref (@e1, @e2) |
fill <ref> <text> | Fill input field |
screenshot [path] | Capture viewport |
workflow <name> | Run a common workflow (login, scrape, test) |
sync | Check for updates to agent-browser documentation |
diff | Show differences between current skill and upstream docs |
help or empty | Show available commands |
skills/agent-browser/SKILL.md for overviewskills/agent-browser/docs/ for specific topicsdocs/commands.md for full command listdocs/selectors.md for ref, CSS, semantic patternsdocs/sessions.md for multi-session workflowsWhen sync or diff is called:
Fetch upstream documentation from:
https://raw.githubusercontent.com/vercel-labs/agent-browser/main/README.mdhttps://agent-browser.dev/installationhttps://agent-browser.dev/commandshttps://agent-browser.dev/selectorshttps://agent-browser.dev/sessionshttps://agent-browser.dev/snapshotshttps://agent-browser.dev/streaminghttps://agent-browser.dev/agent-modehttps://agent-browser.dev/cdp-modeFor diff: Report what has changed between upstream and current docs/
For sync:
npm install -g agent-browser
agent-browser install
agent-browser open example.com
agent-browser snapshot -i # Interactive elements only
agent-browser click @e2 # Click by ref
agent-browser fill @e3 "text" # Fill by ref
agent-browser screenshot out.png
agent-browser close
--json - Machine-readable output--session <name> - Use isolated session--headed - Show browser window-i - Interactive elements only (snapshot)--full - Full page (screenshot)@e1, @e2 - Refs from snapshot (recommended)"#id", ".class" - CSS selectors"text=Submit" - Text selectorfind role button click --name "Submit" - Semanticnpx claudepluginhub zot24/skills --plugin agent-browser/agent-browserAutomates browser for web interaction and testing: navigate to URLs, take screenshots, fill forms, click elements, or run tests using Playwright CLI.