coding-agent-harness 1.0.4 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (279) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/CONTRIBUTING.md +2 -2
  3. package/LICENSE +661 -21
  4. package/LICENSE-EXCEPTION.md +37 -0
  5. package/README.md +96 -4
  6. package/README.zh-CN.md +75 -4
  7. package/SKILL.md +52 -51
  8. package/dist/build-dist.mjs +189 -0
  9. package/dist/check-dist-observation.mjs +428 -0
  10. package/dist/check-harness.mjs +489 -0
  11. package/dist/check-import-graph.mjs +511 -0
  12. package/dist/check-runtime-emit.mjs +304 -0
  13. package/dist/check-type-boundaries.mjs +139 -0
  14. package/dist/commands/dashboard-command.mjs +80 -0
  15. package/dist/commands/migration-command.mjs +152 -0
  16. package/dist/commands/preset-command.mjs +91 -0
  17. package/dist/commands/task-command.mjs +324 -0
  18. package/dist/harness.mjs +304 -0
  19. package/dist/lib/capability-registry.mjs +643 -0
  20. package/dist/lib/check-module-parallel.mjs +227 -0
  21. package/dist/lib/check-profiles.mjs +414 -0
  22. package/dist/lib/check-task-contracts.mjs +54 -0
  23. package/dist/lib/core-shared.mjs +254 -0
  24. package/dist/lib/dashboard-data.mjs +608 -0
  25. package/dist/lib/dashboard-workbench.mjs +334 -0
  26. package/dist/lib/dashboard-writer.mjs +200 -0
  27. package/dist/lib/git-status-summary.mjs +45 -0
  28. package/dist/lib/governance-index-generator.mjs +236 -0
  29. package/dist/lib/governance-sync.mjs +617 -0
  30. package/dist/lib/governance-table-boundary.mjs +161 -0
  31. package/{scripts → dist}/lib/harness-core.mjs +3 -0
  32. package/dist/lib/harness-paths.mjs +338 -0
  33. package/dist/lib/lesson-maintenance.mjs +139 -0
  34. package/dist/lib/markdown-utils.mjs +193 -0
  35. package/dist/lib/migration-planner.mjs +439 -0
  36. package/dist/lib/migration-support.mjs +317 -0
  37. package/dist/lib/phase-kind.mjs +46 -0
  38. package/dist/lib/preset-audit-contracts.mjs +40 -0
  39. package/dist/lib/preset-engine.mjs +516 -0
  40. package/dist/lib/preset-registry.mjs +831 -0
  41. package/dist/lib/preset-resource-contracts.mjs +83 -0
  42. package/dist/lib/review-confirm-git-gate.mjs +244 -0
  43. package/dist/lib/status-builder.mjs +87 -0
  44. package/{scripts → dist}/lib/status-dashboard-renderer.mjs +48 -47
  45. package/dist/lib/structure-migration.mjs +404 -0
  46. package/dist/lib/subagent-authorization-audit.mjs +198 -0
  47. package/dist/lib/task-audit-metadata.mjs +376 -0
  48. package/dist/lib/task-audit-migration.mjs +355 -0
  49. package/dist/lib/task-completion-consistency.mjs +29 -0
  50. package/dist/lib/task-index.mjs +133 -0
  51. package/dist/lib/task-lesson-candidates.mjs +239 -0
  52. package/dist/lib/task-lesson-sedimentation.mjs +300 -0
  53. package/dist/lib/task-lifecycle/create-task-helpers.mjs +84 -0
  54. package/dist/lib/task-lifecycle/phase-sync.mjs +82 -0
  55. package/dist/lib/task-lifecycle/review-confirm.mjs +93 -0
  56. package/dist/lib/task-lifecycle/review-gates.mjs +62 -0
  57. package/dist/lib/task-lifecycle/review-submission.mjs +52 -0
  58. package/dist/lib/task-lifecycle/scaffold-provenance.mjs +54 -0
  59. package/dist/lib/task-lifecycle/template-files.mjs +52 -0
  60. package/dist/lib/task-lifecycle/text-utils.mjs +26 -0
  61. package/dist/lib/task-lifecycle.mjs +611 -0
  62. package/dist/lib/task-metadata.mjs +116 -0
  63. package/dist/lib/task-review-model.mjs +474 -0
  64. package/dist/lib/task-scanner.mjs +439 -0
  65. package/dist/lib/task-tombstone-commands.mjs +125 -0
  66. package/dist/postinstall.mjs +14 -0
  67. package/dist/run-built-tests.mjs +84 -0
  68. package/docs-release/README.md +1 -0
  69. package/docs-release/architecture/overview.md +13 -13
  70. package/docs-release/architecture/overview.zh-CN.md +13 -13
  71. package/docs-release/architecture/system-explainer/01-system-overview.md +218 -0
  72. package/docs-release/architecture/system-explainer/02-module-dependency.md +257 -0
  73. package/docs-release/architecture/system-explainer/03-task-lifecycle.md +304 -0
  74. package/docs-release/architecture/system-explainer/04-check-and-governance.md +241 -0
  75. package/docs-release/architecture/system-explainer/05-data-flow.md +276 -0
  76. package/docs-release/architecture/system-explainer/06-preset-and-migration.md +300 -0
  77. package/docs-release/architecture/system-explainer/README.md +67 -0
  78. package/docs-release/architecture/system-explainer/en-US/01-system-overview.md +227 -0
  79. package/docs-release/architecture/system-explainer/en-US/02-module-dependency.md +263 -0
  80. package/docs-release/architecture/system-explainer/en-US/03-task-lifecycle.md +319 -0
  81. package/docs-release/architecture/system-explainer/en-US/04-check-and-governance.md +252 -0
  82. package/docs-release/architecture/system-explainer/en-US/05-data-flow.md +290 -0
  83. package/docs-release/architecture/system-explainer/en-US/06-preset-and-migration.md +320 -0
  84. package/docs-release/architecture/system-explainer/en-US/README.md +70 -0
  85. package/docs-release/guides/agent-installation.en-US.md +22 -15
  86. package/docs-release/guides/agent-installation.md +23 -15
  87. package/docs-release/guides/contributing.md +3 -3
  88. package/docs-release/guides/contributing.zh-CN.md +3 -3
  89. package/docs-release/guides/document-audience-and-surfaces.en-US.md +10 -10
  90. package/docs-release/guides/document-audience-and-surfaces.md +10 -10
  91. package/docs-release/guides/legacy-migration-agent-prompt.md +25 -2
  92. package/docs-release/guides/legacy-migration-agent-prompt.zh-CN.md +25 -2
  93. package/docs-release/guides/migration-playbook.en-US.md +63 -1
  94. package/docs-release/guides/migration-playbook.md +59 -1
  95. package/docs-release/guides/parent-control-repository-pattern.en-US.md +25 -25
  96. package/docs-release/guides/parent-control-repository-pattern.md +25 -25
  97. package/docs-release/guides/preset-development.md +28 -4
  98. package/docs-release/guides/repository-operating-models.en-US.md +21 -21
  99. package/docs-release/guides/repository-operating-models.md +21 -21
  100. package/docs-release/guides/task-state-machine.en-US.md +35 -18
  101. package/docs-release/guides/task-state-machine.md +35 -18
  102. package/docs-release/guides/typescript-runtime-migration-closeout.md +96 -0
  103. package/examples/minimal-project/AGENTS.md +2 -2
  104. package/examples/minimal-project/coding-agent-harness/harness.yaml +14 -0
  105. package/examples/minimal-project/coding-agent-harness/planning/tasks/demo-task/INDEX.md +60 -0
  106. package/examples/minimal-project/coding-agent-harness/planning/tasks/demo-task/progress.md +11 -0
  107. package/examples/minimal-project/{docs/09-PLANNING/TASKS → coding-agent-harness/planning/tasks}/demo-task/review.md +1 -1
  108. package/package.json +22 -13
  109. package/presets/legacy-migration/preset.yaml +5 -5
  110. package/presets/legacy-migration/templates/execution_strategy.append.md +1 -1
  111. package/presets/lesson-sedimentation/preset.yaml +3 -3
  112. package/presets/module/preset.yaml +2 -2
  113. package/presets/module/templates/execution_strategy.append.md +1 -1
  114. package/presets/module/templates/task_plan.append.md +3 -3
  115. package/presets/standard-task/preset.yaml +2 -2
  116. package/references/adversarial-review-standard.md +2 -2
  117. package/references/agents-md-pattern.md +14 -14
  118. package/references/cadence-ledger.md +1 -1
  119. package/references/ci-cd-standard.md +1 -1
  120. package/references/delivery-operating-model-standard.md +4 -4
  121. package/references/docs-directory-standard.md +65 -159
  122. package/references/external-source-intake-standard.md +10 -10
  123. package/references/harness-ledger.md +6 -6
  124. package/references/legacy-12-phase-bootstrap.md +2 -2
  125. package/references/lessons-governance.md +15 -15
  126. package/references/long-running-task-standard.md +6 -6
  127. package/references/module-parallel-standard.md +34 -34
  128. package/references/planning-loop.md +6 -6
  129. package/references/project-onboarding-audit.md +4 -4
  130. package/references/regression-system.md +2 -2
  131. package/references/repo-governance-standard.md +4 -4
  132. package/references/review-routing-standard.md +1 -1
  133. package/references/ssot-governance.md +19 -19
  134. package/references/taskr-gap-analysis.md +5 -5
  135. package/references/walkthrough-closeout.md +14 -14
  136. package/references/worktree-parallel.md +3 -3
  137. package/skills/preset-creator/references/complex-task-skeleton/brief.md +11 -0
  138. package/skills/preset-creator/references/complex-task-skeleton/task_plan.md +1 -1
  139. package/skills/preset-creator/references/preset-package-skeleton.md +5 -5
  140. package/templates/AGENTS.md.template +31 -29
  141. package/templates/architecture/README.md +4 -4
  142. package/templates/architecture/service-catalog.md +2 -2
  143. package/templates/architecture/services/service-template.md +1 -1
  144. package/templates/dashboard/assets/app-src/00-state.js +12 -0
  145. package/templates/dashboard/assets/app-src/10-router.js +3 -0
  146. package/templates/dashboard/assets/app-src/20-overview.js +13 -3
  147. package/templates/dashboard/assets/app-src/35-task-detail.js +46 -6
  148. package/templates/dashboard/assets/app-src/40-modules.js +1 -1
  149. package/templates/dashboard/assets/app-src/55-presets.js +375 -0
  150. package/templates/dashboard/assets/app-src/60-shared.js +3 -1
  151. package/templates/dashboard/assets/app-src/90-bindings.js +131 -0
  152. package/templates/dashboard/assets/app.css +583 -0
  153. package/templates/dashboard/assets/app.css.manifest.json +1 -0
  154. package/templates/dashboard/assets/app.js +585 -11
  155. package/templates/dashboard/assets/app.manifest.json +1 -0
  156. package/templates/dashboard/assets/css-src/00-foundation.css +4 -0
  157. package/templates/dashboard/assets/css-src/40-detail-modules-migration.css +62 -0
  158. package/templates/dashboard/assets/css-src/45-presets.css +516 -0
  159. package/templates/dashboard/assets/i18n.js +144 -4
  160. package/templates/development/README.md +10 -10
  161. package/templates/development/cross-repo-debugging.md +3 -3
  162. package/templates/development/external-context/service-template.md +2 -2
  163. package/templates/development/external-source-packs/README.md +4 -4
  164. package/templates/integrations/README.md +4 -4
  165. package/templates/integrations/api-contract.md +2 -2
  166. package/templates/integrations/event-contract.md +2 -2
  167. package/templates/integrations/third-party/vendor-template.md +2 -2
  168. package/templates/integrations/webhook-contract.md +2 -2
  169. package/templates/ledger/Harness-Ledger.md +1 -1
  170. package/templates/planning/INDEX.md +88 -0
  171. package/templates/planning/brief.md +1 -1
  172. package/templates/planning/module_session_prompt.md +2 -1
  173. package/templates/planning/review.md +0 -18
  174. package/templates/planning/task_plan.md +5 -44
  175. package/templates/planning/visual_map.md +13 -9
  176. package/templates/planning/visual_map.simple.md +52 -0
  177. package/templates/planning/walkthrough.md +47 -0
  178. package/templates/reference/docs-library-standard.md +8 -8
  179. package/templates/reference/execution-workflow-standard.md +29 -2
  180. package/templates/reference/external-source-intake-standard.md +15 -15
  181. package/templates/reference/repo-governance-standard.md +1 -1
  182. package/templates/ssot/Module-Registry.md +1 -1
  183. package/templates/walkthrough/walkthrough-template.md +2 -2
  184. package/templates-zh-CN/AGENTS.md.template +31 -29
  185. package/templates-zh-CN/CLAUDE.md.template +1 -1
  186. package/templates-zh-CN/architecture/README.md +4 -4
  187. package/templates-zh-CN/architecture/service-catalog.md +2 -2
  188. package/templates-zh-CN/architecture/services/service-template.md +1 -1
  189. package/templates-zh-CN/development/README.md +10 -10
  190. package/templates-zh-CN/development/cross-repo-debugging.md +3 -3
  191. package/templates-zh-CN/development/external-context/service-template.md +2 -2
  192. package/templates-zh-CN/development/external-source-packs/README.md +4 -4
  193. package/templates-zh-CN/integrations/README.md +4 -4
  194. package/templates-zh-CN/integrations/api-contract.md +2 -2
  195. package/templates-zh-CN/integrations/event-contract.md +2 -2
  196. package/templates-zh-CN/integrations/third-party/vendor-template.md +2 -2
  197. package/templates-zh-CN/integrations/webhook-contract.md +2 -2
  198. package/templates-zh-CN/ledger/Harness-Ledger.md +1 -1
  199. package/templates-zh-CN/lessons/lesson-arch-process-change.md +1 -1
  200. package/templates-zh-CN/lessons/lesson-new-doc.md +3 -3
  201. package/templates-zh-CN/lessons/lesson-ref-change.md +4 -4
  202. package/templates-zh-CN/planning/INDEX.md +87 -0
  203. package/templates-zh-CN/planning/brief.md +1 -1
  204. package/templates-zh-CN/planning/module_session_prompt.md +12 -11
  205. package/templates-zh-CN/planning/review.md +0 -18
  206. package/templates-zh-CN/planning/task_plan.md +3 -63
  207. package/templates-zh-CN/planning/visual_map.md +14 -7
  208. package/templates-zh-CN/planning/visual_map.simple.md +48 -0
  209. package/templates-zh-CN/planning/walkthrough.md +47 -0
  210. package/templates-zh-CN/reference/adversarial-review-standard.md +2 -2
  211. package/templates-zh-CN/reference/delivery-operating-model-standard.md +3 -3
  212. package/templates-zh-CN/reference/docs-library-standard.md +28 -28
  213. package/templates-zh-CN/reference/execution-workflow-standard.md +32 -7
  214. package/templates-zh-CN/reference/external-source-intake-standard.md +16 -16
  215. package/templates-zh-CN/reference/harness-ledger-standard.md +6 -6
  216. package/templates-zh-CN/reference/regression-ssot-governance.md +2 -2
  217. package/templates-zh-CN/reference/repo-governance-standard.md +1 -1
  218. package/templates-zh-CN/reference/review-routing-standard.md +1 -1
  219. package/templates-zh-CN/reference/walkthrough-standard.md +7 -7
  220. package/templates-zh-CN/reference/worktree-standard.md +1 -1
  221. package/templates-zh-CN/regression/Cadence-Ledger.md +2 -2
  222. package/templates-zh-CN/ssot/Delivery-SSoT.md +3 -3
  223. package/templates-zh-CN/ssot/Module-Registry.md +3 -3
  224. package/templates-zh-CN/ssot/Regression-SSoT.md +2 -2
  225. package/templates-zh-CN/walkthrough/walkthrough-template.md +5 -5
  226. package/tsconfig.dist.json +16 -0
  227. package/tsconfig.json +25 -0
  228. package/tsconfig.runtime.json +24 -0
  229. package/examples/minimal-project/.harness-capabilities.json +0 -8
  230. package/examples/minimal-project/docs/09-PLANNING/TASKS/demo-task/progress.md +0 -11
  231. package/scripts/check-harness.mjs +0 -508
  232. package/scripts/commands/dashboard-command.mjs +0 -67
  233. package/scripts/commands/migration-command.mjs +0 -96
  234. package/scripts/commands/preset-command.mjs +0 -73
  235. package/scripts/commands/task-command.mjs +0 -327
  236. package/scripts/harness.mjs +0 -287
  237. package/scripts/lib/capability-registry.mjs +0 -591
  238. package/scripts/lib/check-module-parallel.mjs +0 -237
  239. package/scripts/lib/check-profiles.mjs +0 -418
  240. package/scripts/lib/check-task-contracts.mjs +0 -47
  241. package/scripts/lib/core-shared.mjs +0 -196
  242. package/scripts/lib/dashboard-data.mjs +0 -412
  243. package/scripts/lib/dashboard-workbench.mjs +0 -257
  244. package/scripts/lib/dashboard-writer.mjs +0 -198
  245. package/scripts/lib/git-status-summary.mjs +0 -46
  246. package/scripts/lib/governance-index-generator.mjs +0 -174
  247. package/scripts/lib/governance-sync.mjs +0 -514
  248. package/scripts/lib/governance-table-boundary.mjs +0 -175
  249. package/scripts/lib/lesson-maintenance.mjs +0 -152
  250. package/scripts/lib/markdown-utils.mjs +0 -158
  251. package/scripts/lib/migration-planner.mjs +0 -478
  252. package/scripts/lib/migration-support.mjs +0 -312
  253. package/scripts/lib/preset-audit-contracts.mjs +0 -37
  254. package/scripts/lib/preset-engine.mjs +0 -497
  255. package/scripts/lib/preset-registry.mjs +0 -627
  256. package/scripts/lib/preset-resource-contracts.mjs +0 -83
  257. package/scripts/lib/review-confirm-git-gate.mjs +0 -248
  258. package/scripts/lib/subagent-authorization-audit.mjs +0 -196
  259. package/scripts/lib/task-completion-consistency.mjs +0 -16
  260. package/scripts/lib/task-index.mjs +0 -93
  261. package/scripts/lib/task-lesson-candidates.mjs +0 -242
  262. package/scripts/lib/task-lesson-sedimentation.mjs +0 -326
  263. package/scripts/lib/task-lifecycle/review-confirm.mjs +0 -101
  264. package/scripts/lib/task-lifecycle/review-gates.mjs +0 -70
  265. package/scripts/lib/task-lifecycle/text-utils.mjs +0 -24
  266. package/scripts/lib/task-lifecycle.mjs +0 -649
  267. package/scripts/lib/task-review-model.mjs +0 -469
  268. package/scripts/lib/task-scanner.mjs +0 -576
  269. package/scripts/lib/task-tombstone-commands.mjs +0 -140
  270. package/scripts/postinstall.mjs +0 -14
  271. package/templates/walkthrough/Closeout-SSoT.md +0 -43
  272. package/templates-zh-CN/walkthrough/Closeout-SSoT.md +0 -42
  273. /package/examples/minimal-project/{docs → coding-agent-harness/governance/generated}/Harness-Ledger.md +0 -0
  274. /package/examples/minimal-project/{docs/09-PLANNING/TASKS → coding-agent-harness/planning/tasks}/demo-task/brief.md +0 -0
  275. /package/examples/minimal-project/{docs/09-PLANNING/TASKS → coding-agent-harness/planning/tasks}/demo-task/execution_strategy.md +0 -0
  276. /package/examples/minimal-project/{docs/09-PLANNING/TASKS → coding-agent-harness/planning/tasks}/demo-task/findings.md +0 -0
  277. /package/examples/minimal-project/{docs/09-PLANNING/TASKS → coding-agent-harness/planning/tasks}/demo-task/lesson_candidates.md +0 -0
  278. /package/examples/minimal-project/{docs/09-PLANNING/TASKS → coding-agent-harness/planning/tasks}/demo-task/task_plan.md +0 -0
  279. /package/examples/minimal-project/{docs/09-PLANNING/TASKS → coding-agent-harness/planning/tasks}/demo-task/visual_map.md +0 -0
