
Langgraph Cli
- 4.3k installs
- 1.1k repo stars
- Updated July 30, 2026
- langchain-ai/langchain-skills
langgraph-cli is an agent skill for scaffolding, developing, building, and deploying LangGraph applications with the langgraph CLI and langgraph.json config.
About
langgraph-cli is an agent skill for the LangGraph CLI lifecycle from project scaffolding through local development, Docker validation, and LangGraph Platform deployment. Commands include langgraph new for template scaffolding, langgraph dev for hot-reload local servers without Docker on port 2024, langgraph build for Docker images, langgraph up for production-like Docker Compose stacks with Postgres on port 8123, and langgraph deploy for LangSmith Deployments requiring LANGSMITH_API_KEY. The langgraph.json reference documents required dependencies and graphs mappings plus optional env, python_version, dockerfile_lines, and related keys for Python and JavaScript projects. Templates include deep-agent-python, agent-python, and JavaScript project starters. Typical workflow scaffolds with new, configures graphs and env, develops with dev, validates with up --recreate, deploys to platform, and monitors via deploy logs. Gotchas note Apple Silicon Buildx requirements, dependency resolution from pyproject.toml or package.json, and that dev runs without Docker while system packages must exist locally. Developers reach for it when bootstrapping or shipping LangGraph agent graphs.
- Covers langgraph new, dev, build, up, deploy, dockerfile, and deploy list/delete/logs subcommands.
- Documents langgraph.json dependencies, graphs path:variable mappings, env, and dockerfile_lines configuration.
- Compares langgraph dev hot-reload without Docker versus langgraph up Postgres-backed Docker validation.
- Lists templates: deep-agent-python, deep-agent-js, agent-python, new-langgraph-project-python, and JS variants.
- Notes LANGSMITH_API_KEY requirement for deploy and Apple Silicon Buildx need for linux/amd64 images.
Langgraph Cli by the numbers
- 4,342 all-time installs (skills.sh)
- +393 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #180 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
langgraph-cli capabilities & compatibility
- Capabilities
- project scaffolding from templates · local dev with hot reload · docker build and validation · langgraph platform deployment · langgraph.json configuration
- Works with
- docker · openai
- Use cases
- orchestration · ci cd
- Runs
- Local or remote
- Pricing
- Bring your own API key
npx skills add https://github.com/langchain-ai/langchain-skills --skill langgraph-cliAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 4.3k |
|---|---|
| repo stars | ★ 1.1k |
| Last updated | July 30, 2026 |
| Repository | langchain-ai/langchain-skills ↗ |
How do I scaffold, run locally, validate in Docker, and deploy a LangGraph application with the correct langgraph.json setup?
Scaffold, develop, build, and deploy LangGraph applications using langgraph new, dev, build, up, deploy, and langgraph.json configuration.
Who is it for?
Developers shipping LangGraph agent graphs who need CLI commands for new, dev, build, up, and deploy workflows.
Skip if: Skip when the project does not use LangGraph or only needs generic Python packaging without graph deployment.
When should I use this skill?
User scaffolds LangGraph projects, runs langgraph dev or up, edits langgraph.json, or deploys to LangGraph Platform.
What you get
Configured LangGraph project with working dev server, optional Docker validation, and deployment commands for LangGraph Platform.
- scaffolded LangGraph project
- Docker image
- LangGraph Platform deployment
By the numbers
- Documents 6 core langgraph CLI commands: new, dev, build, up, deploy, and langgraph.json configuration
Files
<overview> The langgraph CLI manages the full lifecycle of LangGraph applications — from scaffolding a new project to deploying it to LangGraph Platform (LangSmith Deployments).
Key commands:
- `langgraph new` — Scaffold a project from a template
- `langgraph dev` — Run locally with hot reload (no Docker)
- `langgraph build` — Build a Docker image
- `langgraph up` — Launch locally via Docker Compose
- `langgraph deploy` — Ship to LangGraph Platform
- `langgraph dockerfile` — Generate a Dockerfile
All commands (except new) read from a langgraph.json config file in the project root. </overview>
When to use
Use this skill when the user wants to:
- Scaffold a new LangGraph project
- Run a local development or production-like server
- Build or deploy a LangGraph application
- Understand or edit
langgraph.jsonconfiguration - Manage LangSmith Deployments (list, delete, view logs)
Installation
# Python
pip install 'langgraph-cli[inmem]' # includes langgraph dev support
pip install langgraph-cli # without dev server (build/up/deploy only)
# if using UV as package manager
uv add "langgraph-cli[inmem]" # includes langgraph dev support
uv add langgraph-cli # without dev server (build/up/deploy only)
# JavaScript
npx @langchain/langgraph-cli # use on demand
npm install -g @langchain/langgraph-cli # install globally (available as langgraphjs)Commands
langgraph new [PATH]
Scaffold a new project from a template.
langgraph new # interactive template selection
langgraph new ./my-agent # create in specific directory
langgraph new --template agent-python # skip prompt, use template directlyAvailable templates: deep-agent-python, deep-agent-js, agent-python, new-langgraph-project-python, new-langgraph-project-js
langgraph dev
Run a local development server with hot reloading. No Docker required.
langgraph dev # default: localhost:2024
langgraph dev --port 8000 # custom port
langgraph dev --config ./langgraph.json # explicit config path
langgraph dev --no-reload # disable hot reload
langgraph dev --no-browser # don't auto-open LangGraph Studio
langgraph dev --host 0.0.0.0 # bind to all interfaces (trusted networks only)
langgraph dev --tunnel # expose via Cloudflare tunnel for remote access
langgraph dev --debug-port 5678 # enable remote debugger (requires debugpy)
langgraph dev --n-jobs-per-worker 20 # max concurrent jobs per worker (default: 10)langgraph build
Build a Docker image for the LangGraph API server.
langgraph build -t my-image # required: tag the image
langgraph build -t my-image --no-pull # use locally-built base images
langgraph build -t my-image -c langgraph.json # explicit config
langgraph build -t my-image --base-image langchain/langgraph-server:0.2.18 # pin base versionlanggraph up
Launch the LangGraph API server via Docker Compose (includes Postgres).
langgraph up # default port 8123
langgraph up --port 8000 # custom port
langgraph up --watch # restart on file changes
langgraph up --recreate # force fresh build (useful for pre-deploy validation)
langgraph up --postgres-uri postgresql://... # external Postgres
langgraph up --no-pull # use local images (after langgraph build)
langgraph up --image my-image # skip build, use pre-built image
langgraph up -d docker-compose.yml # add extra Docker services
langgraph up --debugger-port 8124 # serve debugger UI
langgraph up --wait # block until services are healthylanggraph deploy
Build and deploy to LangGraph Platform (LangSmith Deployments). Requires Docker. On Apple Silicon (M1/M2/M3), Docker Buildx is also required for cross-compiling to linux/amd64.
langgraph deploy # deploy, name defaults to directory name
langgraph deploy --name my-agent # explicit deployment name
langgraph deploy --deployment-type prod # production deployment (default: dev)
langgraph deploy --tag v1.2.0 # custom image tag (default: latest)
langgraph deploy --deployment-id <id> # update an existing deployment by ID
langgraph deploy --config ./langgraph.json # explicit config path
langgraph deploy --no-wait # don't wait for deployment status
langgraph deploy --verbose # show detailed server logsPrereq: LANGSMITH_API_KEY in environment or .env.
langgraph deploy also accepts build flags: --base-image, --pull/--no-pull.
langgraph deploy list
langgraph deploy list # list all deployments
langgraph deploy list --name-contains bot # filter by namelanggraph deploy delete
langgraph deploy delete <deployment-id> # interactive confirmation
langgraph deploy delete <deployment-id> --force # skip confirmationlanggraph deploy logs
langgraph deploy logs # runtime logs, last 100
langgraph deploy logs --name my-agent # by deployment name
langgraph deploy logs --deployment-id <id> # by deployment ID
langgraph deploy logs --type build # build logs instead of runtime
langgraph deploy logs -f # follow/stream logs
langgraph deploy logs --level error # filter by level (debug|info|warning|error|critical)
langgraph deploy logs -q "timeout" # search filter
langgraph deploy logs --limit 500 # more entries
langgraph deploy logs --start-time 2026-03-08T00:00:00Z # time rangelanggraph dockerfile <SAVE_PATH>
Generate a Dockerfile (and optionally Docker Compose files) without building.
langgraph dockerfile ./Dockerfile # generate Dockerfile
langgraph dockerfile ./Dockerfile --add-docker-compose # also generate compose + .env + .dockerignorelanggraph.json reference
The configuration file used by all CLI commands (dev, build, up, deploy). Defaults to langgraph.json in the current directory.
Minimal config (Python)
{
"dependencies": ["."],
"graphs": {
"agent": "./my_agent/agent.py:graph"
},
"env": "./.env"
}Minimal config (JavaScript)
{
"dependencies": ["."],
"graphs": {
"agent": "./src/agent.js:graph"
},
"env": "./.env"
}Full config with all keys
{
"dependencies": [".", "langchain_openai", "./local_package"],
"graphs": {
"agent": "./my_agent/agent.py:graph",
"retriever": "./my_agent/rag.py:rag_graph"
},
"env": "./.env",
"python_version": "3.12",
"pip_config_file": "./pip.conf",
"dockerfile_lines": [
"RUN apt-get update && apt-get install -y ffmpeg"
]
}Key reference
| Key | Required | Description |
|---|---|---|
dependencies | Yes | Array of dependencies. "." looks for local packages via pyproject.toml, setup.py, requirements.txt, or package.json. Can also be paths to subdirectories ("./my_pkg") or package names ("langchain_openai"). |
graphs | Yes | Mapping of graph ID to path. Format: ./path/to/file.py:variable (Python) or ./path/to/file.js:function (JS). The variable must be a CompiledGraph or a function returning one. Multiple graphs supported. |
env | No | Path to a .env file (string) OR an inline mapping of env var names to values (object). Used by langgraph dev and langgraph up locally. langgraph deploy reads from this file and adds the variables as deployment secrets. |
python_version | No | "3.11", "3.12", or "3.13". Defaults to "3.11". |
node_version | No | Node.js version for JS projects. |
pip_config_file | No | Path to a pip config file for custom package indexes. |
dockerfile_lines | No | Array of additional Dockerfile lines appended after the base image import. Use for system packages, binaries, or custom setup. |
Typical workflow
1. Scaffold — langgraph new to create a project from a template. 2. Configure — Edit langgraph.json: set dependencies, point graphs at your compiled graph(s), add .env. 3. Develop — langgraph dev for rapid local iteration with hot reload (no Docker, port 2024). 4. Validate — langgraph up --recreate to test in a production-like Docker stack (port 8123, includes Postgres). 5. Deploy — langgraph deploy to ship to LangGraph Platform (LangSmith Deployments). 6. Monitor — langgraph deploy logs -f to tail runtime logs; --type build for build logs.
langgraph dev vs langgraph up
| Feature | langgraph dev | langgraph up |
|---|---|---|
| Docker required | No | Yes |
| Install | pip install 'langgraph-cli[inmem]' | pip install langgraph-cli |
| Primary use | Rapid development & testing | Production-like validation |
| State persistence | In-memory / pickled to local dir | PostgreSQL |
| Hot reloading | Yes (default) | Optional (--watch) |
| Default port | 2024 | 8123 |
| Resource usage | Lightweight | Heavier (Docker containers for server, Postgres, Redis) |
| IDE debugging | Built-in DAP support (--debug-port) | Container debugging |
Gotchas
- `langgraph deploy` requires Docker — On Apple Silicon (M1/M2/M3), Docker Buildx is also required for cross-compiling to
linux/amd64. - `langgraph deploy` can only update its own deployments — Deployments created through the LangSmith UI or GitHub integration cannot be updated with
langgraph deploy. Use the UI for those. - `dependencies` must include all packages — The
dependenciesarray inlanggraph.jsonmust point to where your package config lives (e.g.,"."for root). The actual packages are resolved frompyproject.toml,requirements.txt, orpackage.jsonat that location. - `langgraph dev` runs without Docker — It runs directly in your environment. If your code depends on system packages (e.g.,
ffmpeg), they must be installed locally. Uselanggraph upto validate Docker builds. - JavaScript CLI — Use
npx @langchain/langgraph-cli <command>(orlanggraphjsif installed globally vianpm install -g @langchain/langgraph-cli). - API key —
LANGSMITH_API_KEYis required forlanggraph deploy. Forlanggraph dev, it is optional — the server runs without it, but you won't get traces in LangSmith. Can also be set viaLANGGRAPH_HOST_API_KEYorLANGCHAIN_API_KEY.
Related skills
How it compares
Pick Langgraph-cli over generic LangChain skills when the task involves the langgraph CLI binary, Docker builds, or LangGraph Platform deployment rather than chain composition alone.
FAQ
What is the difference between langgraph dev and langgraph up?
langgraph dev runs a hot-reload server without Docker on port 2024, while langgraph up launches a Docker Compose stack with Postgres on port 8123.
What does langgraph.json require?
Required keys are dependencies and graphs mapping graph IDs to file:variable paths for CompiledGraph exports.
What is needed for langgraph deploy?
Docker, LANGSMITH_API_KEY in the environment or .env, and on Apple Silicon also Docker Buildx for linux/amd64 cross-compilation.