← スキル一覧に戻る

brave-search
by grahama1970
⭐ 1🍴 0📅 2026年1月20日
SKILL.md
name: brave-search description: > Free web and local search via Brave Search API. Use when user says "brave search", "search with brave", "brave web search", "brave local search", "local search", "find businesses near", or "near me". allowed-tools: Bash, Read triggers:
- brave search
- search with brave
- brave web search
- brave local search
- local search
- find businesses near
- find restaurants near
- near me
- free search metadata: short-description: Web + local search via Brave API
Brave Search
Web and local search using the Brave Search API. Returns raw results (not LLM-summarized).
Prerequisites
BRAVE_API_KEYorBRAVE_SEARCH_API_KEYin environment or.env- Install CLI deps:
pip install typer
When to Use
- You need raw web results without LLM synthesis
- You want local business info (addresses, ratings, phone numbers)
- You want a second opinion vs other search tools
Quick Start
# Web search (JSON by default)
python .agents/skills/brave-search/brave_search.py web "site:openai.com gpt-4o"
# Local search
python .agents/skills/brave-search/brave_search.py local "coffee near Cambridge MA" --no-json
CLI Usage
python .agents/skills/brave-search/brave_search.py web "query" [--count N] [--offset N] [--json/--no-json]
python .agents/skills/brave-search/brave_search.py local "query" [--count N] [--json/--no-json]
Python API
from brave_search import web_search, local_search
results = web_search("site:openai.com gpt-4o", count=5)
local = local_search("pizza near Boston", count=5)
Agent Tool Usage (MCP)
If MCP tools are available, prefer:
mcp__brave-search__brave_web_searchfor general web queriesmcp__brave-search__brave_local_searchfor places/nearby queries
Examples
python .agents/skills/brave-search/brave_search.py web "ArangoDB ArangoSearch BM25"
python .agents/skills/brave-search/brave_search.py local "restaurants near Pike Place Market" --no-json
Tips
- Use
--no-jsonfor quick human-readable output - Local search falls back to web if no locations are found
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です