rag-architect

Design and implement Retrieval-Augmented Generation architectures with hybrid search and vector databases.

54|18|Updated Jan 21, 2026
One-click install
npx skills add https://github.com/hainamchung/agent-assistant --skill rag-architect-hainamchung
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rag-architect
Source: https://github.com/hainamchung/agent-assistant/tree/main/skills/rag-architect
Command: npx skills add https://github.com/hainamchung/agent-assistant --skill rag-architect-hainamchung

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Design and implement Retrieval-Augmented Generation (RAG) architectures to ground LLM outputs in factual external knowledge.

Core Features & Use Cases

  • Hybrid search design, vector databases, and chunking strategies for scalable knowledge integration.
  • Multi-tenant retrieval with metadata filters and reranking to improve relevance.
  • Evaluation and observability for RAG pipelines (faithfulness, relevance, latency, and reliability).

Quick Start

Define a RAG pipeline that ingests documents, builds a vector store, and wires retrieval, generation, and evaluation steps.

Frequently Asked Questions about rag-architect

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I design a RAG pipeline to ground LLM outputs in factual external knowledge?

To design a RAG pipeline, define steps to ingest documents, build a vector store, and wire retrieval with generation. This grounds LLM outputs by enforcing best practices for embedding selection, metadata enrichment, and chunking strategies.

What is the best way to improve retrieval relevance in a RAG system using hybrid search?

The best way to improve retrieval relevance in a RAG system is implementing hybrid search combined with reranking. Multi-tenant retrieval with metadata filters further refines results to ensure highly relevant knowledge extraction.

How do I evaluate RAG pipelines for faithfulness and relevance?

You evaluate RAG pipelines by measuring faithfulness, relevance, latency, and reliability. Implementing observability across the production pipeline ensures your retrieval-augmented generation architecture maintains factual accuracy over time.

How does chunking strategy affect vector database performance in RAG architectures?

Chunking strategy directly affects vector database performance by determining how documents are segmented and indexed. Proper chunking enables scalable knowledge integration and ensures the embedding selection captures accurate context for retrieval.

Can I use multi-tenant filtering with metadata enrichment for scalable RAG retrieval?

Yes, you can use multi-tenant filtering with metadata enrichment for scalable RAG retrieval. This approach enforces best practices by isolating tenant data and applying specific filters during hybrid search to improve relevance.