What problem does it solve? Building production LLM applications requires coordinating agents, memory, document retrieval, and tool integration, which is error-prone without proven architectural patterns and evaluation workflows. ## Core Features & Use Cases - Agent & Chain Patterns: Provides implementations for ReAct agents, sequential chains, router chains, and custom tool integration using LangChain. - RAG Pipeline Design: Covers semantic chunking, hybrid search (BM25 + vector with RRF), HyDE query transformation, and citation-grounded generation. - Memory & Evaluation: Guides selection of memory types (buffer, summary, entity, vector store) and RAG evaluation using the RAG Triad with Ragas or TruLens. - Use Case: When building a document Q&A chatbot, use this Skill to set up a Chroma vector store, configure hybrid retrieval, ground answers with source citations, and measure groundedness before deployment. ## Quick Start Ask the agent to design a RAG pipeline with LangChain that loads documents, builds a vector store, and answers questions with source citations.