惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
量子位
人人都是产品经理
人人都是产品经理
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Recent Announcements
Recent Announcements
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
N
Netflix TechBlog - Medium
H
Help Net Security
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
The Cloudflare Blog
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
Vercel News
Vercel News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Do not treat LangGraph as a longer chain: define state, i...
Tang Weigang · 2026-06-23 · via DEV Community

Tang Weigang

The easiest way to misunderstand LangGraph is to see it as “LangChain, but with more steps.”

That misses the point.

LangGraph becomes useful when an agent is no longer a single prompt or a simple chain. It becomes useful when the workflow has state, branches, tool calls, human approval, checkpointing, and recovery behavior that must be inspected before the agent is trusted inside a real AI host.

I used the Doramagic LangGraph manual as the source-backed reading layer for this note:
https://doramagic.ai/en/projects/langgraph/manual/

This is an independent project guide, not an official LangGraph document. I use it as a pre-adoption checklist: what should be understood before wiring a project into Claude, ChatGPT, Cursor, Codex, or another AI host.

The point is not to create another prompt library. The useful artifact is a capability resource pack: a manual, source map, boundary notes, pitfall log, smoke check, lightweight eval criteria, feedback notes, and host-ready context that help a developer decide what to verify before adoption.

1. The real boundary is State, not the prompt

For a one-shot model call, the prompt is often the main boundary.

For LangGraph, the first boundary is the State schema:

  • which fields move between nodes;
  • which fields a node may update;
  • how concurrent branches merge values;
  • which values enter a checkpoint;
  • which values should never be persisted.

This is why reducers matter. A message list is usually not just overwritten. It needs an append or merge rule such as add_messages or the TypeScript equivalent. That small implementation detail decides whether parallel work preserves context or silently drops it.

My preferred first run is not a “universal agent.” It is a tiny graph with one State schema, one node, one partial update, and one explicit reducer. If that is not clear, adding tools will only hide the problem.

2. compile() is the boundary between description and runtime

Before compile(), a LangGraph graph is a description: nodes, edges, conditional routes, state fields, reducers.

After compile(), the Pregel-style runtime takes over. Nodes execute in supersteps. Partial state updates go through channels and reducers. Conditional edges choose the next node.

That changes how debugging should work. When a graph fails, do not inspect only the node function. Inspect four contracts at the same time:

  • Does the State schema allow this node to write the returned key?
  • Does the node return at least one valid State field?
  • Does the reducer match the intended merge behavior?
  • Does the conditional edge have a real exit path?

The Doramagic manual highlights errors such as InvalidUpdateError: Must write to at least one of [...]. That is not just a random runtime annoyance. It often means the node return shape and State schema do not agree.

3. Human-in-the-loop is an execution contract

LangGraph’s interrupt and human-in-the-loop support should not be treated as interface decoration.

If an agent can send email, edit files, call external APIs, or touch production systems, the approval step should be part of the graph contract, not a person watching the screen and hoping to catch mistakes.

A practical pattern is:

  • the model proposes a tool call;
  • a graph node raises an interrupt;
  • the human approves, ignores, or edits one concrete action;
  • the structured response returns to the graph;
  • execution resumes from the interrupt point instead of restarting the whole workflow.

That is why LangGraph fits recoverable workflow agents better than simple chat demos.

4. Checkpointing is not logging

Checkpointing is easy to describe as “saving history.” In LangGraph, that description is too weak.

The manual separates checkpointing, serialization, and stores:

  • a checkpointer is scoped to a thread and supports durable execution, replay, and resume;
  • a store is cross-thread long-term memory;
  • serialization defines how Python objects become stored and reconstructed data.

One security detail deserves attention before adoption: the checkpoint serializer can handle Python objects from checkpoint data. New applications should consider LANGGRAPH_STRICT_MSGPACK=true or an explicit allowed_msgpack_modules list for JsonPlusSerializer.

That is not an advanced edge case. If checkpoint data may cross a trust boundary, deserialization policy is part of the system boundary.

5. A better first-run checklist

For a first LangGraph test, I would keep the path intentionally small:

  1. Use a temporary directory. Do not connect production data.
  2. Define a minimal State with messages and one business field.
  3. Write one node that returns only valid State fields.
  4. Attach a reducer to any append-like field.
  5. Add one interrupt around a concrete tool-like action.
  6. Add a checkpointer.
  7. Force one node to fail, then verify resume behavior.

If this path fails, do not move on to real tools yet. The problem is not that the agent is weak. The runtime boundary has not been verified.

The smoke check should have pass/fail criteria, not a vague “seems to work” result. A useful minimum is: the node writes only declared State fields; the interrupt happens before a real side effect; resume behavior does not repeat already successful sibling writes; and serializer limits are explicit. If any of those are unclear, the decision should be HOLD, not “try it in production and see.”

6. My practical take

LangGraph is worth studying because it makes the hard parts of agent workflows explicit:

  • state;
  • branching;
  • tool calls;
  • human approval;
  • checkpointing;
  • failure recovery;
  • thread-scoped state versus long-term memory.

If your task is a one-off model call, LangGraph may be more machinery than you need.

If your AI host needs to run multi-step work where each step must be inspectable, pausable, recoverable, and reviewable, LangGraph becomes much more interesting.

The better question is not “Can LangGraph build an agent?”

The better question is: “Can my agent’s state, tool boundary, and recovery path be written as a graph?”

Answer that first. Then decide whether LangGraph belongs in the stack.