← All skills
Tencent SkillHub Β· Developer Tools

Brave Api Setup

Set up Brave Search API for OpenClaw web_search. Use when user needs to configure Brave API, get Brave API key, enable web search, or fix "missing_brave_api_key" error.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Set up Brave Search API for OpenClaw web_search. Use when user needs to configure Brave API, get Brave API key, enable web search, or fix "missing_brave_api_key" error.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/apply-api-key.js

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

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 (κ°€λ¦¬λ΄‰λž©μŠ€)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/apply-api-key.js Scripts