# Send Stable 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": "stable-browser",
    "name": "Stable Browser",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jarvis563/stable-browser",
    "canonicalUrl": "https://clawhub.ai/jarvis563/stable-browser",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/stable-browser",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stable-browser",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/manual-setup.md",
      "scripts/setup-cdp.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "stable-browser",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T10:57:04.720Z",
      "expiresAt": "2026-05-16T10:57:04.720Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stable-browser",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stable-browser",
        "contentDisposition": "attachment; filename=\"stable-browser-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "stable-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/stable-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/stable-browser",
    "downloadUrl": "https://openagent3.xyz/downloads/stable-browser",
    "agentUrl": "https://openagent3.xyz/skills/stable-browser/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stable-browser/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stable-browser/agent.md"
  }
}
```
## Documentation

### Stable Browser

Replace the unreliable browser extension relay with a direct Chrome DevTools Protocol connection.

### The Problem

The OpenClaw browser extension relay (profile="chrome") frequently breaks:

WebSocket 403 errors
Port confusion (gateway port vs relay port)
Dropped connections mid-automation
"Can't reach browser control service" errors
Badge/tab attachment confusion

### The Fix: Chrome CDP

Launch Chrome with a debug port and connect directly. No extension needed.

### Quick Setup

Run the setup script to configure everything:

bash scripts/setup-cdp.sh

This will:

Create a dedicated Chrome profile at ~/.chrome-debug-profile
Add browser.cdpUrl to your OpenClaw config
Create a LaunchAgent (macOS) so Chrome starts on login
Verify the connection works

### Manual Setup

If you prefer to set things up manually, see references/manual-setup.md.

### Usage

After setup, always use profile="openclaw" (not profile="chrome"):

browser(action="snapshot", profile="openclaw")
browser(action="navigate", profile="openclaw", targetUrl="https://example.com")
browser(action="screenshot", profile="openclaw")

### Key Differences from Extension Relay

FeatureExtension RelayCDP DirectStabilityFrequent disconnectsRock solidSetupInstall extension + attach tabOne-time scriptAuth/CookiesShares your main ChromeDedicated profileSpeedExtra hop through extensionDirect protocolHeadlessNoOptional (--headless=new)

### Dedicated Profile

The CDP browser uses ~/.chrome-debug-profile — a separate Chrome profile. This means:

Log into sites once, stays logged in
Your main Chrome is untouched
No extension conflicts
Survives Chrome updates

### Tips

First run: Log into any sites you need (Google, GitHub, X, LinkedIn, etc.)
Multiple tabs: CDP manages all tabs — use targetId to pin a specific tab
Headless mode: Add --headless=new to the launch command for invisible operation
Port conflict: If port 9222 is taken, change it in both the launch command and config
Restart Chrome: pkill -f 'remote-debugging-port=9222' && sleep 1 && bash scripts/setup-cdp.sh

### Troubleshooting

"Can't reach browser": Chrome isn't running with debug port. Run setup-cdp.sh or launch manually
Port 9222 in use: Another Chrome or process grabbed it. Kill it: lsof -i :9222
Stale session: Chrome crashed. Kill and restart: pkill -f chrome-debug-profile
Profile corruption: Delete ~/.chrome-debug-profile and re-run setup
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jarvis563
- Version: 1.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-09T10:57:04.720Z
- Expires at: 2026-05-16T10:57:04.720Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/stable-browser)
- [Send to Agent page](https://openagent3.xyz/skills/stable-browser/agent)
- [JSON manifest](https://openagent3.xyz/skills/stable-browser/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/stable-browser/agent.md)
- [Download page](https://openagent3.xyz/downloads/stable-browser)