exa-hello-world

Featured

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

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 Hello World ## Overview Minimal working examples demonstrating all core Exa search operations: basic search, search with contents, find similar, and get contents. Each example is runnable standalone. ## Prerequisites - `exa-js` SDK installed (`npm install exa-js`) - `EXA_API_KEY` environment variable set - Node.js 18+ with ES module support ## Instructions ### Step 1: Basic Search (Metadata Only) ```typescript import Exa from "exa-js"; const exa = new Exa(process.env.EXA_API_KEY); // Basic search returns URLs, titles, and scores — no page content const results = await exa.search("best practices for building RAG pipelines", { type: "auto", // auto | neural | keyword | fast | instant numResults: 5, }); for (const r of results.results) { console.log(`[${r.score.toFixed(2)}] ${r.title}`); console.log(` ${r.url}`); } ``` ### Step 2: Search with Contents ```typescript // searchAndContents returns text, highlights, and/or summary with each result const results = await exa.searchAndContents( "how transformers work in large language models", { type: "neural", numResults: 3, text: { maxCharacters: 1000 }, highlights: { maxCharacters: 500, query: "attention mechanism" }, summary: { query: "explain transformers simply" }, } ); for (const r of results.results) { console.log(`## ${r.title}`); console.log(`URL: ${r.url}`); console.log(`Summary: ${r.summary}`); console.log(`Text preview: ${r.text?.substring(0, 200)}...`); cons...

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-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 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-observability

Set up monitoring, metrics, and alerting for Exa search integrations. Use when implementing monitoring for Exa operations, building dashboards, or configuring alerting for search quality and latency. Trigger with phrases like "exa monitoring", "exa metrics", "exa observability", "monitor exa", "exa alerts", "exa dashboard".

2,266 Updated today
jeremylongshore
AI & Automation Featured

exa-architecture-variants

Choose and implement Exa architecture patterns at different scales: direct search, cached search, and RAG pipeline. Use when designing Exa integrations, choosing between simple search and full RAG, or planning architecture for different traffic volumes. Trigger with phrases like "exa architecture", "exa blueprint", "how to structure exa", "exa RAG design", "exa at scale".

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