exalisted
Install: claude install-skill Dianel555/DSkills
# Exa Search
High-precision semantic search via Exa API. Standalone CLI only (no MCP dependency).
## Execution Method
```bash
# Prerequisites: pip install httpx tenacity
# Environment: EXA_API_KEY (required), EXA_API_URL (optional, default: https://api.exa.ai)
# All examples assume cwd == skills/exa/. The shim auto-chdirs if you launch
# it from elsewhere (e.g., the repo root).
cd skills/exa
python scripts/exa_cli.py --help
```
## Available Tools
```bash
# Basic semantic search (highlights always on; supports inline category:<type>)
python scripts/exa_cli.py web_search_exa --query "TypeScript design patterns" [--num-results 10]
python scripts/exa_cli.py web_search_exa --query "category:company Anthropic AI safety"
# Batch URL fetch (urls is a repeatable flag; payload field is upstream `ids`)
python scripts/exa_cli.py web_fetch_exa \
--urls "https://a.com" --urls "https://b.com" \
[--max-chars 3000] [--out content.json]
# Advanced filtered search (list params are repeatable flags, no comma syntax)
python scripts/exa_cli.py web_search_advanced_exa --query "transformer" \
[--type auto|fast|instant] [--category research\ paper] \
[--include-domains arxiv.org --include-domains papers.nips.cc] \
[--exclude-domains medium.com] \
[--include-text "attention"] [--exclude-text "tutorial"] \
[--start-date 2024-01-01] [--end-date 2024-12-31] \
[--num-results 10] [--max-age-hours 168] \
[--text] [--highlights] [--summary] \
[--max-chars 5000] # only effective