Skip to main content
The Deep Agents CLI is an open source terminal coding agent built on the Deep Agents SDK. It retains persistent memory, maintains context across sessions, learns project conventions, uses customizable skills, and executes code with approval controls. Deep Agents CLI The Deep Agents CLI has the following built-in capabilities:
  • File operations - read, write, and edit files in your project with tools that enable agents to manage and modify code and documentation.
  • Shell command execution - execute shell commands to run tests, build projects, manage dependencies, and interact with version control systems.
  • Web search - search the web for up-to-date information and documentation (requires Tavily API key).
  • HTTP requests - make HTTP requests to APIs and external services for data fetching and integration tasks.
  • Task planning and tracking - break down complex tasks into discrete steps and track progress through the built-in todo system.
  • Memory storage and retrieval - store and retrieve information across sessions, enabling agents to remember project conventions and learned patterns.
  • Human-in-the-loop - require human approval for sensitive tool operations.
  • Skills - extend agent capabilities with custom expertise and instructions stored in skill directories.

Built-in tools

The agent comes with the following built-in tools which are available without configuration:1: Potentially destructive operations require user approval before execution. To bypass human approval, you can toggle auto-approve or start the deep agent with the auto-approve option:
Watch the demo video to see how the Deep Agents CLI works.

Quickstart

Set your API key

Export as an environment variable:
Or create a .env file in your project root:
If you have multiple API keys set, you can use the --model CLI option to specify which model to use, which will automatically use the corresponding API key. For more information see Additional installation and configuration options.

Run the CLI

Give the agent a task

The agent proposes changes with diffs for your approval before modifying files.
Install locally if needed:
Each model provider requires installing its corresponding LangChain integration package. These are available as optional extras when installing the CLI:
For the full list of supported providers and configuration options, see Custom model providers.If you have a saved default model in ~/.deepagents/config.toml, the CLI uses that. Otherwise, it automatically selects a provider based on which API keys are available. If multiple keys are set, it uses the first match in this order:To use a different model, pass the --model flag or use provider:model format for explicit provider selection:
You can also use bare model names for auto-detection:
Enable web search (optional):
API keys can be set as environment variables or in a .env file.

Tracing with LangSmith

Enable LangSmith tracing to see agent operations in your LangSmith dashboard:
  1. Enable LangSmith tracing:
  2. Configure agent tracing for deep agent operations such as tool calls and agent decisions:
  3. If you are building a LangChain app with deep agents, and want to separate agent traces from your app’s traces, also configure LANGSMITH_PROJECT:
When configured, the CLI displays:

Configuration

Each agent has its own configuration directory at ~/.deepagents/<agent_name>/. The default agent name is agent. As you start the agent if no folder for that agent name exists then it’s created at that path ~/.deepagents/<new_agent>/.

Interactive mode

Type naturally as you would in a chat interface. The agent will use its built-in tools, skills, and memory to help you with tasks.
Use these commands within the CLI session:
  • /model - Switch the active model (opens interactive selector)
  • /model <provider:model> - Switch directly to a specific model (e.g., /model anthropic:claude-sonnet-4-5)
  • /remember - Review conversation and update memory and skills
  • /tokens - Display token usage
  • /clear - Clear conversation history
  • /quit - Exit the CLI
  • /help - Show help
  • /threads - Show session info
  • /version - Show version
Execute shell commands directly by prefixing with !:

Switch models

You can switch models during a session without restarting the CLI using the /model command, or at launch with the --model flag:
Run /model with no arguments to open an interactive model selector that displays available models grouped by provider. For full details on switching models, setting a default, configuring custom providers, and using the ~/.deepagents/config.toml config file, see Custom model providers.

Teach your agent project conventions

As you use the agent, it automatically stores information in ~/.deepagents/<agent_name>/memories/ as markdown files using a memory-first protocol:
  1. Research: Searches memory for relevant context before starting tasks
  2. Response: Checks memory when uncertain during execution
  3. Learning: Automatically saves new information for future sessions
The agent organizes its memories by topic with descriptive filenames:
When you teach the agent conventions:
It remembers for future sessions:

Customize your deep agent

There are two primary ways to customize any agent:
  • Memory: Global and project-specific AGENTS.md files which are loaded in full at session start. Use memory for general coding style and preferences.
  • Skills: Global and project-specific context, conventions, guidelines, or instructions. Use skills for context that is only required when performing specific tasks.