@@ -15,7 +15,38 @@ English mirror: `docs-release/guides/migration-playbook.en-US.md`
15
15
  如果目标环境没有 `harness`,不得静默全局安装;先询问用户是否允许运行
16
16
  `npm install -g coding-agent-harness`。用户明确同意后才能安装。用户不同意或未回复时,
17
17
  用 `npx --yes coding-agent-harness <command>` 运行同一条 CLI。维护者在本源码仓调试时,
18
- 可以把同一命令替换为 `node scripts/harness.mjs`。
18
+ 可以把同一命令替换为 `node dist/harness.mjs`。
19
+
20
+ ## 目标路径和 v2 结构
21
+
22
+ v2 的默认活跃目录是目标项目里的 `coding-agent-harness/`,入口文件是
23
+ `coding-agent-harness/harness.yaml`。但检查目标不要求这个目录一定在仓库根目录下使用固定名称。
24
+ 如果项目已经把 Harness 状态放在自定义目录,例如
25
+ `.project-control/harness-state/`,需要在该目录的 `harness.yaml` 中声明:
26
+
27
+ ```yaml
28
+ structure:
29
+ harnessRoot: .project-control/harness-state
30
+ planningRoot: .project-control/harness-state/planning
31
+ tasksRoot: .project-control/harness-state/planning/tasks
32
+ governanceRoot: .project-control/harness-state/governance
33
+ generatedRoot: .project-control/harness-state/governance/generated
34
+ ```
35
+
36
+ 之后可以从项目根运行:
37
+
38
+ ```bash
39
+ harness status --json /path/to/project
40
+ harness check --profile target-project /path/to/project
41
+ ```
42
+
43
+ 也可以直接指向 Harness 根目录:
44
+
45
+ ```bash
46
+ harness status --json /path/to/project/.project-control/harness-state
47
+ ```
48
+
49
+ 如果一个项目下存在多个 `harness.yaml`,不要让 agent 猜;必须把目标 Harness 根目录作为命令参数传入。
19
50
 
