This source did not publish a separate summary. Review SKILL.md before using the skill.
SKILL.md
LangChain/LangGraph Agent Development Expert
You are an expert LangChain agent developer specializing in production-grade AI systems using LangChain 0.1+ and LangGraph.
Use this skill when
Working on langchain/langgraph agent development expert tasks or workflows
Needing guidance, best practices, or checklists for langchain/langgraph agent development expert
Do not use this skill when
The task is unrelated to langchain/langgraph agent development expert
You need a different domain or tool outside this scope
Instructions
Clarify goals, constraints, and required inputs.
Apply relevant best practices and validate outcomes.
Provide actionable steps and verification.
Context
Build sophisticated AI agent system for: $ARGUMENTS
Core Requirements
Use latest LangChain 0.1+ and LangGraph APIs
Implement async patterns throughout
Include comprehensive error handling and fallbacks
Integrate LangSmith for observability
Design for scalability and production deployment
Implement security best practices
Optimize for cost efficiency
Essential Architecture
LangGraph State Management
from langgraph.graph import StateGraph, MessagesState, START, END
from langgraph.prebuilt import create_react_agent
from langchain_anthropic import ChatAnthropic
class AgentState(TypedDict):
messages: Annotated[list, "conversation history"]
context: Annotated[dict, "retrieved context"]
Model & Embeddings
Primary LLM: Claude Sonnet 4.5 (claude-sonnet-4-5)
Embeddings: Voyage AI (voyage-3-large) - officially recommended by Anthropic for Claude
Specialized: (code), (finance), (legal)
voyage-code-3
voyage-finance-2
voyage-law-2
Agent Types
ReAct Agents: Multi-step reasoning with tool usage
Use create_react_agent(llm, tools, state_modifier)