Agent skill · AI & Agents

deepagents-cli

Deep Agents CLI reference and usage guide. Use when the user wants to: (1) Launch or configure the deepagents terminal coding assistant, (2) Set up interactive or non-interactive (automation/CI) agent sessions, (3) Manage agent memory, skills, or AGENTS.md context files, (4) Configure LLM providers, models, or sandbox execution environments, (5) Build scripted workflows or subagent patterns with deepagents.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill deepagents-cli-gitmaxd-deepagents-cli-droid --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/agent/deepagents-cli-gitmaxd-deepagents-cli-droid/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Deep Agents CLI Terminal coding agent with persistent memory, skills, sandboxed execution, and 20+ LLM providers. Built on LangGraph. See the [official overview](https://docs.langchain.com/oss/python/deepagents/overview) and [CLI guide](https://docs.langchain.com/oss/python/deepagents/cli/overview). ## Quick Start ```bash # Interactive session (default agent, default model) deepagents # Interactive with specific agent and model deepagents -a myagent -M anthropic:claude-sonnet-4-5 # Non-interactive one-shot task deepagents -n "Summarize README.md" # Non-interactive with shell access deepagents -n "List Python files and count lines" --shell-allow-list ls,wc,find # Resume last session deepagents -r ``` ## Core Concepts ### Agents = Isolated Personas Each agent has its own memory, skills, and AGENTS.md context file: ``` ~/.deepagents/<agent_name>/ ├── AGENTS.md # Always-loaded context (preferences, conventions) ├── memories/ # Auto-saved topic memories └── skills/ # User-level skills ``` ```bash deepagents -a researcher # Use "researcher" agent deepagents -a coder # Use "coder" agent deepagents list # List all agents deepagents reset --agent NAME # Clear agent memory ``` ### Memory v

What's inside
Steps it walks through
  1. Quick Start
  2. Core Concepts
  3. Agents = Isolated Personas
  4. Memory vs Skills
  5. Two Operating Modes
  6. Interactive Mode
  7. Slash Commands
  8. Non-Interactive Mode
  9. Piping and stdin
  10. Model Selection
  11. At Launch
  12. During Session
  13. Default Model
  14. Resolution Order
Ships with 1 file
  • metadata.json
Commands it runs
Interactive session (default agent, default model)
deepagents
Interactive with specific agent and model
deepagents -a myagent -M anthropic:claude-sonnet-4-5
Non-interactive one-shot task
deepagents -n "Summarize README.md"
Non-interactive with shell access
deepagents -n "List Python files and count lines" --shell-allow-list ls,wc,find
Resume last session
deepagents -r
More from claude-skill-registry
All skills →
About this skill
What does the deepagents-cli skill do?

Deep Agents CLI reference and usage guide. Use when the user wants to: (1) Launch or configure the deepagents terminal coding assistant, (2) Set up interactive or non-interactive (automation/CI) agent sessions, (3) Manage agent memory, skills, or AGENTS.md context files, (4) Configure LLM providers, models, or sandbox execution environments, (5) Build scripted workflows or subagent patterns with deepagents.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill deepagents-cli-gitmaxd-deepagents-cli-droid --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going