文件最后提交记录最后更新时间
chore: rename master to main (#984) Update all references to the master branch3 个月前
feat(cli): curl agent example (#867) 4 个月前
README.md

Downloading Agents

Agents are just folders. This means you can share, download, and run them instantly.

Why This Works

  • Agents are folders — An agent is just an AGENTS.md file (memory/instructions) plus a skills/ directory. No code required.
  • Single artifact — Package skills and memory together in one zip. Everything the agent needs to run.
  • Run in seconds — Download, unzip, and run with deepagents-cli. No setup, no configuration.

Prerequisites

uv tool install deepagents-cli==0.0.13

Quick Start

# Create a project folder
mkdir my-project && cd my-project && git init

# Download the agent
curl -L https://raw.githubusercontent.com/langchain-ai/deepagents/main/examples/downloading_agents/content-writer.zip -o agent.zip

# Unzip to .deepagents
unzip agent.zip -d .deepagents

# Run it
deepagents

What's Inside

.deepagents/
├── AGENTS.md                    # Agent memory & instructions
└── skills/
    ├── blog-post/SKILL.md       # Blog writing workflow
    └── social-media/SKILL.md    # LinkedIn/Twitter workflow

One-Liner

git init && curl -L https://raw.githubusercontent.com/langchain-ai/deepagents/main/examples/downloading_agents/content-writer.zip -o agent.zip && unzip agent.zip -d .deepagents && rm agent.zip && deepagents