feat(cli): deepagents deploy#2491
Merged
Mason Daugherty (mdrxy) merged 20 commits intomainfrom Apr 9, 2026
Merged
Conversation
hari-dhanushkodi
previously approved these changes
Apr 9, 2026
Contributor
hari-dhanushkodi
left a comment
There was a problem hiding this comment.
thanks for implementing!!
| print(f"Running: {' '.join(cmd)}") | ||
| print() | ||
|
|
||
| result = subprocess.run(cmd, cwd=str(build_dir), capture_output=True, text=True) |
Contributor
There was a problem hiding this comment.
this command seems to be ignoring colors + interactive input.. if you run langgraph deploy directly you will be prompted for your api key, eg:
❯ langgraph deploy -c /var/folders/sv/n1qqfjs90h73nr_87d7bprwh0000gn/T/deepagents-deploy-2s8d0lqh/langgraph.json --name deepagents-deploy-coding-agent --verbose
Note: 'langgraph deploy' is in beta. Expect frequent updates and improvements.
⚠️ Security Recommendation: Consider switching to Wolfi Linux for enhanced security.
Wolfi is a security-oriented, minimal Linux distribution designed for containers.
To switch, add '"image_distro": "wolfi"' to your langgraph.json config file.
No LangSmith API key found. Create one at Settings > API Keys in LangSmith.
Enter LangSmith API key:
I actually do think this is an important part of the experience, but I'm not sure how to fix. I couldn't get it working locally :( Maybe we have to pull in langgraph-cli code and call it directly isntead of subprocess? idk
deepagents-deploy
deepagents-deploydeepagents-deploy
deepagents-deploydeepagents deploy
Mason Daugherty (mdrxy)
added a commit
that referenced
this pull request
Apr 9, 2026
> [!CAUTION] > Merging this PR will automatically publish to **PyPI** and create a **GitHub release**. For the full release process, see [`.github/RELEASING.md`](https://github.com/langchain-ai/deepagents/blob/main/.github/RELEASING.md). --- _Everything below this line will be the GitHub release body._ --- ## [0.0.36](deepagents-cli==0.0.35...deepagents-cli==0.0.36) (2026-04-09) ### Features * `deepagents deploy` ([#2491](#2491)) ([01dc60e](01dc60e)) * Warn on missing tavily key, add `/notifications` ([#2555](#2555)) ([3dff3ed](3dff3ed)) ### Bug Fixes * Fail fast on missing provider credentials ([#2554](#2554)) ([50fb8ae](50fb8ae)) * Fix mktemp template in debug script for macOS ([#2603](#2603)) ([63fa537](63fa537)) --- _Everything above this line will be the GitHub release body._ --- > [!NOTE] > A **New Contributors** section is appended to the GitHub release notes automatically at publish time (see [Release Pipeline](https://github.com/langchain-ai/deepagents/blob/main/.github/RELEASING.md#release-pipeline), step 2). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Mason Daugherty <github@mdrxy.com>
Closed
17 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds new
deepagents deploycommand. DocumentationProject layout
deepagents.tomlSkills, MCP servers, and model deps are auto-detected.
CLI
deepagents init # scaffold deepagents.toml in cwd deepagents dev --config src/deepagents.toml [--port 2024] deepagents deploy --config src/deepagents.toml [--dry-run]Runtime
src/AGENTS.mdverbatim, baked in at build time./memories/AGENTS.mdin the LangGraph store, namespace(assistant_id, "memories"). Read-only at runtime — edit the source file and redeploy./skills/<skill>/...in the store, namespace(assistant_id, "skills"). Also read-only.[sandbox].scope = "assistant"to share one sandbox across all threads of an assistant. Omit[sandbox]entirely to fall back to an in-processStateBackend.Gotchas
/memories/and/skills/are read-only. Edit source files and redeploy.deepagents deploycreates a new revision on every invocation (full cloud rebuild). Usedeepagents devfor iteration.