agentsclimarketplace

Rag architect

Skill DROOdotFOO/agent-skills/skills/rag-architect

Design RAG pipelines with informed chunking, embedding, retrieval, and evaluation decisions. TRIGGER when: user asks about RAG pipeline design, chunking strategies, embedding models, vector databases, or retrieval-augmented generation. DO NOT TRIGGER when: user asks about fine-tuning, prompt engineering without retrieval, or general LLM usage.From its SKILL.md

Install
npx -y skills add DROOdotFOO/agent-skills --skill rag-architect

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.8 KB, 467 tokens by cl100k_base, as published. Nobody here has run it

RAG Architect

Design retrieval-augmented generation pipelines with the right tradeoffs at each layer.

Workflow

  1. Choose chunking strategy -- Match chunk method to document structure
  2. Select embedding model -- Balance dimensions, speed, and domain fit
  3. Choose vector DB -- Match scale, features, and deployment model
  4. Design retrieval -- Dense, sparse, hybrid, or reranked
  5. Evaluate -- Measure faithfulness, relevance, and answer quality

Reading Guide

DecisionFile
Chunking strategies + embedding modelschunking-and-embedding.md
Retrieval strategies + vector DBs + evaluationretrieval-and-evaluation.md

Quick Decision Matrix

Document typeChunkingEmbeddingRetrieval
CodeSemantic (AST-aware)Code-specializedHybrid + rerank
Legal/medicalDocument-aware (sections)Domain-specificDense + rerank
Chat logsSentenceGeneral-purposeDense
Technical docsRecursiveGeneral-purposeHybrid
Mixed/unknownRecursive (fallback)General-purposeHybrid + rerank

What You Get

  • A RAG pipeline architecture specifying chunking strategy, embedding model, vector store, and retrieval method for your document types
  • Concrete configuration recommendations (chunk size, overlap, dimensions, top-k) with rationale for each tradeoff
  • An evaluation plan using RAGAS or equivalent metrics to validate retrieval quality before and after tuning

Rules

  1. Start simple -- fixed-size chunks + dense retrieval is a valid baseline
  2. Measure before optimizing -- run RAGAS evaluation before adding complexity
  3. Chunk overlap matters -- 10-20% overlap prevents context loss at boundaries
  4. Embedding dimensions are a tradeoff -- higher is not always better (cost, latency)
  5. Hybrid retrieval (dense + sparse) almost always beats either alone

What ships with it: 2 files

10.5 KB alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.