exa-rag
π―Skillfrom ejirocodes/agent-skills
Enables AI agents to perform advanced Retrieval-Augmented Generation (RAG) workflows using Exa's search capabilities across multiple AI frameworks like LangChain, LlamaIndex, and Vercel AI SDK.
Installation
npx skills add https://github.com/ejirocodes/agent-skills --skill exa-ragSkill Details
Overview
# Agent Skills
[](https://opensource.org/licenses/MIT)
A curated collection of AI agent skills that enhance coding assistants with specialized domain knowledge.
What Are Agent Skills?
Agent skills are structured knowledge bases that help AI coding assistants (like Claude, GPT, Cursor, etc.) understand framework-specific patterns, best practices, and common pitfalls. They bridge the gap between an AI's general knowledge and the specific, up-to-date expertise needed for modern development.
Why agent skills matter:
- Stay current - Frameworks evolve faster than AI training data. Skills provide the latest patterns and syntax.
- Reduce errors - Skills teach AI about breaking changes, deprecations, and migration paths.
- Best practices - Encode community-vetted solutions to common problems.
- Type safety - Include TypeScript patterns and proper typing for modern codebases.
Available Skills
Framework Skills
| Skill | Description | Install |
|-------|-------------|---------|
| [nestjs](./nestjs) | NestJS 11+ DI, validation, auth, TypeORM/Prisma/Drizzle, and testing patterns | npx add-skill ejirocodes/agent-skills/nestjs |
| [svelte](./svelte) | Svelte 5 runes, snippets, and SvelteKit patterns | npx add-skill ejirocodes/agent-skills/svelte |
| [vue](./vue) | Vue 3+ TypeScript, Volar, Pinia testing, and component patterns | npx add-skill ejirocodes/agent-skills/vue |
Exa.ai Skills
| Skill | Description | Install |
|-------|-------------|---------|
| [exa-search](./exa/skills/exa-search) | Core Exa search API integration (neural/keyword/auto modes, filters, content retrieval) | npx add-skill ejirocodes/agent-skills/exa-search |
| [exa-rag](./exa/skills/exa-rag) | RAG pipelines with Exa (LangChain, LlamaIndex, Vercel AI SDK, MCP tools) | npx add-skill ejirocodes/agent-skills/exa-rag |
| [exa-research](./exa/skills/exa-research) | Deep research and Answer API with citations and streaming | npx add-skill ejirocodes/agent-skills/exa-research |
| [exa-entities](./exa/skills/exa-entities) | Company and people search for lead gen, recruiting, and competitive intelligence | npx add-skill ejirocodes/agent-skills/exa-entities |
Installation
Install a skill using the add-skill CLI:
```bash
npx add-skill ejirocodes/agent-skills
```
For example, to install Svelte skills:
```bash
npx add-skill ejirocodes/agent-skills/svelte
```
Usage
For best results, prefix your prompt with use :
```
Use svelte skill, help me create a form component with validation
```
This explicitly triggers the skill and ensures the AI follows the documented patterns. Without the prefix, skill triggering depends on how closely your prompt matches the skill's keywords.
Skill Structure
Each skill follows this structure:
```
βββ LICENSE # MIT License
βββ skills/
βββ
βββ SKILL.md # Skill metadata and quick reference
βββ references/
βββ *.md # Domain-specific reference files
```
Reference Organization
References are organized by domain for progressive disclosure:
- SKILL.md - Lean entry point with essential patterns and navigation
- references/ - Detailed documentation loaded only when needed
This structure keeps the main skill file small while providing comprehensive coverage through domain-specific reference files (e.g., runes.md, sveltekit.md, migration.md).
Contributing
Contributions are welcome! To add a new skill:
- Create a folder for your skill (e.g.,
react/) - Follow the structure above
- Include comprehensive rules with:
- Clear problem descriptions
- Code examples (incorrect vs correct)
- Links to official documentation
- Submit a pull request
Guidelines
- Focus on problems AI assistants commonly get wrong
- Prioritize recent framework changes and breaking updates
- Include TypeScri
More from this repository3
Provides AI coding assistants with up-to-date best practices, patterns, and recommended approaches for developing applications using Svelte 5, focusing on runes, component design, and modern Svelte...
Enables deep, citation-backed research by leveraging Exa's Answer API to retrieve comprehensive, streaming research results with academic-grade source attribution.
exa-entities skill from ejirocodes/agent-skills