Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

deepagentsdeepagents 搜索

Agent Skill

deepagents 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

2

下载量

143
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:deepagents(deepagents 搜索)
来源仓库:https://github.com/akillness/oh-my-gods
仓库路径:skills/deepagents
安装命令:
npx skills add https://github.com/akillness/oh-my-gods --skill deepagents
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-gods --skill deepagents

简介

deepagents 是基于 LangGraph 的即用型智能体框架,集成规划、文件访问、子代理与记忆功能。

  • 适合快速构建需任务分解、上下文隔离子代理或长期记忆管理的复杂工具调用智能体。
  • 提供多种后端存储方案与技能扩展机制,支持人机协同审批与长期对话摘要管理。
  • 使用前需确认 Python 环境与依赖包安装权限,注意其可能涉及文件系统操作与外部 API 调用。
  • deepagents 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

deepagents

Deep Agents is a batteries-included agent harness built on top of LangGraph. Use it when the problem is "give me a capable agent with planning, files, subagents, and memory" rather than "let me hand-author every graph edge myself."

When to use this skill

  • Building a tool-calling agent that needs file access and planning quickly
  • Delegating bounded work to specialized subagents with context isolation
  • Choosing between StateBackend, FilesystemBackend, StoreBackend, CompositeBackend, or LocalShellBackend
  • Adding skills and long-term memory without bloating the core prompt
  • Requiring human approval before sensitive tool calls with interrupt_on
  • Using deepagents as a specialist inside a larger LangGraph supervisor

Installation

pip install -qU deepagents

Inside an existing uv-managed project:

uv add deepagents

Optional provider and MCP packages:

pip install -qU langchain-anthropic langchain-openai langchain-google-genai
pip install -qU langchain-mcp-adapters

Core API

from deepagents import create_deep_agent

agent = create_deep_agent(
    model="openai:gpt-5.4",
    tools=[],
    system_prompt="You are a careful engineering agent.",
    middleware=[],
    subagents=[],
    skills=[],
    memory=[],
    response_format=None,
    checkpointer=None,
    backend=None,
    interrupt_on=None,
    debug=False,
    name="deep-agent",
)

Deep Agents work with LangChain chat models that support tool calling. The simplest selector is provider:model.

Instructions

Step 1: Start with the default harness

For many workflows, the zero-config harness is enough:

from deepagents import create_deep_agent

agent = create_deep_agent()
result = agent.invoke(
    {"messages": [{"role": "user", "content": "List the Python files in this repo"}]}
)

This gives you:

  • planning via the built-in todo capability
  • file tools such as ls, read_file, write_file, edit_file, glob, and grep
  • LangGraph runtime features such as streaming and resumability when a checkpointer is attached

Step 2: Pick the right backend

Match the backend to the trust boundary:

from deepagents.backends import CompositeBackend, FilesystemBackend, LocalShellBackend, StateBackend, StoreBackend
from langgraph.store.memory import InMemoryStore

agent = create_deep_agent(
    backend=lambda rt: CompositeBackend(
        default=StateBackend(rt),
        routes={"/memories/": StoreBackend(rt)},
    ),
    store=InMemoryStore(),
)

Guidance:

  • StateBackend: default ephemeral workspace in LangGraph state, scoped to a thread
  • StoreBackend: durable cross-thread memory and instructions
  • FilesystemBackend: real files under a root directory; prefer virtual_mode=True
  • LocalShellBackend: host shell access, development-only, high risk
  • CompositeBackend: mix scratch space and durable memory under different path prefixes

Step 3: Add subagents only for real context isolation

from deepagents import MemoryMiddleware, SubAgent, SubAgentMiddleware, create_deep_agent

researcher = SubAgent(
    name="researcher",
    description="Finds documentation and summarizes it",
    system_prompt="Search broadly, return concise evidence.",
    tools=[web_search_tool],
)

agent = create_deep_agent(
    middleware=[
        MemoryMiddleware(memory_files=["AGENTS.md"]),
        SubAgentMiddleware(subagents=[researcher]),
    ]
)