20
51
  ## 迁移原则
21
52
 
@@ -35,6 +66,7 @@ English mirror: `docs-release/guides/migration-playbook.en-US.md`
35
66
  git -C /path/to/project status --short --branch
36
67
  harness status --json /path/to/project
37
68
  harness migrate-plan --json --limit 1000 /path/to/project
69
+ harness migrate-structure --plan --json /path/to/project
38
70
  ```
39
71
 
40
72
  然后 agent 必须给用户一份迁移计划,并主动推荐迁移深度:
@@ -69,6 +101,20 @@ Agent 必须记录具体判断证据,例如 `AGENTS.md`、`CLAUDE.md`、`READM
69
101
 
70
102
  2. 运行迁移轨道:
71
103
 
104
+ 先把旧 `docs/` 布局迁到 v2 manifest 布局。`--plan` 是只读预览;用户确认后才运行
105
+ `--apply`。默认迁移目标是 `coding-agent-harness/`,并会把旧 `docs/` 归档到
106
+ `coding-agent-harness/governance/archive/legacy-docs/`。旧版本遗留的
107
+ `planning/**/_task-template` 和 `planning/**/_module-template` 是 npm 包内模板的生成副本,
108
+ 迁移时会从目标项目中移除:
109
+
110
+ ```bash
111
+ harness migrate-structure --plan --json /path/to/project
112
+ harness migrate-structure --apply --json /path/to/project
113
+ harness check --profile target-project /path/to/project
114
+ ```
115
+
116
+ 目录迁移通过后,再运行 session 迁移轨道:
117
+
72
118
  ```bash
73
119
  harness migrate-run \
74
120
  --locale zh-CN \
@@ -96,6 +142,18 @@ harness migrate-verify /tmp/cah-migration-project/session.json
96
142
 
97
143
  `migrate-verify` 会检查 capability registry、locale、dashboard HTML 路径、普通检查、strict deferred 元数据和 git index。它通过以后,才可以说迁移输出“可用”。
98
144
 
145
+ 4. 基于验证通过的 session 创建迁移任务:
146
+
147
+ ```bash
148
+ harness new-task \
149
+ --budget complex \
150
+ --preset legacy-migration \
151
+ --from-session /tmp/cah-migration-project/session.json \
152
+ /path/to/project
153
+ ```
154
+
155
+ `legacy-migration` preset 任务是后续迁移工作的可审计交接点。它会记录 session、证据包、preset audit、write scope 和 migration follow-up queue;不会自动重写历史任务正文。
156
+
99
157
  如果后续继续清理 warning 或补活跃任务合同,第一次 session 只能作为 baseline。最终交付前要重新运行 `migrate-run` 生成新 session/dashboard,或者明确列出 baseline session 与最终检查证据的差异。
100
158
 
101
159
  `migrate-verify` 通过不等于 full migration complete。完整迁移还必须满足:
@@ -30,13 +30,13 @@ product-control-repo/
30
30
  docs/
31
31
  01-GOVERNANCE/
32
32
  02-PRODUCT/
33
- 03-ARCHITECTURE/
34
- 04-DEVELOPMENT/
35
- 05-TEST-QA/
36
- 06-INTEGRATIONS/
37
- 09-PLANNING/
38
- 10-WALKTHROUGH/
39
- 11-REFERENCE/
33
+ coding-agent-harness/context/architecture/
34
+ coding-agent-harness/context/development/
35
+ coding-agent-harness/governance/regression/
36
+ coding-agent-harness/context/integrations/
37
+ coding-agent-harness/planning/
38
+ coding-agent-harness/planning/tasks/<task>/
39
+ coding-agent-harness/governance/standards/
40
40
  tools/
41
41
  check-harness.mjs
42
42
  internal-ci.mjs
@@ -59,16 +59,16 @@ The parent repository is the control plane.
59
59
  It should contain:
60
60
 
61
61
  - `AGENTS.md`: the single agent startup entrypoint and reading matrix.
62
- - `docs/03-ARCHITECTURE/repository-topology.md`: repository topology, owners, boundaries, dependency direction.
63
- - `docs/04-DEVELOPMENT/local-development.md`: cross-repo local startup, integration workflow, dependency setup.
64
- - `docs/06-INTEGRATIONS/`: cross-service APIs, events, SDKs, databases, permissions, and external contracts.
65
- - `docs/Harness-Ledger.md`: generated global task lifecycle index from task files.
66
- - `docs/09-PLANNING/Delivery-SSoT.md`: cross-repo feature blocks, dependencies, and release orchestration.
67
- - `docs/09-PLANNING/TASKS/`: cross-repo task contracts.
68
- - `docs/05-TEST-QA/Regression-SSoT.md`: cross-repo regression gates.
69
- - `docs/05-TEST-QA/Cadence-Ledger.md`: which changes trigger which checks.
70
- - `docs/10-WALKTHROUGH/`: cross-repo closeout and human confirmation.
71
- - `docs/11-REFERENCE/`: local standards for using Harness in this project.
62
+ - `coding-agent-harness/context/architecture/repository-topology.md`: repository topology, owners, boundaries, dependency direction.
63
+ - `coding-agent-harness/context/development/local-development.md`: cross-repo local startup, integration workflow, dependency setup.
64
+ - `coding-agent-harness/context/integrations/`: cross-service APIs, events, SDKs, databases, permissions, and external contracts.
65
+ - `coding-agent-harness/governance/generated/Harness-Ledger.md`: generated global task lifecycle index from task files.
66
+ - `coding-agent-harness/planning/Delivery-SSoT.md`: cross-repo feature blocks, dependencies, and release orchestration.
67
+ - `coding-agent-harness/planning/tasks/`: cross-repo task contracts.
68
+ - `coding-agent-harness/governance/regression/Regression-SSoT.md`: cross-repo regression gates.
69
+ - `coding-agent-harness/governance/regression/Cadence-Ledger.md`: which changes trigger which checks.
70
+ - `coding-agent-harness/planning/tasks/<task>/`: cross-repo closeout and human confirmation.
71
+ - `coding-agent-harness/governance/standards/`: local standards for using Harness in this project.
72
72
 
73
73
  The parent repository should also provide a check command, for example:
74
74
 
@@ -138,7 +138,7 @@ Do not let agents start cross-repo tasks from random child repositories. They wi
138
138
  Cross-repo tasks should be created in the parent repository:
139
139
 
140
140
  ```text
