Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

brave-api-searchbrave API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

246,819

周安装

10,494

GitHub Stars

1

下载量

86,471
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:brave-api-search(brave API 搜索)
来源仓库:https://github.com/broedkrummen/brave-api-search
安装命令:
openclaw skills install brave-api-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install brave-api-search

简介

使用 Brave Search API 进行实时网络搜索与智能答案提取。

  • 支持文档、事实与时事查询,注重隐私保护。brave-api-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适合需要高可信度搜索结果的研究与写作场景。
  • 使用时需配置 API 密钥并遵守调用频率限制。
  • 安装前请核实权限范围及是否会触发外部网络请求。

SKILL.md

name
brave-api-search
description
Real-time web search, autosuggest, and AI-powered answers using the official Brave Search API. Use for searching documentation, facts, current events, or any web content. Supports AI grounded answers with citations and query autosuggest. Requires BRAVE_SEARCH_API_KEY and BRAVE_ANSWERS_API_KEY.
license
MIT
metadata
author
Broedkrummen
version
4.2.0

Brave API Search v4.2.0 — Significant Update

Real-time web search, autosuggest, spellcheck, and AI-powered answers using the official Brave Search API. Four tools:

  • brave_search — web results with titles, URLs, descriptions, optional AI summary
  • brave_suggest — query autosuggestions as users type with optional rich metadata
  • brave_spellcheck — spell correction and "Did you mean?" suggestions
  • brave_answers — AI-grounded answers with inline citations powered by live web search

| NEW — v4.2.0: Full entity extraction via enable-entities flag

Setup

Set your Brave API keys in a local .env file (recommended):

# .env (do not commit)
BRAVE_SEARCH_API_KEY=your_key_here
BRAVE_ANSWERS_API_KEY=your_key_here
AUTOSUGGEST_API_KEY=your_key_here   # optional, for autosuggest only
BRAVE_SPELLCHECK_API_KEY=your_key_here   # optional, for spellcheck only

Get your keys at: https://api-dashboard.search.brave.com

Key routing:

  • brave_searchBRAVE_SEARCH_API_KEY
  • brave_answersBRAVE_ANSWERS_API_KEY
  • brave_suggestAUTOSUGGEST_API_KEYBRAVE_AUTOSUGGEST_API_KEYBRAVE_SEARCH_API_KEY (tries in order)
  • brave_spellcheckBRAVE_SPELLCHECK_API_KEYBRAVE_SEARCH_API_KEY (tries in order)
Note: brave_answers uses streaming by default. Streaming is required for citations, entities, and research mode.

When to Use This Skill

Use brave_search when:

  • Searching for current information, news, or recent events
  • Looking up documentation or technical references
  • Need ranked results with URLs to follow up on
  • Want an AI summary of search results

Use brave_suggest when:

  • Power autocomplete in search interfaces
  • Help users formulate better queries faster
  • Need query completions as users type
  • Want rich metadata (titles, descriptions, images) for suggestions

Use brave_answers when:

  • Need a synthesized answer with cited sources
  • Researching topics that benefit from multiple sources
  • Want AI-grounded responses with inline citations
  • Deep research mode needed (multi-search)

Don't use this skill for:

  • Questions already answered from context or memory
  • Tasks that don't require external information

Tools

brave_search

Web search returning ranked results with titles, URLs, and descriptions.

brave_search --query "latest Node.js release" --count 5
brave_search --query "TypeScript generics" --extra-snippets true
brave_search --query "current weather Copenhagen" --freshness pd
brave_search --query "React Server Components" --summary true

Parameters:

  • query (required) — Search query, supports operators: site:, "exact phrase", -exclude
  • count — Results to return (1-20, default: 10)
  • country — 2-letter country code (default: us)
  • freshness — Date filter: pd (24h), pw (7 days), pm (31 days), py (1 year)
  • extra-snippets — Include up to 5 extra text excerpts per result (default: false)
  • summary — Fetch Brave AI summarizer result (default: false)
  • offset — Pagination offset for next page results

Returns: Formatted list of results with title, URL, description, optional AI summary, and a hint for next page if more_results_available.

brave_suggest

Query autosuggest API providing intelligent query autocompletion as users type.

brave_suggest --query "hello"
brave_suggest --query "pyt" --count 5 --country US
brave_suggest --query "einstein" --rich true

Parameters:

  • query (required) — Partial query to get suggestions for
  • count — Number of suggestions (1-10, default: 5)
  • country — 2-letter country code (default: US)
  • rich — Include enhanced metadata: titles, descriptions, images, entity detection (default: false, requires paid Autosuggest plan)

Returns: List of query suggestions, optionally with rich metadata. Results are cached for 60 seconds.

Best Practices:

  • Implement debouncing (150-300ms) to avoid excessive API calls as users type
  • Load suggestions asynchronously without blocking the UI

brave_spellcheck

