What problem does it solve? Building LLM-powered applications requires wiring together model providers, tools, memory, and retrieval pipelines from scratch. This Skill provides the LangChain framework patterns to assemble agents, chains, and RAG systems with swappable providers like OpenAI, Anthropic, and Google. ## Core Features & Use Cases - ReAct Agents with Tool Calling: Create agents that reason and invoke custom tools, with parallel execution, streaming, and error handling in under 10 lines of code. - RAG Pipelines: Load documents, split text, embed into vector stores (Chroma, Pinecone, FAISS), and build QA chains with source citations and conversational memory. - Provider Abstraction & Observability: Swap between OpenAI, Anthropic, and Google models with identical code, and trace every run with LangSmith. - Use Case: Build a documentation chatbot that loads your product docs into a Chroma vector store, retrieves relevant chunks per question, and answers with cited sources while remembering conversation history. ## Quick Start Use the langchain skill to create a ReAct agent with a calculator and web search tool powered by Claude.