Agent skill · AI & Agents

langgraph-implementation

Implements stateful agent graphs using LangGraph. Use when building graphs, adding nodes/edges, defining state schemas, implementing checkpointing, handling interrupts, or creating multi-agent systems with LangGraph.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill langgraph-implementation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/agent/langgraph-implementation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# LangGraph Implementation ## Core Concepts LangGraph builds stateful, multi-actor agent applications using a graph-based architecture: - **StateGraph**: Builder class for defining graphs with shared state - **Nodes**: Functions that read state and return partial updates - **Edges**: Define execution flow (static or conditional) - **Channels**: Internal state management (LastValue, BinaryOperatorAggregate) - **Checkpointer**: Persistence for pause/resume capabilities ## Essential Imports ```python from langgraph.graph import StateGraph, START, END from langgraph.graph.message import MessagesState, add_messages from langgraph.checkpoint.memory import InMemorySaver from langgraph.types import Command, Send, interrupt, RetryPolicy from typing import Annotated from typing_extensions import TypedDict ``` ## State Schema Patterns ### Basic State with TypedDict ```python class State(TypedDict): counter: int # LastValue - stores last value messages: Annotated[list, operator.add] # Reducer - appends lists items: Annotated[list, lambda a, b: a + [b] if b else a] # Custom reducer ``` ### MessagesState for Chat Applications ```python from langgraph.graph.message import MessagesState class Stat

What's inside
Steps it walks through
  1. Core Concepts
  2. Essential Imports
  3. State Schema Patterns
  4. Basic State with TypedDict
  5. MessagesState for Chat Applications
  6. Pydantic State (for validation)
  7. Building Graphs
  8. Basic Pattern
  9. Node Function Signature
  10. Conditional Edges
  11. Command Pattern (Dynamic Routing + State Update)
  12. Send Pattern (Fan-out/Map-Reduce)
  13. Checkpointing
  14. Enable Persistence
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the langgraph-implementation skill do?

Implements stateful agent graphs using LangGraph. Use when building graphs, adding nodes/edges, defining state schemas, implementing checkpointing, handling interrupts, or creating multi-agent systems with LangGraph.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill langgraph-implementation --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going