Spell checking and query correction for search queries.

brave_spellcheck --query "articifial inteligence"
brave_spellcheck --query "hello" --country US

Parameters:

  • query (required) — Query to check for spelling errors
  • country — 2-letter country code (default: US)

Returns: "Did you mean:" suggestion, or confirms no correction needed. Uses dedicated BRAVE_SPELLCHECK_API_KEY if available, falls back to BRAVE_SEARCH_API_KEY.

brave_answers

AI-powered answers grounded in live web search with inline citations.

brave_answers --query "How does React Server Components work?"
brave_answers --query "Compare Postgres vs MySQL for OLAP" --enable-research true
brave_answers --query "Latest Python release notes" --enable-citations true
brave_answers --query "Who is Albert Einstein" --enable-entities true

Parameters:

  • query (required) — Question or topic to research
  • country — Target country for search context (default: us)
  • enable-citations — Include inline source citations (default: true)
  • enable-research — Multi-search deep research mode (default: false)
  • enable-entities — Include entity information in responses (default: false, streaming required)
  • stream — Enable streaming output (default: true — required for citations/entities/research)

Returns: AI answer with cited sources extracted from the response, plus token usage and cost breakdown.

⚠️ Citations, entities, and research mode require streaming (--stream true, which is the default). If you disable streaming with --stream false, citations and entity data will not be available.

Streaming mode output:

  • Text streams progressively to stdout
  • Entities streamed inline as <enum_item> tags are parsed
  • Entities mentioned section printed at the end (v4.2.0)
  • Sources printed at the end (sorted by citation number)
  • Token usage and cost breakdown included

Non-streaming fallback: Use --stream false for simpler output at the cost of losing citations and entity data.

Pricing & Limits

Brave pricing is credit-based and can change. Do not assume a fixed free request count.

Current public guidance (verify in Brave dashboard/docs before production use):

  • Monthly trial credits may be offered (e.g. $5 in monthly credits)
  • Search and Answers consume credits differently
  • Rich suggestions require a paid Autosuggest plan
  • Answers may also include token-based costs
  • QPS limits depend on your plan tier

Always check your live limits and usage in:

  • https://api-dashboard.search.brave.com
  • https://brave.com/search/api/

Technical Details

Architecture

The skill uses a shared utils.js module containing:

  • parseArgs() — CLI argument parser
  • fetchWithRetry() — fetch with exponential backoff retry on 429 and 5xx
  • createCache() — in-memory TTL cache (used by brave_suggest)

brave_search.js

The core search script with the following optimizations:

  • Parallel summary fetch: When --summary is enabled, the summary key is extracted from the search response and fetched in parallel with the search results
  • Pagination hint: Response includes a hint for the next page offset when more_results_available is true
  • Rate limit handling: Retries on 429 (honors Retry-After header) and 5xx (exponential backoff)

brave_answers.js v4.2.0

The AI answers script supports two modes:

  • Streaming (default): Progressive output with real-time entity extraction, deduplicated citations, token usage, and cost breakdown
  • Non-streaming: Full citation and entity extraction from batch response via parseCitations() and parseEntities()

Key changes in v4.2.0:

  • Entity extraction: Streaming mode parses <enum_item> tags incrementally — entity names are streamed inline as they are parsed, and a consolidated Entities mentioned section is printed at the end with URL and citation count per entity
  • Citation deduplication: Duplicate source URLs are deduplicated so each source is cited only once (sorted by citation number)
  • Non-streaming mode (v4.2.0): Full parseCitations() and parseEntities() applied to the batch response content, so citations and entities are extracted even without streaming

brave_suggest.js

The autosuggest script with the following optimizations:

  • In-memory cache: 60-second TTL cache keyed by query|count|country|rich — deduplicates rapid successive calls
  • Key fallback chain: AUTOSUGGEST_API_KEYBRAVE_AUTOSUGGEST_API_KEYBRAVE_SEARCH_API_KEY

brave_answers streaming

When streaming is enabled (stream: true):

  • SSE chunks are parsed in real-time
  • Citations are collected and printed at end (sorted by citation number)
  • Entity items (<enum_item>) are parsed incrementally — streamed inline and collected for the Entities mentioned section
  • Usage block (<usage>) parsed and displayed with token counts and total cost

Security & Packaging Notes

  • This skill only calls Brave official endpoints under https://api.search.brave.com/res/v1.
  • It requires BRAVE_SEARCH_API_KEY and BRAVE_ANSWERS_API_KEY (keep them in .env, not inline in commands/chats).
  • Optionally accepts AUTOSUGGEST_API_KEY or BRAVE_AUTOSUGGEST_API_KEY for autosuggest.
  • It does not request persistent/system privileges and does not modify system config.
  • All scripts are Node.js 18+ native (no external dependencies).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.27%
按下载量换算72,004

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install brave-api-search 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills