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
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
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 47,000+ AI builders

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

Advertise here
agent-browser-plugin logo

agent-browser-plugin

ntindle/agent-browser-plugin

Otheropenclawby ntindle

Summary

OpenClaw plugin exposing 0 skills.

Install to Claude Code

openclaw plugin add ntindle/agent-browser-plugin

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

README.md

@ntindle/agent-browser-plugin

OpenClaw plugin that wraps agent-browser as native tools with automatic Cloudflare R2 upload for screenshots and video recordings.

Features

  • 14 native tools with intelligent grouping to minimize context usage
  • Automatic R2 upload for screenshots and recordings
  • GIF conversion via ffmpeg for GitHub embedding
  • Device emulation for mobile testing
  • Session management with idle cleanup
  • Escape hatch (ab_advanced) for 50+ raw actions

Installation

openclaw plugins install @ntindle/agent-browser-plugin

Tools

Core Tools

| Tool | Description | |------|-------------| | ab_open | Navigate to URL (creates session) | | ab_navigate | History: back, forward, reload | | ab_snapshot | Get accessibility tree with refs (@e1, @e2...) | | ab_click | Click element by ref or selector | | ab_fill | Fill input field | | ab_close | Close browser session |

Interaction & Query

| Tool | Description | |------|-------------| | ab_interact | hover, focus, drag, scroll, type, press, select, check/uncheck, dblclick | | ab_query | gettext, isvisible, isenabled, ischecked, title, url, count |

Media

| Tool | Description | |------|-------------| | ab_screenshot | Screenshot with optional device emulation, R2 upload | | ab_record_start | Start video recording | | ab_record_stop | Stop recording, convert to GIF (optional), upload to R2 |

Settings & Tabs

| Tool | Description | |------|-------------| | ab_tabs | Tab management: list, new, switch, close | | ab_settings | viewport size, device emulation |

Escape Hatch

| Tool | Description | |------|-------------| | ab_advanced | Run any of 50+ actions. Call with no action param to see the list. |

Configuration

{
  plugins: {
    entries: {
      "agent-browser": {
        enabled: true,
        config: {
          // R2 upload (optional - if not set, returns local paths only)
          r2: {
            accountId: "your-account-id",
            bucket: "your-bucket",
            publicDomain: "cdn.example.com"  // Optional
          },

          // Browser defaults
          headless: true,
          viewport: { width: 1280, height: 720 },

          // GIF conversion (optional)
          gif: {
            enabled: false  // Convert WebM → GIF before upload
          },

          // Video handling
          video: {
            speedUpAfter: 60,  // Speed up recordings longer than 60s
            maxSpeedup: 4      // Max 4x speedup
          },

          // Session management
          maxConcurrent: 3,
          idleTimeoutMs: 300000  // 5 min idle → auto-close
        }
      }
    }
  }
}

Environment Variables

  • R2_ACCESS_KEY_ID - Cloudflare R2 access key
  • R2_SECRET_ACCESS_KEY - Cloudflare R2 secret key

Usage Examples

# Basic browsing
ab_open(session: "qa", url: "https://example.com")
ab_snapshot(session: "qa")
ab_click(session: "qa", selector: "@e2")
ab_fill(session: "qa", selector: "@e3", value: "test@example.com")

# Mobile testing
ab_screenshot(session: "qa", label: "mobile-view", device: "iPhone 14")

# Advanced interactions
ab_interact(session: "qa", action: "scroll", value: "down", amount: 500)
ab_interact(session: "qa", action: "hover", selector: "@e5")
ab_interact(session: "qa", action: "press", value: "Enter")

# Query page state
ab_query(session: "qa", action: "gettext", selector: "@e1")
ab_query(session: "qa", action: "isvisible", selector: "#modal")
ab_query(session: "qa", action: "title")

# Tabs
ab_tabs(session: "qa", action: "new", url: "https://google.com")
ab_tabs(session: "qa", action: "list")
ab_tabs(session: "qa", action: "switch", index: 0)

# Recording
ab_record_start(session: "qa", label: "walkthrough")
# ... do stuff ...
ab_record_stop(session: "qa")
  → { localPath: "/tmp/...", remoteUrl: "https://cdn.../...", markdown: "![recording](...)" }

# Escape hatch for advanced actions
ab_advanced(session: "qa")  # Lists all 50+ available actions
ab_advanced(session: "qa", action: "wait", params: { selector: "#loading" })
ab_advanced(session: "qa", action: "cookies_get", params: {})
ab_advanced(session: "qa", action: "evaluate", params: { expression: "document.title" })

# Cleanup
ab_close(session: "qa")

Why This Plugin?

Built for QA agents that need to:

  • Embed visual evidence in GitHub PR reviews (GIFs embed inline, videos don't)
  • Test mobile viewports without manual setup
  • Reduce tool call overhead vs CLI (native tools are faster)
  • Have an escape hatch for advanced automation

Development

bun install
bun test

License

MIT

Related plugins

Browse all →