rag-implementation

Builds minimal RAG pipelines combining vector stores and document retrieval for grounded answers.

Updated Feb 3, 2026
One-click install
npx skills add https://github.com/leonardoteodoroo/amino-advanced --skill rag-implementation-leonardoteodoroo
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rag-implementation
Source: https://github.com/leonardoteodoroo/amino-advanced/tree/main/.agent/skills/rag-implementation
Command: npx skills add https://github.com/leonardoteodoroo/amino-advanced --skill rag-implementation-leonardoteodoroo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Retrieval-Augmented Generation enables LLMs to ground answers in external documents by combining embeddings, vector stores, and retrieval strategies, reducing hallucinations and enabling knowledge-grounded AI workflows.

Core Features & Use Cases

  • Vector databases, embeddings, and retrieval strategies for semantic search and document QA.
  • Reranking, HyDE-style prompts, and evaluation patterns to improve accuracy and citation quality.
  • Use cases include knowledge-grounded chatbots, proprietary document Q&A, and research tooling with source citation.

Quick Start

Build a minimal RAG pipeline that retrieves from a vector store and generates grounded answers from a document collection.

Frequently Asked Questions about rag-implementation

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

FAQPage Schema
How does retrieval-augmented generation reduce LLM hallucinations?

Retrieval-augmented generation reduces hallucinations by anchoring LLM outputs in external documents using embeddings, vector stores, and retrieval strategies to verify generated information.

How do I build a RAG pipeline for document QA?

You can build a minimal RAG pipeline by generating embeddings from your documents, storing them in a vector database, and retrieving relevant chunks to generate grounded answers with citations.

What retrieval strategies improve accuracy in retrieval-augmented generation?

Reranking retrieved documents and applying HyDE-style prompts improve citation quality and accuracy in retrieval-augmented generation by refining the context passed to the LLM.

Do I need a vector database to implement semantic search for chatbots?

Yes, a vector database is required to store document embeddings and perform the semantic search necessary to retrieve relevant context for knowledge-grounded chatbots.

Can I add source citations to my LLM research tooling?

Yes, retrieval-augmented generation supports research tooling by retrieving specific document chunks, allowing the LLM to generate answers with direct source citations for verifiable information.