exa-deploy-integration

Featured

Deploy Exa integrations to Vercel, Docker, and Cloud Run platforms. Use when deploying Exa-powered applications to production, configuring platform-specific secrets, or building search API endpoints. Trigger with phrases like "deploy exa", "exa Vercel", "exa production deploy", "exa Cloud Run", "exa Docker".

DevOps & Infrastructure 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 Deploy Integration ## Overview Deploy applications using Exa's neural search API to production. Covers API endpoint creation, secret management per platform, caching for production traffic, and health check endpoints. ## Prerequisites - Exa API key stored in `EXA_API_KEY` environment variable - Application using `exa-js` SDK - Platform CLI installed (vercel, docker, or gcloud) ## Instructions ### Step 1: Vercel Edge Function ```typescript // api/search.ts — Vercel API route import Exa from "exa-js"; export const config = { runtime: "edge" }; export default async function handler(req: Request) { if (req.method !== "POST") { return new Response("Method not allowed", { status: 405 }); } const exa = new Exa(process.env.EXA_API_KEY!); const { query, numResults = 5 } = await req.json(); if (!query || typeof query !== "string") { return Response.json({ error: "query is required" }, { status: 400 }); } try { const results = await exa.searchAndContents(query, { type: "auto", numResults: Math.min(numResults, 20), text: { maxCharacters: 1000 }, highlights: { maxCharacters: 300, query }, }); return Response.json({ results: results.results.map(r => ({ title: r.title, url: r.url, score: r.score, snippet: r.text?.substring(0, 300), highlights: r.highlights, })), }); } catch (err: any) { const status = err.status || 500; return Response.json( { err...

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-prod-checklist

Execute Exa production deployment checklist with pre-flight, deploy, and rollback. Use when deploying Exa integrations to production, preparing for launch, or verifying production readiness. Trigger with phrases like "exa production", "deploy exa to prod", "exa go-live", "exa launch checklist", "exa production ready".

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-install-auth

Install the exa-js SDK and configure API key authentication. Use when setting up a new Exa integration, configuring API keys, or initializing Exa in a Node.js/Python project. Trigger with phrases like "install exa", "setup exa", "exa auth", "configure exa API key", "exa-js".

2,266 Updated today
jeremylongshore
AI & Automation Featured

exa-migration-deep-dive

Migrate from other search APIs (Google, Bing, Tavily, Serper) to Exa neural search. Use when switching to Exa from another search provider, migrating search pipelines, or evaluating Exa as a replacement for traditional search APIs. Trigger with phrases like "migrate to exa", "switch to exa", "replace google search with exa", "exa vs tavily", "exa migration", "move to exa".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

groq-deploy-integration

Deploy Groq integrations to Vercel, Cloud Run, and containerized platforms. Use when deploying Groq-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy groq", "groq Vercel", "groq production deploy", "groq Cloud Run", "groq Docker".

2,266 Updated today
jeremylongshore