Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
dev-browser logo

dev-browser

dev-browser-marketplace

OtherClaude Codeby jtsang4

Summary

Browser automation skill with persistent page state for developers and AI agents

Install to Claude Code

/plugin install dev-browser@dev-browser-marketplace

Run in Claude Code. Add the marketplace first with /plugin marketplace add jtsang4/dev-browser if you haven't already.

README.md

<p align="center"> <img src="assets/header.png" alt="Dev Browser - Browser automation for agents" width="100%"> </p>

A browser automation tool for coding agents (and regular agents).

Key features:

  • Persistent pages - Navigate once, interact across multiple scripts
  • Flexible execution - Full scripts when possible, step-by-step when exploring
  • LLM-friendly DOM snapshots - Structured page inspection optimized for AI

Prerequisites

Installation

Claude Code (plugin)

/plugin marketplace add sawyerhood/dev-browser
/plugin install dev-browser@sawyerhood/dev-browser

Restart Claude Code after installation.

Any agent

Install CLI globally:

pnpm add -g @jtsang/dev-browser-cli
# or: npm install -g @jtsang/dev-browser-cli

Optional: copy the skill to your agent skills directory:

SKILLS_DIR=~/.codex/skills  # e.g. ~/.claude/skills, ~/.codex/skills

mkdir -p $SKILLS_DIR
git clone https://github.com/sawyerhood/dev-browser /tmp/dev-browser-skill
cp -r /tmp/dev-browser-skill/skills/dev-browser $SKILLS_DIR/dev-browser
rm -rf /tmp/dev-browser-skill

Start daemon when needed:

dev-browser daemon ensure --mode launch --json
# optional: choose browser engine explicitly (default: patchright)
dev-browser daemon ensure --mode launch --engine playwright --json

Launch mode stores profile data per engine under ~/.dev-browser/data/profiles/launch/browser-data/<engine>.

Chrome Extension (Optional)

Use this to control your existing Chrome browser (sessions, bookmarks, extensions).

Installation:

1. Download extension.zip from the latest release 2. Unzip the file to a permanent location (e.g., ~/.dev-browser-extension) 3. Open Chrome and go to chrome://extensions 4. Enable "Developer mode" (toggle in top right) 5. Click "Load unpacked" and select the unzipped extension folder

Using the extension:

1. Click the Dev Browser extension icon in Chrome's toolbar 2. Toggle it to "Active" - this enables browser control 3. Ask your agent to connect to Chrome (e.g., "connect to my Chrome" or "use the extension")

When active, your agent can control existing Chrome tabs with your logged-in sessions.

Claude Code permissions (optional)

To skip permission prompts, add to ~/.claude/settings.json:

{
  "permissions": {
    "allow": ["Skill(dev-browser:dev-browser)", "Bash(dev-browser:*)"]
  }
}

Or run with claude --dangerously-skip-permissions (skips all prompts).

Usage

Use from your agent prompt:

> "Open localhost:3000 and verify the signup flow works"

> "Go to the settings page and figure out why the save button isn't working"

Benchmarks

| Method | Time | Cost | Turns | Success | | ----------------------- | ------- | ----- | ----- | ------- | | Dev Browser | 3m 53s | $0.88 | 29 | 100% | | Playwright MCP | 4m 31s | $1.45 | 51 | 100% | | Playwright Skill | 8m 07s | $1.45 | 38 | 67% | | Claude Chrome Extension | 12m 54s | $2.81 | 80 | 100% |

_See dev-browser-eval for methodology._

How It's Different

| Approach | How It Works | Tradeoff | | ---------------------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------------ | | Playwright MCP | Observe-think-act loop with individual tool calls | Simple but slow; each action is a separate round-trip | | Playwright Skill | Full scripts that run end-to-end | Fast but fragile; scripts start fresh every time | | Dev Browser | Stateful server + agentic script execution | Best of both: persistent state with flexible execution |

License

MIT

Author

Sawyer Hood

Related plugins

Browse all →