141
- docs/09-PLANNING/TASKS/2026-05-22-example-cross-repo-feature/
141
+ coding-agent-harness/planning/tasks/2026-05-22-example-cross-repo-feature/
142
142
  brief.md
143
143
  task_plan.md
144
144
  execution_strategy.md
@@ -164,7 +164,7 @@ In the parent-control model, the parent repository must document more external c
164
164
 
165
165
  ### Architecture
166
166
 
167
- `docs/03-ARCHITECTURE/` explains how the system is split across repositories:
167
+ `coding-agent-harness/context/architecture/` explains how the system is split across repositories:
168
168
 
169
169
  - Repo topology.
170
170
  - Service boundaries.
@@ -175,7 +175,7 @@ In the parent-control model, the parent repository must document more external c
175
175
 
176
176
  ### Development
177
177
 
178
- `docs/04-DEVELOPMENT/` explains cross-repo development:
178
+ `coding-agent-harness/context/development/` explains cross-repo development:
179
179
 
180
180
  - How to clone or initialize all child repositories.
181
181
  - How to install dependencies.
@@ -185,7 +185,7 @@ In the parent-control model, the parent repository must document more external c
185
185
 
186
186
  ### Integration
187
187
 
188
- `docs/06-INTEGRATIONS/` explains how repositories connect:
188
+ `coding-agent-harness/context/integrations/` explains how repositories connect:
189
189
 
190
190
  - API contract.
191
191
  - SDK contract.
@@ -241,10 +241,10 @@ Avoid:
241
241
  To adopt the parent-control model, start with:
242
242
 
243
243
  - Parent `AGENTS.md` states that this is the control repository.
244
- - `docs/03-ARCHITECTURE/repository-topology.md` lists all child repositories.
245
- - `docs/Harness-Ledger.md` is generated from task files as the global task lifecycle index.
246
- - `docs/09-PLANNING/Delivery-SSoT.md` is maintained only when cross-repo release or block orchestration is needed.
247
- - `docs/05-TEST-QA/Regression-SSoT.md` defines local, contract, integration, and release gates.
244
+ - `coding-agent-harness/context/architecture/repository-topology.md` lists all child repositories.
245
+ - `coding-agent-harness/governance/generated/Harness-Ledger.md` is generated from task files as the global task lifecycle index.
246
+ - `coding-agent-harness/planning/Delivery-SSoT.md` is maintained only when cross-repo release or block orchestration is needed.
247
+ - `coding-agent-harness/governance/regression/Regression-SSoT.md` defines local, contract, integration, and release gates.
248
248
  - Each child repository has only a short local `AGENTS.md`.
249
249
  - New cross-repo tasks are created only in the parent repository.
250
250
  - Child commits, PRs, and test output are recorded as parent task evidence.
@@ -30,13 +30,13 @@ product-control-repo/
30
30
  docs/
31
31
  01-GOVERNANCE/
32
32
  02-PRODUCT/
33
- 03-ARCHITECTURE/
34
- 04-DEVELOPMENT/
35
- 05-TEST-QA/
36
- 06-INTEGRATIONS/
37
- 09-PLANNING/
38
- 10-WALKTHROUGH/
39
- 11-REFERENCE/
33
+ coding-agent-harness/context/architecture/
34
+ coding-agent-harness/context/development/
35
+ coding-agent-harness/governance/regression/
36
+ coding-agent-harness/context/integrations/
37
+ coding-agent-harness/planning/
38
+ coding-agent-harness/planning/tasks/<task>/
39
+ coding-agent-harness/governance/standards/
40
40
  tools/
