react-agents-in-langgraph

Guidance for building ReAct agents in LangGraph. ReAct means an agent repeatedly reasons about a task, uses a tool, observes the result, and continues until it can answer.

In plain words
What is it for?
Use it to create tool-using agents, connect models and custom tools, and migrate older LangGraph agent code to current APIs.
Why use it?
It clarifies the agent loop and current LangChain and LangGraph choices, including the newer approach for starting agents.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/postindustria-tech/agentic-toolkit/langgraph-dev-react-agents
Any agent
npx skills add postindustria-tech/agentic-toolkit --skill langgraph-dev-react-agents
Clone the repo
git clone --depth 1 https://github.com/postindustria-tech/agentic-toolkit

Made for: Claude Code, Codex.

Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,193 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00054 $0.02193
Opus 5 $0.00027 $0.01097
Sonnet 5 $0.00011 $0.00439
Haiku 4.5 $0.00005 $0.00219

Measured yesterday against content hash 92038788619c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

react-agents-in-langgraph scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/langgraph-dev/skills/langgraph-dev-react-agents/SKILL.md · 276 lines

How it starts

The opening of the file, as written. The whole thing — 276 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ReAct Agents in LangGraph

Note: This skill targets LangGraph v1.0+ (released October 2025). The create_react_agent function from langgraph.prebuilt is deprecated in favor of langchain.agents.create_agent. However, create_react_agent remains functional for existing code. For new projects, use from langchain.agents import create_agent (requires LangChain >= 1.0).

ReAct (Reasoning + Acting) is a pattern where LLMs iteratively reason about tasks, select actions (tools), observe results, and continue until reaching a final answer.

ReAct Loop Pattern

Thought -> Action -> Observation -> Repeat until Final Answer

Quick Start with Prebuilt Agent

For rapid prototyping, use the prebuilt create_react_agent:

from langgraph.prebuilt import create_react_agent
from langchain_anthropic import ChatAnthropic
from langchain_core.tools import tool

@tool
def search_tool(query: str) -> str:
    """Search the web for information."""
    return f"Results for: {query}"

# Create model instance (recommended over string format)
model = ChatAnthropic(model="claude-sonnet-4-5-20250929")

# Create a ReAct agent
# DEPRECATED in LangGraph v1.0: Migrate to `from langchain.agents import create_agent`
# For new projects, use: agent = create_agent(model=model, tools=[search_tool], system_prompt="You are a helpful assistant.")
agent = create_react_agent(
    model=model,
    tools=[search_tool],
    prompt="You are a helpful assistant."  # Also accepts SystemMessage, Callable, or Runnable
)

# Run the agent
result = agent.invoke({"messages": [("user", "Search for LangGraph docs")]})

Model Options: Pass a model instance (ChatAnthropic, ChatOpenAI) or use string format "provider:model-name" (e.g., "openai:gpt-4o").

Prompt Flexibility: The prompt parameter accepts: string, SystemMessage, Callable[[list[BaseMessage]], list[BaseMessage]], or Runnable.

Custom Implementation (From Scratch)

For full control over the agent loop, build a custom ReAct graph:

Read the full file on GitHub · 276 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 276 lines · 54 tokens per session scan A 92038788619c

Subscribe to this mod's changes

react-agents-in-langgraph is a skill published in the GitHub repository postindustria-tech/agentic-toolkit (2 stars, last pushed 1mo ago), licensed MIT. It adds 54 tokens to every session and 2,193 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

babysit-pr

Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…

openai/codex · 114 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens