🌐
LangChain
blog.langchain.com › command-a-new-tool-for-multi-agent-architectures-in-langgraph
Command: A new tool for building multi-agent architectures in LangGraph
December 10, 2024 - Learn about Command, a new tool in LangGraph that helps facilitate multi-agent communication.
🌐
LangChain
langchain-ai.github.io › langgraphjs › reference › classes › langgraph.Command.html
Command | LangGraph.js API Reference
"nodeB" : "nodeC"; // note how Command allows you to BOTH update the graph state AND route to the next node return new Command({ // this is the state update update: { foo: "a", }, // this is a replacement for an edge goto, }); }; // Nodes B and C are unchanged const nodeB = async (state: typeof StateAnnotation.State) => { console.log("Called B"); return { foo: state.foo + "|b", }; } const nodeC = async (state: typeof StateAnnotation.State) => { console.log("Called C"); return { foo: state.foo + "|c", }; } import { StateGraph } from "@langchain/langgraph"; // NOTE: there are no edges between nodes A, B and C!
🌐
PyPI
pypi.org › project › langgraph-cli
langgraph-cli · PyPI
langgraph up [OPTIONS] -p, --port INTEGER Port to expose (default: 8123) --wait Wait for services to start --watch Restart on file changes --verbose Show detailed logs -c, --config FILE Config file path -d, --docker-compose Additional services file
      » pip install langgraph-cli
    
Published   Apr 17, 2026
Version   0.4.23
🌐
Medium
medium.com › @vivekvjnk › the-command-object-in-langgraph-bc29bf57d18f
The Command Object in Langgraph. What is the Command Object in… | by Story_Teller | Medium
December 24, 2024 - Instead of relying on external routing logic, the node itself returns a Command object containing both the updated state and the destination node. For instance, as shown in the example code, the node evaluates whether the metrics are satisfied. If successful, the Command object routes execution to the Output Requirement Analysis node.
🌐
Langchain
docs.langchain.com › langsmith › cli
LangGraph CLI - Docs by LangChain
March 8, 2026 - The npx @langchain/langgraph-cli dockerfile command translates all the configuration in your langgraph.json file into Dockerfile commands. When using this command, you will have to re-run it whenever you update your langgraph.json file.
🌐
LangChain
changelog.langchain.com › announcements › command-in-langgraph-to-build-edgeless-multi-agent-workflows
LangChain - Changelog | 🤖 Command in LangGraph to build edgeless
December 10, 2024 - We've released Command , a new tool in LangGraph that lets you manage dynamic, edgeless agent flows. Now, nodes can dynamically decide which node to execute...
🌐
GitHub
github.com › langchain-ai › langgraph
GitHub - langchain-ai/langgraph: Build resilient language agents as graphs. · GitHub
3 days ago - Build resilient language agents as graphs. Contribute to langchain-ai/langgraph development by creating an account on GitHub.
Starred by 30K users
Forked by 5.1K users
Languages   Python
🌐
DEV Community
dev.to › jamesbmour › interrupts-and-commands-in-langgraph-building-human-in-the-loop-workflows-4ngl
Interrupts and Commands in LangGraph: Building Human-in-the-Loop Workflows - DEV Community
September 9, 2025 - We have four: one for getting approval (with interrupt), one for routing (with command), and two terminals for completing or canceling. The get_approval node pauses the graph, prints the task, and waits for input. The router decides the next step dynamically. The others just finalize the status. from langgraph.types import interrupt, Command def get_approval(state: WorkflowState): """ This node uses 'interrupt' to pause the graph.
Find elsewhere
🌐
Medium
genai-lab.medium.com › how-to-build-dynamic-ai-workflows-with-langgraphs-command-tool-c0f4cab92def
How to Build Dynamic AI Workflows with LangGraph’s Command Tool | by GenAI Lab | Medium
July 20, 2025 - Modern LLM applications need dynamic control flows, not rigid pipelines. LangGraph’s Command object is a powerful abstraction that lets your nodes decide the next step at runtime, turning static DAGs into adaptive multi-agent systems.
🌐
Langchain
reference.langchain.com › python › langgraph-cli
langgraph_cli | LangChain Reference
# Run CLI commands directly uv run langgraph --help # Or use the examples cd examples uv pip install uv run langgraph dev # or other commands
🌐
LangChain
langchain.com › langgraph
LangGraph: Agent Orchestration Framework for Reliable AI Agents
Design agents that reliably handle complex tasks with LangGraph, an agent runtime and low-level orchestration framework.
🌐
Mintlify
mintlify.com › langchain-ai › langgraph › cli › commands
CLI Commands - LangGraph
Meet the next generation of documentation. AI-native, beautiful out-of-the-box, and built for developers.
🌐
Medium
medium.com › mitb-for-all › a-second-look-at-langgraph-when-command-sends-becomes-common-sense-720a851cf8a8
A second look at LangGraph: When “Command-Send” becomes “common sense” | by Tituslhy | MITB For All | Medium
February 24, 2026 - In this case LangGraph’s implementation is neater and more elegant. Command and Send schedule the node for execution — everything else (fan-out, concurrency, and state isolation) is handled by LangGraph behind the scenes. No worker math/guesstimation.