What problem does it solve? Building production AI agents requires explicit control over state, flow, and persistence, which ad-hoc prompt chains cannot provide. This Skill guides the construction of LangGraph-based agents with visible, debuggable graph structures, managed state, and resumable execution. ## Core Features & Use Cases - Graph Construction: Define StateGraph workflows with nodes, edges, conditional routing, and cycles for ReAct-style agents. - State Management: Use TypedDict state with reducers (append, merge, accumulate) so multiple agents can safely update shared state. - Persistence & Human-in-the-Loop: Apply checkpointers for resumable conversations and human approval steps in production agents. - Use Case: Build a research assistant where a classifier node routes queries to coding, search, or chat agents, with findings and sources accumulating in shared state across the workflow. ## Quick Start Ask the AI to build a LangGraph ReAct agent with tool calling, conditional routing, and a checkpointer for persistence.