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.
npx agentmods add skills/postindustria-tech/agentic-toolkit/langgraph-dev-react-agentsnpx skills add postindustria-tech/agentic-toolkit --skill langgraph-dev-react-agentsgit clone --depth 1 https://github.com/postindustria-tech/agentic-toolkitWhat 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.
| Model | Per session | Once 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 |
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.
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_agentfunction fromlanggraph.prebuiltis deprecated in favor oflangchain.agents.create_agent. However,create_react_agentremains functional for existing code. For new projects, usefrom 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
promptparameter accepts: string,SystemMessage,Callable[[list[BaseMessage]], list[BaseMessage]], orRunnable.
Custom Implementation (From Scratch)
For full control over the agent loop, build a custom ReAct graph:
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.
- yesterday First seen · 276 lines · 54 tokens per session scan A 92038788619c
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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
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…
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…
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…
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…