# Weibo Brave Search

> Search public Weibo pages through Brave Search API when official Weibo API access is unavailable and the user explicitly accepts a separate Brave credential dependency.

- Skill: `modbender/weibo-brave-search` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add modbender/weibo-brave-search`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/weibo-brave-search/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/weibo-brave-search

---


# Weibo Brave Search

Use this skill only when the user explicitly wants a web-search fallback instead of the official Weibo API.

## Purpose

This skill queries Brave Search with `site:weibo.com` filters to discover public Weibo pages when:

1. Weibo app approval is unavailable.
2. OAuth token acquisition is blocked.
3. The user accepts a separate commercial search provider dependency.

## Primary Interface

- `scripts/weibo_search.py`: Brave Search wrapper for `site:weibo.com` queries.

## Usage

Run:
`python3 scripts/weibo_search.py "<keyword>"`

Examples:
`python3 scripts/weibo_search.py "小米"`
`python3 scripts/weibo_search.py "春节" --count 5 --json`

## Credentials And Secret Handling

| Variable | Required | Sensitive | Used for |
| --- | --- | --- | --- |
| `BRAVE_SEARCH_API` | Yes | Yes | Brave Search API subscription token |

OpenClaw configuration guidance:

1. Set `skills.entries.weibo-brave-search.apiKey` to a `SecretRef` or plaintext value for `BRAVE_SEARCH_API`.
2. Do not treat this skill as part of the base Weibo API path; it is a separate provider with its own commercial terms and secret handling obligations.

Warnings:

- `BRAVE_SEARCH_API` is sensitive and must not be committed.
- This skill makes network calls to `https://api.search.brave.com`.
- Use this skill only when fallback search is intentional.

