Files
deepseek-harness/packages/bundle/README.zh.md
T
Tianyi Cui 47a46e4cca feat(profiles): add the ACP application bundle
Introduce @deepseek-ai/dsh-acp-app as the thin application layer for the built-in acp profile. It contributes only the ACP protocol bridge and profile metadata; dsh-base remains the single owner of shared agent composition, providers, persistence, permissions, and tools.

Wire the bundle into CLI resolution, catalogs, workspace configuration, and built-bin coverage. The focused bundle and startup tests prove that base plus acp-app exposes automation sessions while keeping stdout reserved for ACP JSON-RPC.
2026-08-23 10:59:00 +08:00

1.4 KiB
Raw Blame History

bundle/ — profile 插件组合包

English | 中文

Profile 组合包:在 manifest(元数据清单)中声明 "dsh": { "bundle": { "patch": "./cordis.patch.yml" } } 的 npm 包,因此可作为 patch 层安装进 dsh --profile 组合(profile 约定)。组合包的实体是它的 patch 列表;有些组合包还附带由其 patch 挂载的运行时粘合插件。

Bundle 身份由 manifest 声明决定,而不是由本目录决定。领域包可以携带自己的可选 Profile 层;Codex 与 Claude Code subagent 包就是可直接安装的例子。

职责 ctx key
base/ 每个 profile 最先应用的共享 dsh 核心 —(仅 patch
acp-app/ 运行在 base 之上的 automation-only ACP stdio 应用 挂载 ACP bridge
web-app/ 浏览器表层:web patch 层 + 运行时粘合插件 挂载多条配置行
headless/ 直接运行在 base 之上的一次性任务模式,不含 Host 或 Web 层 挂载 headless-runner
sdk-app/ 运行在 base 之上的 SDK stdio JSON-RPC 应用 挂载 SDK server

内置组合包从 dsh 安装目录解析;树外(out-of-tree)组合包通过 dsh plugin --profile <name> add <package> 安装进 profile。