create-langgraph-app
v1.1.0
Published
Scaffold a new LangGraph multi-agent project in seconds
Downloads
16
Maintainers
Readme
create-langgraph-app
Interactive CLI to scaffold a new LangGraph multi-agent project in seconds.
Usage
npx create-langgraph-appWhat it does
- Asks for your project name
- Lets you pick an LLM provider (OpenAI, Anthropic, Google, Groq, Ollama)
- Lets you select which agent patterns to include:
- Supervisor — central coordinator + worker agents
- Swarm — peer-to-peer agent handoffs
- Human-in-the-Loop — approval before dangerous actions
- Structured Output — typed JSON responses
- RAG — retrieval-augmented generation
- Generates a ready-to-run project with only the patterns you selected
- Installs dependencies
Development
cd create-langgraph-app
npm install
npm run dev # Run locallyPublishing
cd create-langgraph-app
npm run build
npm publish