exa-core-workflow-b

Featured

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".

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 B — Similarity, Contents & Answer ## Overview Secondary Exa workflow covering three endpoints beyond search: `findSimilar` (discover pages semantically related to a URL), `getContents` (retrieve text/highlights for known URLs), and `answer` (get AI-generated answers with web citations). These complement the primary search workflow in `exa-core-workflow-a`. ## Prerequisites - `exa-js` installed and `EXA_API_KEY` configured - Familiarity with `exa-core-workflow-a` search patterns ## Instructions ### Step 1: Find Similar Pages ```typescript import Exa from "exa-js"; const exa = new Exa(process.env.EXA_API_KEY); // findSimilar takes a URL (not a query string) and returns // pages with semantically similar content const similar = await exa.findSimilar( "https://openai.com/research/gpt-4", { numResults: 10, excludeSourceDomain: true, // exclude openai.com from results startPublishedDate: "2024-01-01T00:00:00.000Z", excludeDomains: ["reddit.com", "twitter.com"], } ); for (const r of similar.results) { console.log(`${r.title} — ${r.url}`); } ``` ### Step 2: Find Similar with Contents ```typescript // findSimilarAndContents combines similarity search + content extraction const results = await exa.findSimilarAndContents( "https://huggingface.co/blog/llama3", { numResults: 5, text: { maxCharacters: 2000 }, highlights: { maxCharacters: 500, query: "open source LLM" }, excludeSourceDomain: true, } ); for (const r o...

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-core-workflow-a

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".

2,266 Updated today
jeremylongshore
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
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
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 Listed

exa-search

Semantic search, similar content discovery, and structured research using Exa API

335 Updated today
aiskillstore