← スキル一覧に戻る

tavily-search
by closedloop-technologies
⭐ 5🍴 0📅 2026年1月8日
SKILL.md
name: tavily-search description: Use Tavily Search API for optimized, real-time web search results for RAG. Requires TAVILY_API_KEY.
Tavily Search Skill
This skill utilizes the Tavily Search API, providing clean, real-time web search results optimized for LLMs and RAG pipelines.
Setup
-
Dependencies: Requires
tavily-python.pip install tavily-python python-dotenv -
API Key Configuration: Requires
TAVILY_API_KEY.# If the script fails due to a missing key, run the following: echo "It seems the Tavily API key is not set up." read -p "Enter your Tavily API key: " TAVILY_KEY echo "TAVILY_API_KEY=$TAVILY_KEY" >> .env if [ -f .gitignore ] && ! grep -q ".env" .gitignore; then echo ".env" >> .gitignore; fi echo "API key saved to .env."
Usage
Use the scripts/tavily_search.py script.
Command
python3 scripts/tavily_search.py --query "<query>" [--max-results <N>] [--search-depth <basic|advanced>]
Parameters
--query(Required): The search query.--search-depth(Optional): Defaultbasic. Useadvancedfor intensive research (higher quality, slower).--max-results(Optional): Default 10.
Example
python3 scripts/tavily_search.py --query "autonomous research agents comparison" --search-depth advanced
Output
The script outputs JSON containing a synthesized answer (if requested by the script) and a list of results (URL, title, content snippets).
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です