langgraph-project-setup
Installation
SKILL.md
LangGraph Project Setup
Initialize and configure LangGraph projects for local development and deployment.
Quick Start
Python Project
# Initialize new project
uv run scripts/init_langgraph_project.py my-agent
# Fallback if uv not available
python3 scripts/init_langgraph_project.py my-agent
# Or with options
uv run scripts/init_langgraph_project.py my-agent \
--pattern multiagent \
--python-version 3.12