mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-14 04:01:35 +00:00
Run the dsh-archive-agent-notes audit over every active Agent Note on current master, judging each record by whether its rationale still guides work rather than by size or age. - Archive 453 implemented bilingual triplets (417,882 English words): completed UI chrome, narrow adapters, closed bug fixes, implementation walkthroughs whose package READMEs, docs pages, generators, or successor notes now carry the useful behavior, and 51 records fully superseded by a later active note. Keep 201 implemented notes whose ownership rules, negative guarantees, durable or wire semantics, security rules, reintroduction conditions, or still-tempting rejected alternatives remain useful. - Reject 7 proposals whose premise is gone or whose work shipped in amended form under other records; delete 2 rejected notes that no longer prevent a plausible mistake. - Retarget every remaining inbound link to the archived path, and repair active prose that named an archived record as the owner of a live fact: parenthetical citations drop, ownership sentences redirect to the README, docs page, or active note that states the fact, and history citations say so. Chinese files link the English archived path because the pairing gate treats the frozen tree as outside the bilingual corpus. - Seal 1,359 new frozen artifacts; existing seals are unchanged and outbound links from archived notes are neither inspected nor repaired. - Regenerate docs/config-catalog.md after the hook-bridge comment edits shifted two source line numbers.
3.0 KiB
3.0 KiB
description, kind
| description | kind |
|---|---|
| subagent 包组:委派 seam、其进程内与进程外后端,以及面向模型的委派工具。 | package-group |
subagent/:subagent 能力家族
English | 中文
概述
subagent 组是委派能力家族:它让 agent(智能体)把任务交给子 agent,等待或继续子 agent 的工作,并让每个子 agent 随时可被发现。一个约定(ctx.subagents)服务任意数量的具名提供方,因此单个组合可以混合进程内子 agent(全新启动,或从父级已完成历史派生)与进程外子 agent——ACP agent、真实 Codex 或 Claude Code 安装,或经 SDK 运行的完整 Harness 运行时。面向模型的工具向 agent 公开委派、相邻 Agent 消息与列举,父级总能看到存在哪些子级、它们在线还是仅存于存储。本页是组的映射;各包 README 负责各自的包约定。
目录
包
| 包 | 职责 | ctx 键 |
|---|---|---|
subagent/ |
定义委派服务:提供方注册表、一次性运行、可继续子级与发现 | ctx.subagents |
subagent-in-process-driver/ |
提供共享的进程内运行驱动器 | 无 |
subagent-spawn-in-process/ |
运行全新的进程内子 agent | 注册到 ctx.subagents |
subagent-fork-in-process/ |
运行从父级已完成历史派生的进程内子 agent | 注册到 ctx.subagents |
subagent-acp/ |
经 Agent Client Protocol 运行进程外子 agent | 注册到 ctx.subagents |
subagent-codex/ |
经官方 app-server 协议运行真实 Codex 子 agent | 注册到 ctx.subagents |
subagent-claude-code/ |
经官方 Agent SDK 运行真实 Claude Code 子 agent | 注册到 ctx.subagents |
subagent-dsh-sdk/ |
经 TypeScript SDK 运行进程外 Harness 子 agent | 注册到 ctx.subagents |
tool-subagent/ |
向模型公开委派 | 注册到 ctx.tools |
tool-subagent-control/ |
向模型公开相邻 Agent 消息、中断与列举 | 注册到 ctx.tools |
相关文档
- Subagent 子系统——服务约定、提供方约定与终态结果语义。
- Subagent 能力 seam——委派能力家族的设计记录。
- 可继续的 subagent——接受后续轮次的持久子级。
- tool-subagent-control README——后续消息、中断与列举面。
开发备注
无。