LangChain 助手
- 作者仓库星标 0
- 作者仓库 skills-registry
DeepAgents: editorial guidance
Targets deepagents>=0.5.3. For API reference (signatures, kwargs, full middleware list), use the mcpdoc MCP tools: fetch_docs("https://docs.langchain.com/oss/python/deepagents/..."). This skill is the opinions layer.
What's new in 0.5.x (worth knowing before you build)
- Async sub-agents are first-class — sub-agents can now be
async defcallables and run withawait agent.ainvoke(...)end-to-end. Mix sync and async sub-agents in the samesubagents=[...]list. model=Noneis deprecated increate_deep_agent(0.5.3). Always pass an explicit model, e.g.init_chat_model("anthropic:claude-sonnet-4-6").- Filesystem permissions system (0.5.2) — route-scoped read/write rules on
CompositeBackend; sandbox is now the default for execution. Permission paths must start with/; path-traversal raisesValueError. - Structured sub-agent responses (0.5.3) — declare a Pydantic schema on a sub-agent and the parent receives a typed object instead of free text. Use this for "researcher returns a
Findingsobject" patterns. - Legacy subagents API removed (0.5.0). If you're upgrading from 0.4.x, the old kwargs are gone — see
subagents=[...]with the newSubAgentshape.
What DeepAgents actually is
create_deep_agent(...) is a thin wrapper over create_agent(...) that pre-installs three middlewares: FilesystemMiddleware (virtual FS + read_file/write_file/edit_file/ls/glob/grep), SubAgentMiddleware (the task tool with named sub-agents), and TodoListMiddleware (the write_todos planning tool). You can stack additional middlewares on top.
The implication: everything you know about agentic middleware applies. See langchain-agents-middleware for the production stack — DeepAgents projects benefit from it just like plain create_agent projects do.
Filesystem backend — pick deliberately for production
The default FilesystemMiddleware uses an in-memory virtual FS that resets between invocations unless you pass a checkpointer. For production, choose a backend:
| Backend | Scope | When |
|---|---|---|
| Default (in-memory) | Single invocation | Dev, tests |
StateBackend |
Single thread (with checkpointer) | Conversation memory only |
StoreBackend(namespace=(assistant_id, user_id)) |
Per-user persistent | Production: each user gets isolated files |
CompositeBackend |
Mix scopes | E.g. ephemeral scratch + persistent /memories/ |
StoreBackend namespaced by user is the production default. Don't ship a multi-user agent with the in-memory default — files would leak across users.
Filesystem permissions (0.5.2+) — on CompositeBackend you can scope read/write/exec permissions per route, with sandbox as the default. Permission paths must start with / (a leading ./ or path-traversal raises ValueError). Use this to make /memories/ read-only to a sub-agent that should only consume past notes, or to forbid writes outside /scratch/.
Sandboxed shell execution — read this before adding tool execution
For tools that run real shell commands, use ShellToolMiddleware with a sandboxed execution policy (Daytona is the primary supported sandbox). Two lifecycle patterns:
- Thread-scoped (most common): fresh container per conversation, cleaned up on TTL.
- Assistant-scoped: shared across conversations, preserves installed packages / cloned repos.
Critical rule the docs only mention in passing: never pass raw API keys into a sandbox. The agent can read_file any file the sandbox can. Use the auth proxy to inject credentials at call time. Treat sandboxes as adversarial environments.
Sub-agent design rules of thumb
- Sub-agent prompts are templates — the parent's
tasktool fills in{description}. Keep prompts generic; the parent decides the specifics. instructions=is for the top-level agent, not for sub-agents. Each sub-agent has its ownpromptfield.- Scope tools per sub-agent. A
researchersub-agent rarely needssend_email. The per-subagenttoolskey narrows the surface and improves reliability. - Don't nest sub-agents more than one level deep. Two-level nesting works; three-level becomes hard to reason about and hard to trace.
- Use async sub-agents (0.5+) when sub-agents do I/O — network fetches, vector store reads, MCP calls. Define the sub-agent function as
async def, drive the parent withawait agent.ainvoke(...), and the runtime parallelises sibling sub-agent calls automatically. Don't make a sub-agent async if its body is pure CPU. - Return structured outputs (0.5.3+) for downstream consumption. Attach a Pydantic
response_formatto a sub-agent and the parent'stasktool returns a typed object — much more reliable than parsing free-text findings.
# Async sub-agent with structured output
from pydantic import BaseModel
class Findings(BaseModel):
summary: str
sources: list[str]
async def research(state, runtime):
# ... do async I/O (web search, mcp calls) ...
return state
subagents = [
{
"name": "researcher",
"description": "Researches a topic and returns structured findings.",
"prompt": "Research {description} and return findings.",
"tools": [web_search],
"response_format": Findings,
"callable": research, # async def is supported
},
]
When to compose extra middlewares (almost always)
create_deep_agent accepts a middleware=[...] parameter that adds to (not replaces) the built-in three. For any production DeepAgent, layer the production stack on top:
from deepagents import create_deep_agent
from langchain.agents.middleware import (
ModelCallLimitMiddleware, ToolCallLimitMiddleware,
ModelRetryMiddleware, ToolRetryMiddleware,
ModelFallbackMiddleware, SummarizationMiddleware,
HumanInTheLoopMiddleware, PIIMiddleware,
)
agent = create_deep_agent(
model="claude-sonnet-4-6", # required as of 0.5.3 — `model=None` is deprecated
tools=TOOLS,
subagents=SUBAGENTS,
instructions=PROMPT,
middleware=[
ModelCallLimitMiddleware(run_limit=50),
ToolCallLimitMiddleware(run_limit=200),
ModelRetryMiddleware(max_retries=3),
ToolRetryMiddleware(max_retries=3),
ModelFallbackMiddleware("openai:gpt-4o-mini"),
SummarizationMiddleware(model="claude-haiku-4-5", trigger=("tokens", 8000), keep=("messages", 20)),
# HITL on irreversible tools — requires checkpointer
HumanInTheLoopMiddleware(interrupt_on={"send_email": {"allowed_decisions": ["approve","edit","reject"]}}),
PIIMiddleware("email", strategy="redact", apply_to_input=True),
],
)
Things the docs won't warn you about
- The virtual FS persists across
agent.invoke(...)calls within a single LangGraph run, but resets between runs unless you pass a checkpointer with a stablethread_id. - Adding
HumanInTheLoopMiddlewarerequires a checkpointer at compile time.create_deep_agentaccepts acheckpointer=parameter for this. - Sub-agents share the parent's tool registry by default. If a sub-agent should NOT see a tool, scope explicitly.
interrupt_on={...}set on the parent inherits to sub-agents (fixed in 0.5.0). If you want sub-agents to bypass HITL gates, override on the sub-agent definition.- Async sub-agents only run async if the parent is invoked with
ainvoke/astream— callingagent.invoke(...)on an async sub-agent runs it in a sync wrapper and you lose the parallelism benefit.
Doc URLs to fetch with mcpdoc
https://docs.langchain.com/oss/python/deepagents/index.md— overviewhttps://docs.langchain.com/oss/python/deepagents/going-to-production.md— backends, sandboxes, deploymenthttps://docs.langchain.com/oss/python/deepagents/memory.md— filesystem backends in depthhttps://docs.langchain.com/oss/python/deepagents/human-in-the-loop.md— HITL patterns
<!-- tomevault:4.0:skill_md:2026-05-23 -->Source: cwijayasundara/agent_cli_langchain — distributed by TomeVault.
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @tomevault-io · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Async sub-agents are first-class — sub-agents can now be async def callables and run with await agent.ainvoke(...) end-to-end. Mix sync and async sub-agents in the same subagents=[...] list. model=None is deprecated in createdeepagent (0.5.3). Always pass an…
createdeepagent(...) is a thin wrapper over createagent(...) that pre-installs three middlewares: FilesystemMiddleware (virtual FS + readfile/writefile/editfile/ls/glob/grep), SubAgentMiddleware (the task tool with named sub-agents), and TodoListMiddleware…
The default FilesystemMiddleware uses an in-memory virtual FS that resets between invocations unless you pass a checkpointer. For production, choose a backend: Backend · Scope · When Default (in-memory) · Single invocation · Dev, tests
For tools that run real shell commands, use ShellToolMiddleware with a sandboxed execution policy (Daytona is the primary supported sandbox). Two lifecycle patterns: Thread-scoped (most common): fresh container per conversation, cleaned up on TTL.
Sub-agent prompts are templates — the parent's task tool fills in {description}. Keep prompts generic; the parent decides the specifics. instructions= is for the top-level agent, not for sub-agents. Each sub-agent has its own prompt field.
createdeepagent accepts a middleware=[...] parameter that adds to (not replaces) the built-in three. For any production DeepAgent, layer the production stack on top:
# DeepAgents: editorial guidance
Targets `deepagents>=0.5.3`. For API reference (signatures, kwargs, full middleware list), use the **`mcpdoc` MCP tools**: `fetch_docs("https://docs.langchain.com/oss/python/deepagents/...")`. This skill is the *opinions* layer.
## What's new in 0.5.x (worth knowing before you build)
- **Async sub-agents** are first-class — sub-agents can now be `async def` callables and run with `await agent.ainvoke(...)` end-to-end. Mix sync and async sub-agents in the same `subagents=[...]` list.
- **`model=None` is deprecated** in `create_deep_agent` (0.5.3). Always pass an explicit model, e.g. `init_chat_model("anthropic:claude-sonnet-4-6")`.
- **Filesystem permissions system** (0.5.2) — route-scoped read/write rules on `CompositeBackend`; sandbox is now the default for execution. Permission paths must start with `/`; path-traversal raises `ValueError`.
- **Structured sub-agent responses** (0.5.3) — declare a Pydantic schema on a sub-agent and the parent receives a typed object instead of free text. Use this for "researcher returns a `Findings` object" patterns.
- **Legacy subagents API removed** (0.5.0). If you're upgrading from 0.4.x, the old kwargs are gone — see `subagents=[...]` with the new `SubAgent` shape.
## What DeepAgents actually is
`create_deep_agent(...)` is a thin wrapper over `create_agent(...)` that pre-installs three middlewares: `FilesystemMiddleware` (virtual FS + `read_file`/`write_file`/`edit_file`/`ls`/`glob`/`grep`), `SubAgentMiddleware` (the `task` tool with named sub-agents), and `TodoListMiddleware` (the `write_todos` planning tool). You can stack additional middlewares on top.
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> What's new in 0.5.x (worth knowing before you build) → What DeepAgents actually is → Filesystem backend — pick deliberately for production → Sandboxed shell execution — read this before adding tool execution → Sub-agent design rules of thumb → When to compose extra middlewares (almost always)
要点 -> mcpdoc MCP tools · Async sub-agents · model=None is deprecated · Filesystem permissions system · Structured sub-agent responses · Legacy subagents API removed · everything you know about agentic middleware applies. · in-memory virtual FS
文件/命令 -> deepagents>=0.5.3 · mcpdoc · fetchdocs("https://docs.langchain.com/oss/python/deepagents/...") · async def · await agent.ainvoke(...) · subagents=[...] · model=None · createdeepagent
内容 SHA-256 -> d7a87af2382e
方法与流程
适用与边界
原文中的明确线索
deepagents>=0.5.3、mcpdoc、fetchdocs("https://docs.langchain.com/oss/python/deepagents/...")、async def、await agent.ainvoke(...)、subagents=[...]、model=None、createdeepagent