langgraph-supervisor
Installation
SKILL.md
LangGraph Supervisor Pattern
Coordinate multiple specialized agents with a central supervisor.
Overview
- Building central coordinator agents that dispatch to workers
- Implementing round-robin or priority-based task routing
- Tracking agent completion and workflow progress
- Using Command API for combined state update + routing
Quick Start
from langgraph.graph import StateGraph, START, END
from langgraph.types import Command
from typing import Literal, TypedDict