Agent skill · Workflow & Productivity

langgraph

LangGraph workflow patterns for agent orchestration

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Version: 2.0.0
Declared author: Unite Group
Path: skills/ai-llm/langgraph-skill/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 Patterns ## Graph Structure ```python from typing import TypedDict from langgraph.graph import StateGraph, END class GraphState(TypedDict): """State passed between nodes.""" input: str output: str | None error: str | None australian_context: dict | None # Locale info def create_graph() -> StateGraph: workflow = StateGraph(GraphState) # Add nodes workflow.add_node("process", process_node) workflow.add_node("validate", validate_node) workflow.add_node("respond", respond_node) # Set entry point workflow.set_entry_point("process") # Add edges workflow.add_edge("process", "validate") workflow.add_conditional_edges( "validate", check_validation, { "valid": "respond", "invalid": END, } ) workflow.add_edge("respond", END) return workflow.compile() ``` ## Node Implementation ```python async def process_node(state: GraphState) -> GraphState: """Process the input with Australian context.""" try: # Load Australian context if not present if not state.get("australian_context"): state["australian_context"] = { "locale": "en-AU", "currency": "AUD", "date_format": "DD/MM/YYYY", "timezone": "Australia/Brisbane" } result = await process_input(state["input"], state["australian_context"]) s

What's inside
Steps it walks through
  1. Graph Structure
  2. Node Implementation
  3. State Management
  4. Checkpointing
  5. State Updates
  6. Conditional Routing
  7. Parallel Execution
  8. Multi-Agent Workflow Pattern
  9. Error Handling
  10. Australian Context in Workflows
  11. Testing Graphs
  12. Verification
  13. Integration with Agents
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the langgraph skill do?

LangGraph workflow patterns for agent orchestration

How do I install it?

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