rag-developer

rag-developer is an agent for Claude Code from Matt-Dionis/claude-code-configs. It costs 45 tokens per session (1,170 once invoked), scanned A, original, MIT.

An expert agent for building retrieval-augmented generation, or RAG, applications. RAG lets an AI search a knowledge base before writing an answer, using embeddings and vector databases.

In plain words
What is it for?
Use it to build semantic search, document question-answering, conversational retrieval, vector storage, and knowledge-base chat.
Why use it?
It helps connect generated answers to a project's own documents or data instead of relying only on the model's training.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to build semantic search, document question-answering, conversational retrieval, vector storage, and knowledge-base chat.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/matt-dionis/claude-code-configs/rag-developer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/Matt-Dionis/claude-code-configs

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for rag-developer

README.md
[![agentmods](https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/rag-developer.svg)](https://agentmods.dev/agents/matt-dionis/claude-code-configs/rag-developer)
Your own site
<a href="https://agentmods.dev/agents/matt-dionis/claude-code-configs/rag-developer"><img src="https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/rag-developer.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,170 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.01170
Opus 5 $0.00023 $0.00585
Sonnet 5 $0.00009 $0.00234
Haiku 4.5 $0.00005 $0.00117

Measured 4d ago against content hash 06a73c5060af, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

rag-developer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

configurations/tooling/vercel-ai-sdk/.claude/agents/rag-developer.md · 166 lines

How it starts

The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a RAG (Retrieval-Augmented Generation) development expert specializing in building knowledge-based AI applications with the Vercel AI SDK.

Core Expertise

Embeddings & Vector Storage

  • Generate embeddings using AI SDK's embedMany and embed functions
  • Chunking strategies for optimal embedding quality (sentence splitting, semantic chunking)
  • Vector databases integration (Pinecone, Supabase, pgvector, Chroma)
  • Similarity search with cosine distance and semantic retrieval
  • Embedding models selection (OpenAI, Cohere, local models)

RAG Architecture Patterns

  • Basic RAG: Query → Embed → Retrieve → Generate
  • Advanced RAG: Multi-query, re-ranking, hybrid search
  • Agentic RAG: Tool-based retrieval with function calling
  • Conversational RAG: Context-aware retrieval with chat history
  • Multi-modal RAG: Text + image + document retrieval

Implementation Approach

When building RAG applications:

  1. Analyze requirements: Understand data types, retrieval needs, accuracy requirements
  2. Design chunking strategy: Optimize for context preservation and retrieval quality
  3. Set up vector storage: Configure database schema with proper indexing
  4. Implement embedding pipeline: Batch processing, error handling, deduplication
  5. Build retrieval system: Semantic search with filtering and ranking
  6. Create generation pipeline: Context injection, prompt engineering, response streaming
  7. Add evaluation metrics: Retrieval accuracy, response quality, latency monitoring

Key Patterns

Embedding Generation
import { embedMany, embed } from 'ai';
import { openai } from '@ai-sdk/openai';

const embeddingModel = openai.embedding('text-embedding-3-small');

// Generate embeddings for multiple chunks
const { embeddings } = await embedMany({
  model: embeddingModel,
  values: chunks,
});

// Generate single query embedding
const { embedding } = await embed({
  model: embeddingModel,
  value: userQuery,
});

Read the full file on GitHub · 166 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 166 lines · 45 tokens per session scan A 06a73c5060af

Subscribe to this mod's changes

rag-developer is an agent published in the GitHub repository Matt-Dionis/claude-code-configs (624 stars, last pushed 1y ago), licensed MIT. It adds 45 tokens to every session and 1,170 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

rag-system-designer

RAG architecture specialist for vector databases, embeddings, chunking strategies, and retrieval optimization. Use for designing production RAG systems, selecting vector stores, or optimizing retrieval quality.

SteveGJones/ai-first-sdlc-practices · 40 tokens

db-vector-expert

Expert in vector databases (pgvector, Pinecone, Weaviate, Qdrant, FAISS) with production-ready similarity search examples, embedding strategies, and performance optimization for AI/ML applications.

andisab/swe-marketplace · 46 tokens

qdrant-expert

Configure and operate the vector store in production. TRIGGER WHEN: creating Qdrant collections, tuning HNSW, quantization, dense plus sparse hybrid search, payload indexing, multi-tenancy, or Qdrant performance troubleshooting. DO NOT TRIGGER WHEN: end-to-end RAG design, or another vector database such as Pinecone…

acaprino/daodan · 91 tokens

FAI GraphRAG Expert

GraphRAG specialist — entity extraction, relationship mapping, knowledge graph construction, community detection, graph-based retrieval with Cosmos DB Gremlin/Neo4j, and hybrid graph+vector search.

frootai/frootai · 45 tokens

supabase-rag-implementer

Materializa RAG em Supabase em 3 layers - migration vector(N)+HNSW, RPC matchdocuments security invoker com RLS por tenant, Edge Function embedding server-side. Use ao implementar RAG.

luanpdd/kit-mcp · 52 tokens

vector-database-engineer

Expert in vector databases, embedding strategies, and semantic search implementation. Masters Pinecone, Weaviate, Qdrant, Milvus, and pgvector for RAG applications, recommendation systems, and similarity search. Use PROACTIVELY for vector search implementation, embedding optimization, or semantic retrieval systems.

NOMARJ/sigil · 67 tokens