langgraph-state
✓LangGraph state management patterns. Use when designing workflow state schemas, using TypedDict vs Pydantic, implementing accumulating state with Annotated operators, or managing shared state across nodes.
Installation
SKILL.md
Note: MessageGraph is deprecated in LangGraph v1.0.0. Use StateGraph with a messages key instead.
| TypedDict vs Pydantic | TypedDict for internal state, Pydantic at boundaries | | Messages state | Use MessagesState or addmessages reducer | | Accumulators | Always use Annotated[list, add] for multi-agent | | Nesting | Keep state flat (easier debugging) | | Immutability | Return new state, don't mutate |
2026 Guidance: Use TypedDict inside the graph (lightweight, no runtime overhead). Use Pydantic at boundaries (inputs/outputs, user-facing data) for validation.
LangGraph state management patterns. Use when designing workflow state schemas, using TypedDict vs Pydantic, implementing accumulating state with Annotated operators, or managing shared state across nodes. Source: yonatangross/skillforge-claude-plugin.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/yonatangross/skillforge-claude-plugin --skill langgraph-state- Category
- >_Productivity
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is langgraph-state?
LangGraph state management patterns. Use when designing workflow state schemas, using TypedDict vs Pydantic, implementing accumulating state with Annotated operators, or managing shared state across nodes. Source: yonatangross/skillforge-claude-plugin.
How do I install langgraph-state?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/yonatangross/skillforge-claude-plugin --skill langgraph-state Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/yonatangross/skillforge-claude-plugin
Details
- Category
- >_Productivity
- Source
- skills.sh
- First Seen
- 2026-02-01