Browser Automation (agent-browser)
Drive a real web browser from the CLI using AI-optimized accessibility snapshots and element refs (@e1).
AutomationIntermediate★ 367⑂ 33AI score 8/10Last updated: Jul 28, 2026
What it does
- Uses the
agent-browserCLI to open pages, click, fill forms, screenshot, and wait on conditions. - Instead of dumping the whole DOM, it takes accessibility-tree snapshots (
snapshot -i) and interacts via element refs (@e1, @e2), cutting context dramatically. - Supports CSS selectors plus semantic locators by role, label, or testid.
- Isolated sessions (
--session) enable parallel work and shared auth state; integrates with claude-flow memory and hooks.
Who it's for
- Anyone who wants Claude to handle repetitive web chores: logins, form submissions, data collection.
- Developers prototyping scraping or lightweight E2E check scripts.
- claude-flow / multi-agent users who need a browser tool.
Examples
- "Log into the site and confirm we reach the dashboard" → open → snapshot -i → fill → click → wait --url
- "Collect product names, prices, and links from this listing page" → snapshot, then loop
get text/get attr href - "Fill out the contact form and verify the success message" → fill three fields → click →
wait --text "Thank you"
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/spencermarx/open-code-review/HEAD/.claude/skills/browser/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/browser folder from the GitHub repo spencermarx/open-code-review into my ~/.claude/skills/browser/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/spencermarx/open-code-review /tmp/open-code-review && mkdir -p ~/.claude/skills && cp -r /tmp/open-code-review/.claude/skills/browser ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/spencermarx/open-code-review /tmp/open-code-review - Copy the skill folder:
mkdir -p ~/.claude/skills && cp -r /tmp/open-code-review/.claude/skills/browser ~/.claude/skills/ - Install the
agent-browserCLI it depends on (see the claude-flow docs) and verify withagent-browser --help. - Restart Claude Code and try
/browseror a prompt like "scrape this page" to confirm the skill activates.
View source on GitHub ↗License: Apache-2.0