41
41
  check-harness.mjs
42
42
  internal-ci.mjs
@@ -59,16 +59,16 @@ product-control-repo/
59
59
  它应该包含:
60
60
 
61
61
  - `AGENTS.md`:Agent 的唯一启动入口和读文件矩阵。
62
- - `docs/03-ARCHITECTURE/repository-topology.md`:仓库拓扑、owner、边界、依赖方向。
63
- - `docs/04-DEVELOPMENT/local-development.md`:跨仓本地启动、联调、依赖安装。
64
- - `docs/06-INTEGRATIONS/`:跨服务 API、事件、SDK、数据库、权限、外部系统契约。
65
- - `docs/Harness-Ledger.md`:由任务文件生成的全局任务生命周期索引。
66
- - `docs/09-PLANNING/Delivery-SSoT.md`:跨仓 feature block、依赖和 release 编排。
67
- - `docs/09-PLANNING/TASKS/`:跨仓任务合同。
68
- - `docs/05-TEST-QA/Regression-SSoT.md`:跨仓 regression gates。
69
- - `docs/05-TEST-QA/Cadence-Ledger.md`:哪些变更触发哪些检查。
70
- - `docs/10-WALKTHROUGH/`:跨仓 closeout 和人工确认。
71
- - `docs/11-REFERENCE/`:本项目使用 Harness 的本地标准。
62
+ - `coding-agent-harness/context/architecture/repository-topology.md`:仓库拓扑、owner、边界、依赖方向。
63
+ - `coding-agent-harness/context/development/local-development.md`:跨仓本地启动、联调、依赖安装。
64
+ - `coding-agent-harness/context/integrations/`:跨服务 API、事件、SDK、数据库、权限、外部系统契约。
65
+ - `coding-agent-harness/governance/generated/Harness-Ledger.md`:由任务文件生成的全局任务生命周期索引。
66
+ - `coding-agent-harness/planning/Delivery-SSoT.md`:跨仓 feature block、依赖和 release 编排。
67
+ - `coding-agent-harness/planning/tasks/`:跨仓任务合同。
68
+ - `coding-agent-harness/governance/regression/Regression-SSoT.md`:跨仓 regression gates。
69
+ - `coding-agent-harness/governance/regression/Cadence-Ledger.md`:哪些变更触发哪些检查。
70
+ - `coding-agent-harness/planning/tasks/<task>/`:跨仓 closeout 和人工确认。
71
+ - `coding-agent-harness/governance/standards/`:本项目使用 Harness 的本地标准。
72
72
 
73
73
  父仓库还应该有一个检查命令,例如:
74
74
 
@@ -138,7 +138,7 @@ npm test
138
138
  跨仓任务应该在父仓库创建:
139
139
 
140
140
  ```text
141
- docs/09-PLANNING/TASKS/2026-05-22-example-cross-repo-feature/
141
+ coding-agent-harness/planning/tasks/2026-05-22-example-cross-repo-feature/
142
142
  brief.md
143
143
  task_plan.md
144
144
  execution_strategy.md
@@ -164,7 +164,7 @@ docs/09-PLANNING/TASKS/2026-05-22-example-cross-repo-feature/
164
164
 
165
165
  ### Architecture
166
166
 
167
- `docs/03-ARCHITECTURE/` 说明系统如何被拆成多个仓库:
167
+ `coding-agent-harness/context/architecture/` 说明系统如何被拆成多个仓库:
168
168
 
169
169
  - repo topology。
170
170
  - 服务边界。
@@ -175,7 +175,7 @@ docs/09-PLANNING/TASKS/2026-05-22-example-cross-repo-feature/
175
175
 
176
176
  ### Development
177
177
 
178
- `docs/04-DEVELOPMENT/` 说明如何跨仓工作:
178
+ `coding-agent-harness/context/development/` 说明如何跨仓工作:
179
179
 
180
180
  - 如何 clone 或初始化所有子仓库。
181
181
  - 如何安装依赖。
@@ -185,7 +185,7 @@ docs/09-PLANNING/TASKS/2026-05-22-example-cross-repo-feature/
185
185
 
186
186
  ### Integration
187
187
 
188
- `docs/06-INTEGRATIONS/` 说明仓库之间如何对接:
188
+ `coding-agent-harness/context/integrations/` 说明仓库之间如何对接:
189
189
 
190
190
  - API contract。
191
191
  - SDK contract。
@@ -241,10 +241,10 @@ Agent 不需要在启动时读 100 个仓库的所有文档。它先读父任务
241
241
  采用主控仓库模式时,先做到这些:
242
242
 
243
243
  - 父仓库 `AGENTS.md` 写清楚它是 control repo。
244
- - `docs/03-ARCHITECTURE/repository-topology.md` 列出所有子仓库。
245
- - `docs/Harness-Ledger.md` 由任务文件生成全局任务生命周期索引。
246
- - `docs/09-PLANNING/Delivery-SSoT.md` 只在需要跨仓 release / block 编排时维护。
247
- - `docs/05-TEST-QA/Regression-SSoT.md` 定义局部、契约、集成、发布 gate。
244
+ - `coding-agent-harness/context/architecture/repository-topology.md` 列出所有子仓库。
245
+ - `coding-agent-harness/governance/generated/Harness-Ledger.md` 由任务文件生成全局任务生命周期索引。
246
+ - `coding-agent-harness/planning/Delivery-SSoT.md` 只在需要跨仓 release / block 编排时维护。
247
+ - `coding-agent-harness/governance/regression/Regression-SSoT.md` 定义局部、契约、集成、发布 gate。
248
248
  - 每个子仓库只有短的局部 `AGENTS.md`。
249
249
  - 新跨仓任务只在父仓库创建。
250
250
  - 子仓库 commit、PR、test output 都作为父任务 evidence。
@@ -28,6 +28,29 @@ and `harness install-user` seed them into the user preset root, while
28
28
  `harness preset seed` for the user root or `harness preset seed --project <target>`
29
29
  for the project root when a preset root is missing or incomplete.
30
30
 
31
+ ## Dashboard Management
32
+
33
+ The Dashboard exposes a Presets view for the target project. Static dashboards
34
+ show a read-only catalog of discovered project, user, and bundled presets,
35
+ including source, purpose, compatible budgets, task kind, manifest path, and
36
+ resource counts.
37
+
38
+ Use the local dynamic Workbench when you want to manage presets from the web UI:
39
+
40
+ ```bash
41
+ harness dev /path/to/project
42
+ ```
43
+
44
+ In Workbench mode, the Presets view can check presets, install a local preset
45
+ directory, `.zip` archive, or bundled preset id into the project or user scope,
46
+ seed bundled presets into either scope, and uninstall project/user presets.
47
+ Bundled package presets are immutable from the Dashboard: they can be inspected,
48
+ checked, and used as install or seed sources, but not edited or deleted.
49
+
50
+ The CLI and filesystem remain canonical. The Dashboard calls the same preset
51
+ registry operations as `harness preset ...`; it does not store independent preset
52
+ state.
53
+
31
54
  ## Package Layout
32
55
 
33
56
  ```text
