Skip to content
OpenSmartRoute
Skillv1.0.0

browser-tools

Security wrapper over the upstream agent-browser skill, adding URL blocklisting, rate limiting, robots.txt enforcement, and scraping guardrails. Use when automating browser workflows that need safety

by yonatangross(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from yonatangross/orchestkit (src/skills/browser-tools/SKILL.md). Install upstream with npx skills add yonatangross/orchestkit --skill browser-tools. Copyright stays with the author (MIT).

Browser Tools — Security Wrapper

OrchestKit security wrapper for agent-browser. For command reference and usage patterns, use the upstream agent-browser skill directly. This skill adds safety guardrails only.

Command docs: Refer to the upstream agent-browser skill for the full command reference (50+ commands: interaction, wait, capture, extraction, storage, semantic locators, tabs, debug, mobile, network, cookies, state, vault).

Upstream coverage (do not restate)

These topics belong to the vendor. Read them at the source; do not copy them back into this skill.

Topic First-party source
CLI command reference, snapshot and ref loop, waits, auth options, eval, config file agent-browser skill · https://github.com/vercel-labs/agent-browser/blob/main/skills/agent-browser/SKILL.md
Electron and desktop-app automation over CDP (connect, --cdp, webviews, tabs) https://github.com/vercel-labs/agent-browser/blob/main/skill-data/electron/SKILL.md
Slack workspace navigation and extraction recipes https://github.com/vercel-labs/agent-browser/blob/main/skill-data/slack/SKILL.md
Running headless in a Vercel Sandbox microVM (deps, snapshots, cron) vercel:vercel-sandbox skill · https://github.com/vercel-labs/agent-browser/blob/main/skill-data/vercel-sandbox/SKILL.md
Exploratory QA sweep with repro evidence (issue taxonomy, report template) dogfood skill · https://github.com/vercel-labs/agent-browser/blob/main/skill-data/dogfood/SKILL.md
Named .localhost dev URLs ork:portless skill · https://github.com/vercel-labs/portless

Our delta over all of the above: references/ork-delta.md, covering where the safety hook does and does not apply, the shared rate-limit budget, and the local-URL policy.

Decision Tree

# Fallback decision tree for web content
# 1. Try WebFetch first (fast, no browser overhead)
# 2. If empty/partial -> Try Tavily extract/crawl
# 3. If SPA or interactive -> use agent-browser
# 4. If login required -> authentication flow + state save
# 5. If dynamic -> wait @element or wait --text

Local Dev URLs

Use Portless (npm i -g portless) for stable local dev URLs instead of guessing ports. When Portless is running, navigate to myapp.localhost instead of localhost:3000. Our safety hook already allows *.localhost subdomains via ORCHESTKIT_AGENT_BROWSER_ALLOW_LOCALHOST.

# With Portless: stable, named URLs
agent-browser open "https://myapp.localhost"

# Without: fragile port guessing
agent-browser open "http://localhost:3000"  # which app is this?

New in 2026-04 to 2026-09 (agent-browser 0.23 to 0.36.0)

0.36.0 (2026-09-01, from the release notes, not yet exercised here): experimental WebMCP support for discovering and invoking tools the current page exposes (frame-aware selection, detached results, cancellation, bounded metadata and output), plus a WebMCP generation skill for turning page workflows into validated page tools. Drops the obsolete Lightpanda session-timeout launch argument.

0.35.1: diff snapshot ref numbering resets per diff, refs are invalidated across navigations, and the previous refs survive a failed diff. The streaming url event narrowed to the active tab's main frame: it now emits for full-document, History API and fragment navigation, rebinds after an active-tab change, and ignores child-frame and background-tab navigation.

0.35.0: --ca-cert <path> (also AGENT_BROWSER_CA_CERT, and caCert in config/MCP) imports a PEM bundle or DER certificate into an isolated NSS trust store, the targeted alternative to --ignore-https-errors behind an SSL-inspecting proxy: hostname, validity and unrelated-authority checks stay on. The CA persists across commands in a session and --no-ca-cert clears it. Linux-only, needs certutil, and is rejected with --profile, --cdp, --auto-connect, providers, Lightpanda or --ignore-https-errors. Also adds the bundled protected-vercel-deployments skill for reaching SSO-protected Vercel deployments via short-lived Trusted Sources OIDC tokens instead of a static bypass secret.

0.34.0: persistent session-to-tab binding for shared Chrome sessions. Named --cdp/--auto-connect sessions remember their CDP target across daemon restarts, CDP target ids work as tab refs, and --pin-tab makes the binding strict so an externally closed tab returns a stable tab_gone error instead of silently retargeting. JSON output gains data.targetId and optional data.lastUrl. Also fixes parallel sessions hijacking each other's tabs.

Corrected 2026-08-28. This section previously credited 0.34.0 with pushstate, removeinitscript, --enable react-devtools, profiler, plugin add|list|show|run, confirm/deny, --webgpu and the MCP --tools surface. Checked against the upstream CHANGELOG, pushstate and --init-script landed in 0.27.0, the plugin system and the MCP --tools <profiles> surface in 0.28.0, and --webgpu in 0.31.2; removeinitscript and confirm/deny appear nowhere in it. Only --pin-tab/--no-pin-tab was actually 0.34.0. The rest of this file already dated pushstate to v0.27 in two other places, so the file contradicted itself.

Accessibility audits (0.33.0):

  • agent-browser a11y [url] — axe-core accessibility audit as a CLI command and a matching MCP tool. Filter by WCAG tag, scope to a selector, and get iframe-aware text or JSON results. The audit engine is embedded, so it runs offline and is CSP-safe (no third-party script injection into the page under test).
  • Pairs with the accessibility-specialist agent and the testing-e2e axe-core guidance: use this for a fast pre-commit sweep, and Playwright + axe for assertions inside a suite.

Session restore + read (0.30 → 0.31.1):

  • agent-browser read [url] (0.30.0) — agent-readable text extraction as a CLI command and MCP tool. URL reads prefer Markdown (try .md and nearby llms.txt), support outlines, filters, raw and JSON output, headers, and domain/output safeguards; omit the URL to read the rendered active-tab DOM with current browser state.
  • Restore workflow (0.31.0)--restore / --restore-save, restore-validation flags, worktree-scoped session id / session info, and --namespace give agent runs stable, isolated, auto-restored browser state without hand-managing state files. Session lifecycle hardened with daemon/browser compatibility checks and safer auto-save that won't overwrite good state after a failed restore.
  • wait --url glob patterns (0.30.1)wait --url / waitforurl honor globs like **/dashboard against the full active URL.
  • React renderer fix (0.31.1) — the react commands now pick the react-dom renderer instead of hardcoding renderer id 1, fixing an empty tree read on Next.js 16.3 Turbopack.

Sandbox helpers (0.29):

  • @agent-browser/sandbox — companion helper package for running agent-browser headless inside a Vercel Sandbox / eve ephemeral env (provisions Chrome + the native daemon for you, no host browser needed). Hook's URL/rate/robots checks still apply to whatever the sandboxed session navigates to.

Built-in MCP server (0.28):

  • agent-browser --mcp — runs agent-browser as a Model Context Protocol server over stdio, exposing typed tools (open/snapshot/find/click/extract/...) with paginated capability discovery. Lets you wire browser automation MCP-native — directly into an MCP client — without going through the CLI Bash wrapper. Note: URL policy comes from sandbox.network in the operator scope (see Safety Guardrails below), which covers the MCP path and the CLI path equally; the per-path Bash hook that once guarded only the CLI was retired in #3835.

React introspection + perf observability (0.27):

  • react tree / react inspect <fiberId> / react renders start|stop / react suspense — first-class React DevTools integration via a vendored MIT-licensed hook embedded in the binary (zero runtime deps). Component-tree visibility, per-fiber props/hooks/state inspection, render profiling with mount/re-render counts and change details, Suspense boundary classification with root-cause grouping. Hook treats fiber state dumps as sensitive — gitignore captures.
  • vitals [url] — reports Core Web Vitals (LCP, CLS, TTFB, FCP, INP) plus React hydration phases for any page. Useful for perf gates in CI.
  • pushstate <url> — client-side SPA navigation without a full page load. Pairs with react renders to measure SPA route transitions without resetting profiling state.
  • --init-script <path> (repeatable, env AGENT_BROWSER_INIT_SCRIPTS) + --enable <feature> (repeatable, env AGENT_BROWSER_ENABLE) — register scripts before first navigation; --enable react-devtools is built-in. Hook treats arbitrary init scripts as code-execution surface — same trust model as skills get.
  • network route --resource-type <csv> — filter intercepted requests by CDP resource type (document, script, xhr, fetch, image, ...). Lets you mock only API calls without breaking page assets.
  • cookies set --curl <file> — auto-detects JSON, cURL, and Cookie-header formats for bulk cookie import. Hook still treats cookie-set as auth-state injection.
  • Dashboard behind a reverse proxy — observability dashboard now works from proxied origins via same-origin proxy. Enables path-based routing for shared dev environments.
  • Fixed doctor generating duplicate check IDs when invoked multiple times in the same process.
  • npm publishing moved to GitHub Actions OIDC trusted publishing — no manually managed npm tokens upstream.

Diagnostic tooling + stable IDs (0.26):

  • agent-browser doctor — one-shot environment + Chrome + daemon + config + security + provider + network check. Flags: --offline, --quick, --fix, --json. Run before opening an issue to attach a structured snapshot.
  • Stable tab identifiers — tabs now use stable string IDs (t1, t2, ...) with optional memorable labels via --label. Survives daemon restart; replaces brittle index-based references.
  • core skill expanded — comprehensive built-in usage guide covering snapshot-ref-act loops, reading, interaction, waiting, and troubleshooting.
  • Config JSON Schema$schema reference enables IDE auto-completion and validation against https://agent-browser.dev/schema.json.
  • Fixed --state flag not loading saved cookies/localStorage at launch; --help now leads with the skills section.

Skill discovery & chat (0.25):

  • agent-browser skills list/get <name> — discover and install capability packs on-demand. Hook treats first-party skills as trusted; warns on arbitrary third-party skill fetches.
  • agent-browser chat — single-shot or REPL natural-language driving over the same daemon. Hook pipes transcripts through the same URL/rate/robots checks as scripted commands.

Accessibility-first locators (0.24):

  • find / getByRole — semantic locator via CDP accessibility tree (role + name) instead of brittle CSS/ref selectors. Prefer these in new scripts; they survive markup churn and are the locator path assumed by chat.
  • snapshot --urls — emits resolved URLs alongside refs, removing a round-trip for link-extraction flows.
  • --annotate — overlays ref IDs / role labels on screenshots for debugging.

Cloud providers (0.25):

  • --provider agentcore — AWS Bedrock AgentCore cloud browser. Hook treats remote providers as egress surfaces — same URL/robots rules apply, but network routing is disabled (remote scope).
  • Browserless + AgentCore both honor AGENT_BROWSER_PROVIDER env var.

Dashboard (0.25):

  • Embedded dashboard bundled with the binary — no separate install. Open via agent-browser dashboard or the inspect CDP link. Still flagged as local-proxy attack surface by the hook.

Auto-dialog dismissal (0.23.1):

  • alert / beforeunload dialogs auto-dismissed by default. Opt out with --no-auto-dialog when a test needs to assert dialog content.

What's New (v0.17 → v0.22.2)

Breaking changes — update scripts now:

  • --full / -f moved from global to command-level (v0.21): use screenshot --full, NOT --full screenshot
  • Auth encryption format changed (v0.17): saved auth states from v0.16.x may not load
  • Auto-dialog dismissal (v0.23.1): alert/beforeunload dialogs are auto-dismissed by default, opt out with --no-auto-dialog

New commands:

Command Version Security Note
clipboard read/write/copy/paste v0.19 read accesses host clipboard — hook warns
inspect / get cdp-url v0.18 Opens local DevTools proxy — hook warns
batch --json [--bail] v0.21 Batch execute commands from stdin
network har start/stop [file] v0.21 HAR captures auth tokens — hook warns, treat output as sensitive
network request <id> v0.22 View full request/response detail
network requests --type/--method/--status v0.22 Filter network requests
dialog dismiss / dialog status v0.17/v0.22 Dismiss or check browser dialogs
upgrade v0.21.1 Self-update (auto-detects npm/Homebrew/Cargo)
find / getByRole v0.24 Semantic locators via CDP a11y tree
snapshot --urls / --annotate v0.24 URL-expanded snapshots, ref overlays
skills list/get v0.25 Capability pack discovery — hook warns on third-party
chat (single-shot / REPL) v0.25 NL driving; transcripts go through same safety checks
dashboard v0.25 Embedded debug UI — local proxy attack surface
react tree / react inspect / react renders / react suspense v0.27 React DevTools introspection — fiber state may contain sensitive props
vitals [url] v0.27 Core Web Vitals + React hydration phases
pushstate <url> v0.27 SPA client-side navigation without full reload

New flags:

Flag Scope Version
--engine lightpanda global v0.17
--screenshot-dir/quality/format screenshot v0.19
--provider browserless global v0.19
--idle-timeout <duration> global v0.20.14
--user-data-dir <path> Chrome v0.21
set viewport W H [scale] viewport v0.17.1 (retina)
--provider agentcore global v0.25 (AWS Bedrock AgentCore)
--annotate screenshot v0.24
--no-auto-dialog global v0.23.1
--init-script <path> (repeatable) global v0.27
--enable <feature> (repeatable) global v0.27 (built-in: react-devtools)
--resource-type <csv> network route v0.27
--curl <file> cookies set v0.27 (auto-detects JSON/cURL/Cookie-header)
--mcp global v0.28 (run as a stdio MCP server with typed tools)

Platform support: Brave auto-discovery (v0.20.7), Alpine Linux musl (v0.20.2), Lightpanda engine (v0.17), Browserless.io provider (v0.19), cross-origin iframe traversal (v0.22), AWS Bedrock AgentCore (v0.25).

Native Rust rewrite (v0.20): agent-browser is now 100% native Rust — the old Node.js/Playwright daemon (the "sidecar") is gone. It drives Chrome directly over CDP, so there is no Node runtime, no Playwright, and no separate browser-driver process to install or keep alive. Result: 99x smaller install (710→7 MB), 18x less memory (143→8 MB), 1.6x faster cold start.

Safety Guardrails (6 rules; URL policy is the sandbox's job)

The agent-browser-safety PreToolUse hook was retired 2026-08-31 (#3835 purge wave 1; shared/rules/cc-native-first.md purge rows). It only ever saw the Bash CLI path anyway; the MCP path (--mcp) and every other engine were structurally invisible to it. URL policy now lives where the OS enforces it, for every path at once:

{ "sandbox": { "enabled": true, "network": {
    "allowedDomains": ["your-targets.example"] } } }

in the operator's .claude/settings.json (setup phase 3.6 offers to write it; doctor's check-operator-permissions.sh audits it; a blocked navigation surfaces as CONNECT tunnel failed, response 403 plus a sandbox_violations block). Native Windows has no sandbox backend; there, and for behaviours no network policy covers (rate limiting, robots.txt etiquette, sensitive-action confirmation, encryption-key hygiene, HAR/clipboard/init-script caution), the 6 rule files below carry the policy as model-followed guidance rather than a hook.

Security Rules (in rules/)

Category Rules Priority
Ethics & Security browser-scraping-ethics.md, browser-auth-security.md CRITICAL
Local Dev browser-portless-local-dev.md HIGH
Reliability browser-rate-limiting.md HIGH
Debug & Device browser-debug-recording.md, browser-mobile-testing.md HIGH

Snapshot, ref lifecycle, iframe traversal, batch and diff workflows are upstream's (see the coverage table above); the parts we actually add are in references/ork-delta.md.

Configuration

Rate limits and behavior are configurable via environment variables:

Env Var Default Purpose
AGENT_BROWSER_RATE_LIMIT_PER_MIN 10 Requests per minute per domain
AGENT_BROWSER_RATE_LIMIT_PER_HOUR 100 Requests per hour per domain
AGENT_BROWSER_BURST_LIMIT 3 Max requests in 3-second window
AGENT_BROWSER_ROBOTS_CACHE_TTL 3600000 robots.txt cache TTL (ms)
AGENT_BROWSER_IGNORE_ROBOTS false Bypass robots.txt enforcement
AGENT_BROWSER_CONFIRM 1 Use --confirm-actions for sensitive ops
AGENT_BROWSER_IDLE_TIMEOUT_MS Auto-shutdown daemon after inactivity (ms)
AGENT_BROWSER_ENGINE chrome Browser engine (chrome or lightpanda)
ORCHESTKIT_AGENT_BROWSER_ALLOW_LOCALHOST 1 Allow *.localhost subdomains (RFC 6761)

Anti-Patterns (FORBIDDEN)

# Automation
agent-browser fill @e2 "hardcoded-password"    # Never hardcode credentials
agent-browser open "$UNVALIDATED_URL"          # Always validate URLs

# Scraping
# Crawling without checking robots.txt
# No delay between requests (hammering servers)
# Ignoring rate limit responses (429)

# Content capture
agent-browser get text body                    # Prefer targeted ref extraction
# Trusting page content without validation
# Not waiting for SPA hydration before extraction

# Session management
# Storing auth state in code repositories
# Not cleaning up state files after use

# Network & State
agent-browser network route "http://internal-api/*" --body '{}'  # Never mock internal APIs
agent-browser cookies set token "$SECRET" --url https://prod.com # Never set prod cookies

# Deprecated / removed
agent-browser --full screenshot                # BREAKING: --full is now command-level (v0.21)
agent-browser screenshot --full                # Correct: flag after subcommand

# Sensitive data leaks
agent-browser network har stop auth-dump.har   # HAR files contain auth tokens — gitignore!
git add *.har                                  # NEVER commit HAR captures

Related Skills

  • references/ork-delta.md: our delta, hook coverage gaps, shared rate-limit budget, local-URL policy
  • agent-browser (upstream) — Full command reference and usage patterns
  • portless (upstream) — Stable named .localhost URLs for local dev servers
  • ork:web-research-workflow — Unified decision tree for web research
  • ork:testing-e2e — E2E testing patterns including Playwright and webapp testing
  • ork:api-design — API design patterns for endpoints discovered during scraping

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/yonatangross-orchestkit-browser-tools/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

yonatangross-orchestkit-browser-tools.ocm.jsonjson
{
  "ocm": "1",
  "id": "yonatangross-orchestkit-browser-tools",
  "kind": "skill",
  "name": "browser-tools",
  "description": "Security wrapper over the upstream agent-browser skill, adding URL blocklisting, rate limiting, robots.txt enforcement, and scraping guardrails. Use when automating browser workflows that need safety limits.",
  "publisher": "yonatangross",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "browser",
      "automation",
      "security",
      "rate-limiting",
      "scraping-ethics",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Security wrapper over the upstream agent-browser skill, adding URL blocklisting, rate limiting, robots.txt enforcement, and scraping guardrails. Use when automating browser workflows that need safety limits."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/yonatangross/orchestkit",
      "path": "src/skills/browser-tools/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/yonatangross/orchestkit/blob/HEAD/src/skills/browser-tools/SKILL.md",
      "key": "yonatangross/orchestkit/src/skills/browser-tools/SKILL.md"
    },
    "compatibility": "Claude Code 2.1.251+. Requires network access.",
    "allowed_tools": [
      "Read",
      "Glob",
      "Grep",
      "WebFetch",
      "WebSearch"
    ],
    "license": "MIT"
  },
  "instructions": "# Browser Tools — Security Wrapper\n\nOrchestKit security wrapper for `agent-browser`. **For command reference and usage patterns, use the upstream `agent-browser` skill directly.** This skill adds safety guardrails only.\n\n> **Command docs**: Refer to the upstream `agent-browser` skill for the full command reference (50+ commands: interaction, wait, capture, extraction, storage, semantic locators, tabs, debug, mobile, network, cookies, state, vault).\n\n## Upstream coverage (do not restate)\n\nThese topics belong to the vendor. Read them at the source; do not copy them back into this skill.\n\n| Topic",
  "cost": {
    "context_tokens": 4912
  }
}

Fetch it by URL: GET /api/v1/registry/yonatangross-orchestkit-browser-tools/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.