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.
git clone --depth 1 https://github.com/Matt-Dionis/claude-code-configsWrote 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.
[](https://agentmods.dev/agents/matt-dionis/claude-code-configs/rag-developer)<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>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.
| Model | Per session | Once 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 |
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.
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
embedManyandembedfunctions - 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:
- Analyze requirements: Understand data types, retrieval needs, accuracy requirements
- Design chunking strategy: Optimize for context preservation and retrieval quality
- Set up vector storage: Configure database schema with proper indexing
- Implement embedding pipeline: Batch processing, error handling, deduplication
- Build retrieval system: Semantic search with filtering and ranking
- Create generation pipeline: Context injection, prompt engineering, response streaming
- 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,
});
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.
- 4d ago First seen · 166 lines · 45 tokens per session scan A 06a73c5060af
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.
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.
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.
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…
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.
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.
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.