What problem does it solve? Building LLM-powered applications requires wiring together model providers, tool calling, memory, and retrieval pipelines from scratch. This Skill provides working patterns for LangChain so you can assemble agents, RAG systems, and chatbots without reinventing the integration layer. ## Core Features & Use Cases - Agent Construction: Create ReAct and tool-calling agents with parallel tool execution, streaming, error handling, and structured output in under ten lines of code. - RAG Pipelines: Load documents from web, PDF, GitHub, or CSV, split them into chunks, embed them into Chroma, Pinecone, or FAISS, and query them with conversational QA chains. - Provider Flexibility: Swap between OpenAI, Anthropic, Google, and local Ollama models with identical interfaces, plus LangSmith tracing for observability. - Use Case: Build a documentation chatbot that loads your project's docs, indexes them in a vector store, and answers multi-turn questions with source citations and conversation memory. ## Quick Start Ask the assistant to create a LangChain agent with a calculator and web search tool using the Anthropic model, then run a sample query against it.