Agent skill · AI & Agents

building-rag-systems

Build production RAG systems with LangChain orchestration and Qdrant vector store. Covers 8 RAG architectures (Simple, HyDE, CRAG, Self-RAG, Agentic), document processing, semantic chunking, retrieval chains, and evaluation with LangSmith/RAGAS. Use when implementing RAG pipelines, semantic search, or AI knowledge systems. NOT for simple keyword search.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill building-rag-systems --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Path: skills/ai-ml/building-rag-systems/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Building RAG Systems Production-grade RAG with LangChain, Qdrant, and advanced retrieval patterns. ## Quick Start (LangChain) ```bash # Dependencies pip install langchain langchain-qdrant langchain-openai langchain-text-splitters pip install qdrant-client fastembed # For hybrid search # Start Qdrant docker run -p 6333:6333 -p 6334:6334 qdrant/qdrant ``` ```python from langchain_openai import OpenAIEmbeddings from langchain_qdrant import QdrantVectorStore from langchain_text_splitters import RecursiveCharacterTextSplitter # Load and split documents text_splitter = RecursiveCharacterTextSplitter( chunk_size=1000, chunk_overlap=200, add_start_index=True, ) splits = text_splitter.split_documents(docs) # Create vector store embeddings = OpenAIEmbeddings(model="text-embedding-3-small") vector_store = QdrantVectorStore.from_documents( splits, embeddings, url="http://localhost:6333", collection_name="my_docs", ) # Search results = vector_store.similarity_search("query", k=4) ``` --- ## RAG Architectures (8 Patterns) | Pattern | When to Use | Key Feature | |---------|-------------|-------------| | **Simple RAG** | FAQ, known scope | Single retrieval → generate | | **+Memory** | Conversati

What's inside
Steps it walks through
  1. Quick Start (LangChain)
  2. RAG Architectures (8 Patterns)
  3. Quick Start (Raw Qdrant)
  4. Ingestion Pipeline
  5. Architecture
  6. Semantic Chunking (NOT Fixed-Size)
  7. Change Detection (Incremental Updates)
  8. Batched Embeddings
  9. Qdrant Collection with Payload Indexes
  10. Retrieval Patterns
  11. Comprehensive Filter Builder
  12. Context Expansion (Walk Chunk Chain)
  13. Full Document Retrieval
  14. Payload Schema
Ships with 1 file
  • metadata.json
Commands it runs
Dependencies
pip install langchain langchain-qdrant langchain-openai langchain-text-splitters
pip install qdrant-client fastembed  # For hybrid search
Start Qdrant
docker run -p 6333:6333 -p 6334:6334 qdrant/qdrant
pip install qdrant-client openai pydantic python-frontmatter
Core components
More from claude-skill-registry
All skills →
About this skill
What does the building-rag-systems skill do?

Build production RAG systems with LangChain orchestration and Qdrant vector store. Covers 8 RAG architectures (Simple, HyDE, CRAG, Self-RAG, Agentic), document processing, semantic chunking, retrieval chains, and evaluation with LangSmith/RAGAS. Use when implementing RAG pipelines, semantic search, or AI knowledge systems. NOT for simple keyword search.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill building-rag-systems --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going