
Langchain Fundamentals
- 12.3k installs
- 1.1k repo stars
- Updated July 30, 2026
- langchain-ai/langchain-skills
How to create production LangChain agents with create_agent(), define callable tools, implement middleware for control flow, and manage agent state.
About
This skill covers creating LangChain agents using create_agent(), the recommended method for building production agents. Developers learn to define tools via @tool decorator or tool() function, configure agents with models and system prompts, and implement middleware for human-in-the-loop workflows and error handling. Key workflows include setting up checkpointers for conversation persistence across invocations, using middleware to intercept and control agent loops, configuring structured output for typed responses, and avoiding common pitfalls like missing tool descriptions, infinite loops, and incorrect result access patterns.
- Use create_agent() with model, tools, system_prompt, checkpointer, and middleware parameters for production-grade agents
- Define tools with @tool decorator (Python) or tool() function (TypeScript) with clear descriptions and type-safe schemas
- Implement middleware patterns (HumanInTheLoopMiddleware, @wrap_tool_call, createMiddleware) for approval workflows and c
- Add MemorySaver checkpointer and thread_id for conversation state persistence across multiple invoke calls
- Set recursion_limit and response_format to prevent infinite loops and enforce structured output validation
Langchain Fundamentals by the numbers
- 12,328 all-time installs (skills.sh)
- +427 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #64 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
langchain-fundamentals capabilities & compatibility
- Capabilities
- create agents with create_agent() factory functi · define typed tools with @tool decorator or tool( · implement middleware for human approval and cust · persist conversation state with checkpointers · generate structured output with response_format · configure llm instances with custom parameters · handle common pitfalls (infinite loops, missing
- Works with
- anthropic · openai
- Use cases
- orchestration · code review
- Platforms
- macOS · Windows · Linux
- Runs
- Runs locally
- Pricing
- Free
What langchain-fundamentals says it does
When creating LangChain agents, you MUST use create_agent(), with middleware for custom flows. All other alternatives are outdated.
Add checkpointer and thread_id for conversation memory across invocations.
npx skills add https://github.com/langchain-ai/langchain-skills --skill langchain-fundamentalsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 12.3k |
|---|---|
| repo stars | ★ 1.1k |
| Security audit | 2 / 3 scanners passed |
| Last updated | July 30, 2026 |
| Repository | langchain-ai/langchain-skills ↗ |
What it does
Build production LangChain agents with tool definitions, middleware patterns, and stateful conversation memory.
Who is it for?
Building multi-step AI agents that use external tools, maintaining conversation memory, implementing human-in-the-loop approval, and handling edge cases like runaway loops.
Skip if: Simple single-turn LLM calls without tool use or state management; basic chatbots without tool integration.
When should I use this skill?
Architect agents that need to call external tools, maintain multi-turn conversation context, require human approval, or need custom control flow via middleware.
What you get
Developers can build stateful agents with tool integrations, middleware control, and structured output validation using LangChain's create_agent() pattern.
- Working agent with tool definitions
- Middleware for control flow
- Checkpointer for state persistence
By the numbers
- create_agent() handles agent loop, tool execution, and state management automatically
- 5 key parameters: model, tools, system_prompt, checkpointer, middleware
- 3 common mistakes addressed: missing tool descriptions, no checkpointer, no recursion limit
Files
<oneliner> Build production agents using create_agent(), middleware patterns, and the @tool decorator / tool() function. When creating LangChain agents, you MUST use create_agent(), with middleware for custom flows. All other alternatives are outdated. </oneliner>
<create_agent>
Creating Agents with create_agent
create_agent() is the recommended way to build agents. It handles the agent loop, tool execution, and state management.
Agent Configuration Options
| Parameter | Purpose | Example |
|---|---|---|
model | LLM to use | "anthropic:claude-sonnet-4-5" or model instance |
tools | List of tools | [search, calculator] |
system_prompt / systemPrompt | Agent instructions | "You are a helpful assistant" |
checkpointer | State persistence | MemorySaver() |
middleware | Processing hooks | [HumanInTheLoopMiddleware] (Python) / [humanInTheLoopMiddleware({...})] (TypeScript) |
</create_agent>
<ex-basic-agent> <python>
from langchain.agents import create_agent
from langchain_core.tools import tool
@tool
def get_weather(location: str) -> str:
"""Get current weather for a location.
Args:
location: City name
"""
return f"Weather in {location}: Sunny, 72F"
agent = create_agent(
model="anthropic:claude-sonnet-4-5",
tools=[get_weather],
system_prompt="You are a helpful assistant."
)
result = agent.invoke({
"messages": [{"role": "user", "content": "What's the weather in Paris?"}]
})
print(result["messages"][-1].content)</python> <typescript>
import { createAgent } from "langchain";
import { tool } from "@langchain/core/tools";
import { z } from "zod";
const getWeather = tool(
async ({ location }) => `Weather in ${location}: Sunny, 72F`,
{
name: "get_weather",
description: "Get current weather for a location.",
schema: z.object({ location: z.string().describe("City name") }),
}
);
const agent = createAgent({
model: "anthropic:claude-sonnet-4-5",
tools: [getWeather],
systemPrompt: "You are a helpful assistant.",
});
const result = await agent.invoke({
messages: [{ role: "user", content: "What's the weather in Paris?" }],
});
console.log(result.messages[result.messages.length - 1].content);</typescript> </ex-basic-agent>
<ex-agent-with-persistence> <python> Add MemorySaver checkpointer to maintain conversation state across invocations.
from langchain.agents import create_agent
from langgraph.checkpoint.memory import MemorySaver
checkpointer = MemorySaver()
agent = create_agent(
model="anthropic:claude-sonnet-4-5",
tools=[search],
checkpointer=checkpointer,
)
config = {"configurable": {"thread_id": "user-123"}}
agent.invoke({"messages": [{"role": "user", "content": "My name is Alice"}]}, config=config)
result = agent.invoke({"messages": [{"role": "user", "content": "What's my name?"}]}, config=config)
# Agent remembers: "Your name is Alice"</python> <typescript> Add MemorySaver checkpointer to maintain conversation state across invocations.
import { createAgent } from "langchain";
import { MemorySaver } from "@langchain/langgraph";
const checkpointer = new MemorySaver();
const agent = createAgent({
model: "anthropic:claude-sonnet-4-5",
tools: [search],
checkpointer,
});
const config = { configurable: { thread_id: "user-123" } };
await agent.invoke({ messages: [{ role: "user", content: "My name is Alice" }] }, config);
const result = await agent.invoke({ messages: [{ role: "user", content: "What's my name?" }] }, config);
// Agent remembers: "Your name is Alice"</typescript> </ex-agent-with-persistence>
<tools>
Defining Tools
Tools are functions that agents can call. Use the @tool decorator (Python) or tool() function (TypeScript). </tools>
<ex-basic-tool> <python>
from langchain_core.tools import tool
@tool
def add(a: float, b: float) -> float:
"""Add two numbers.
Args:
a: First number
b: Second number
"""
return a + b</python> <typescript>
import { tool } from "@langchain/core/tools";
import { z } from "zod";
const add = tool(
async ({ a, b }) => a + b,
{
name: "add",
description: "Add two numbers.",
schema: z.object({
a: z.number().describe("First number"),
b: z.number().describe("Second number"),
}),
}
);</typescript> </ex-basic-tool>
<middleware>
Middleware for Agent Control
Middleware intercepts the agent loop to add human approval, error handling, logging, and more. A deep understanding of middleware is essential for production agents — use HumanInTheLoopMiddleware (Python) / humanInTheLoopMiddleware (TypeScript) for approval workflows, and @wrap_tool_call (Python) / createMiddleware (TypeScript) for custom hooks.
Key imports:
from langchain.agents.middleware import HumanInTheLoopMiddleware, wrap_tool_callimport { humanInTheLoopMiddleware, createMiddleware } from "langchain";Key patterns:
- HITL:
middleware=[HumanInTheLoopMiddleware(interrupt_on={"dangerous_tool": True})]— requirescheckpointer+thread_id - Resume after interrupt:
agent.invoke(Command(resume={"decisions": [{"type": "approve"}]}), config=config) - Custom middleware:
@wrap_tool_calldecorator (Python) orcreateMiddleware({ wrapToolCall: ... })(TypeScript)
</middleware>
<structured_output>
Structured Output
Get typed, validated responses from agents using response_format or with_structured_output().
<python>
from langchain.agents import create_agent
from pydantic import BaseModel, Field
class ContactInfo(BaseModel):
name: str
email: str
phone: str = Field(description="Phone number with area code")
# Option 1: Agent with structured output
agent = create_agent(model="gpt-4.1", tools=[search], response_format=ContactInfo)
result = agent.invoke({"messages": [{"role": "user", "content": "Find contact for John"}]})
print(result["structured_response"]) # ContactInfo(name='John', ...)
# Option 2: Model-level structured output (no agent needed)
from langchain_openai import ChatOpenAI
model = ChatOpenAI(model="gpt-4.1")
structured_model = model.with_structured_output(ContactInfo)
response = structured_model.invoke("Extract: John, john@example.com, 555-1234")
# ContactInfo(name='John', email='john@example.com', phone='555-1234')</python> <typescript>
import { ChatOpenAI } from "@langchain/openai";
import { z } from "zod";
const ContactInfo = z.object({
name: z.string(),
email: z.string().email(),
phone: z.string().describe("Phone number with area code"),
});
// Model-level structured output
const model = new ChatOpenAI({ model: "gpt-4.1" });
const structuredModel = model.withStructuredOutput(ContactInfo);
const response = await structuredModel.invoke("Extract: John, john@example.com, 555-1234");
// { name: 'John', email: 'john@example.com', phone: '555-1234' }</typescript> </structured_output>
<model_config>
Model Configuration
create_agent accepts model strings ("anthropic:claude-sonnet-4-5", "openai:gpt-4.1") or model instances for custom settings:
from langchain_anthropic import ChatAnthropic
agent = create_agent(model=ChatAnthropic(model="claude-sonnet-4-5", temperature=0), tools=[...])</model_config>
<fix-missing-tool-description> <python> Clear descriptions help the agent know when to use each tool.
# WRONG: Vague or missing description
@tool
def bad_tool(input: str) -> str:
"""Does stuff."""
return "result"
# CORRECT: Clear, specific description with Args
@tool
def search(query: str) -> str:
"""Search the web for current information about a topic.
Use this when you need recent data or facts.
Args:
query: The search query (2-10 words recommended)
"""
return web_search(query)</python> <typescript> Clear descriptions help the agent know when to use each tool.
// WRONG: Vague description
const badTool = tool(async ({ input }) => "result", {
name: "bad_tool",
description: "Does stuff.", // Too vague!
schema: z.object({ input: z.string() }),
});
// CORRECT: Clear, specific description
const search = tool(async ({ query }) => webSearch(query), {
name: "search",
description: "Search the web for current information about a topic. Use this when you need recent data or facts.",
schema: z.object({
query: z.string().describe("The search query (2-10 words recommended)"),
}),
});</typescript> </fix-missing-tool-description>
<fix-no-checkpointer> <python> Add checkpointer and thread_id for conversation memory across invocations.
# WRONG: No persistence - agent forgets between calls
agent = create_agent(model="anthropic:claude-sonnet-4-5", tools=[search])
agent.invoke({"messages": [{"role": "user", "content": "I'm Bob"}]})
agent.invoke({"messages": [{"role": "user", "content": "What's my name?"}]})
# Agent doesn't remember!
# CORRECT: Add checkpointer and thread_id
from langgraph.checkpoint.memory import MemorySaver
agent = create_agent(
model="anthropic:claude-sonnet-4-5",
tools=[search],
checkpointer=MemorySaver(),
)
config = {"configurable": {"thread_id": "session-1"}}
agent.invoke({"messages": [{"role": "user", "content": "I'm Bob"}]}, config=config)
agent.invoke({"messages": [{"role": "user", "content": "What's my name?"}]}, config=config)
# Agent remembers: "Your name is Bob"</python> <typescript> Add checkpointer and thread_id for conversation memory across invocations.
// WRONG: No persistence
const agent = createAgent({ model: "anthropic:claude-sonnet-4-5", tools: [search] });
await agent.invoke({ messages: [{ role: "user", content: "I'm Bob" }] });
await agent.invoke({ messages: [{ role: "user", content: "What's my name?" }] });
// Agent doesn't remember!
// CORRECT: Add checkpointer and thread_id
import { MemorySaver } from "@langchain/langgraph";
const agent = createAgent({
model: "anthropic:claude-sonnet-4-5",
tools: [search],
checkpointer: new MemorySaver(),
});
const config = { configurable: { thread_id: "session-1" } };
await agent.invoke({ messages: [{ role: "user", content: "I'm Bob" }] }, config);
await agent.invoke({ messages: [{ role: "user", content: "What's my name?" }] }, config);
// Agent remembers: "Your name is Bob"</typescript> </fix-no-checkpointer>
<fix-infinite-loop> <python> Set recursion_limit in the invoke config to prevent runaway agent loops.
# WRONG: No iteration limit - could loop forever
result = agent.invoke({"messages": [("user", "Do research")]})
# CORRECT: Set recursion_limit in config
result = agent.invoke(
{"messages": [("user", "Do research")]},
config={"recursion_limit": 10}, # Stop after 10 steps
)</python> <typescript> Set recursionLimit in the invoke config to prevent runaway agent loops.
// WRONG: No iteration limit
const result = await agent.invoke({ messages: [["user", "Do research"]] });
// CORRECT: Set recursionLimit in config
const result = await agent.invoke(
{ messages: [["user", "Do research"]] },
{ recursionLimit: 10 }, // Stop after 10 steps
);</typescript> </fix-infinite-loop>
<fix-accessing-result-wrong> <python> Access the messages array from the result, not result.content directly.
# WRONG: Trying to access result.content directly
result = agent.invoke({"messages": [{"role": "user", "content": "Hello"}]})
print(result.content) # AttributeError!
# CORRECT: Access messages from result dict
result = agent.invoke({"messages": [{"role": "user", "content": "Hello"}]})
print(result["messages"][-1].content) # Last message content</python> <typescript> Access the messages array from the result, not result.content directly.
// WRONG: Trying to access result.content directly
const result = await agent.invoke({ messages: [{ role: "user", content: "Hello" }] });
console.log(result.content); // undefined!
// CORRECT: Access messages from result object
const result = await agent.invoke({ messages: [{ role: "user", content: "Hello" }] });
console.log(result.messages[result.messages.length - 1].content); // Last message content</typescript> </fix-accessing-result-wrong>
Related skills
Forks & variants (1)
Langchain Fundamentals has 1 known copy in the catalog totaling 45 installs. They canonicalize to this original listing.
- langchain-ai - 45 installs
How it compares
Use langchain-fundamentals for agent runtime and tools; pair with langchain-rag when retrieval pipelines must feed the agent context.
FAQ
What is the correct way to create a LangChain agent?
Use create_agent() with parameters: model (LLM string or instance), tools (list), system_prompt (instructions), checkpointer (MemorySaver for persistence), and middleware (list for control flows). All other alternatives are outdated.
How do I make my agent remember conversations across calls?
Add checkpointer=MemorySaver() to create_agent() and pass config={'configurable': {'thread_id': 'unique-id'}} to every invoke() call to maintain state across multiple invocations.
How do I prevent my agent from looping forever?
Set recursion_limit in the invoke config: config={'recursion_limit': 10} (Python) or {recursionLimit: 10} (TypeScript) to stop execution after N steps.
Is Langchain Fundamentals safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.