langchain-agents-deepagents-code
- Repo stars 0
- Author updated Live
- Author repo skills-registry
- Domain
- AI
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @tomevault-io · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Not required
- Operating systems
- Unspecified (assume cross-platform)
- Runtime requirements
- Python
- Permissions
-
- Read-only
- Write / modify
- Shell exec
- Network behavior
- External requests
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: langchain-agents-deepagents-code
description: Use when editing a DeepAgents project — adding tools, sub-agents, modifying the system prompt, c…
category: ai
runtime: Python
---
# langchain-agents-deepagents-code output preview
## PART A: Task fit
- Use case: Use when editing a DeepAgents project — adding tools, sub-agents, modifying the system prompt, choosing a filesystem backend, or composing extra middlewares (retries, fallbacks, HITL) on top. Targets deepagents>=0.5.3. For API reference (signatures, kwargs, full middleware list), use the mcpdoc MCP tools: fetchdocs("https://docs.langchain.com/oss/python/d….
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “What's new in 0.5.x (worth knowing before you build) / What DeepAgents actually is / Filesystem backend — pick deliberately for production” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Use when editing a DeepAgents project — adding tools, sub-agents, modifying the system prompt, choosing a filesystem backend, or composing extra middlewares (retries, fallbacks, HITL) on top. Targets deepagents>=0.5.3. For API reference (signatures, kwargs, full middleware list), use the mcpdoc MCP tools: fetchdocs("https://docs.langchain.com/oss/python/d…”.
- **02** When the source has headings, the agent prioritizes “What's new in 0.5.x (worth knowing before you build) / What DeepAgents actually is / Filesystem backend — pick deliberately for production” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files, run shell commands; may access external network resources; usually needs no extra API key.
## Running Rules
- read files, write/modify files, run shell commands; may access external network resources; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source mentions slash commands such as `/memories`, `/scratch`; use them first when your agent supports command triggers.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files, run shell commands.
Start with a small task and check whether the result follows “What's new in 0.5.x (worth knowing before you build) / What DeepAgents actually is / Filesystem backend — pick deliberately for production”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: langchain-agents-deepagents-code
description: Use when editing a DeepAgents project — adding tools, sub-agents, modifying the system prompt, c…
category: ai
source: tomevault-io/skills-registry
---
# langchain-agents-deepagents-code
## When to use
- Use when editing a DeepAgents project — adding tools, sub-agents, modifying the system prompt, choosing a filesystem b…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “What's new in 0.5.x (worth knowing before you build) / What DeepAgents actually is / Filesystem backend — pick deliberately for production” and keep inference separate from source facts.
- read files, write/modify files, run shell commands; may access external network resources; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "langchain-agents-deepagents-code" {
input -> user goal + target files + boundaries + acceptance criteria
context -> What's new in 0.5.x (worth knowing before you build) / What DeepAgents actually is / Filesystem backend — pick deliberately for production
rules -> SKILL.md triggers / order / output contract
runtime -> Python | read files, write/modify files, run shell commands | may access external network resources
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} 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
Source: cwijayasundara/agent_cli_langchain — distributed by TomeVault.
Decide Fit First
Design Intent
How To Use It
Boundaries And Review