RAG Architect

SkillDatabases & data

With this skill, your AI can design a system that finds relevant passages in your documents so its answers draw on what those documents actually say. It walks you through the key design choices, such as how to split documents into pieces and where to store the searchable content, and it measures how well the system performs. It covers building a new setup from scratch as well as tuning and evaluating one you already have.

Available today. Use it from your connected AI after setup.

Once added, try asking something like 'design a RAG system for our docs' or 'what chunk size should I use for this corpus'. Your agent will guide you through the decisions and show you how to check the results.

Then ask your AI: use the RAG Architect skill

What your AI can do with it

  • Design a pipeline for answering questions from your documents
  • Recommend a chunking strategy, meaning how documents get split into searchable pieces
  • Choose an embedding model, which turns text into a form the system can search
  • Pick a vector database for storing and searching your content
  • Evaluate retrieval quality with standard measures like precision@k, recall@k, and NDCG
  • Tune an existing pipeline to find better material for your answers

What this skill tells your AI

The instructions your AI receives, as published by borghei/claude-skills in engineering/rag-architect/SKILL.md and read by ahel’s review.

The agent designs, implements, and optimizes production-grade RAG pipelines, from document chunking through evaluation.

Core Capabilities

  • Chunking strategy selection — match corpus characteristics to fixed-size, sentence, paragraph, semantic, recursive, or document-aware chunking with sized parameters.
  • Embedding & vector-DB choice — pick an embedding model (local vs API) and vector store (Pinecone, Weaviate, Qdrant, Chroma, pgvector) by scale, latency, and cost.
  • Retrieval design — dense, sparse (BM25), or hybrid retrieval with Reciprocal Rank Fusion plus cross-encoder reranking when precision must exceed 0.85.
  • Query transformations — HyDE, multi-query, and step-back techniques for style mismatch and ambiguous queries.
  • Guardrails — PII detection, hallucination/NLI checks, source attribution, confidence scoring, and injection prevention.
  • Evaluation — RAGAS faithfulness/relevance plus IR metrics (Precision@K, Recall@K, MRR, NDCG) with failure analysis.
  • Production patterns — caching, streaming, fallbacks, incremental re-indexing, and cost control.

When to Use

  • Building a RAG system end to end.
  • Selecting a chunking strategy or choosing a vector database.
  • Optimizing retrieval quality or adding reranking.
  • Evaluating a pipeline with RAGAS or IR metrics.

Clarify First

Before designing the pipeline, confirm these inputs. If any is unknown or vague, ASK — do not assume:

  • Corpus characteristics — size, document structure, and domain (drives the chunking-strategy selection and parameters)
  • Scale / latency / cost constraints — query volume and budget (selects the embedding model and vector DB)
  • Retrieval precision target — the accuracy bar (precision >0.85 forces hybrid retrieval + cross-encoder reranking)
  • Query types — ambiguous, multi-hop, or style-mismatched (decides which query transforms: HyDE / multi-query / step-back)

Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.

Tools

Python tools live at the skill root (no scripts/ dir). Full flags/output formats: references/tool-cli-reference.md.

ToolPurposeCommand
chunking_optimizer.pyAnalyze a corpus and recommend the optimal chunking strategy with parameterspython chunking_optimizer.py ./docs --output results.json
retrieval_evaluator.pyEvaluate retrieval with Precision@K, Recall@K, MRR, NDCG + failure analysispython retrieval_evaluator.py queries.json ./corpus ground_truth.json
rag_pipeline_designer.pyGenerate a full pipeline design, cost projection, and Mermaid diagram from requirementspython rag_pipeline_designer.py requirements.json --output pipeline_design.json

References

Load the reference that matches the task — keep this file lean and pull detail on demand:

  • references/rag-design-guide.md — the 8-step workflow, every selection matrix (chunking, embedding, vector DB, retrieval, query transforms), context-window optimization, RAGAS targets, guardrails, a worked YAML pipeline example, production patterns, common pitfalls, troubleshooting table, and success criteria. Read when designing or debugging a pipeline.
  • references/tool-cli-reference.md — full flag/parameter tables, examples, and output formats for chunking_optimizer.py, retrieval_evaluator.py, and rag_pipeline_designer.py. Read before running the scripts.
  • references/chunking_strategies_comparison.md — deep comparison of the five chunking strategies with size distributions, quality metrics, and domain recommendations. Read when choosing a chunking strategy.
  • references/embedding_model_benchmark.md — benchmark of OpenAI, open-source, specialized, and domain-specific embedding models. Read when selecting an embedding model.
  • references/rag_evaluation_framework.md — full evaluation framework: retrieval/generation/end-to-end dimensions, offline/online/human methodologies, metric implementations. Read when building an evaluation harness.

Scope & Limitations

This skill covers:

  • End-to-end RAG pipeline architecture design: chunking, embedding, vector storage, retrieval, reranking, and evaluation.
  • Quantitative chunking analysis across four strategy families (fixed-size, sentence, paragraph, semantic).
  • Retrieval quality evaluation using standard IR metrics (Precision@K, Recall@K, MRR, NDCG) with a built-in TF-IDF baseline.
  • Automated pipeline design with component selection, cost projection, and Mermaid architecture diagrams.

This skill does NOT cover:

  • LLM prompt engineering or generation-side optimization -- see engineering/prompt-engineer-toolkit.
  • Database schema design for metadata stores alongside vector databases -- see engineering/database-designer.
  • Production observability, alerting, and SLO dashboards for deployed pipelines -- see engineering/observability-designer.
  • Agent orchestration or multi-step reasoning workflows that sit on top of RAG retrieval -- see engineering/agent-workflow-designer.

Integration Points

SkillIntegrationData Flow
engineering/prompt-engineer-toolkitOptimize system prompts and few-shot examples fed alongside retrieved chunksPipeline design output --> prompt templates that reference chunk format and metadata
engineering/database-designerDesign relational metadata stores (tags, access control, source tracking) paired with the vector databaseVector DB recommendation --> metadata schema for hybrid storage
engineering/observability-designerSet up latency, throughput, and accuracy monitoring for the deployed RAG pipelineEvaluation metrics and SLO targets --> dashboards and alerting rules
engineering/agent-workflow-designerEmbed the RAG retrieval step inside multi-agent reasoning workflowsRetrieval config --> agent tool definition with top-K and threshold parameters
engineering/ci-cd-pipeline-builderAutomate embedding re-indexing, evaluation regression tests, and deployment on document changesEvaluation thresholds --> CI gate that blocks deploys when metrics regress
engineering/api-design-reviewerReview the query and ingestion API surface exposed by the RAG servicePipeline config --> OpenAPI spec review for search and ingest endpoints

Signals

GitHub stars
752
Forks
137
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
rag-architect
Source
github.com/borghei/claude-skills