Agent skill · Frontend

langgraph-python

Design and build AI agents with LangGraph. Use when building ReAct agents, multi-agent systems, workflow orchestration, human-in-the-loop patterns, or state machine workflows.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/ai-llm/langgraph-python/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 Skill LangGraph: Framework for stateful, multi-actor AI applications. **For latest API syntax, use `context7` MCP.** --- ## Core Concepts ```python from langgraph.graph import StateGraph, MessagesState, START, END from langgraph.prebuilt import create_react_agent, ToolNode, tools_condition from langgraph.types import Command, interrupt, Send from langgraph.checkpoint.memory import InMemorySaver ``` | Concept | Description | |---------|-------------| | **StateGraph** | Graph managing state. Updates after each node | | **MessagesState** | Built-in state for chat (includes messages list) | | **Node** | Function: receives state → returns updates | | **Edge** | Transition: static (`add_edge`) or conditional | | **Checkpointer** | Persistence for conversation history, pause/resume | | **Command** | Dynamic routing + state update together | | **interrupt** | Pause for human-in-the-loop | | **Send** | Dynamically spawn parallel workers | --- ## Pattern Selection Guide ``` Need to use tools? ├─ Yes → ReAct Agent └─ No → Workflow patterns Sequential or parallel? ├─ Sequential → Prompt Chaining ├─ Parallel → Parallelization └─ Both → Orchestrator-Worker Different handling by input

What's inside
Steps it walks through
  1. Core Concepts
  2. Pattern Selection Guide
  3. 1. ReAct Agent (Tool-Using)
  4. 2. Prompt Chaining (Sequential)
  5. 3. Parallelization
  6. 4. Routing
  7. 5. Orchestrator-Worker (Send)
  8. 6. Evaluator-Optimizer (Reflection)
  9. 7. Multi-Agent: Supervisor
  10. 8. Multi-Agent: Hierarchical
  11. 9. Human-in-the-Loop
  12. Persistence (Memory)
  13. State Definition
  14. Common Errors & Fixes
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the langgraph-python skill do?

Design and build AI agents with LangGraph. Use when building ReAct agents, multi-agent systems, workflow orchestration, human-in-the-loop patterns, or state machine workflows.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill langgraph-python --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