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

### Bits MCP - Browser Automation

Bits is an AI browser automation platform. The MCP server lets you run browser automation tasks from your AI assistant.

### 1. Get an API Key

Go to app.usebits.com
Sign in with Google
Navigate to Settings → API Keys
Click Create API Key, give it a name
Copy the key (starts with bb_) — you won't see it again

### 2. Configure MCP

Add to your MCP config (e.g., ~/.openclaw/openclaw.json):

{
  "mcpServers": {
    "bits": {
      "command": "npx",
      "args": ["-y", "usebits-mcp"],
      "env": {
        "BITS_API_KEY": "bb_your_key_here"
      }
    }
  }
}

For Claude Code (~/.claude.json):

{
  "mcpServers": {
    "bits": {
      "command": "npx",
      "args": ["-y", "usebits-mcp"],
      "env": {
        "BITS_API_KEY": "bb_your_key_here"
      }
    }
  }
}

### 3. Restart

Restart your gateway/client to pick up the new MCP server.

### Usage

The Bits MCP uses "Code Mode" — you write TypeScript SDK code that executes in a sandbox. Two tools are available:

Documentation search — Query the SDK docs
Code execution — Write and run TypeScript against the Bits SDK

### Example: Scrape a Website

Use the Bits MCP to go to news.ycombinator.com and get the top 5 story titles

The agent will:

Search docs for navigation/scraping methods
Write TypeScript code to navigate and extract data
Execute it and return results

### Example: Fill a Form

Use Bits to go to example.com/contact, fill out the contact form with name "Test" and email "test@example.com", then submit

### Example: Extract Structured Data

Use Bits to scrape the product listings from example-store.com/products and return them as JSON with name, price, and URL fields

### Capabilities

Navigate — Go to URLs, handle redirects
Read pages — Extract text, get page layouts, take screenshots
Interact — Click elements, fill inputs, press keys
Handle auth — OAuth popups, login forms, 2FA (with stored credentials)
Multi-window — Switch between tabs/popups
Structured output — Return data in specific JSON schemas

### Creating Workflows (Optional)

For repeated tasks, create a workflow in the Bits web app:

Go to app.usebits.com → Workflows
Create a workflow with a definition (instructions for the agent)
Optionally add an output schema for structured responses
Run via API: POST /workflows/{id}/runs

### Troubleshooting

"API key invalid" — Check your key starts with bb_ and is copied correctly.

Slow startup — First run downloads the MCP package via npx. Subsequent runs are faster.

Task stuck — Browser automation can hit CAPTCHAs or unexpected modals. Check the live view URL in the response.

### Links

Web app: app.usebits.com
API docs: api.usebits.com/openapi.json
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: robbiethompson18
- 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-04-30T13:38:34.799Z
- Expires at: 2026-05-07T13:38:34.799Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bits)
- [Send to Agent page](https://openagent3.xyz/skills/bits/agent)
- [JSON manifest](https://openagent3.xyz/skills/bits/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bits/agent.md)
- [Download page](https://openagent3.xyz/downloads/bits)