Agent skill · Content & Marketing

exa-search

Search the web with Exa AI — neural search, content extraction, similar page discovery, quick research with citations, and async pro research with structured output. Covers all Exa endpoints (/search, /contents, /findSimilar, /answer, /research/v0/tasks). Triggers on web search, find pages, similar pages, research with citations, Exa, neural search.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill exa-search-tdimino-claude-code-minoan --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Path: skills/ai-llm/exa-search-tdimino-claude-code-minoan/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Exa Search Skill 5 specialized scripts for Exa AI search API—neural search, content extraction, similar pages, research with citations, and async pro research. **Prerequisite:** `EXA_API_KEY` environment variable. Get key at https://dashboard.exa.ai ## Token-Efficient Search Inspired by Anthropic's [dynamic filtering](https://claude.com/blog/improved-web-search-with-dynamic-filtering)—always filter before reasoning. ~24% fewer tokens, ~11% better accuracy. ### The Principle: Search Cheaply → Filter → Extract Selectively → Reason **DO:** ```bash # Step 1: Search with --no-text (titles/URLs only — cheapest) python3 ~/.claude/skills/exa-search/scripts/exa_search.py "query" -n 20 --no-text # Step 2: Evaluate titles, pick best 3-5 URLs # Step 3: Extract only those URLs with bounded content python3 ~/.claude/skills/exa-search/scripts/exa_contents.py URL1 URL2 --highlights --max-chars 3000 ``` **DON'T:** Search with full text for 50 results, then reason over all of it. ### Use API-Level Filters First (Free Filtering) These reduce results at the API level before you ever see them: - `--must-include "term"` — results must contain this string - `--must-exclude "term"` — removes irrelevant

What's inside
Steps it walks through
  1. Token-Efficient Search
  2. The Principle: Search Cheaply → Filter → Extract Selectively → Reason
  3. Use API-Level Filters First (Free Filtering)
  4. Use Summaries Over Full Text
  5. Use Bounded Context for RAG
  6. Post-Process with filterwebresults.py
  7. Cost Tiers — Match to Task
  8. Structured Deep Search (Exa Deep)
  9. Available Scripts
  10. 1. exasearch.py — Neural Web Search
  11. 2. exacontents.py — URL Content Extraction
  12. 3. exasimilar.py — Find Similar Pages
  13. 4. exaresearch.py — AI-Powered Research
  14. 5. exaresearchasync.py — Async Pro Research
Ships with 1 file
  • metadata.json
Commands it runs
Step 1: Search with --no-text (titles/URLs only — cheapest)
python3 ~/.claude/skills/exa-search/scripts/exa_search.py "query" -n 20 --no-text
Step 2: Evaluate titles, pick best 3-5 URLs
Step 3: Extract only those URLs with bounded content
python3 ~/.claude/skills/exa-search/scripts/exa_contents.py URL1 URL2 --highlights --max-chars 3000
AI-distilled summaries — much smaller than full text
python3 ~/.claude/skills/exa-search/scripts/exa_search.py "query" --summary "Key findings" -n 5
Capped context string — prevents unbounded token usage
python3 ~/.claude/skills/exa-search/scripts/exa_search.py "query" --context --context-chars 5000
python3 ~/.claude/skills/exa-search/scripts/exa_search.py "query" --json | \
More from claude-skill-registry
All skills →
About this skill
What does the exa-search skill do?

Search the web with Exa AI — neural search, content extraction, similar page discovery, quick research with citations, and async pro research with structured output. Covers all Exa endpoints (/search, /contents, /findSimilar, /answer, /research/v0/tasks). Triggers on web search, find pages, similar pages, research with citations, Exa, neural search.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill exa-search-tdimino-claude-code-minoan --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going