langgraph-master

Design and implement LangGraph-based AI agents with architecture patterns and code sketches.

3|Updated Nov 5, 2025
One-click install
npx skills add https://github.com/hiroshi75/ccplugins --skill langgraph-master
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: langgraph-master
Source: https://github.com/hiroshi75/ccplugins/tree/main/langgraph-master-plugin/skills/langgraph-master
Command: npx skills add https://github.com/hiroshi75/ccplugins --skill langgraph-master

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

A complete guide for building AI agents with LangGraph, covering core concepts, architecture patterns, memory management, tool integration, and advanced features.

Core Features & Use Cases

  • Central reference for core LangGraph concepts and patterns
  • Detailed guides on six major graph patterns and agent design
  • Practical examples and best practices across memory, tool integration, and advanced features

Quick Start

Read the core concept pages in order or jump to architecture patterns and examples as needed.

Frequently Asked Questions about langgraph-master

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I design AI agents with LangGraph?

LangGraph enables designing AI agents through explicit graph-based architectures using nodes and edges to define control flow. The Skill provides architecture patterns, memory management strategies, tool integration approaches, and practical implementation guidance for building type-safe, composable agent workflows.

What are the core LangGraph patterns for agent workflows?

LangGraph supports six major agent patterns: basic routing, parallel execution, subgraph composition, evaluator–optimizer loops, human-in-the-loop processes, and tool integration. Each pattern addresses different control flow requirements, from simple sequential flows to complex multi-agent hierarchies with checkpointing and streaming.

How do I implement memory and state management in LangGraph agents?

State management in LangGraph uses explicit state definitions passed between nodes and edges. The Skill covers memory management strategies including checkpointer and store usage, enabling persistent state across agent execution, tool interactions, and multi-turn conversations.

Can I use multiple LLMs and parallel execution in LangGraph?

Yes, LangGraph supports parallel node execution, multi-LLM model guidance, and the Command API for advanced routing. The Skill provides concrete examples for orchestrating multiple language models, conditional branching, and concurrent task execution within a single graph.

What's the best way to integrate tools into LangGraph agents?

Tool integration in LangGraph uses dedicated tool nodes connected via edges in the graph. The Skill covers tool node implementation, Command API usage for dynamic tool selection, and patterns for handling tool outputs and error states within agent workflows.

How do I structure subgraphs and human-in-the-loop processes?

Subgraph composition allows nesting complete graphs as nodes, enabling modular agent design and code reuse. The Skill demonstrates human-in-the-loop patterns where agents pause for user input, approval, or feedback before continuing execution.