Agent skill
exa-research
Use Exa AI for neural search, content retrieval, and automated deep research. Requires EXA_API_KEY.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/exa-research
SKILL.md
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).bashpip install exa-py openai python-dotenv -
API Key Configuration: Requires
EXA_API_KEY.bash# 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.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?