# Send Browser Automation V2 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "browser-automation-v2",
    "name": "Browser Automation V2",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/BodaFu/browser-automation-v2",
    "canonicalUrl": "https://clawhub.ai/BodaFu/browser-automation-v2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/browser-automation-v2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-automation-v2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "browser-manager.v2.js",
      "fetch-summary.js",
      "fill-form.js",
      "multi-pages.js",
      "search-google.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "browser-automation-v2",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T02:47:12.053Z",
      "expiresAt": "2026-05-08T02:47:12.053Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-automation-v2",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=browser-automation-v2",
        "contentDisposition": "attachment; filename=\"browser-automation-v2-2.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "browser-automation-v2"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/browser-automation-v2"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/browser-automation-v2",
    "downloadUrl": "https://openagent3.xyz/downloads/browser-automation-v2",
    "agentUrl": "https://openagent3.xyz/skills/browser-automation-v2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/browser-automation-v2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/browser-automation-v2/agent.md"
  }
}
```
## Documentation

### Browser Automation v2

Enterprise-grade browser automation for OpenClaw with robust resource management.

### Features

✅ Automatic tab cleanup - No more tab accumulation
✅ Timeout & retry - Exponential backoff on network errors
✅ Smart waiting - waitForLoadState, waitForSelector
✅ Concurrency lock - Prevents profile conflicts
✅ Structured logging - DEBUG=1 for verbose output
✅ Configurable - Environment variables for timeout, retries, profile

### Files

browser-manager.v2.js - Core manager class
search-google.js - Google search with screenshot + PDF
fetch-summary.js - Fetch page content (static or dynamic)
multi-pages.js - Batch process multiple URLs
fill-form.js - Auto-fill forms by field names

### Usage

# Set environment (optional)
export BROWSER_PROFILE=openclaw
export BROWSER_TIMEOUT=30000
export BROWSER_RETRIES=2
export DEBUG=1

cd ~/.openclaw/workspace/skills/browser-automation-v2

# Search Google
node search-google.js "OpenClaw automation"

# Batch process
node multi-pages.js "https://example.com" "https://github.com"

# Fill form
node fill-form.js "https://example.com/form" '{"email":"test@xx.com"}'

### Integration

Register as OpenClaw skill:

openclaw skills install ~/.openclaw/workspace/skills/browser-automation-v2

Or call directly from agent:

run search-google.js "query"

### Requirements

OpenClaw v2026.2.15+
Browser profile configured (default: openclaw)
Gateway running

### Troubleshooting

Timeout errors: Increase BROWSER_TIMEOUT
Profile locked: Wait for other instance to finish
Element not found: Use snapshot --format ai to debug refs

Created: 2026-02-16
Version: 2.0.0
License: MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: BodaFu
- Version: 2.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T02:47:12.053Z
- Expires at: 2026-05-08T02:47:12.053Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/browser-automation-v2)
- [Send to Agent page](https://openagent3.xyz/skills/browser-automation-v2/agent)
- [JSON manifest](https://openagent3.xyz/skills/browser-automation-v2/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/browser-automation-v2/agent.md)
- [Download page](https://openagent3.xyz/downloads/browser-automation-v2)