# Send Claw Browser 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": "claw-browser",
    "name": "Claw Browser",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Canbirlik/claw-browser",
    "canonicalUrl": "https://clawhub.ai/Canbirlik/claw-browser",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claw-browser",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-browser",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "browser.py",
      "requirements.txt",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claw-browser",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T10:17:54.114Z",
      "expiresAt": "2026-05-06T10:17:54.114Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-browser",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-browser",
        "contentDisposition": "attachment; filename=\"claw-browser-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claw-browser"
      },
      "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/claw-browser"
    },
    "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/claw-browser",
    "downloadUrl": "https://openagent3.xyz/downloads/claw-browser",
    "agentUrl": "https://openagent3.xyz/skills/claw-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claw-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claw-browser/agent.md"
  }
}
```
## Documentation

### 🌐 Claw Browser Skill

This skill gives the agent "Eyes" to browse the web using a real
Chromium browser.

Unlike simple HTTP requests, claw-browser:

Renders JavaScript
Handles dynamic content
Loads SPA applications
Takes real screenshots
Can run in visible (non-headless) mode

### 🛠️ Installation & Setup (READ FIRST)

⚠️ Before using this tool, the agent MUST set up the Python
environment and download browser binaries.

If venv does not exist, run this setup command block automatically:

# 1. Create virtual environment
python3 -m venv venv

# 2. Activate it
source venv/bin/activate

# 3. Install dependencies
pip install -r requirements.txt

# 4. Download Chromium binaries (CRITICAL STEP)
playwright install chromium

⚠️ The playwright install chromium step is CRITICAL.
Without it, the browser will NOT launch.

### Arguments

Argument                            Description

--url                             The website to visit (Required)

--action                          Action to perform: read or
screenshot

### 🚀 Execution Examples

⚠️ Always activate the virtual environment first.

### 1️⃣ Read a Page (Headless - Default)

source venv/bin/activate && python browser.py --url "https://github.com/trending" --action read

### 2️⃣ Take a Screenshot of a News Site

source venv/bin/activate && python browser.py --url "https://news.ycombinator.com" --action screenshot

This saves:

evidence.png

### 3️⃣ Visible Mode (Shows Browser UI - Great for Demos)

source venv/bin/activate && python browser.py --url "https://google.com" --action read --visible

This will launch a real Chromium window on screen.

### 4️⃣ Visible Mode (WSL / Linux Fix) ⭐️

Use this if you get "Missing X server" or "Display not found" errors:

export DISPLAY=:0 && source venv/bin/activate && python browser.py --url "[https://google.com](https://google.com)" --action read --visible

This sets the DISPLAY variable so the browser can open on your screen.

### 🧠 When Should the Agent Use This Skill?

Use claw-browser when:

The page requires JavaScript rendering
The site is dynamic (React, Vue, Angular, etc.)
Screenshots are required
The user explicitly asks to "open" or "see" a website
Traditional HTTP requests fail

### ⚡ Summary

claw-browser transforms your OpenClaw agent from a simple API caller
into a real browser-powered assistant with visual capabilities.

It enables:

Dynamic page interaction
Visual verification
Demo-ready browsing
Real-world automation

Made with ❤️ by @canbirlik
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Canbirlik
- Version: 1.0.2
## 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-04-29T10:17:54.114Z
- Expires at: 2026-05-06T10:17:54.114Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claw-browser)
- [Send to Agent page](https://openagent3.xyz/skills/claw-browser/agent)
- [JSON manifest](https://openagent3.xyz/skills/claw-browser/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claw-browser/agent.md)
- [Download page](https://openagent3.xyz/downloads/claw-browser)