Files
deepseek-harness/packages/boot/README.zh.md
T
Tianyi Cui a7a5be1703 docs(notes): archive low-future-value Agent Notes
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.
2026-09-05 14:37:32 +08:00

1.8 KiB

description, kind
description kind
boot 包组:dsh app bin 如何启动——环境加载、profile 与 patch 层、清晰的启动失败信息,以及由应用持有的命令行。 package-group

boot/:共享的 app bin 启动粘合层

English | 中文

概述

boot 组提供每个 dsh app bin 启动所需的全部能力:app-bootcordis.yml 连同你的环境与 patch 层变成运行中的应用,并给出清晰的失败信息;cmdline 让应用持有自己的命令行 flag 与 --help。借助这些包,你可以运行 dsh,也可以编写以同样方式启动的新应用或测试 fixture。两者都是 apps/cli 与测试专用 Loader fixture 导入的库,绝不是组合加载的插件。本页是组的映射;各包 README 负责各自的包级约定。

目录

职责 ctx 键
app-boot cordis.yml 启动 dsh 应用:加载 .env、应用 profile 与 patch 层,并清晰报告启动失败 (供各 bin 使用的库)
cmdline 让应用持有自己的 flag、--help 与退出码;启动器自身 flag 之后的一切原样传入 cmdlineArgsappExit

相关文档

  • dsh 应用——在其启动序列中使用这些 helper 的 dsh bin。
  • Profile 组合包——可由 dsh --profile 组合挂载的可安装 patch 层。
  • dsh-home-paths——两个包都依赖的 harness home 解析器。
  • dsh-cmdline——flag 家族如何由应用持有而非启动器。

开发备注

无。