Provide project or user context

AGENTS.md files files provide persistent memory that is always loaded at session start. You can provide global user memory for the agent in ~/.deepagents/<agent_name>/AGENTS.md. This file is always loaded when you start a new deep agent session. The agent may also read its memory files when answering project-specific questions or when you reference past work or patterns. For project-specific memory, you can add context to .deepagents/AGENTS.md in any project’s root folder as long as the project uses git. When you start the CLI from anywhere within the project’s folder, the CLI will find the project’s root folder by checking for a containing .git folder. Both global and project-level AGENTS.md files are loaded together and appended to the system prompt at startup. The agent will update them as you use the agent and provide it with additional information on how it should behave, feedback on its work, or instructions to remember something. The agent will also update its memory if it identifies patterns or preferences from your interactions. If you would like to explicitly prompt your deep agent to update skills and memory based on the current context from the thread use the /remember command which loads a custom instruction to review the context and perform updates. To add more structured project knowledge in additional memory files, you can add them in .deepagents/ and reference them in the AGENTS.md file. You must reference additional files in the AGENTS.md file for the agent to be aware of these files. The additional files will not be read on startup but the agent can reference and update them when needed.
Global AGENTS.md (~/.deepagents/agent/AGENTS.md)
  • Your personality, style, and universal coding preferences
  • General tone and communication style
  • Universal coding preferences (formatting, type hints, etc.)
  • Tool usage patterns that apply everywhere
  • Workflows and methodologies that don’t change per-project
Project AGENTS.md (.deepagents/AGENTS.md in project root)
  • Project-specific context and conventions
  • Project architecture and design patterns
  • Coding conventions specific to this codebase
  • Testing strategies and deployment processes
  • Team guidelines and project structure

Use remote sandboxes

Execute code in isolated remote environments for safety and flexibility. Remote sandboxes provide the following benefits:
  • Safety: Protect your local machine from potentially harmful code execution
  • Clean environments: Use specific dependencies or OS configurations without local setup
  • Parallel execution: Run multiple agents simultaneously in isolated environments
  • Long-running tasks: Execute time-intensive operations without blocking your machine
  • Reproducibility: Ensure consistent execution environments across teams
To use a remote sandbox, follow these steps:
  1. Configure your sandbox provider (Runloop, Daytona, or Modal):
  2. Run the CLI with a sandbox:
    The agent runs locally but executes all code operations in the remote sandbox. Optional setup scripts can configure environment variables, clone repositories, and prepare dependencies.
  3. (Optional) Create a setup.sh file to configure your sandbox environment:
    Store secrets in a local .env file for the setup script to access.
Sandboxes isolate code execution, but agents remain vulnerable to prompt injection with untrusted inputs. Use human-in-the-loop approval, short-lived secrets, and trusted setup scripts only.Note that sandbox APIs are evolving rapidly, and we expect more providers to support proxies that help mitigate prompt injection and secrets management concerns.

Use skills

Skills are reusable agent capabilities that provide specialized workflows and domain knowledge. You can use skills to provide your deep agent with new capabilities and expertise. Deep agent skills follow the Agent Skills standard. Once you have added skills your deep agent will automatically make use of them and update them as you use the agent and provide it with additional information. If you would like to explicitly prompt your deep agent to update skills and memory based on the current context from the thread use the /remember command which loads a custom instruction to review the context and perform updates.

Add skills

  1. Start by creating a skill:
    This will generate the correct the following files in your ~/.deepagents/<agent_name> folder:
  2. Open the generated SKILL.md and edit the file to include your instructions.
  3. Optionally add additional scripts or other resources to the test-skill folder. For more information, see Examples.
If you already have a skills folder with containing skills files, you can also copy them directly to the agent’s folder:
At startup, the CLI scans the ~/.deepagents/<agent_name>/skills/ and .deepagents/skills/ directories. For project-specific skills, the project’s root folder must have a .git folder. When you start the CLI from anywhere within the project’s folder, the CLI will find the project’s root folder by checking for a containing .git folder. For each skill, the CLI reads the name and the description from the SKILL.md file’s frontmatter. As you use the CLI, if a task matches the skill’s description, the agent will read the skill file and follow its instructions.

List skills

To see the lists you have installed, run:
To get more information for a specific skill, run:

Connect these docs to Claude, VSCode, and more via MCP for real-time answers.