What problem does it solve?
This Skill solves the problem of building reliable retrieval-augmented generation (RAG) systems by providing an end-to-end blueprint that turns your documents into searchable knowledge for LLM answers.
Core Features & Use Cases
- Indexing pipeline: Load documents, split them into context-preserving chunks, embed them, and store them in a vector database.
- Retrieval pipeline: Embed the user query and fetch the most relevant chunks using similarity or MMR, optionally with metadata filters.
- Generation integration: Combine retrieved context with the user query to produce grounded responses, including an agent/tool pattern for iterative QA.
Use case example: You have a folder of mixed documents (PDFs, web pages, and text files) and want a chatbot that answers questions using only your internal content; use this Skill to implement document loading, chunking, embeddings, vector store persistence (or in-memory for tests), retrieval, and context-grounded generation.
Quick Start
Use this Skill to implement a complete RAG pipeline by choosing a document loader, splitting strategy, embedding model, and vector store, then wiring retrieval results into your LLM prompt for grounded answers.