exa-core-workflow-a

Featured

Execute Exa neural search with contents, date filters, and domain scoping. Use when building search features, implementing RAG context retrieval, or querying the web with semantic understanding. Trigger with phrases like "exa search", "exa neural search", "search with exa", "exa searchAndContents", "exa query".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Exa Core Workflow A — Neural Search ## Overview Primary workflow for Exa: semantic web search using `search()` and `searchAndContents()`. Exa's neural search understands query meaning rather than matching keywords, making it ideal for research, RAG pipelines, and content discovery. This skill covers search types, content extraction, filtering, and categories. ## Prerequisites - `exa-js` installed and `EXA_API_KEY` configured - Understanding of neural vs keyword search tradeoffs ## Search Types | Type | Latency | Best For | |------|---------|----------| | `auto` (default) | 300-1500ms | General queries; Exa picks best approach | | `neural` | 500-2000ms | Conceptual/semantic queries | | `keyword` | 200-500ms | Exact terms, names, URLs | | `fast` | p50 < 425ms | Speed-critical applications | | `instant` | < 150ms | Real-time autocomplete | | `deep` | 2-5s | Maximum quality, light deep search | | `deep-reasoning` | 5-15s | Complex research questions | ## Instructions ### Step 1: Basic Neural Search ```typescript import Exa from "exa-js"; const exa = new Exa(process.env.EXA_API_KEY); // Neural search: phrase your query as a statement, not a question const results = await exa.search( "comprehensive guide to building production RAG systems", { type: "neural", numResults: 10, // max 100 for neural/deep } ); for (const r of results.results) { console.log(`[${r.score.toFixed(2)}] ${r.title} — ${r.url}`); console.log(` Published: ${r.publishedDate || "unk...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

exa-hello-world

Create a minimal working Exa search example with real results. Use when starting a new Exa integration, testing your setup, or learning basic search, searchAndContents, and findSimilar patterns. Trigger with phrases like "exa hello world", "exa example", "exa quick start", "simple exa search", "first exa query".

2,266 Updated today
jeremylongshore
API & Backend Listed

exa-search

Advanced Exa AI search with 5 specialized scripts for neural web search, content extraction, similar page discovery, quick research with citations, and async pro research with structured output. This skill should be used when performing web searches, extracting content from URLs, finding similar pages, or conducting AI-powered research. Provides full access to all Exa API endpoints including /search, /contents, /findSimilar, /answer, and /research/v1.

33 Updated yesterday
tdimino
AI & Automation Featured

exa-data-handling

Implement Exa search result processing, content extraction, caching, and RAG context management. Use when handling search results, implementing caching, building citation pipelines, or managing content payloads for LLM context windows. Trigger with phrases like "exa data", "exa results processing", "exa cache", "exa RAG context", "exa content extraction".

2,266 Updated today
jeremylongshore
AI & Automation Solid

exa-search

Neural search via Exa MCP for web, code, and company research. Use when the user needs web search, code examples, company intel, people lookup, or AI-powered deep research with Exa's neural search engine.

199,464 Updated today
affaan-m
AI & Automation Featured

exa-core-workflow-b

Execute Exa findSimilar, getContents, answer, and streaming answer workflows. Use when finding pages similar to a URL, retrieving content for known URLs, or getting AI-generated answers with citations. Trigger with phrases like "exa find similar", "exa get contents", "exa answer", "exa similarity search", "findSimilarAndContents".

2,266 Updated today
jeremylongshore