ソース情報
- リポジトリ
- Rawknee-69/Beta-Claw
- ソースの最終更新活動
- 2026年3月9日 11:54
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Rawknee-69/Beta-Claw --skill add-braveコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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