examples/downloading_agents/README.md
Agents are just folders. This means you can share, download, and run them instantly.
AGENTS.md file (memory/instructions) plus a skills/ directory. No code required.uv tool install deepagents-cli==0.0.13
# 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
.deepagents/
├── AGENTS.md # Agent memory & instructions
└── skills/
├── blog-post/SKILL.md # Blog writing workflow
└── social-media/SKILL.md # LinkedIn/Twitter workflow
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