Implement and configure multi-agent coordination patterns for LangGraph applications.
| Pattern | Best For | When to Use |
| Supervisor | Complex workflows, dynamic routing | Agents need to collaborate, routing is context-dependent | | Router | Simple categorization, independent tasks | One-time routing, deterministic decisions | | Orchestrator-Worker | Parallel execution, high throughput | Independent subtasks, results need aggregation |
LangGraph 애플리케이션을 위한 다중 에이전트 조정 패턴(감독자-하위 에이전트, 라우터, 조정자-작업자, 핸드오프)을 구현합니다. 사용자가 (1) 다중 에이전트 시스템 구현, (2) 여러 전문 에이전트 조정, (3) 조정 패턴 중에서 선택, (4) 감독자-하위 에이전트 워크플로 설정, (5) 라우터 기반 에이전트 선택 구현, (6) 병렬 오케스트레이터-작업자 패턴 생성, (7) 에이전트 핸드오프 구현, (8) 다중 에이전트 시스템에 대한 상태 스키마 설계 또는 (9) 다중 에이전트 조정 문제 디버깅을 원할 때 사용합니다. 출처: lubu-labs/langchain-agent-skills.