Metadata-Version: 2.4
Name: deepagents-cli
Version: 0.1.2
Summary: Deployment tooling for Deep Agents - bundle, run, and ship agents to LangGraph Platform.
Project-URL: Homepage, https://docs.langchain.com/oss/python/deepagents/overview
Project-URL: Documentation, https://reference.langchain.com/python/deepagents/
Project-URL: Repository, https://github.com/langchain-ai/deepagents
Project-URL: Issues, https://github.com/langchain-ai/deepagents/issues
Project-URL: Changelog, https://github.com/langchain-ai/deepagents/blob/main/libs/cli/CHANGELOG.md
Project-URL: Twitter, https://x.com/langchain_oss
Project-URL: Slack, https://www.langchain.com/join-community
Project-URL: Reddit, https://www.reddit.com/r/LangChain/
License: MIT
Keywords: agents,ai,cli,deep-agent,deploy,langchain,langgraph,llm
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <4.0,>=3.11
Requires-Dist: deepagents>=0.6.1
Requires-Dist: httpx<1.0.0,>=0.28.1
Requires-Dist: langchain<2.0.0,>=1.3.0
Requires-Dist: langgraph-cli[inmem]<1.0.0,>=0.4.24
Requires-Dist: langgraph-runtime-inmem<1.0.0,>=0.28.1
Requires-Dist: langgraph-sdk<1.0.0,>=0.3.13
Requires-Dist: langgraph<2.0.0,>=1.2.0
Requires-Dist: langsmith>=0.8.0
Requires-Dist: python-dotenv<2.0.0,>=1.2.2
Provides-Extra: agentcore
Requires-Dist: langchain-agentcore-codeinterpreter>=0.0.2; extra == 'agentcore'
Provides-Extra: all-sandboxes
Requires-Dist: langchain-agentcore-codeinterpreter>=0.0.2; extra == 'all-sandboxes'
Requires-Dist: langchain-daytona>=0.0.5; extra == 'all-sandboxes'
Requires-Dist: langchain-modal>=0.0.3; extra == 'all-sandboxes'
Requires-Dist: langchain-runloop>=0.0.4; extra == 'all-sandboxes'
Provides-Extra: daytona
Requires-Dist: langchain-daytona>=0.0.5; extra == 'daytona'
Provides-Extra: modal
Requires-Dist: langchain-modal>=0.0.3; extra == 'modal'
Provides-Extra: runloop
Requires-Dist: langchain-runloop>=0.0.4; extra == 'runloop'
Description-Content-Type: text/markdown

# Deep Agents CLI — Deployment Tooling

[![PyPI - Version](https://img.shields.io/pypi/v/deepagents-cli?label=%20)](https://pypi.org/project/deepagents-cli/#history)
[![PyPI - License](https://img.shields.io/pypi/l/deepagents-cli)](https://opensource.org/licenses/MIT)
[![PyPI - Downloads](https://img.shields.io/pepy/dt/deepagents-cli)](https://pypistats.org/packages/deepagents-cli)
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/langchain_oss.svg?style=social&label=Follow%20%40LangChain)](https://x.com/langchain_oss)

> [!IMPORTANT]
> **The interactive coding agent moved.** As of `deepagents-cli==0.1.0`, this package contains only the deployment subcommands (`init`, `dev`, `deploy`). The interactive REPL — previously launched via `deepagents` — now ships as [`deepagents-code`](https://docs.langchain.com/oss/python/deepagents/code/overview) (`dcode`).
>
> ```bash
> curl -LsSf https://langch.in/dcode | bash
> dcode
> ```

## Install

```bash
uv tool install deepagents-cli
```

Or with optional sandbox providers:

```bash
uv tool install 'deepagents-cli[all-sandboxes]'
```

## Usage

```bash
# Scaffold a new project folder
deepagents init my-agent

# Run a local langgraph dev server against the project
cd my-agent && deepagents dev

# Bundle and ship to LangSmith Deployment
deepagents deploy
```

## 📖 Resources

- **[CLI Documentation](https://docs.langchain.com/oss/python/deepagents/cli/overview)**
- **[Changelog](https://github.com/langchain-ai/deepagents/blob/main/libs/cli/CHANGELOG.md)**
- **[Source code](https://github.com/langchain-ai/deepagents/tree/main/libs/cli)**
- **[Deep Agents SDK](https://github.com/langchain-ai/deepagents)** — underlying agent harness
- **[Deep Agents Code](https://pypi.org/project/deepagents-code/)** — coding agent

## 📕 Releases & Versioning

See our [Releases](https://docs.langchain.com/oss/python/release-policy) and [Versioning](https://docs.langchain.com/oss/python/versioning) policies.

## 💁 Contributing

As an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.

For detailed information on how to contribute, see the [Contributing Guide](https://docs.langchain.com/oss/python/contributing/overview).
