← スキル一覧に戻る

exa-research
by closedloop-technologies
⭐ 5🍴 0📅 2026年1月8日
SKILL.md
name: exa-research description: Use Exa AI for neural search, content retrieval, and automated deep research. Requires EXA_API_KEY.
Exa Research Skill
This skill leverages the Exa AI API for neural search, finding similar content, and autonomous research via their Research endpoint.
Setup
-
Dependencies: Requires
exa-pyandopenai(for research endpoint compatibility).pip install exa-py openai python-dotenv -
API Key Configuration: Requires
EXA_API_KEY.# If the script fails due to a missing key, run the following: echo "It seems the Exa API key is not set up." read -p "Enter your Exa API key: " EXA_KEY echo "EXA_API_KEY=$EXA_KEY" >> .env if [ -f .gitignore ] && ! grep -q ".env" .gitignore; then echo ".env" >> .gitignore; fi echo "API key saved to .env."
Usage
The script scripts/exa_tools.py supports multiple operations.
1. Search and Contents
Perform a neural search and retrieve content or highlights.
python3 scripts/exa_tools.py search "<query>" [--num-results <N>] [--highlights]
Example:
python3 scripts/exa_tools.py search "innovative sustainable urban planning" --num-results 5 --highlights
2. Research (Automated)
Automate in-depth research and receive a structured report.
python3 scripts/exa_tools.py research "<query>" [--model <exa-research|exa-research-pro>]
Example:
python3 scripts/exa_tools.py research "Analyze the impact of quantum computing on cryptography" --model exa-research-pro
3. Find Similar
Find pages similar to a given URL.
python3 scripts/exa_tools.py find_similar "<url>"
Example:
python3 scripts/exa_tools.py find_similar "https://arxiv.org/abs/1706.03762"
Output
The script outputs results in JSON format.
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です