Use subagents when:

  • the specialist needs a narrower tool set
  • you want the supervisor context to stay clean
  • a subtask can be delegated without the main agent rereading all prior context

Step 4: Add HITL for risky tools

Human approval requires both interrupt_on and a checkpointer:

from deepagents import create_deep_agent
from langgraph.checkpoint.memory import MemorySaver

agent = create_deep_agent(
    checkpointer=MemorySaver(),
    interrupt_on={
        "write_file": {"allowed_decisions": ["approve", "reject"]},
        "execute": {"allowed_decisions": ["approve", "edit", "reject"]},
    },
)

Resume on the same thread:

from langgraph.types import Command

config = {"configurable": {"thread_id": "job-7"}}
first = agent.invoke({"messages": [...]}, config=config, version="v2")
second = agent.invoke(Command(resume=[{"decision": "approve"}]), config=config, version="v2")

Step 5: Use skills and memory for different jobs

agent = create_deep_agent(
    skills=["./skills/langgraph-workflow"],
    memory=["AGENTS.md", "TEAM_GUIDELINES.md"],
)

Use:

  • skills for reusable workflows and domain-specific procedures
  • memory for stable project knowledge, preferences, and house rules

Do not collapse both into a giant system prompt. Let the harness load them progressively.

Step 6: Use Deep Agents inside LangGraph when orchestration gets custom

If you need explicit retries, branching, or supervisor-owned state, use LangGraph outside and deepagents inside specialist nodes.

Examples

Example 1: Minimal file-aware agent

from deepagents import create_deep_agent

agent = create_deep_agent(model="openai:gpt-5.4")
result = agent.invoke(
    {"messages": [{"role": "user", "content": "Summarize the README and note any missing setup steps"}]}
)

Example 2: Composite backend with durable memory route

from deepagents import create_deep_agent
from deepagents.backends import CompositeBackend, StateBackend, StoreBackend
from langgraph.store.memory import InMemoryStore

agent = create_deep_agent(
    backend=lambda rt: CompositeBackend(
        default=StateBackend(rt),
        routes={"/memories/": StoreBackend(rt)},
    ),
    store=InMemoryStore(),
)

Example 3: Research specialist subagent

from deepagents import SubAgent, SubAgentMiddleware, create_deep_agent

researcher = SubAgent(
    name="researcher",
    description="Searches docs and summarizes findings",
    system_prompt="Return concise, source-backed notes.",
    tools=[search_docs],
)

agent = create_deep_agent(
    middleware=[SubAgentMiddleware(subagents=[researcher])]
)

Example 4: HITL for shell execution

from deepagents import create_deep_agent
from langgraph.checkpoint.memory import MemorySaver

agent = create_deep_agent(
    checkpointer=MemorySaver(),
    interrupt_on={"execute": True},
)

Best practices

  1. Start with the default harness before customizing middleware.
  2. Use StateBackend for scratch space and CompositeBackend when long-term memory is needed.
  3. Treat LocalShellBackend as development-only and pair it with human approval.
  4. Prefer FilesystemBackend(root_dir=..., virtual_mode=True) over unconstrained local file access.
  5. Use skills for reusable capabilities and memory for persistent project context.
  6. Add subagents for context isolation, not because multi-agent sounds impressive.
  7. If routing becomes graph-shaped, move orchestration to LangGraph and keep deepagents as a specialist.

Framework selection guide

NeedRecommendation
Fast path to a capable coding or ops agentDeep Agents
Custom retry loops, branching, supervisor-owned stateLangGraph
Simple single-agent tool useLangChain create_agent
Durable workflow plus specialist harnessLangGraph + Deep Agents hybrid

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.7%
按下载量换算51

Claude

30.28%
按下载量换算43

Cursor

18.62%
按下载量换算27

Gemini CLI

9.65%
按下载量换算14

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/akillness/oh-my-gods --skill deepagents 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills