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.mdfile (memory/instructions) plus askills/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