What problem does it solve? Building production AI agents requires explicit control over state, branching, cycles, and persistence, which ad-hoc prompt chains cannot provide. This Skill guides the design and implementation of LangGraph agents with visible, debuggable graph structures. ## Core Features & Use Cases - Graph Construction: Define StateGraph nodes, edges, and conditional routing for ReAct-style agents with tool calling. - State Management: Use reducers to merge, append, or accumulate shared state across multiple agents. - Persistence & Human-in-the-Loop: Add SQLite or PostgreSQL checkpointers for conversation continuity and interrupt-based human approval. - Use Case: Build a research assistant that fans out parallel topic research with Send, accumulates findings via reducers, pauses for human approval before publishing, and resumes from checkpoints across sessions. ## Quick Start Use the langgraph skill to build a ReAct agent with tool calling and SQLite checkpoint persistence.