@tea-agent/loop-agent 0.10.0 → 0.11.0

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 (166) hide show
  1. package/AGENTS.md +10 -2
  2. package/CHANGELOG.md +67 -25
  3. package/README.md +82 -11
  4. package/dist/application/dag/args.js +1 -12
  5. package/dist/application/dag/generate-task-dag.js +23 -2
  6. package/dist/application/dag/run-dag.js +1 -27
  7. package/dist/application/dag/validate-dag.js +2 -2
  8. package/dist/application/loop/run-action.js +0 -4
  9. package/dist/cli/command-definitions.js +44 -16
  10. package/dist/cli/program.js +40 -23
  11. package/dist/cli/update/notifier.js +117 -0
  12. package/dist/cli/update/npm-client.js +151 -0
  13. package/dist/cli/update/policy.js +58 -0
  14. package/dist/cli/update/state.js +68 -0
  15. package/dist/cli.js +33 -0
  16. package/dist/commands/cursor-prompt.js +42 -82
  17. package/dist/commands/dag-approve.js +36 -0
  18. package/dist/commands/delegate.js +75 -77
  19. package/dist/commands/doctor.js +0 -18
  20. package/dist/commands/init.js +476 -91
  21. package/dist/commands/instructions.js +7 -10
  22. package/dist/commands/loop.js +4 -20
  23. package/dist/commands/plan.js +50 -0
  24. package/dist/executors/config-core.js +0 -51
  25. package/dist/executors/dag-pi-executor.js +1 -1
  26. package/dist/executors/dag.js +0 -1
  27. package/dist/executors/index.js +0 -2
  28. package/dist/executors/model-routing.js +9 -9
  29. package/dist/executors/shell-executor.js +1 -1
  30. package/dist/governance/checks.js +6 -3
  31. package/dist/governance/exec-plans.js +545 -0
  32. package/dist/governance/manifest-types.js +24 -2
  33. package/dist/infrastructure/harness/loop-action-store.js +0 -3
  34. package/dist/records/harvest.js +2 -23
  35. package/dist/records/one-shot-runs.js +1 -1
  36. package/dist/shared/artifacts-core.js +24 -5
  37. package/dist/shared/output-truncation.js +37 -0
  38. package/dist/shared/package-metadata.js +353 -0
  39. package/dist/{executors/cursor-executor.js → sidecars/cursor-prompt/executor.js} +2 -42
  40. package/dist/sidecars/cursor-prompt/index.js +3 -0
  41. package/dist/sidecars/cursor-prompt/stream.js +121 -0
  42. package/dist/task/config-types.js +28 -12
  43. package/dist/task/delegate.js +9 -21
  44. package/dist/task/runtime.js +1 -2
  45. package/dist/worker/cli.js +29 -2
  46. package/dist/worker/delivery/final-verification.js +47 -11
  47. package/dist/worker/delivery/package.js +63 -10
  48. package/dist/worker/feature/run.js +60 -8
  49. package/dist/worker/loop-agent/loop-agent-client.js +329 -126
  50. package/dist/worker/observability/read-model.js +27 -1
  51. package/dist/worker/observe/static/app.js +326 -45
  52. package/dist/worker/observe/static/index.html +1 -1
  53. package/dist/worker/observe/static/styles.css +5 -4
  54. package/dist/worker/preflight.js +49 -1
  55. package/dist/worker/run-task/run-task.js +22 -12
  56. package/dist/worker/runner/run-ready.js +76 -12
  57. package/dist/worker/task-spec/schema.js +0 -1
  58. package/dist/workflows/dag/convergence/controller.js +1 -1
  59. package/dist/workflows/dag/executor-registry.js +0 -2
  60. package/dist/workflows/dag/init-hybrid.js +402 -25
  61. package/dist/workflows/dag/node-execution.js +61 -7
  62. package/dist/workflows/dag/runner.js +45 -17
  63. package/dist/workflows/dag/scheduler.js +7 -2
  64. package/dist/workflows/dag/sdd-embedded.js +128 -0
  65. package/dist/workflows/dag/skill-instructions.js +5 -4
  66. package/dist/workflows/dag/skill-snapshot.js +527 -0
  67. package/dist/workflows/dag/types.js +42 -9
  68. package/dist/workflows/dag/validate.js +5 -8
  69. package/dist/workflows/loop/actions/dag-action.js +0 -2
  70. package/dist/workflows/loop/actions/shared.js +1 -1
  71. package/dist/workflows/loop/actions.js +14 -31
  72. package/dist/workflows/loop/benchmark.js +1 -1
  73. package/dist/workflows/loop/index.js +1 -1
  74. package/dist/workflows/loop/policy/auto-policy.js +22 -14
  75. package/dist/workflows/loop/policy/path-patterns.js +13 -0
  76. package/docs/README.md +36 -33
  77. package/docs/agent-dag-recovery-playbook.md +1 -1
  78. package/docs/agent-dag-runner.md +2 -2
  79. package/docs/architecture/README.md +26 -0
  80. package/docs/architecture/dag-execution.md +134 -0
  81. package/docs/architecture/evolution.md +52 -0
  82. package/docs/architecture/facts-and-state.md +58 -0
  83. package/docs/architecture/runtime-boundaries.md +45 -17
  84. package/docs/architecture/system-overview.md +93 -0
  85. package/docs/architecture/worker-and-feature.md +81 -0
  86. package/docs/cursor-prompt-sidecar.md +36 -0
  87. package/docs/decisions/README.md +13 -1
  88. package/docs/design/README.md +42 -21
  89. package/docs/development-principles.md +2 -2
  90. package/docs/exec-plans/active/README.md +2 -2
  91. package/docs/exec-plans/completed/README.md +12 -0
  92. package/docs/feature-workflow.md +50 -4
  93. package/docs/harness-methodology-debugging.md +1 -1
  94. package/docs/harness-methodology-tdd.md +3 -3
  95. package/docs/init-surface.manifest.json +60 -25
  96. package/docs/loop-agent-harness.md +28 -4
  97. package/docs/progress/README.md +32 -1
  98. package/docs/reports/README.md +84 -18
  99. package/docs/skills/README.md +2 -1
  100. package/docs/skills/vetted-skill-registry.md +2 -1
  101. package/docs/templates/agent-dag-report.schema.json +6 -6
  102. package/docs/templates/agent-dag.base.json +0 -5
  103. package/docs/templates/agent-dag.final-verification.json +0 -5
  104. package/docs/templates/agent-dag.schema.json +1 -2
  105. package/docs/templates/agent-dag.supervised-implementation.json +1 -6
  106. package/docs/templates/frontend-design-contract.md +33 -0
  107. package/docs/templates/frontend-task-constraints.md +25 -0
  108. package/docs/templates/frontend-task-requirement.md +61 -0
  109. package/docs/templates/harness.schema.json +10 -12
  110. package/docs/templates/hybrid-dag.json +1 -6
  111. package/docs/templates/interactive-ui-round2-experiment.md +1 -1
  112. package/docs/templates/product-line/task.yaml +0 -1
  113. package/docs/templates/project-start-checklist.md +2 -2
  114. package/docs/templates/worker-dogfood-evidence.md +28 -0
  115. package/docs/templates/worker-dogfood-setup.md +20 -0
  116. package/docs/verification-matrix.md +10 -0
  117. package/examples/decision-gate-agent-dag.json +87 -33
  118. package/examples/example-dag.json +0 -5
  119. package/examples/hybrid-loop-agent-dag.json +0 -5
  120. package/harness.json +7 -15
  121. package/package.json +22 -46
  122. package/scripts/check-product-line-docs.sh +10 -7
  123. package/skills/agent-worker/SKILL.md +37 -0
  124. package/skills/agent-worker/references/agent-worker-operator.md +43 -0
  125. package/skills/frontend-design-review/SKILL.md +59 -0
  126. package/skills/frontend-design-review/references/review-checklist.md +37 -0
  127. package/skills/frontend-implementation/SKILL.md +51 -0
  128. package/skills/frontend-implementation/references/code-standards.md +34 -0
  129. package/skills/frontend-implementation/references/design-spec.md +46 -0
  130. package/skills/frontend-implementation/references/node-contracts.md +32 -0
  131. package/skills/frontend-review/SKILL.md +53 -0
  132. package/skills/frontend-review/references/review-findings.md +42 -0
  133. package/skills/frontend-verification/SKILL.md +40 -0
  134. package/skills/frontend-verification/references/verification-checklist.md +56 -0
  135. package/skills/grill-me/SKILL.md +10 -0
  136. package/skills/grill-with-docs/SKILL.md +88 -0
  137. package/skills/grill-with-docs/adr-format.md +47 -0
  138. package/skills/grill-with-docs/context-format.md +60 -0
  139. package/skills/loop-agent/SKILL.md +11 -9
  140. package/skills/loop-agent/references/command-reference.md +13 -15
  141. package/skills/loop-agent/references/docs-converge.md +126 -0
  142. package/skills/loop-agent/references/harness-policy.md +7 -7
  143. package/skills/loop-agent/references/hybrid-dag.md +15 -18
  144. package/skills/loop-agent/references/long-running-loop.md +4 -6
  145. package/skills/loop-agent/references/multi-worktree.md +6 -6
  146. package/skills/loop-agent/references/orchestrator-and-interventions.md +3 -3
  147. package/skills/loop-agent/references/pi-subagent-assisted-mode.md +14 -11
  148. package/skills/loop-agent/references/task-workflow.md +1 -1
  149. package/skills/using-git-worktrees/SKILL.md +215 -0
  150. package/dist/commands/cursor-worker.js +0 -43
  151. package/dist/cursor-worker-entry.js +0 -8
  152. package/dist/executors/cursor-artifacts.js +0 -33
  153. package/dist/executors/cursor-execution-log.js +0 -81
  154. package/dist/executors/cursor-executor-artifacts.js +0 -134
  155. package/dist/executors/cursor-run.js +0 -115
  156. package/dist/executors/cursor-tool.js +0 -94
  157. package/dist/executors/cursor-worker-client.js +0 -223
  158. package/dist/executors/cursor-worker-protocol.js +0 -18
  159. package/dist/executors/cursor-worker-server.js +0 -54
  160. package/dist/executors/cursor-worker.js +0 -3
  161. package/dist/executors/cursor.js +0 -6
  162. package/dist/executors/dag-cursor-executor.js +0 -87
  163. package/dist/workflows/loop/actions/cursor-fix.js +0 -191
  164. package/dist/workflows/loop/policy/cursor-fix-policy.js +0 -31
  165. package/docs/cursor-executor-usage.md +0 -25
  166. package/docs/dynamic-workflow-dag-engine-roadmap.md +0 -1749
