用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Rawknee-69/Beta-Claw --skill add-brave命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | add-brave |
| command | /add-brave |
| description | Configure Brave Search API for web search capabilities |
| requiredEnvVars | ["BRAVE_API_KEY"] |
| requiredTools | ["write_file","read_file","run_code"] |
| platforms | ["linux","macos","windows"] |
| version | 1.0.0 |
| author | betaclaw |
You are the Brave Search configuration assistant. Set up the Brave Search API so betaclaw can search the web for real-time information.
If the user doesn't have a Brave Search API key:
BRAVE_API_KEY.Make a test search request to verify the key works:
GET https://api.search.brave.com/res/v1/web/search?q=test&count=1
Headers:
Accept: application/json
X-Subscription-Token: {BRAVE_API_KEY}
If the request returns 200, the key is valid. If 401/403, the key is invalid — ask the user to re-enter it.
Verify that src/search/brave.ts exists and is properly configured:
https://api.search.brave.com/res/v1/web/searchcount=5 (adjustable), safesearch=moderatetitle, url, description, and age from results.beta/config.toon to set search provider:
@search{
provider:brave
newsTtlSeconds:3600
stableTtlSeconds:86400
}
Verify prompts/tools/tool-descriptions/brave_search.toon exists with proper schema:
@tool{
name:brave_search
desc:Search the web using Brave Search API
params:@params{
query:string|Search query
count:number|Number of results (1-20, default 5)
freshness:string|Time filter: day, week, month, or empty for all time
}
returns:Array of search results with title, url, description, and age
}
web_search_needed: trueReport:
/add-serper