Agent skill · AI & Agents

rag-infrastructure

Build and operate Retrieval-Augmented Generation (RAG) infrastructure with vector stores, embedding pipelines, and hybrid search. Covers ingestion, chunking strategies, reranking, and production deployment patterns.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0
Declared author: devops-skills
Path: skills/ai-llm/rag-infrastructure/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

# RAG Infrastructure Production infrastructure for Retrieval-Augmented Generation: ingest documents, generate embeddings, store in vector databases, and serve grounded LLM responses. ## When to Use This Skill Use this skill when: - Building a knowledge base Q&A system over internal documents - Implementing semantic search over large document collections - Reducing LLM hallucinations with retrieved context - Setting up embedding pipelines and vector store infrastructure - Deploying hybrid search (dense + sparse/BM25) ## Prerequisites - Python 3.10+ with `pip` - A vector database (Qdrant, Weaviate, Pinecone, or pgvector) - An embedding model (OpenAI, Cohere, or local via `sentence-transformers`) - An LLM endpoint (OpenAI API or self-hosted vLLM) - Docker for local vector DB deployment ## Architecture Overview ``` Documents → Chunker → Embedder → Vector Store ↓ User Query → Embedder → Vector Store (search) → Reranker → LLM → Answer ``` ## Embedding Pipeline ```python from sentence_transformers import SentenceTransformer from qdrant_client import QdrantClient from qdrant_client.models import Distance, VectorParams, PointStruct import uuid # Local embedding model (no API cost) model = S

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Prerequisites
  3. Architecture Overview
  4. Embedding Pipeline
  5. Chunking Strategies
  6. Hybrid Search (Dense + Sparse)
  7. Reranking
  8. RAG Query Pipeline
  9. Docker Compose: Full RAG Stack
  10. Common Issues
  11. Best Practices
  12. Related Skills
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the rag-infrastructure skill do?

Build and operate Retrieval-Augmented Generation (RAG) infrastructure with vector stores, embedding pipelines, and hybrid search. Covers ingestion, chunking strategies, reranking, and production deployment patterns.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill rag-infrastructure --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