@@ -1,6 +1,7 @@
1
1
  import { createHash } from "node:crypto";
2
- import { access, copyFile, mkdir, readdir, readFile, stat, writeFile } from "node:fs/promises";
2
+ import { access, copyFile, mkdir, readdir, readFile, rename, rm, rmdir, stat, writeFile } from "node:fs/promises";
3
3
  import path from "node:path";
4
+ import { isDeepStrictEqual } from "node:util";
4
5
  import { fileURLToPath } from "node:url";
5
6
  import { copyDir } from "../shared/copy-dir.js";
6
7
  import { loadHarnessManifest } from "../governance/harness.js";
@@ -9,6 +10,7 @@ const MANAGED_BLOCK_END = "<!-- LOOP_AGENT_INIT_END -->";
9
10
  const GITIGNORE_BLOCK_START = "# LOOP_AGENT_INIT_START";
10
11
  const GITIGNORE_BLOCK_END = "# LOOP_AGENT_INIT_END";
11
12
  const INIT_SURFACE_STATE_PATH = ".harness/init-surface.json";
13
+ const DEFAULT_GOVERNANCE_ROOT = "ai_workspace/loop-agent";
12
14
  const CORE_DOC_FILES = [
13
15
  "README.md",
14
16
  "architecture/runtime-boundaries.md",
@@ -108,7 +110,7 @@ required_paths=(
108
110
  "${GOVERNANCE_ROOT_TOKEN}/verification-matrix.md"
109
111
  "${GOVERNANCE_ROOT_TOKEN}/architecture/runtime-boundaries.md"
110
112
  "${GOVERNANCE_ROOT_TOKEN}/templates"
111
- "skills/loop-agent/SKILL.md"
113
+ ".agents/skills/loop-agent/SKILL.md"
112
114
  ".harness/prompts/analyze.md"
113
115
  ".harness/prompts/plan.md"
114
116
  ".harness/tasks"
@@ -305,7 +307,7 @@ fi
305
307
 
306
308
  if [[ -d artifacts ]]; then
307
309
  artifact_count="$(find artifacts -mindepth 1 -maxdepth 1 ! -name .gitkeep | wc -l | tr -d ' ')"
308
- [[ "\${artifact_count}" == "0" ]] || failures+=("root artifacts/ contains \${artifact_count} entries; use docs/reports or .harness run artifacts")
310
+ [[ "\${artifact_count}" == "0" ]] || failures+=("root artifacts/ contains \${artifact_count} entries; use ${GOVERNANCE_ROOT_TOKEN}/reports or .harness run artifacts")
309
311
  fi
310
312
 
311
313
  if (( \${#failures[@]} > 0 )); then
@@ -367,41 +369,54 @@ set -euo pipefail
367
369
  ROOT_DIR="$(cd "$(dirname "\${BASH_SOURCE[0]}")/.." && pwd)"
368
370
  cd "\${ROOT_DIR}"
369
371
 
370
- skill_md="skills/loop-agent/SKILL.md"
371
- if [[ ! -f "\${skill_md}" ]]; then
372
- echo "skill entry 检查失败:缺少 \${skill_md}" >&2
373
- exit 1
374
- fi
375
-
376
- required_refs=(
377
- "references/harness-policy.md"
378
- "references/hybrid-dag.md"
379
- "references/verification-and-failure-handling.md"
380
- "references/command-reference.md"
381
- )
372
+ check_skill() {
373
+ local skill_name="$1"
374
+ shift
375
+ local skill_dir=".agents/skills/\${skill_name}"
376
+ local skill_md="\${skill_dir}/SKILL.md"
377
+ local missing=()
382
378
 
383
- missing=()
384
- for ref in "\${required_refs[@]}"; do
385
- [[ -f "skills/loop-agent/\${ref}" ]] || missing+=("\${ref}")
386
- done
379
+ if [[ ! -f "\${skill_md}" ]]; then
380
+ echo "skill entry 检查失败:缺少 \${skill_md}" >&2
381
+ exit 1
382
+ fi
383
+ grep -Eq "^name:[[:space:]]*\${skill_name}[[:space:]]*$" "\${skill_md}" || missing+=("frontmatter name")
384
+ grep -Eq '^description:[[:space:]]*[^[:space:]]' "\${skill_md}" || missing+=("frontmatter description")
387
385
 
388
- while IFS= read -r ref; do
389
- [[ -z "\${ref}" ]] && continue
390
- [[ -f "skills/loop-agent/\${ref}" ]] || missing+=("\${ref}")
391
- done < <(grep -Eo 'references/[A-Za-z0-9._/-]+\\.md' "\${skill_md}" | sort -u || true)
386
+ local ref
387
+ for ref in "$@"; do
388
+ [[ -f "\${skill_dir}/\${ref}" ]] || missing+=("\${ref}")
389
+ grep -Fq "\${ref}" "\${skill_md}" || missing+=("SKILL.md -> \${ref}")
390
+ done
391
+ if (( \${#missing[@]} > 0 )); then
392
+ echo "skill entry 检查失败(\${skill_name}):" >&2
393
+ printf ' - %s\\n' "\${missing[@]}" >&2
394
+ exit 1
395
+ fi
392
396
 
393
- if (( \${#missing[@]} > 0 )); then
394
- echo "skill entry 检查失败:引用的 reference 文件不存在:" >&2
395
- printf ' - %s\\n' "\${missing[@]}" >&2
396
- exit 1
397
- fi
397
+ local line_count
398
+ line_count="$(wc -l < "\${skill_md}" | tr -d ' ')"
399
+ if [[ "\${line_count}" =~ ^[0-9]+$ && "\${line_count}" -gt 180 ]]; then
400
+ echo "skill entry 检查失败:\${skill_md} 行数为 \${line_count},入口应保持精简" >&2
401
+ exit 1
402
+ fi
403
+ echo "skill entry 检查通过:\${skill_name} references ok, lines=\${line_count}"
404
+ }
398
405
 
399
- line_count="$(wc -l < "\${skill_md}" | tr -d ' ')"
400
- if [[ "\${line_count}" =~ ^[0-9]+$ && "\${line_count}" -gt 220 ]]; then
401
- echo "skill entry 检查警告:\${skill_md} 行数为 \${line_count},建议保持入口精简并把细节放入 references/" >&2
402
- fi
406
+ check_skill "loop-agent" \\
407
+ "references/harness-policy.md" \\
408
+ "references/hybrid-dag.md" \\
409
+ "references/verification-and-failure-handling.md" \\
410
+ "references/command-reference.md"
411
+ check_skill "agent-worker" "references/agent-worker-operator.md"
403
412
 
404
- echo "skill entry 检查通过:references ok, lines=\${line_count}"
413
+ description_line="$(grep -E '^description:' .agents/skills/agent-worker/SKILL.md | head -n 1 | tr '[:upper:]' '[:lower:]')"
414
+ for term in "agent-worker" "feature packet" "taskspec" "task pool" "self-host" "candidate" "loop-agent"; do
415
+ if [[ "\${description_line}" != *"\${term}"* ]]; then
416
+ echo "skill entry 检查失败(agent-worker):description 缺少触发/路由词 \${term}" >&2
417
+ exit 1
418
+ fi
419
+ done
405
420
  `;
406
421
  const INIT_CHECK_REPO_SH = `#!/usr/bin/env bash
407
422
  set -euo pipefail
@@ -578,7 +593,7 @@ fi
578
593
 
579
594
  if (( ran == 0 )); then
580
595
  echo "未检测到可安全自动运行的项目测试入口。"
581
- echo "loop-agent 治理检查仍可运行;请让初始化模型根据目标项目技术栈补充 scripts/ci-tests.sh 与 docs/verification-matrix.md。"
596
+ echo "loop-agent 治理检查仍可运行;请让初始化模型根据目标项目技术栈补充 scripts/ci-tests.sh 与 ${GOVERNANCE_ROOT_TOKEN}/verification-matrix.md。"
582
597
  fi
583
598
 
584
599
  if (( \${#notes[@]} > 0 )); then
@@ -666,14 +681,14 @@ function buildManagedAgentsBlock(input) {
666
681
  "",
667
682
  "### 初始化闭环",
668
683
  "",
669
- "当用户要求在本仓库初始化 loop-agent,或发现 `README.md` / `docs/verification-matrix.md` 仍停留在通用初始化状态时,模型应在同一轮工作中完成初始化闭环,不要把补全文档和验证矩阵留给用户交互。",
684
+ `当用户要求在本仓库初始化 loop-agent,或发现 \`README.md\` / \`${input.governanceRoot}/verification-matrix.md\` 仍停留在通用初始化状态时,模型应在同一轮工作中完成初始化闭环,不要把补全文档和验证矩阵留给用户交互。`,
670
685
  "",
671
686
  "标准流程:",
672
687
  "",
673
688
  "1. 运行 `loop-agent init instructions --repo-root .` 获取完整初始化指引。",
674
689
  "2. 运行 `loop-agent init --repo-root . --profile full --merge` 完成确定性脚手架。",
675
690
  "3. 立即读取目标项目的 README、manifest/build/config 文件和顶层源码/模块目录,识别项目类型、模块、运行入口和验证命令。",
676
- "4. 基于真实项目文件补全或修正根 `README.md`、`docs/verification-matrix.md`,必要时适配 `scripts/ci-tests.sh`。",
691
+ `4. 基于真实项目文件补全或修正根 \`README.md\`、\`${input.governanceRoot}/verification-matrix.md\`,必要时适配 \`scripts/ci-tests.sh\`。`,
677
692
  "5. 运行 `loop-agent init doctor --repo-root .`、`loop-agent inspect --repo-root .`、`loop-agent docs audit --repo-root .` 和 quick verification。",
678
693
  "",
679
694
  "如果仓库信息不足,写明“尚未从仓库文件中识别到 ...”以及下一步需要的事实;不要留下泛化占位符,也不要只提示用户稍后手填。",
@@ -724,7 +739,7 @@ function buildManagedAgentsBlock(input) {
724
739
  "",
725
740
  "- `.harness/tasks/` 保存任务状态和 source 材料。",
726
741
  "- `.harness/dag-runs/` 与 `.harness/runs/` 保存运行事实;已完成事实只读。",
727
- "- `skills/` 保存仓库本地 skill 指令;本地缺失时 runtime 可回退到 npm 包内置 skills。",
742
+ "- `.agents/skills/` 保存目标项目本地 skill 指令;本地缺失时 runtime 可回退到 npm 包内置 skills。",
728
743
  "- 示例内置在工具中;优先使用 `loop-agent examples list` 和 `loop-agent examples show <name>` 查看,不默认提交到目标仓库。",
729
744
  "",
730
745
  "### 验证",
@@ -747,7 +762,7 @@ function buildManagedAgentsBlock(input) {
747
762
  "",
748
763
  "### 交接",
749
764
  "",
750
- "较大的交接应说明改了什么、为什么这样改、验证命令和结果、影响到的 docs/tests/scripts/contracts、剩余风险和下一步。长期结论应进入 docs/progress、docs/reports、docs/exec-plans、docs/decisions、测试、脚本或模板。",
765
+ `较大的交接应说明改了什么、为什么这样改、验证命令和结果、影响到的 docs/tests/scripts/contracts、剩余风险和下一步。长期结论应进入 \`${input.governanceRoot}/progress\`、\`${input.governanceRoot}/reports\`、\`${input.governanceRoot}/exec-plans\`、\`${input.governanceRoot}/decisions\`、测试、脚本或模板。`,
751
766
  MANAGED_BLOCK_END,
752
767
  ].join("\n");
753
768
  }
@@ -820,11 +835,9 @@ function buildHarness(input) {
820
835
  const existingExecutors = isRecord(input.existing.executors)
821
836
  ? input.existing.executors
822
837
  : {};
823
- // Cursor executor is opt-in for package developers; do not project it to target apps.
824
- // Keep it only when the target already configured executors.cursor.
825
- if (!isRecord(existingExecutors.cursor)) {
826
- delete templateExecutors.cursor;
827
- }
838
+ // Cursor executor must never be projected; Pi-only governed runtime.
839
+ delete templateExecutors.cursor;
840
+ delete existingExecutors.cursor;
828
841
  const mergedExecutors = mergeRecord(templateExecutors, existingExecutors);
829
842
  // requiresApiKey is Cursor-facing only; never project it on pi.
830
843
  if (isRecord(mergedExecutors.pi) && "requiresApiKey" in mergedExecutors.pi) {
@@ -999,12 +1012,18 @@ function manifestPathToTargetPath(relativePath, governanceRoot) {
999
1012
  if (governanceRoot !== "docs" && relativePath.startsWith("docs/")) {
1000
1013
  return `${governanceRoot}/${relativePath.slice("docs/".length)}`;
1001
1014
  }
1015
+ if (relativePath.startsWith("skills/")) {
1016
+ return `.agents/${relativePath}`;
1017
+ }
1002
1018
  return relativePath;
1003
1019
  }
1004
1020
  function targetPathToManifestPath(relativePath, governanceRoot) {
1005
1021
  if (governanceRoot !== "docs" && relativePath.startsWith(`${governanceRoot}/`)) {
1006
1022
  return `docs/${relativePath.slice(`${governanceRoot}/`.length)}`;
1007
1023
  }
1024
+ if (relativePath.startsWith(".agents/skills/")) {
1025
+ return relativePath.slice(".agents/".length);
1026
+ }
1008
1027
  return relativePath;
1009
1028
  }
1010
1029
  async function readPackageVersion(assetRoot) {
@@ -1195,10 +1214,20 @@ async function buildCurrentSurfaceState(input) {
1195
1214
  };
1196
1215
  continue;
1197
1216
  }
1217
+ let semanticallyMatchesGeneratedJson = false;
1218
+ if (targetRelativePath === "harness.json" && desired.content !== undefined) {
1219
+ try {
1220
+ semanticallyMatchesGeneratedJson = isDeepStrictEqual(JSON.parse(current.toString("utf-8")), JSON.parse(desired.content));
1221
+ }
1222
+ catch {
1223
+ // Invalid JSON remains local-existing-unknown for model merge / doctor.
1224
+ }
1225
+ }
1198
1226
  files[targetRelativePath] = {
1199
1227
  ...base,
1200
1228
  currentSha256,
1201
- relationship: sourceSha256 && currentSha256 === sourceSha256
1229
+ relationship: semanticallyMatchesGeneratedJson ||
1230
+ (sourceSha256 !== undefined && currentSha256 === sourceSha256)
1202
1231
  ? entry.mode === "generated"
1203
1232
  ? "matches-current-generated"
1204
1233
  : "matches-current-package"
@@ -1221,15 +1250,271 @@ async function writeInitSurfaceState(input) {
1221
1250
  await writeFile(target, `${JSON.stringify(state, null, 2)}\n`, "utf-8");
1222
1251
  return state;
1223
1252
  }
1253
+ function isCurrentInitRelationship(relationship) {
1254
+ return (relationship === "matches-current-package" ||
1255
+ relationship === "matches-current-generated" ||
1256
+ relationship === "managed-block-current" ||
1257
+ relationship === "directory-present" ||
1258
+ relationship === "state-file");
1259
+ }
1260
+ async function fileSha256IfExists(filePath) {
1261
+ const info = await stat(filePath).catch(() => null);
1262
+ if (!info || !info.isFile())
1263
+ return undefined;
1264
+ return sha256Buffer(await readFile(filePath));
1265
+ }
1266
+ async function isDirectoryEmpty(dirPath) {
1267
+ const info = await stat(dirPath).catch(() => null);
1268
+ if (!info || !info.isDirectory())
1269
+ return false;
1270
+ return (await readdir(dirPath)).length === 0;
1271
+ }
1272
+ async function listRelativeFiles(rootPath) {
1273
+ const rootInfo = await stat(rootPath).catch(() => null);
1274
+ if (!rootInfo?.isDirectory())
1275
+ return [];
1276
+ const files = [];
1277
+ async function walk(currentPath, relativeDir) {
1278
+ for (const entry of await readdir(currentPath, { withFileTypes: true })) {
1279
+ const relativePath = relativeDir ? `${relativeDir}/${entry.name}` : entry.name;
1280
+ const absolutePath = path.join(currentPath, entry.name);
1281
+ if (entry.isDirectory())
1282
+ await walk(absolutePath, relativePath);
1283
+ else if (entry.isFile())
1284
+ files.push(relativePath);
1285
+ }
1286
+ }
1287
+ await walk(rootPath, "");
1288
+ return files.sort();
1289
+ }
1290
+ async function expectedLegacyInitFileSha(input) {
1291
+ if (input.legacyPath.startsWith("docs/")) {
1292
+ const doc = input.legacyPath.slice("docs/".length);
1293
+ const generated = buildGeneratedCoreDoc({
1294
+ doc,
1295
+ projectName: input.projectName,
1296
+ governanceRoot: "docs",
1297
+ });
1298
+ if (generated !== undefined)
1299
+ return sha256Text(generated);
1300
+ const generatedDir = GOVERNANCE_README_DIRS.find((dir) => input.legacyPath === `docs/${dir}/README.md`);
1301
+ if (generatedDir) {
1302
+ return sha256Text(buildGovernanceDirectoryReadme({
1303
+ dir: generatedDir,
1304
+ projectName: input.projectName,
1305
+ }));
1306
+ }
1307
+ }
1308
+ if (!input.legacyPath.startsWith("docs/") && !input.legacyPath.startsWith("skills/")) {
1309
+ return undefined;
1310
+ }
1311
+ return fileSha256IfExists(path.join(input.assetRoot, input.legacyPath));
1312
+ }
1313
+ function collectSafeRetiredDirectories(paths) {
1314
+ const dirs = new Set();
1315
+ for (const retiredPath of paths) {
1316
+ let dir = path.posix.dirname(retiredPath);
1317
+ while (dir !== "." && dir !== "/") {
1318
+ if (dir === "skills" || dir.startsWith("skills/") || dir === "docs" || dir.startsWith("docs/")) {
1319
+ dirs.add(dir);
1320
+ }
1321
+ dir = path.posix.dirname(dir);
1322
+ }
1323
+ if (retiredPath.startsWith("skills/"))
1324
+ dirs.add("skills");
1325
+ }
1326
+ return [...dirs].sort((left, right) => right.split("/").length - left.split("/").length);
1327
+ }
1328
+ function needsHarnessModelMigration(harness) {
1329
+ if ("model" in harness || "models" in harness || "modelProfiles" in harness || "modelRouting" in harness) {
1330
+ return true;
1331
+ }
1332
+ if (isRecord(harness.executors)) {
1333
+ if ("cursor" in harness.executors)
1334
+ return true;
1335
+ if (isRecord(harness.executors.pi)) {
1336
+ return ("requiresApiKey" in harness.executors.pi ||
1337
+ "defaultModel" in harness.executors.pi);
1338
+ }
1339
+ }
1340
+ return false;
1341
+ }
1342
+ function migrateHarnessModelFields(harness) {
1343
+ const next = { ...harness };
1344
+ const legacyModel = typeof next.model === "string"
1345
+ ? next.model
1346
+ : isRecord(next.executors) &&
1347
+ isRecord(next.executors.pi) &&
1348
+ typeof next.executors.pi.defaultModel === "string"
1349
+ ? next.executors.pi.defaultModel
1350
+ : undefined;
1351
+ delete next.model;
1352
+ delete next.models;
1353
+ delete next.modelProfiles;
1354
+ delete next.modelRouting;
1355
+ const executors = isRecord(next.executors) ? { ...next.executors } : {};
1356
+ delete executors.cursor;
1357
+ const pi = isRecord(executors.pi) ? { ...executors.pi } : {};
1358
+ delete pi.requiresApiKey;
1359
+ delete pi.defaultModel;
1360
+ if (legacyModel) {
1361
+ for (const level of ["LOW", "MED", "HIGH"]) {
1362
+ if (typeof pi[level] !== "string")
1363
+ pi[level] = legacyModel;
1364
+ }
1365
+ }
1366
+ executors.pi = pi;
1367
+ next.executors = executors;
1368
+ return next;
1369
+ }
1370
+ function hasLegacyHarnessGovernancePaths(harness) {
1371
+ for (const sectionName of ["entrypoints", "artifacts"]) {
1372
+ const section = harness[sectionName];
1373
+ if (isRecord(section) &&
1374
+ Object.values(section).some((value) => typeof value === "string" && value.startsWith("docs/"))) {
1375
+ return true;
1376
+ }
1377
+ }
1378
+ return false;
1379
+ }
1380
+ async function collectRetiredLayoutActions(input) {
1381
+ if (!input.recordedState)
1382
+ return [];
1383
+ const actions = [];
1384
+ const retiredOwnedPaths = [];
1385
+ const currentPaths = new Set(Object.keys(input.currentState.files));
1386
+ const recordedPaths = new Set(Object.keys(input.recordedState.files));
1387
+ for (const [oldPath, oldState] of Object.entries(input.recordedState.files)) {
1388
+ const targetPath = normalizeRelativePath(manifestPathToTargetPath(oldPath, input.governanceRoot));
1389
+ if (targetPath === oldPath || !currentPaths.has(targetPath))
1390
+ continue;
1391
+ if (oldState.mode === "directory" || oldState.mode === "state")
1392
+ continue;
1393
+ const oldAbsolute = path.join(input.repoRoot, oldPath);
1394
+ const oldHash = await fileSha256IfExists(oldAbsolute);
1395
+ if (!oldHash)
1396
+ continue;
1397
+ if (!oldState.currentSha256 || oldHash !== oldState.currentSha256) {
1398
+ input.humanDecisions.push({
1399
+ path: oldPath,
1400
+ reason: `legacy init file may have local edits; review before migrating to ${targetPath}`,
1401
+ });
1402
+ continue;
1403
+ }
1404
+ const targetAbsolute = path.join(input.repoRoot, targetPath);
1405
+ const targetHash = await fileSha256IfExists(targetAbsolute);
1406
+ const targetState = input.currentState.files[targetPath];
1407
+ if (!targetHash) {
1408
+ if (targetState?.sourceSha256 !== undefined &&
1409
+ targetState.sourceSha256 !== oldHash) {
1410
+ actions.push({
1411
+ type: "remove-owned-file",
1412
+ path: oldPath,
1413
+ reason: `remove unchanged legacy init file so the current ${targetPath} can be installed`,
1414
+ });
1415
+ retiredOwnedPaths.push(oldPath);
1416
+ continue;
1417
+ }
1418
+ actions.push({
1419
+ type: "migrate-owned-file",
1420
+ path: oldPath,
1421
+ targetPath,
1422
+ reason: `move loop-agent-owned legacy init file to ${targetPath}`,
1423
+ });
1424
+ retiredOwnedPaths.push(oldPath);
1425
+ continue;
1426
+ }
1427
+ const recordedTargetState = input.recordedState.files[targetPath];
1428
+ if (targetHash === oldHash ||
1429
+ (input.recordedState.stateKind === "recorded" &&
1430
+ recordedTargetState?.currentSha256 !== undefined &&
1431
+ recordedTargetState.currentSha256 === targetHash) ||
1432
+ isCurrentInitRelationship(targetState?.relationship)) {
1433
+ actions.push({
1434
+ type: "remove-owned-file",
1435
+ path: oldPath,
1436
+ reason: `remove duplicate loop-agent-owned legacy init file; current path is ${targetPath}`,
1437
+ });
1438
+ retiredOwnedPaths.push(oldPath);
1439
+ continue;
1440
+ }
1441
+ input.humanDecisions.push({
1442
+ path: oldPath,
1443
+ reason: `legacy init file is owned, but target path ${targetPath} already exists with different content`,
1444
+ });
1445
+ }
1446
+ for (const legacyRoot of ["docs", "skills"]) {
1447
+ for (const relativePath of await listRelativeFiles(path.join(input.repoRoot, legacyRoot))) {
1448
+ const oldPath = `${legacyRoot}/${relativePath}`;
1449
+ if (recordedPaths.has(oldPath))
1450
+ continue;
1451
+ const targetPath = normalizeRelativePath(manifestPathToTargetPath(oldPath, input.governanceRoot));
1452
+ if (targetPath === oldPath)
1453
+ continue;
1454
+ const expectedSha = await expectedLegacyInitFileSha({
1455
+ assetRoot: input.assetRoot,
1456
+ projectName: input.projectName,
1457
+ legacyPath: oldPath,
1458
+ });
1459
+ if (!expectedSha)
1460
+ continue;
1461
+ const oldHash = await fileSha256IfExists(path.join(input.repoRoot, oldPath));
1462
+ if (!oldHash)
1463
+ continue;
1464
+ const targetHash = await fileSha256IfExists(path.join(input.repoRoot, targetPath));
1465
+ if (targetHash === oldHash) {
1466
+ actions.push({
1467
+ type: "remove-owned-file",
1468
+ path: oldPath,
1469
+ reason: `remove duplicate legacy init file; current path is ${targetPath}`,
1470
+ });
1471
+ retiredOwnedPaths.push(oldPath);
1472
+ continue;
1473
+ }
1474
+ if (oldHash !== expectedSha) {
1475
+ input.humanDecisions.push({
1476
+ path: oldPath,
1477
+ reason: `legacy init-shaped file is not recorded and differs from the current bundled/generated asset; review before migrating to ${targetPath}`,
1478
+ });
1479
+ continue;
1480
+ }
1481
+ if (!targetHash) {
1482
+ actions.push({
1483
+ type: "migrate-owned-file",
1484
+ path: oldPath,
1485
+ targetPath,
1486
+ reason: `move package-matching legacy init file to ${targetPath}`,
1487
+ });
1488
+ retiredOwnedPaths.push(oldPath);
1489
+ continue;
1490
+ }
1491
+ input.humanDecisions.push({
1492
+ path: oldPath,
1493
+ reason: `legacy init-shaped file matches the package, but target path ${targetPath} already exists with different content`,
1494
+ });
1495
+ }
1496
+ }
1497
+ for (const dir of collectSafeRetiredDirectories(retiredOwnedPaths)) {
1498
+ actions.push({
1499
+ type: "remove-empty-directory",
1500
+ path: dir,
1501
+ reason: "remove directory if it is empty after legacy init files are migrated",
1502
+ });
1503
+ }
1504
+ return actions;
1505
+ }
1224
1506
  async function resolveInitProjectContext(input) {
1225
1507
  const harness = await readJsonIfExists(path.join(input.repoRoot, "harness.json"));
1508
+ const recordedGovernanceRoot = typeof harness.governanceRoot === "string" ? harness.governanceRoot : undefined;
1226
1509
  return {
1227
1510
  projectName: input.projectName ??
1228
1511
  (typeof harness.project === "string" ? harness.project : undefined) ??
1229
1512
  path.basename(input.repoRoot),
1230
1513
  governanceRoot: input.governanceRoot ??
1231
- (typeof harness.governanceRoot === "string" ? harness.governanceRoot : undefined) ??
1232
- "docs",
1514
+ (recordedGovernanceRoot === "docs"
1515
+ ? DEFAULT_GOVERNANCE_ROOT
1516
+ : recordedGovernanceRoot) ??
1517
+ DEFAULT_GOVERNANCE_ROOT,
1233
1518
  };
1234
1519
  }
1235
1520
  function buildManagedReadmeBlock(input) {
@@ -1442,7 +1727,7 @@ function buildTargetDevelopmentPrinciples(input) {
1442
1727
  "1. One task advances one bounded work block.",
1443
1728
  "2. Search existing code, docs, scripts, and tests before designing new behavior.",
1444
1729
  "3. Shell verification is the completion authority.",
1445
- "4. Runtime state belongs in `.harness/`; durable decisions belong in `docs/`.",
1730
+ `4. Runtime state belongs in \`.harness/\`; durable decisions belong in \`${input.governanceRoot}/\`.`,
1446
1731
  "5. Model writer nodes must be bounded by explicit allowed and forbidden paths.",
1447
1732
  "6. Advisory model output must be followed by deterministic verification.",
1448
1733
  "7. Repeated constraints should become docs, tests, scripts, checks, or templates.",
@@ -1469,7 +1754,7 @@ function buildTargetFeatureWorkflow(input) {
1469
1754
  "3. Contract: state deliverables, non-goals, completion criteria, verification commands, and failure conditions.",
1470
1755
  "4. Implement: make the smallest coherent change and update required docs, scripts, and tests.",
1471
1756
  "5. Verify: run governance checks plus target project verification.",
1472
- "6. Handoff: record evidence in docs/progress, docs/reports, an exec plan, or an ADR when useful.",
1757
+ `6. Handoff: record evidence in ${input.governanceRoot}/progress, ${input.governanceRoot}/reports, an exec plan, or an ADR when useful.`,
1473
1758
  "",
1474
1759
  "## Agent DAG Path",
1475
1760
  "",
@@ -1543,8 +1828,8 @@ function buildTargetLoopAgentHarness(input) {
1543
1828
  "- `.harness/dag-runs/` stores DAG run facts.",
1544
1829
  "- `.harness/runs/` stores one-shot executor facts.",
1545
1830
  "- `.harness/task-pool/` stores optional agent-worker Task Pool state, batch artifacts, failure handoffs, and local Observe events; it is runtime state and normally ignored by Git.",
1546
- "- `docs/` stores durable governance, plans, reports, progress, and decisions.",
1547
- "- `skills/` stores repo-local skill instructions; the CLI can fall back to bundled skills when needed.",
1831
+ `- \`${input.governanceRoot}/\` stores loop-agent generated governance, plans, reports, progress, and decisions.`,
1832
+ "- `.agents/skills/` stores project repo-local skill instructions; the CLI can fall back to bundled package skills when needed.",
1548
1833
  "",
1549
1834
  "## Default Workflow",
1550
1835
  "",
@@ -1554,9 +1839,9 @@ function buildTargetLoopAgentHarness(input) {
1554
1839
  "",
1555
1840
  "After a run, use `loop-agent dag report --run-id <run-id> --markdown` to read canonical run facts and `loop-agent dag doctor --run-id <run-id> --markdown` to diagnose failed or paused runs. Failed DAG runs should produce a failure handoff via `loop-agent dag closeout-draft --run-id <run-id>` instead of a successful closeout.",
1556
1841
  "",
1557
- "Use `docs/templates/production-readiness-checklist.md` when claiming Production Readiness v0.1 for low/medium-risk single-repo DAG work.",
1842
+ `Use \`${input.governanceRoot}/templates/production-readiness-checklist.md\` when claiming Production Readiness v0.1 for low/medium-risk single-repo DAG work.`,
1558
1843
  "",
1559
- "For real product-line Worker samples, use `docs/templates/worker-dogfood-setup.md` and `docs/templates/worker-dogfood-evidence.md`. Explicit failed-task retries must preserve prior evidence and use a new worker run id.",
1844
+ `For real product-line Worker samples, use \`${input.governanceRoot}/templates/worker-dogfood-setup.md\` and \`${input.governanceRoot}/templates/worker-dogfood-evidence.md\`. Explicit failed-task retries must preserve prior evidence and use a new worker run id.`,
1560
1845
  "",
1561
1846
  "## Script Matrix",
1562
1847
  "",
@@ -1572,13 +1857,16 @@ function buildGeneratedCoreDoc(input) {
1572
1857
  case "architecture/runtime-boundaries.md":
1573
1858
  return buildTargetRuntimeBoundaries({ projectName: input.projectName });
1574
1859
  case "development-principles.md":
1575
- return buildTargetDevelopmentPrinciples({ projectName: input.projectName });
1860
+ return buildTargetDevelopmentPrinciples({
1861
+ projectName: input.projectName,
1862
+ governanceRoot: input.governanceRoot,
1863
+ });
1576
1864
  case "feature-workflow.md":
1577
1865
  return buildTargetFeatureWorkflow({ governanceRoot: input.governanceRoot });
1578
1866
  case "verification-matrix.md":
1579
1867
  return buildTargetVerificationMatrix();
1580
1868
  case "loop-agent-harness.md":
1581
- return buildTargetLoopAgentHarness({ projectName: input.projectName });
1869
+ return buildTargetLoopAgentHarness({ projectName: input.projectName, governanceRoot: input.governanceRoot });
1582
1870
  default:
1583
1871
  return undefined;
1584
1872
  }
@@ -1599,7 +1887,7 @@ function buildGovernanceDirectoryReadme(input) {
1599
1887
  }
1600
1888
  export function buildInitInstructions(input) {
1601
1889
  const projectName = input.projectName ?? path.basename(path.resolve(input.repoRoot));
1602
- const governanceRoot = input.governanceRoot ?? "docs";
1890
+ const governanceRoot = input.governanceRoot ?? DEFAULT_GOVERNANCE_ROOT;
1603
1891
  return [
1604
1892
  "# loop-agent Initialization Instructions",
1605
1893
  "",
@@ -1610,7 +1898,7 @@ export function buildInitInstructions(input) {
1610
1898
  `- Project name: default \`${projectName}\`.`,
1611
1899
  `- Governance root: default \`${governanceRoot}\`.`,
1612
1900
  "- Confirm provider/model. Defaults may be used, but the target project may need a different provider/model matrix.",
1613
- "- Default: merge existing AGENTS.md, harness.json, and docs/ instead of overwriting user content.",
1901
+ "- Default: merge existing AGENTS.md, harness.json, and loop-agent governance docs instead of overwriting user content.",
1614
1902
  "",
1615
1903
  "## Apply Defaults",
1616
1904
  "",
@@ -1624,8 +1912,8 @@ export function buildInitInstructions(input) {
1624
1912
  `- Generate target-project versions of \`${governanceRoot}/README.md\`, \`${governanceRoot}/development-principles.md\`, \`${governanceRoot}/architecture/runtime-boundaries.md\`, \`${governanceRoot}/feature-workflow.md\`, \`${governanceRoot}/verification-matrix.md\`, and \`${governanceRoot}/loop-agent-harness.md\`; copy only generic methodology/template material as-is.`,
1625
1913
  "- After deterministic initialization, inspect README/config/build files (for example package.json, pyproject.toml, go.mod, Cargo.toml, pom.xml, Gradle files, Makefile, .sln/.csproj, or project-specific scripts) and adapt `scripts/ci-tests.sh` plus the verification matrix to the real project.",
1626
1914
  "- Enrich the root `README.md`: keep the deterministic project title and the loop-agent managed block intact, and fill the human-authored sections (项目概览, 技术栈与目录结构, 开发与验证) from the target project's actual files. The root README must serve both as a human-first project entry and as an agent work entry; replace the initialization-model supplement comments when the project files provide the information.",
1627
- "- Populate `docs/verification-matrix.md` with the target project's actual quick, standard, and full verification commands derived from its real language and toolchain, keeping the governance rows intact.",
1628
- "- Copy repo-local skills by default so the target repo has auditable skill instructions; full profile also mirrors skills into `.agents/skills/` for external agents.",
1915
+ `- Populate \`${governanceRoot}/verification-matrix.md\` with the target project's actual quick, standard, and full verification commands derived from its real language and toolchain, keeping the governance rows intact.`,
1916
+ "- Project repo-local skills live in `.agents/skills/`. Do not create a root `skills/` directory in the target project; the package's bundled `skills/` remains the built-in fallback.",
1629
1917
  "- Merge a loop-agent managed block into `.gitignore` that ignores harness runtime facts (tasks, dag-runs, runs, live, cache, init-surface.json, .harness/task-pool, legacy .task-pool residue) while keeping prompts and directory placeholders shareable.",
1630
1918
  "- Do not copy examples by default; examples stay bundled in the tool and are available through `loop-agent examples`.",
1631
1919
  "- Add or update a loop-agent managed block in AGENTS.md.",
@@ -1652,8 +1940,8 @@ export function buildInitInstructions(input) {
1652
1940
  "",
1653
1941
  "1. Read the target project's existing README, manifest/build/config files, and top-level source/module directories.",
1654
1942
  "2. Replace the root README's `初始化模型补充` comments when the information can be inferred from files. At minimum, fill project overview, technology stack/directory structure, and development/verification commands.",
1655
- "3. Update `docs/verification-matrix.md` with the target project's actual quick, standard, and full verification commands.",
1656
- "4. Confirm the generated docs expose `docs/templates/production-readiness-checklist.md` plus the operator recovery path: `dag report`, `dag doctor --run-id --markdown`, and failed-run `dag closeout-draft` failure handoff.",
1943
+ `3. Update \`${governanceRoot}/verification-matrix.md\` with the target project's actual quick, standard, and full verification commands.`,
1944
+ `4. Confirm the generated docs expose \`${governanceRoot}/templates/production-readiness-checklist.md\` plus the operator recovery path: \`dag report\`, \`dag doctor --run-id --markdown\`, and failed-run \`dag closeout-draft\` failure handoff.`,
1657
1945
  "5. Update `scripts/ci-tests.sh` only when the conservative generated detector is insufficient for the target project.",
1658
1946
  "6. Run `loop-agent init doctor`, `loop-agent inspect`, `loop-agent docs audit`, and the quick verification command.",
1659
1947
  "",
@@ -1672,7 +1960,7 @@ export function buildInitInstructions(input) {
1672
1960
  export async function initializeLoopAgentProject(options) {
1673
1961
  const repoRoot = path.resolve(options.repoRoot);
1674
1962
  const projectName = options.projectName ?? path.basename(repoRoot);
1675
- const governanceRoot = options.governanceRoot ?? "docs";
1963
+ const governanceRoot = options.governanceRoot ?? DEFAULT_GOVERNANCE_ROOT;
1676
1964
  const profile = options.profile ?? "full";
1677
1965
  const merge = options.merge ?? true;
1678
1966
  const written = [];
@@ -1773,17 +2061,8 @@ export async function initializeLoopAgentProject(options) {
1773
2061
  written,
1774
2062
  });
1775
2063
  if (profile === "full") {
1776
- await copyDirMerge({
1777
- assetRoot,
1778
- repoRoot,
1779
- sourceRelativePath: "skills",
1780
- targetRelativePath: "skills",
1781
- written,
1782
- });
1783
- // Mirror bundled skills into the agent-compatible `.agents/skills/` path so
1784
- // external agents (e.g. OpenCode) that auto-discover `.agents/skills/<name>/SKILL.md`
1785
- // share the same skill content as loop-agent's primary `skills/` path.
1786
- // The package still ships only `skills/`; `.agents/skills` is a target projection.
2064
+ // Project repo-local skills live only under `.agents/skills/`.
2065
+ // The package still ships `skills/` as the built-in fallback source.
1787
2066
  await copyDirMerge({
1788
2067
  assetRoot,
1789
2068
  repoRoot,
@@ -1793,7 +2072,6 @@ export async function initializeLoopAgentProject(options) {
1793
2072
  });
1794
2073
  }
1795
2074
  else {
1796
- skipped.push("skills/");
1797
2075
  skipped.push(".agents/skills/");
1798
2076
  }
1799
2077
  skipped.push("examples/");
@@ -1879,6 +2157,7 @@ export async function checkInitUpdate(input) {
1879
2157
  governanceRoot: input.governanceRoot,
1880
2158
  });
1881
2159
  const recordedState = await readExistingSurfaceState(repoRoot);
2160
+ const assetRoot = await findPackageRoot();
1882
2161
  const surfaceState = recordedState?.stateKind ?? "missing";
1883
2162
  const currentState = await buildCurrentSurfaceState({
1884
2163
  repoRoot,
@@ -1890,6 +2169,18 @@ export async function checkInitUpdate(input) {
1890
2169
  const deterministicActions = [];
1891
2170
  const modelMergeTasks = [];
1892
2171
  const humanDecisions = [];
2172
+ const retiredLayoutActions = await collectRetiredLayoutActions({
2173
+ assetRoot,
2174
+ repoRoot,
2175
+ projectName,
2176
+ governanceRoot,
2177
+ recordedState,
2178
+ currentState,
2179
+ humanDecisions,
2180
+ });
2181
+ const retiredTargetPaths = new Set(retiredLayoutActions
2182
+ .filter((action) => action.type === "migrate-owned-file" && action.targetPath)
2183
+ .map((action) => action.targetPath));
1893
2184
  if (!recordedState) {
1894
2185
  deterministicActions.push({
1895
2186
  type: "bootstrap-surface",
@@ -1899,6 +2190,8 @@ export async function checkInitUpdate(input) {
1899
2190
  }
1900
2191
  for (const [pathName, state] of Object.entries(currentState.files)) {
1901
2192
  if (state.relationship === "missing-from-target") {
2193
+ if (retiredTargetPaths.has(pathName))
2194
+ continue;
1902
2195
  const action = actionForMissing(pathName, state);
1903
2196
  if (action)
1904
2197
  deterministicActions.push(action);
@@ -1919,11 +2212,23 @@ export async function checkInitUpdate(input) {
1919
2212
  reason: "required init directory path exists but is not a directory",
1920
2213
  });
1921
2214
  }
2215
+ else if (recordedState?.stateKind === "recorded" &&
2216
+ (state.mode === "copied" || state.mode === "generated") &&
2217
+ state.currentSha256 !== undefined &&
2218
+ recordedState.files[pathName]?.currentSha256 === state.currentSha256) {
2219
+ deterministicActions.push({
2220
+ type: "refresh-owned-file",
2221
+ path: pathName,
2222
+ mode: state.mode,
2223
+ reason: "refresh an unchanged recorded init file to the current generated or bundled content",
2224
+ });
2225
+ }
1922
2226
  else {
1923
2227
  modelMergeTasks.push(modelMergeTaskFor(pathName, state, allPaths));
1924
2228
  }
1925
2229
  }
1926
2230
  }
2231
+ deterministicActions.unshift(...retiredLayoutActions);
1927
2232
  // Safe harness hygiene: strip obsolete pi.requiresApiKey without full harness rewrite.
1928
2233
  // Cursor requiresApiKey is intentionally kept when present.
1929
2234
  const harnessPath = path.join(repoRoot, "harness.json");
@@ -1939,14 +2244,21 @@ export async function checkInitUpdate(input) {
1939
2244
  reason: "harness.json is missing or has a stale IDE JSON Schema reference",
1940
2245
  });
1941
2246
  }
1942
- if (isRecord(harness) &&
1943
- isRecord(harness.executors) &&
1944
- isRecord(harness.executors.pi) &&
1945
- Object.prototype.hasOwnProperty.call(harness.executors.pi, "requiresApiKey")) {
2247
+ if (recordedState &&
2248
+ isRecord(harness) &&
2249
+ governanceRoot !== "docs" &&
2250
+ (harness.governanceRoot === "docs" || hasLegacyHarnessGovernancePaths(harness))) {
2251
+ deterministicActions.push({
2252
+ type: "migrate-harness-governance-root",
2253
+ path: "harness.json",
2254
+ reason: `replace the legacy default governanceRoot docs with ${governanceRoot}`,
2255
+ });
2256
+ }
2257
+ if (isRecord(harness) && needsHarnessModelMigration(harness)) {
1946
2258
  deterministicActions.push({
1947
- type: "strip-pi-requires-api-key",
2259
+ type: "migrate-harness-model-fields",
1948
2260
  path: "harness.json",
1949
- reason: "executors.pi.requiresApiKey is unused; strip it while keeping user model config and cursor.requiresApiKey",
2261
+ reason: "harness.json contains legacy model fields or executor fields that can be safely normalized",
1950
2262
  });
1951
2263
  }
1952
2264
  }
@@ -2016,16 +2328,79 @@ async function applySafeAction(input) {
2016
2328
  await writeFile(target, `${JSON.stringify(next, null, 2)}\n`, "utf-8");
2017
2329
  return true;
2018
2330
  }
2331
+ if (input.action.type === "migrate-harness-model-fields") {
2332
+ const target = path.join(input.repoRoot, "harness.json");
2333
+ if (!(await exists(target)))
2334
+ return false;
2335
+ const harness = JSON.parse(await readFile(target, "utf-8"));
2336
+ if (!isRecord(harness) || !needsHarnessModelMigration(harness))
2337
+ return false;
2338
+ await writeFile(target, `${JSON.stringify(migrateHarnessModelFields(harness), null, 2)}\n`, "utf-8");
2339
+ return true;
2340
+ }
2341
+ if (input.action.type === "migrate-harness-governance-root") {
2342
+ const target = path.join(input.repoRoot, "harness.json");
2343
+ if (!(await exists(target)))
2344
+ return false;
2345
+ const harness = JSON.parse(await readFile(target, "utf-8"));
2346
+ if (!isRecord(harness) ||
2347
+ (harness.governanceRoot !== "docs" && !hasLegacyHarnessGovernancePaths(harness))) {
2348
+ return false;
2349
+ }
2350
+ const next = {
2351
+ ...harness,
2352
+ governanceRoot: input.governanceRoot,
2353
+ };
2354
+ for (const sectionName of ["entrypoints", "artifacts"]) {
2355
+ const section = harness[sectionName];
2356
+ if (!isRecord(section))
2357
+ continue;
2358
+ next[sectionName] = Object.fromEntries(Object.entries(section).map(([key, value]) => [
2359
+ key,
2360
+ typeof value === "string" && value.startsWith("docs/")
2361
+ ? `${input.governanceRoot}/${value.slice("docs/".length)}`
2362
+ : value,
2363
+ ]));
2364
+ }
2365
+ await writeFile(target, `${JSON.stringify(next, null, 2)}\n`, "utf-8");
2366
+ return true;
2367
+ }
2368
+ if (input.action.type === "migrate-owned-file") {
2369
+ if (!input.action.targetPath)
2370
+ return false;
2371
+ const source = path.join(input.repoRoot, input.action.path);
2372
+ const target = path.join(input.repoRoot, input.action.targetPath);
2373
+ if (!(await exists(source)) || (await exists(target)))
2374
+ return false;
2375
+ await mkdir(path.dirname(target), { recursive: true });
2376
+ await rename(source, target);
2377
+ return true;
2378
+ }
2379
+ if (input.action.type === "remove-owned-file") {
2380
+ const target = path.join(input.repoRoot, input.action.path);
2381
+ if (!(await exists(target)))
2382
+ return false;
2383
+ await rm(target, { force: true });
2384
+ return true;
2385
+ }
2386
+ if (input.action.type === "remove-empty-directory") {
2387
+ const target = path.join(input.repoRoot, input.action.path);
2388
+ if (!(await isDirectoryEmpty(target)))
2389
+ return false;
2390
+ await rmdir(target);
2391
+ return true;
2392
+ }
2019
2393
  const assetRoot = await findPackageRoot();
2020
2394
  const entry = {
2021
2395
  path: input.action.path,
2022
- mode: input.action.type === "create-directory"
2023
- ? "directory"
2024
- : input.action.type === "copy-missing"
2025
- ? "copied"
2026
- : input.action.type === "refresh-managed-block"
2027
- ? "managed-block"
2028
- : "generated",
2396
+ mode: input.action.mode ??
2397
+ (input.action.type === "create-directory"
2398
+ ? "directory"
2399
+ : input.action.type === "copy-missing"
2400
+ ? "copied"
2401
+ : input.action.type === "refresh-managed-block"
2402
+ ? "managed-block"
2403
+ : "generated"),
2029
2404
  };
2030
2405
  const target = path.join(input.repoRoot, input.action.path);
2031
2406
  if (input.action.type === "create-directory") {
@@ -2056,6 +2431,10 @@ async function applySafeAction(input) {
2056
2431
  await writeFile(target, next, "utf-8");
2057
2432
  return true;
2058
2433
  }
2434
+ if (input.action.type === "refresh-owned-file") {
2435
+ await writeFile(target, desired.content, "utf-8");
2436
+ return true;
2437
+ }
2059
2438
  if (await exists(target))
2060
2439
  return false;
2061
2440
  await writeFile(target, desired.content, "utf-8");
@@ -2085,7 +2464,14 @@ export async function applyInitUpdate(input) {
2085
2464
  skipped.push(action);
2086
2465
  continue;
2087
2466
  }
2088
- if (action.type !== "strip-pi-requires-api-key" && action.type !== "add-harness-schema-ref") {
2467
+ if (action.type !== "strip-pi-requires-api-key" &&
2468
+ action.type !== "add-harness-schema-ref" &&
2469
+ action.type !== "refresh-owned-file" &&
2470
+ action.type !== "migrate-harness-governance-root" &&
2471
+ action.type !== "migrate-harness-model-fields" &&
2472
+ action.type !== "migrate-owned-file" &&
2473
+ action.type !== "remove-owned-file" &&
2474
+ action.type !== "remove-empty-directory") {
2089
2475
  const currentState = await buildCurrentSurfaceState({
2090
2476
  repoRoot,
2091
2477
  projectName,
@@ -2169,8 +2555,7 @@ export async function runInitDoctor(input) {
2169
2555
  add("AGENTS.md loop-agent block", (await exists(agents)) && (await readFile(agents, "utf-8")).includes(MANAGED_BLOCK_START), "managed block present");
2170
2556
  const readme = path.join(repoRoot, "README.md");
2171
2557
  add("README loop-agent block", (await exists(readme)) && (await readFile(readme, "utf-8")).includes(MANAGED_BLOCK_START), "managed block present");
2172
- add("repo-local skills", await exists(path.join(repoRoot, "skills", "loop-agent", "SKILL.md")), "skills/loop-agent/SKILL.md");
2173
- add("agent-compatible skills mirror", await exists(path.join(repoRoot, ".agents", "skills", "loop-agent", "SKILL.md")), ".agents/skills/loop-agent/SKILL.md");
2558
+ add("repo-local skills", await exists(path.join(repoRoot, ".agents", "skills", "loop-agent", "SKILL.md")), ".agents/skills/loop-agent/SKILL.md");
2174
2559
  const gitignorePath = path.join(repoRoot, ".gitignore");
2175
2560
  const gitignoreContent = (await exists(gitignorePath)) ? await readFile(gitignorePath, "utf-8") : "";
2176
2561
  add("gitignore loop-agent block", gitignoreContent.includes(GITIGNORE_BLOCK_START) && gitignoreContent.includes(".harness/tasks/*"), ".gitignore managed runtime ignores");
@@ -2192,7 +2577,7 @@ export async function runInitDoctor(input) {
2192
2577
  function parseInitArgs(repoRoot, args) {
2193
2578
  let subcommand;
2194
2579
  let projectName;
2195
- let governanceRoot = "docs";
2580
+ let governanceRoot;
2196
2581
  let profile = "full";
2197
2582
  let merge = true;
2198
2583
  let provider;
@@ -2315,7 +2700,7 @@ function formatInitResult(result) {
2315
2700
  `written: ${result.written.length}`,
2316
2701
  `skipped: ${result.skipped.length}`,
2317
2702
  "next: loop-agent init doctor --repo-root <target>",
2318
- "model-executed init: continue automatically by inspecting the target project, adapting README.md, docs/verification-matrix.md, and scripts/ci-tests.sh when needed, then run inspect/docs audit/quick verification.",
2703
+ `model-executed init: continue automatically by inspecting the target project, adapting README.md, ${result.governanceRoot}/verification-matrix.md, and scripts/ci-tests.sh when needed, then run inspect/docs audit/quick verification.`,
2319
2704
  ].join("\n");
2320
2705
  }
2321
2706
  export async function listInitializedFiles(repoRoot) {