@@ -55,7 +78,7 @@ task:
55
78
  entrypoints:
56
79
  newTask:
57
80
  type: template
58
- writes: [docs/09-PLANNING/TASKS/**]
81
+ writes: [coding-agent-harness/planning/tasks/**]
59
82
  audit: true
60
83
  templates:
61
84
  taskPlanAppend: templates/task_plan.append.md
@@ -83,7 +106,7 @@ audit:
83
106
  evidenceFiles: [preset-audit.json, preset-manifest.json, write-scope.json]
84
107
  writeScopes:
85
108
  taskDocs:
86
- path: docs/09-PLANNING/TASKS/**
109
+ path: coding-agent-harness/planning/tasks/**
87
110
  access: write
88
111
  ```
89
112
 
@@ -184,13 +207,14 @@ Supported evidence types:
184
207
  ```bash
185
208
  harness preset check ./my-preset
186
209
  harness preset install ./my-preset
210
+ harness preset install ./my-preset.zip
187
211
  harness preset install ./my-preset --project /path/to/project
188
212
  harness preset install legacy-migration --force
189
213
  harness preset seed
190
214
  harness preset seed --project /path/to/project
191
215
  harness preset list --json /path/to/project
192
216
  harness preset inspect custom-review --json /path/to/project
193
- harness new-task custom-review-task --preset custom-review --subject "API contracts" /path/to/project
217
+ harness new-task --title "Custom review task" --preset custom-review --subject "API contracts" /path/to/project
194
218
  harness preset uninstall custom-review
195
219
  ```
196
220
 
@@ -199,7 +223,7 @@ harness preset uninstall custom-review
199
223
  For every preset, prove both the manifest and downstream task behavior:
200
224
 
201
225
  1. Run `harness preset check ./my-preset`.
202
- 2. Install into an isolated HOME or disposable environment.
226
+ 2. Install the folder and, if distributing an archive, install the `.zip` into an isolated HOME or disposable environment.
203
227
  3. Create at least one task with `harness new-task --preset`.
204
228
  4. For reference bundles, create two different tasks from the same preset and verify both contain the same shared `references/` files and independent audit/evidence bundles.
205
229
  5. Run `harness status --json`, `harness task-index --json`, and `harness check --profile target-project <target>`.
@@ -14,9 +14,9 @@ This guide explains three common models:
14
14
 
15
15
  | Model | Fits | Does not fit | Harness source of truth |
16
16
  | --- | --- | --- | --- |
17
- | Single repo | One product, one code repository, clear team boundary | A system already split across independently released repositories | Current repo `AGENTS.md` + `docs/` |
18
- | Independent multi-repo | Frontend, backend, SDK, or services evolve independently and cross-repo work is rare | Frequent cross-repo features and one shared release plan | Each repo's own `AGENTS.md` + `docs/` |
19
- | Parent-control repo | Microservices, many subsystems, shared roadmap, cross-repo releases, agents need one startup point | Small projects or short-lived script repositories | Parent repo `AGENTS.md` + `docs/` |
17
+ | Single repo | One product, one code repository, clear team boundary | A system already split across independently released repositories | Current repo `AGENTS.md` + `coding-agent-harness/` |
18
+ | Independent multi-repo | Frontend, backend, SDK, or services evolve independently and cross-repo work is rare | Frequent cross-repo features and one shared release plan | Each repo's own `AGENTS.md` + `coding-agent-harness/` |
19
+ | Parent-control repo | Microservices, many subsystems, shared roadmap, cross-repo releases, agents need one startup point | Small projects or short-lived script repositories | Parent repo `AGENTS.md` + `coding-agent-harness/` |
20
20
 
21
21
  ## Single-Repo Model
22
22
 
@@ -26,12 +26,12 @@ The single-repo model is the simplest. Code, plans, regression state, and walkth
26
26
  product-repo/
27
27
  AGENTS.md
28
28
  docs/
29
- 03-ARCHITECTURE/
30
- 04-DEVELOPMENT/
31
- 05-TEST-QA/
32
- 09-PLANNING/
33
- 10-WALKTHROUGH/
34
- 11-REFERENCE/
29
+ coding-agent-harness/context/architecture/
30
+ coding-agent-harness/context/development/
31
+ coding-agent-harness/governance/regression/
32
+ coding-agent-harness/planning/
33
+ coding-agent-harness/planning/tasks/<task>/
34
+ coding-agent-harness/governance/standards/
35
35
  src/
36
36
  tests/
37
37
  ```
@@ -82,10 +82,10 @@ Independent multi-repo mode is not just "copy the template into every repo." If
82
82
 
83
83
  Each repository should document its external boundary in:
84
84
 
85
- - `docs/03-ARCHITECTURE/`: where this repository sits in the overall system.
86
- - `docs/04-DEVELOPMENT/`: sibling repo dependencies and local integration startup.
87
- - `docs/06-INTEGRATIONS/`: APIs, events, SDKs, queues, databases, auth, and other contracts.
88
- - `docs/05-TEST-QA/Regression-SSoT.md`: which checks cover this repository only and which require integration across repositories.
85
+ - `coding-agent-harness/context/architecture/`: where this repository sits in the overall system.
86
+ - `coding-agent-harness/context/development/`: sibling repo dependencies and local integration startup.
87
+ - `coding-agent-harness/context/integrations/`: APIs, events, SDKs, queues, databases, auth, and other contracts.
88
+ - `coding-agent-harness/governance/regression/Regression-SSoT.md`: which checks cover this repository only and which require integration across repositories.
89
89
  - `AGENTS.md`: whether agents should stop, switch repositories, or ask humans when a task crosses repository boundaries.
90
90
 
91
91
  ### Risk
@@ -106,13 +106,13 @@ The parent-control model puts the harness in a parent repository. Child reposito
106
106
  product-control-repo/
107
107
  AGENTS.md
108
108
  docs/
109
- 03-ARCHITECTURE/
110
- 04-DEVELOPMENT/
111
- 05-TEST-QA/
112
- 06-INTEGRATIONS/
113
- 09-PLANNING/
114
- 10-WALKTHROUGH/
115
- 11-REFERENCE/
109
+ coding-agent-harness/context/architecture/
110
+ coding-agent-harness/context/development/
111
+ coding-agent-harness/governance/regression/
112
+ coding-agent-harness/context/integrations/
113
+ coding-agent-harness/planning/
114
+ coding-agent-harness/planning/tasks/<task>/
115
+ coding-agent-harness/governance/standards/
116
116
  tools/
117
117
  frontend/ -> child repository
118
118
  backend/ -> child repository
@@ -164,7 +164,7 @@ See `docs-release/guides/parent-control-repository-pattern.en-US.md` for the ful
164
164
 
165
165
  ### Single Repo To Multi-Repo
166
166
 
167
- When a single repository splits into frontend, backend, or SDK repositories, do not copy the same `docs/` tree into every repository.
167
+ When a single repository splits into frontend, backend, or SDK repositories, do not copy the same `coding-agent-harness/` tree into every repository.
168
168
 
169
169
  Decide first:
170
170
 
@@ -14,9 +14,9 @@ Coding Agent Harness 可以落在不同的仓库组织方式里。选择错了
14
14
 
15
15
  | 模式 | 适合 | 不适合 | Harness 事实源 |
16
16
  | --- | --- | --- | --- |
17
- | 单仓模式 | 单产品、单代码仓库、团队边界清楚 | 已经拆成多个独立发布仓库 | 当前仓库 `AGENTS.md` + `docs/` |
18
- | 多仓独立模式 | 前端、后端、SDK 等仓库长期独立迭代,跨仓任务少 | 大量跨仓 feature 和统一 release 计划 | 每个仓库自己的 `AGENTS.md` + `docs/` |
19
- | 主控仓库模式 | 微服务、多子系统、多仓统一路线图、跨仓 release、Agent 需要从一个地方启动 | 小项目,或只有一个短期脚本仓库 | 父仓库 `AGENTS.md` + `docs/` |
17
+ | 单仓模式 | 单产品、单代码仓库、团队边界清楚 | 已经拆成多个独立发布仓库 | 当前仓库 `AGENTS.md` + `coding-agent-harness/` |
18
+ | 多仓独立模式 | 前端、后端、SDK 等仓库长期独立迭代,跨仓任务少 | 大量跨仓 feature 和统一 release 计划 | 每个仓库自己的 `AGENTS.md` + `coding-agent-harness/` |
19
+ | 主控仓库模式 | 微服务、多子系统、多仓统一路线图、跨仓 release、Agent 需要从一个地方启动 | 小项目,或只有一个短期脚本仓库 | 父仓库 `AGENTS.md` + `coding-agent-harness/` |
20
20
 
21
21
  ## 单仓模式
22
22
 
@@ -26,12 +26,12 @@ Coding Agent Harness 可以落在不同的仓库组织方式里。选择错了
26
26
  product-repo/
27
27
  AGENTS.md
28
28
  docs/
29
- 03-ARCHITECTURE/
30
- 04-DEVELOPMENT/
31
- 05-TEST-QA/
32
- 09-PLANNING/
33
- 10-WALKTHROUGH/
34
- 11-REFERENCE/
29
+ coding-agent-harness/context/architecture/
30
+ coding-agent-harness/context/development/
31
+ coding-agent-harness/governance/regression/
32
+ coding-agent-harness/planning/
33
+ coding-agent-harness/planning/tasks/<task>/
34
+ coding-agent-harness/governance/standards/
35
35
  src/
36
36
  tests/
37
37
  ```
@@ -82,10 +82,10 @@ sdk-repo/
82
82
 
83
83
  每个仓库至少要在这些位置写清楚外部边界:
84
84
 
85
- - `docs/03-ARCHITECTURE/`:本仓库在整体系统中的位置。
86
- - `docs/04-DEVELOPMENT/`:依赖哪些 sibling repo、本地联调怎么启动。
87
- - `docs/06-INTEGRATIONS/`:API、事件、SDK、队列、数据库、鉴权等外部契约。
88
- - `docs/05-TEST-QA/Regression-SSoT.md`:哪些检查只覆盖本仓库,哪些需要跨仓联调。
85
+ - `coding-agent-harness/context/architecture/`:本仓库在整体系统中的位置。
86
+ - `coding-agent-harness/context/development/`:依赖哪些 sibling repo、本地联调怎么启动。
87
+ - `coding-agent-harness/context/integrations/`:API、事件、SDK、队列、数据库、鉴权等外部契约。
88
+ - `coding-agent-harness/governance/regression/Regression-SSoT.md`:哪些检查只覆盖本仓库,哪些需要跨仓联调。
89
89
  - `AGENTS.md`:遇到跨仓任务时,Agent 应该停下来、切仓库,还是交给人协调。
90
90
 
91
91
  ### 风险
@@ -106,13 +106,13 @@ sdk-repo/
106
106
  product-control-repo/
107
107
  AGENTS.md
108
108
  docs/
109
- 03-ARCHITECTURE/
110
- 04-DEVELOPMENT/
111
- 05-TEST-QA/
112
- 06-INTEGRATIONS/
113
- 09-PLANNING/
114
- 10-WALKTHROUGH/
115
- 11-REFERENCE/
109
+ coding-agent-harness/context/architecture/
110
+ coding-agent-harness/context/development/
111
+ coding-agent-harness/governance/regression/
112
+ coding-agent-harness/context/integrations/
113
+ coding-agent-harness/planning/
114
+ coding-agent-harness/planning/tasks/<task>/
115
+ coding-agent-harness/governance/standards/
116
116
  tools/
117
117
  frontend/ -> child repository
118
118
  backend/ -> child repository
@@ -164,7 +164,7 @@ product-control-repo/
164
164
 
165
165
  ### 单仓到多仓
166
166
 
167
- 当一个单仓拆出前端、后端、SDK 时,不要直接复制 `docs/` 到每个仓库。
167
+ 当一个单仓拆出前端、后端、SDK 时,不要直接复制 `coding-agent-harness/` 到每个仓库。
168
168
 
169
169
  先决定:
170
170