← ClaudeAtlas

exalisted

High-precision semantic search and content retrieval via Exa API. Use when: (1) Deep research requiring semantic understanding, (2) Code documentation and examples lookup, (3) Company/professional research, (4) AI-powered comprehensive research tasks, (5) URL content extraction with structured output. Triggers: "research", "find papers", "code examples", "company info", "LinkedIn profiles", "deep analysis". Differentiator: Exa excels at semantic/neural search while grok-search is better for real-time news and general web content.
Dianel555/DSkills · ★ 63 · Data & Documents · score 84
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