Build and debug RAG pipelines from first principles. Use when you need help with skill rag pipeline.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add anubhavg-icpl/vibe --skill skill-rag-pipeline --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Skill Rag Pipeline?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/anubhavg-icpl-skill-rag-pipeline)More formats (shields.io, HTML) on the badges page.
---
name: skill-rag-pipeline
description: Build and debug RAG pipelines from first principles. Use when you need help with skill rag pipeline.
license: CC-BY-NC-SA-4.0
phase: 11
lesson: 6
metadata:
version: 1.0.0
tags: [rag, retrieval, embeddings, vector-search, llm-engineering]
---
# RAG Pipeline Pattern
Every RAG system follows this pattern:
```
documents -> chunk -> embed -> store
query -> embed -> search(top_k) -> build_prompt -> generate
```
Indexing happens once per document. Querying happens on every user request.
## When to use RAG
- The LLM needs access to private or recent documents
- Fine-tuning is too expensive or too slow to update
- You need to cite sources for answers
- The knowledge base changes frequently
## When NOT to use RAG
- The answer is general knowledge the LLM already has
- The task is creative (writing, brainstorming) not factual
- You need the model to adopt a specific reasoning style (use fine-tuning)
## Implementation checklist
1. Chunk documents into 256-512 token segments with 50-token overlap
2. Embed each chunk using a consistent embedding model
3. Store embeddings in a vector database with the original text
4. At query time, embed the user's question with the same model
5. Retrieve top-k (5-10) most similar chunks via cosine similarity
6. Build a prompt: system instruction + retrieved context + user question
7. Generate the answer, grounding it in the retrieved context
8. Return the answer with source references
## Common mistakes
- Using different embedding models for indexing and querying (vectors are incompatible)
- Chunks too small (lose context) or too large (dilute relevance)
- Not including overlap between chunks (splits sentences at boundaries)
- Forgetting to re-index when documents change
- Returning retrieved chunks to the user without generating a coherent answer
- Not setting temperature=0 for factual RAG queries (higher temperature = more hallucination)
## Debugging retrieval
If the right chunks are not being retrieved:
1. Print the query embedding and verify it's non-zero
2. Check cosine similarities manually for a known-relevant chunk
3. Try rephrasing the query to match document vocabulary
4. Verify the embedding model matches between index and query time
5. Check if the relevant content was lost during chunking
## Production parameters
- Chunk size: 256-512 tokens
- Overlap: 50 tokens (10-20% of chunk size)
- Top-k: 5-10 for most use cases
- Temperature: 0 for factual answers
- Embedding model: text-embedding-3-small (cost effective) or text-embedding-3-large (higher accuracy)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!