langgraph-agents

Installation
SKILL.md

<quick_start> State schema (foundation):

from typing import TypedDict, Annotated
from langgraph.graph import add_messages

class AgentState(TypedDict, total=False):
    messages: Annotated[list, add_messages]  # Auto-merge
    next_agent: str  # For handoffs
Related skills

More from scientiacapital/skills

Installs
77
GitHub Stars
15
First Seen
Jan 23, 2026