You may have wondered about this question:
Today's AI can chat, write articles, and even write code — but can it truly complete tasks independently?
For example: you say, "Help me research the EV market and write a report." The AI replies with a long message telling you "which aspects to research, where to get the data, what structure the report should have."
Sounds professional, right? The problem is — you still have to do all the actual work yourself.
That's no surprise. Most AI assistants are essentially a "fancy search engine + text generator": they give advice but don't execute; they provide information but don't act. Like a learned consultant standing by, pointing out strategy but never rolling up their sleeves.
Today's topic might change that.
It's called DeepAgents, a new framework just released by the LangChain team. Its ambition is simple: turn AI from a "parrot that only talks" into an "assistant that actually works".
🛠️ Four Pillars: DeepAgents' Core Weapons
📝 Pillar 1: Planning — The Art of Fitting an Elephant into a Fridge
DeepAgents ships with a built-in planning tool. Once you assign a task, it automatically generates a to-do list and tracks its own progress.
📁 Pillar 2: Filesystem — Giving the AI a Real "Swiss Army Knife"
Complete built-in file operation tools: the agent can create folders, categorize and save materials, and modify multiple files on its own.
🐣 Pillar 3: Sub-agents — Solving the "Not Enough Brainpower" Problem
When a task gets too complex, the main agent can dispatch sub-agents to handle specific subtasks. Each sub-agent has its own independent context, with no interference.
🧠 Pillar 4: Context Management — Giving the AI a "Notepad"
Automatic summarization plus automatic offloading of large outputs to files solve the "amnesia" problem in long conversations.
🎭 Relationship with Claude Code
DeepAgents explicitly says it is deeply inspired by Claude Code, with key differences:
- Claude Code only works with Claude models; DeepAgents supports any LLM
- Claude Code is closed source; DeepAgents is MIT open source
- DeepAgents is LangGraph-native, integrating with LangSmith, persistence, and checkpointing
🔧 Out of the Box
Create an agent with a single line of code — all advanced features (planning, file operations, sub-agents, context management) work out of the box.
📚 Key References
1. LangChain. (2025). DeepAgents. https://github.com/langchain-ai/deepagents 2. ByteIota. (2026). DeepAgents Tutorial. https://byteiota.com/deepagents-tutorial 3. Anthropic. (2025). Claude Code. https://www.anthropic.com/claude-code