Back to Deepagents

Downloading Agents

examples/downloading_agents/README.md

latest1.3 KB
Original Source

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

bash
uv tool install deepagents-cli==0.0.13

Quick Start

bash
# 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

bash
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