deep-agents
Installation
SKILL.md
Deep Agents
When to Use This Skill
| Use this skill when... | Use langgraph-agents instead when... |
|---|---|
| Building hierarchical agents with planning and subagent delegation | You need a single stateful graph without sub-agents |
| Managing large context via file-system memory across runs | Short-lived state fits in checkpointed graph memory |
| Long-running, multi-step workflows modelled on Deep Research | Simple LCEL chains suffice (use langchain-development) |
Scaffolding from scratch (use /langchain:init first) |
The project is already initialised and only needs graph wiring |
Core Expertise
Deep Agents (deepagents) is a TypeScript library for building sophisticated AI agents:
- Built on LangGraph with planning and decomposition
- File system context management (prevents token overflow)
- Subagent delegation for focused exploration
- Persistent memory across conversations
- Modeled after Claude Code and Deep Research patterns