Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
← Back to list

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-browser CLI 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

  1. "Log into the site and confirm we reach the dashboard" → open → snapshot -i → fill → click → wait --url
  2. "Collect product names, prices, and links from this listing page" → snapshot, then loop get text / get attr href
  3. "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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
↓ Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/spencermarx/open-code-review /tmp/open-code-review
  3. Copy the skill folder: mkdir -p ~/.claude/skills && cp -r /tmp/open-code-review/.claude/skills/browser ~/.claude/skills/
  4. Install the agent-browser CLI it depends on (see the claude-flow docs) and verify with agent-browser --help.
  5. Restart Claude Code and try /browser or a prompt like "scrape this page" to confirm the skill activates.
View source on GitHub ↗License: Apache-2.0