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

### Brave API Setup

Automates Brave Search API key extraction and OpenClaw configuration.

### Included Files

FileDescriptionSKILL.mdThis documentscripts/apply-api-key.jsApplies API key to OpenClaw config (Node.js)

### Dependencies

Node.js (for apply-api-key.js)
OpenClaw browser capability (browser tool)

### When to Use

User wants to enable web_search in OpenClaw
Error: missing_brave_api_key
User asks to set up Brave Search API

### Prerequisites

User must have a Brave Search API account
User must be logged in (openclaw browser profile)
API key must exist in dashboard

### Step 1: Navigate to API keys page

browser(action="navigate", profile="openclaw", 
        targetUrl="https://api-dashboard.search.brave.com/app/keys")

### Step 2: Click reveal button (eye icon)

Take snapshot, find the reveal button, click it:

browser(action="act", kind="click", ref="<eye-button-ref>")

### Step 3: Extract key via JavaScript (avoids LLM transcription error)

browser(action="act", kind="evaluate", 
        fn="(() => { const cells = document.querySelectorAll('td'); for (const cell of cells) { const text = cell.textContent?.trim(); if (text && text.startsWith('BSA') && !text.includes('•') && text.length > 20) return text; } return null; })()")

The result field contains the exact API key.

### Step 4: Apply to config (direct file write, no LLM involved)

Relative to skill directory:

node <skill_dir>/scripts/apply-api-key.js "<extracted-key>"

Or use gateway config.patch with the extracted key.

### Why This Approach

Problem: LLM can confuse similar characters when transcribing (O vs 0, l vs 1).

Solution:

evaluate extracts key via JavaScript → returns exact string
apply-api-key.js writes directly to config → bit-perfect

The key never passes through LLM text generation.

### Manual Account Setup

If user doesn't have an account:

Go to https://api-dashboard.search.brave.com
Sign up with email
Subscribe to Free plan (requires credit card)
Create API key in dashboard
Then run this skill

### 문의 / Feedback

버그 리포트, 기능 요청, 피드백은 아래로 보내주세요.

Email: contact@garibong.dev
Developer: Garibong Labs (가리봉랩스)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: garibong-labs
- Version: 0.1.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-30T23:44:29.527Z
- Expires at: 2026-05-07T23:44:29.527Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/brave-api-setup)
- [Send to Agent page](https://openagent3.xyz/skills/brave-api-setup/agent)
- [JSON manifest](https://openagent3.xyz/skills/brave-api-setup/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/brave-api-setup/agent.md)
- [Download page](https://openagent3.xyz/downloads/brave-api-setup)