@quolu/lattice 0.52.0 → 0.52.2

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 (182) hide show
  1. package/LICENSE +147 -147
  2. package/README.ja.md +355 -355
  3. package/README.md +258 -258
  4. package/bin/lattice-mcp.mjs +0 -0
  5. package/bin/lattice-scripted-adapter.mjs +0 -0
  6. package/bin/lattice-scripted-worker.mjs +0 -0
  7. package/bin/lattice-work-order-adapter.mjs +0 -0
  8. package/bin/lattice.mjs +0 -0
  9. package/docs/bridge-setup.md +132 -132
  10. package/docs/schemas/lattice.executor_packet.v1.schema.json +57 -57
  11. package/docs/schemas/lattice.executor_receipt.v1.schema.json +66 -66
  12. package/docs/schemas/lattice.phase_todo_revision.v3.schema.json +360 -360
  13. package/docs/schemas/lattice.plan_create_input.v1.schema.json +56 -56
  14. package/docs/schemas/lattice.plan_create_input.v2.schema.json +72 -72
  15. package/docs/schemas/lattice.plan_create_input.v3.schema.json +81 -81
  16. package/docs/schemas/lattice.plan_create_input.v4.schema.json +85 -85
  17. package/docs/schemas/lattice.run_request.v1.schema.json +238 -238
  18. package/docs/schemas/lattice.runtime_adapter_capabilities.v2.schema.json +55 -55
  19. package/docs/schemas/lattice.runtime_adapter_registration_input.v1.schema.json +78 -78
  20. package/docs/schemas/lattice.runtime_adapter_registration_input.v2.schema.json +86 -86
  21. package/docs/schemas/lattice.todo_extraction.v2.schema.json +298 -298
  22. package/docs/schemas/lattice.todo_extraction.v3.schema.json +146 -146
  23. package/docs/schemas/lattice.todo_revision.v2.schema.json +260 -260
  24. package/docs/schemas/lattice.todo_revision_set.v3.schema.json +363 -363
  25. package/package.json +103 -103
  26. package/sensor/LICENSE +21 -21
  27. package/sensor/NOTICE +19 -19
  28. package/sensor/dist/bin/lattice-sensor.js +9 -9
  29. package/sensor/dist/db/index.js +24 -24
  30. package/sensor/dist/db/migrations.js +41 -41
  31. package/sensor/dist/db/queries.js +164 -164
  32. package/sensor/dist/db/schema.sql +205 -205
  33. package/sensor/dist/directory.js +5 -5
  34. package/sensor/dist/extraction/wasm/tree-sitter-c_sharp.wasm +0 -0
  35. package/sensor/dist/extraction/wasm/tree-sitter-cfml.wasm +0 -0
  36. package/sensor/dist/extraction/wasm/tree-sitter-cfquery.wasm +0 -0
  37. package/sensor/dist/extraction/wasm/tree-sitter-cfscript.wasm +0 -0
  38. package/sensor/dist/extraction/wasm/tree-sitter-cobol.wasm +0 -0
  39. package/sensor/dist/extraction/wasm/tree-sitter-erlang.wasm +0 -0
  40. package/sensor/dist/extraction/wasm/tree-sitter-go.wasm +0 -0
  41. package/sensor/dist/extraction/wasm/tree-sitter-java.wasm +0 -0
  42. package/sensor/dist/extraction/wasm/tree-sitter-javascript.wasm +0 -0
  43. package/sensor/dist/extraction/wasm/tree-sitter-nix.wasm +0 -0
  44. package/sensor/dist/extraction/wasm/tree-sitter-pascal.wasm +0 -0
  45. package/sensor/dist/extraction/wasm/tree-sitter-python.wasm +0 -0
  46. package/sensor/dist/extraction/wasm/tree-sitter-tsx.wasm +0 -0
  47. package/sensor/dist/extraction/wasm/tree-sitter-typescript.wasm +0 -0
  48. package/sensor/dist/extraction/wasm/tree-sitter-vbnet.wasm +0 -0
  49. package/sensor/dist/mcp/liveness-watchdog.js +53 -53
  50. package/sensor/dist/mcp/server-instructions.js +95 -95
  51. package/sensor/package.json +56 -56
  52. package/src/artifact-contracts-v2.mjs +325 -325
  53. package/src/artifact-contracts.mjs +895 -895
  54. package/src/boundary-compiler.mjs +712 -712
  55. package/src/boundary-observation-compiler-v2.mjs +344 -344
  56. package/src/bounded-seam.mjs +230 -230
  57. package/src/bridge-address.mjs +107 -107
  58. package/src/bridge-cli.mjs +297 -297
  59. package/src/bridge-config.mjs +346 -346
  60. package/src/bridge-daemon.mjs +378 -378
  61. package/src/bridge-launch-agent.mjs +323 -323
  62. package/src/bridge-registrar.mjs +102 -102
  63. package/src/bridge-server.mjs +376 -376
  64. package/src/cli-help.mjs +308 -308
  65. package/src/cli-stdio.mjs +40 -40
  66. package/src/control-compiler.mjs +532 -532
  67. package/src/dag-chain.mjs +261 -261
  68. package/src/factory-diagnostics.mjs +188 -188
  69. package/src/hash-chain.mjs +76 -76
  70. package/src/hooks-cli.mjs +1057 -1053
  71. package/src/isolation-runner.mjs +409 -409
  72. package/src/node-version-guard.mjs +44 -44
  73. package/src/project-cli.mjs +697 -697
  74. package/src/project-identity.mjs +130 -130
  75. package/src/rc1-black-box-oracle.mjs +906 -906
  76. package/src/rc1-comparison.mjs +154 -154
  77. package/src/rc1-evidence-bundle.mjs +456 -456
  78. package/src/rc1-v4-campaign.mjs +708 -708
  79. package/src/rc1-v4-transform.mjs +467 -467
  80. package/src/rc1-v5-artifact-set.mjs +855 -855
  81. package/src/rc1-v5-behavior-evidence.mjs +594 -594
  82. package/src/rc1-v5-campaign.mjs +797 -797
  83. package/src/rc1-v5-transform.mjs +421 -421
  84. package/src/rc1-v6-artifact-set.mjs +807 -807
  85. package/src/rc1-v6-behavior-evidence.mjs +273 -273
  86. package/src/rc1-v6-campaign.mjs +623 -623
  87. package/src/rc1-v6-causal-binding.mjs +473 -473
  88. package/src/rc1-v6-measurement.mjs +313 -313
  89. package/src/rc2-artifact-set.mjs +1584 -1584
  90. package/src/rc2-campaign.mjs +1506 -1502
  91. package/src/rc2-delivery-policy-front-end.mjs +1079 -1079
  92. package/src/rc2-delivery-policy-oracle.mjs +134 -134
  93. package/src/rc2-delivery-policy-transform.mjs +1127 -1127
  94. package/src/rc2-rc1-transfer-front-end.mjs +511 -511
  95. package/src/rc3-actual-dogfood.mjs +652 -652
  96. package/src/rc3-dogfood-scaffold.mjs +315 -315
  97. package/src/rc3-scripted-campaign.mjs +1383 -1383
  98. package/src/rc4-stage1-dogfood.mjs +673 -673
  99. package/src/runtime-adapter-registry.mjs +524 -520
  100. package/src/runtime-cli.mjs +4588 -4584
  101. package/src/runtime-contracts.mjs +824 -824
  102. package/src/runtime-control-store.mjs +604 -600
  103. package/src/runtime-controller-protocol.mjs +587 -587
  104. package/src/runtime-decision-verifier.mjs +701 -701
  105. package/src/runtime-diff-observer.mjs +361 -361
  106. package/src/runtime-direct-os-observer.mjs +301 -301
  107. package/src/runtime-driver-state.mjs +166 -162
  108. package/src/runtime-engine.mjs +779 -779
  109. package/src/runtime-errors.mjs +356 -356
  110. package/src/runtime-event-store.mjs +189 -189
  111. package/src/runtime-front-end.mjs +925 -925
  112. package/src/runtime-gate-store.mjs +481 -477
  113. package/src/runtime-hold-recompile.mjs +916 -916
  114. package/src/runtime-io-sentinel.mjs +391 -391
  115. package/src/runtime-lifecycle-lock.mjs +294 -290
  116. package/src/runtime-managed-supervisor.mjs +1490 -1490
  117. package/src/runtime-multi-epoch-store.mjs +838 -834
  118. package/src/runtime-projection.mjs +269 -269
  119. package/src/runtime-pull-intake.mjs +1192 -1188
  120. package/src/runtime-scripted-adapter-controller.mjs +1160 -1156
  121. package/src/runtime-scripted-executor.mjs +163 -163
  122. package/src/runtime-scripted-worktree.mjs +104 -104
  123. package/src/runtime-seam-resolve.mjs +428 -428
  124. package/src/runtime-seam-treatment.mjs +173 -173
  125. package/src/runtime-socket-owner.mjs +125 -125
  126. package/src/runtime-work-order-contracts.mjs +91 -91
  127. package/src/runtime-work-order-controller.mjs +1171 -1167
  128. package/src/runtime-worktree-executor.mjs +199 -199
  129. package/src/schedulability-compiler-v2.mjs +303 -303
  130. package/src/schedulability-verifier-v2.mjs +317 -317
  131. package/src/seam-apply.mjs +549 -549
  132. package/src/seam-commit-shared.mjs +22 -22
  133. package/src/seam-commit-transform.mjs +81 -81
  134. package/src/seam-commit.mjs +18 -18
  135. package/src/seam-cost.mjs +322 -322
  136. package/src/seam-derivation.mjs +188 -188
  137. package/src/seam-gate.mjs +146 -146
  138. package/src/seam-proposal-contracts.mjs +446 -446
  139. package/src/seam-proposal-queries.mjs +521 -521
  140. package/src/seam-proposal.mjs +2011 -2011
  141. package/src/seam-ref.mjs +33 -33
  142. package/src/seam-rewrite.mjs +286 -286
  143. package/src/seam-transform.mjs +554 -554
  144. package/src/seam-verification.mjs +260 -260
  145. package/src/sensor-adapter.mjs +432 -432
  146. package/src/sensor-cli.mjs +139 -139
  147. package/src/sensor-diff.mjs +661 -661
  148. package/src/sensor-node-runtime.mjs +53 -53
  149. package/src/sensor-runtime.mjs +52 -52
  150. package/src/timestamp-contract.mjs +8 -8
  151. package/src/todo-audit-pending.mjs +91 -91
  152. package/src/todo-chain.mjs +178 -178
  153. package/src/todo-cli.mjs +3141 -3126
  154. package/src/todo-contracts.mjs +728 -728
  155. package/src/todo-dashboard-registry.mjs +573 -573
  156. package/src/todo-dispatch-shape.mjs +190 -190
  157. package/src/todo-gantt-html-independence.mjs +239 -239
  158. package/src/todo-gantt-html-shared.mjs +226 -226
  159. package/src/todo-gantt-html-style.mjs +131 -131
  160. package/src/todo-gantt-html.mjs +248 -248
  161. package/src/todo-gantt-layout.mjs +974 -974
  162. package/src/todo-gantt-live.mjs +361 -361
  163. package/src/todo-gantt-nested.mjs +263 -263
  164. package/src/todo-gantt-presentation.mjs +217 -217
  165. package/src/todo-gantt-scope.mjs +123 -123
  166. package/src/todo-gantt-svg.mjs +353 -353
  167. package/src/todo-independence-contracts.mjs +595 -595
  168. package/src/todo-independence-guidance.mjs +322 -322
  169. package/src/todo-independence.mjs +640 -640
  170. package/src/todo-markdown-renderer.mjs +260 -260
  171. package/src/todo-migration.mjs +448 -448
  172. package/src/todo-narrative-anchor.mjs +130 -130
  173. package/src/todo-note-store.mjs +629 -625
  174. package/src/todo-parallel-candidates.mjs +114 -114
  175. package/src/todo-revision.mjs +995 -995
  176. package/src/todo-split.mjs +472 -472
  177. package/src/todo-status.mjs +690 -690
  178. package/src/todo-store-git-transaction.mjs +418 -418
  179. package/src/todo-store.mjs +4322 -4314
  180. package/src/treatment-compiler.mjs +728 -728
  181. package/src/treatment-runner.mjs +656 -656
  182. package/src/witness-scaffold.mjs +180 -180
@@ -1,428 +1,428 @@
1
- /**
2
- * 実行時に観測した競合を、実際の変換で解消するproduct入口(請求項8)。
3
- *
4
- * これが無い間、変換の中身は動くのに実運転からそこへ行く道が無かった。実運転側が使う
5
- * `routeConflictTreatment`は「事前宣言済みtreatmentがpathを覆う時だけseam_transform」なので、
6
- * **予期しなかった競合は変換にかからず直列へ退化していた**。
7
- *
8
- * 装置の境界にAIを含める(AGENTS.md)。したがってここでLatticeが供給するのは、AIが自分では
9
- * 作れないもの——構造観測、隔離実行、五条件の検証、変換の確定と記録——だけである。
10
- * 「どのTODOが係争fileの中のどのsymbolを触るか」「新しい面をどう名付けるか」はAIが既に
11
- * 知っているので、宣言として受け取る。推定しない。
12
- */
13
-
14
- import path from 'node:path';
15
- import { createHash } from 'node:crypto';
16
- import { readFile } from 'node:fs/promises';
17
-
18
- import { digestArtifact } from './artifact-contracts.mjs';
19
- import { commitSeamTransform } from './seam-commit.mjs';
20
- import { applySeamConflict } from './seam-apply.mjs';
21
- import { resolveRuntimeSeamTreatment } from './runtime-seam-treatment.mjs';
22
- import { affectedTestsFromEvidence } from './runtime-front-end.mjs';
23
- import { explainSeamGate } from './seam-gate.mjs';
24
- import { collectWitnessSensorEvidence, compileTodoIndependence } from './todo-independence.mjs';
25
- import { todoSelfDigest } from './todo-contracts.mjs';
26
- import { TODO_WITNESS_SET_SCHEMA } from './todo-independence-contracts.mjs';
27
-
28
- export const RUNTIME_SEAM_REQUEST_SCHEMA = 'lattice.runtime_seam_request.v1';
29
- // v2は翻訳段(`reconciled`)の追加である。宣言を観測へ合わせてから判定するようになったので、
30
- // どの宣言の上で五条件を見たかが決着の一部になった。v1の形のまま中身を変えると、記録が何に
31
- // ついてのものか確定しなくなる。
32
- export const RUNTIME_SEAM_RESOLUTION_SCHEMA = 'lattice.runtime_seam_resolution.v2';
33
-
34
- /** 合成するtodo planのkey。実行時planとは別空間なので固定でよい。 */
35
- const SYNTHETIC_PLAN_KEY = 'runtime';
36
- const HEX_DIGEST = /^[0-9a-f]{64}$/u;
37
- const REPO_PATH = /^(?!\/)(?!.*(?:^|\/)\.\.(?:\/|$))[\w./-]+$/u;
38
- const IDENTIFIER = /^[0-9A-Za-z](?:[0-9A-Za-z._-]{0,127})$/u;
39
-
40
- const compareText = (left, right) => (left < right ? -1 : left > right ? 1 : 0);
41
-
42
- /** 資源idはruntime front-endと同じ合成形にする(`own-<kind>-<sha16>`)。 */
43
- const sha16 = (value) => createHash('sha256').update(value, 'utf8').digest('hex').slice(0, 16);
44
-
45
- function plainObject(value) {
46
- return typeof value === 'object' && value !== null && !Array.isArray(value);
47
- }
48
-
49
- function exactRecord(value, keys) {
50
- if (!plainObject(value)) return false;
51
- const own = Object.keys(value);
52
- return own.length === keys.length && keys.every((key) => Object.hasOwn(value, key));
53
- }
54
-
55
- /**
56
- * AIが出す宣言。ここに書くのは「係争fileの中で各TODOが触るsymbol」「新しい面の名前」
57
- * 「後継planへ渡すtask migrationのdigest」だけで、どれもAIが既に持っている情報である。
58
- */
59
- export function validateRuntimeSeamRequest(value) {
60
- if (!exactRecord(value, [
61
- 'schema', 'run_id', 'finding_digest', 'concern_symbols', 'path_names',
62
- 'task_migration_digest', 'request_digest',
63
- ])) return false;
64
- if (value.schema !== RUNTIME_SEAM_REQUEST_SCHEMA) return false;
65
- if (!IDENTIFIER.test(value.run_id ?? '')) return false;
66
- if (!HEX_DIGEST.test(value.finding_digest ?? '')) return false;
67
- if (!HEX_DIGEST.test(value.task_migration_digest ?? '')) return false;
68
- if (!plainObject(value.concern_symbols) || !plainObject(value.path_names)) return false;
69
-
70
- const todoIds = Object.keys(value.concern_symbols);
71
- if (todoIds.length < 2 || todoIds.length > 64) return false;
72
- for (const todoId of todoIds) {
73
- if (!IDENTIFIER.test(todoId)) return false;
74
- const symbols = value.concern_symbols[todoId];
75
- if (!Array.isArray(symbols) || symbols.length === 0 || symbols.length > 256) return false;
76
- if (!symbols.every((symbol) => IDENTIFIER.test(symbol))) return false;
77
- if (!REPO_PATH.test(value.path_names[todoId] ?? '')) return false;
78
- }
79
- // sharedはresidualから切り出す共有面。TODOに属さないので別枠で必ず要る。
80
- if (!REPO_PATH.test(value.path_names.shared ?? '')) return false;
81
- if (!exactRecord(value.path_names, [...todoIds, 'shared'])) return false;
82
- if (!HEX_DIGEST.test(value.request_digest ?? '')) return false;
83
- return value.request_digest === todoSelfDigest(value, 'request_digest');
84
- }
85
-
86
- /**
87
- * 観測された実態へ宣言を合わせる(翻訳段)。
88
- *
89
- * 実行時のpath競合は、**片方がその資源を所有していないから起きる**。所有していない資源の内側に
90
- * 担当は主張できない(`concern_anchor_resource_not_owned`)ので、宣言のままでは変換の入力が
91
- * 組めない——請求項8は、実行時に見つかった競合の形をそのままでは受け取れなかった。
92
- *
93
- * 境界は計画時の**予測**であって、workerを閉じ込める制約ではない。予測を超えたのは予測が狭かった
94
- * からであり、作業が不正だったからではない。したがって操作は「破った側を直す」ではなく、観測が
95
- * 示した実態へ宣言を合わせることであり、**対称**である——どちらの足跡が予測を超えたかは観測が
96
- * 決めるので、ここでは関与TODOを同じ規則で扱う。
97
- *
98
- * これは3つ目の処置ではない。翻訳を通ると計画時競合の形(`owns`の交差)になり、そこから先は
99
- * 既存の請求項7/8がそのまま適用できる。競合辺が立つのは翻訳の副産物ではなく目的である——
100
- * 立たないままだと`overlap_reduced`が最初から満たされたことになり、変換の検証が無意味になる。
101
- *
102
- * 広げるのは観測が示した資源だけとする。findingが持つ係争pathも関与TODOも観測であって推定では
103
- * ない。広げた事実は呼び出し側へ返す。黙って広げると、予測が外れたことも、判定がどの宣言の上で
104
- * 行われたかも残らない。
105
- *
106
- * **所有の宣言は裏取りと対で広げる。** `owns`だけ足すとその資源は`sensor_unbound`になり、compileは
107
- * 非dispatchable(`BOUNDARY_UNKNOWN`)へ落ちる。そこでは競合が投影されないので、翻訳したのに
108
- * 競合辺が立たず、変換の便益が測れない。裏取りに使えるqueryがrun のquery setに無ければ、
109
- * 広げずに理由を返す——証明できない宣言を作らない。
110
- */
111
- export function reconcileWitnessToObservation({
112
- manualWitness, contestedPath, todoIds, sensorQuerySet = null, observedAffectedTests = null,
113
- } = {}) {
114
- const reconciled = {};
115
- const widened = [];
116
- const reject = (reason) => ({ manualWitness: null, widened: [], reasons: [reason] });
117
- // 係争pathを覆えるqueryを、run のquery setから拾う。無ければ翻訳しない。
118
- //
119
- // `affected`だけを見る。path所有を裏取りするのはこのoperationであり、構造query(query/callers/
120
- // callees/impact)はsymbolを的にする。構造queryがたまたま同じ文字列をtargetに持つからといって
121
- // 所有の裏取りへ流用すると、束縛の意味が変わる。
122
- const covering = (sensorQuerySet?.queries ?? [])
123
- .filter((query) => query.operation === 'affected' && query.target === contestedPath)
124
- .map((query) => query.id)
125
- .sort(compareText);
126
-
127
- for (const todoId of todoIds) {
128
- const witness = manualWitness?.[todoId];
129
- if (!plainObject(witness)) return reject(`witness_absent:${todoId}`);
130
- const next = structuredClone(witness);
131
- const ownsPath = (next.owns ?? [])
132
- .some((own) => own.kind === 'path' && own.target === contestedPath);
133
- const writesPath = (next.writes ?? []).includes(contestedPath);
134
- const boundPath = (next.sensor_provenance?.queries ?? [])
135
- .some((entry) => (entry.expect?.kind === 'affected' || entry.expect?.kind === 'path')
136
- && entry.expect?.path === contestedPath);
137
- // 既に所有と書き込みを宣言しているなら、観測は予測の内側にある。合わせるものが無いので
138
- // 触らない——裏取りが足りているかどうかは、その宣言を書いた側の問題であり、compileが見る。
139
- // 翻訳が手を入れてよいのは、観測が予測を超えた分だけである。
140
- if (ownsPath && writesPath) {
141
- reconciled[todoId] = next;
142
- continue;
143
- }
144
- if (!boundPath) {
145
- if (covering.length === 0) return reject(`observation_unbacked:${todoId}:${contestedPath}`);
146
- // 同じ資源は同じqueryで裏取りする。TODOごとに別のqueryを選ぶと、front-endが被覆の
147
- // 曖昧さとして弾く。
148
- if (covering.length > 1) return reject(`observation_binding_ambiguous:${contestedPath}`);
149
- // 観測できていないaffectedを推測で埋めない。
150
- if (!Array.isArray(observedAffectedTests)) {
151
- return reject(`observation_affected_unread:${contestedPath}`);
152
- }
153
- }
154
- // 所有・書き込み・裏取りをまとめて足す。観測されたのは「このpathへの書き込み」であり、
155
- // 宣言の一部だけを合わせると、宣言が実態からずれたまま次の判定の前提になる。`creates`は
156
- // 付けない——観測できたのはpathが既に在るからである。
157
- if (!ownsPath) next.owns = [...next.owns, { kind: 'path', target: contestedPath }]
158
- .sort((left, right) => compareText(`${left.kind}\0${left.target}`, `${right.kind}\0${right.target}`));
159
- if (!writesPath) next.writes = [...next.writes, contestedPath].sort(compareText);
160
- if (!boundPath) {
161
- next.sensor_provenance = {
162
- ...next.sensor_provenance,
163
- queries: [...next.sensor_provenance.queries,
164
- { query_id: covering[0], expect: { kind: 'affected', path: contestedPath } }],
165
- };
166
- // 面を1つ引き受けたら、その面のaffected testも引き受ける。宣言と観測はTODO単位で
167
- // exact一致を要求されるので、片方だけ広げるとdriftになる。
168
- next.affected_tests = [...new Set([...next.affected_tests, ...observedAffectedTests])]
169
- .sort(compareText);
170
- }
171
- reconciled[todoId] = next;
172
- widened.push({
173
- todo_id: todoId,
174
- resource: { kind: 'path', target: contestedPath },
175
- fields: [
176
- ...(ownsPath ? [] : ['owns']),
177
- ...(writesPath ? [] : ['writes']),
178
- ...(boundPath ? [] : ['affected_tests', 'sensor_provenance']),
179
- ].sort(compareText),
180
- });
181
- }
182
- return { manualWitness: reconciled, widened, reasons: [] };
183
- }
184
-
185
- /**
186
- * 実行時witnessへconcern anchorを足してtodo witness setにする。
187
- *
188
- * 実行時のmanual_witnessはconcern_anchorsを持たない(`lattice.run_request.v4`)。持たせるのでなく、
189
- * 宣言から足す——係争資源の中のどのsymbolを触るかは実行時に確定する情報であり、run開始時点の
190
- * 契約に書けるものではないからである。
191
- *
192
- * anchorを足す前に宣言を観測へ合わせる(`reconcileWitnessToObservation`)。この順序でないと、
193
- * 係争資源を所有していないTODOのanchorが必ず不正になる。
194
- */
195
- export function buildRuntimeSeamWitnessSet({
196
- request, declaration, contestedPath, executors, observedAffectedTests = null,
197
- }) {
198
- const todoIds = Object.keys(declaration.concern_symbols).sort(compareText);
199
- const translated = reconcileWitnessToObservation({
200
- manualWitness: request.manual_witness, contestedPath, todoIds,
201
- sensorQuerySet: request.sensor_query_set, observedAffectedTests,
202
- });
203
- if (translated.manualWitness === null) {
204
- return { witnessSet: null, widened: [], reasons: translated.reasons };
205
- }
206
- const manual = {};
207
- for (const todoId of todoIds) {
208
- manual[todoId] = {
209
- ...translated.manualWitness[todoId],
210
- concern_anchors: [{
211
- within: { kind: 'path', target: contestedPath },
212
- symbols: [...declaration.concern_symbols[todoId]].sort(compareText),
213
- }],
214
- };
215
- }
216
- const witnessSet = {
217
- schema: TODO_WITNESS_SET_SCHEMA,
218
- project_id: SYNTHETIC_PLAN_KEY,
219
- plan_key: SYNTHETIC_PLAN_KEY,
220
- capacity: { executors },
221
- sensor_query_set: structuredClone(request.sensor_query_set),
222
- manual_witness: manual,
223
- witness_set_digest: '',
224
- };
225
- witnessSet.witness_set_digest = todoSelfDigest(witnessSet, 'witness_set_digest');
226
- return { witnessSet, widened: translated.widened, reasons: [] };
227
- }
228
-
229
- function syntheticTodoPlan(todoIds) {
230
- return {
231
- schema: 'lattice.todo_plan.v2',
232
- project_id: SYNTHETIC_PLAN_KEY,
233
- plan_key: SYNTHETIC_PLAN_KEY,
234
- plan_version: 'v1',
235
- topology_digest: digestArtifact({ tasks: [...todoIds].sort(compareText) }),
236
- tasks: [...todoIds].sort(compareText).map((taskId) => ({ task_id: taskId })),
237
- };
238
- }
239
-
240
- /**
241
- * 記録済みfindingと宣言から、変換を導出・適用・検証・確定して処置を返す。
242
- *
243
- * 五条件(ADR 0138)を1つでも欠いたら意図的直列を返す。確定できなければ採用しない(ADR 0141)。
244
- * 「変換した」と言いながら再開できない状態を作らない。
245
- */
246
- export async function resolveRuntimeSeam({
247
- repoRoot, runDir, findingRecord, bundle, declaration, latticeBin, compiledAt,
248
- } = {}) {
249
- const finding = findingRecord.finding;
250
- const request = bundle.request;
251
- const baseSha = request.repo.base_sha;
252
- const todoIds = Object.keys(declaration.concern_symbols).sort(compareText);
253
-
254
- if (finding.kind !== 'observed_write_conflict' || typeof finding.path !== 'string') {
255
- return { lane: 'intentional_serial', reasons: ['finding_not_write_conflict'], split: null, widened: [] };
256
- }
257
- const findingTodoIds = [...finding.todo_ids].sort(compareText);
258
- if (findingTodoIds.join('\0') !== todoIds.join('\0')) {
259
- return {
260
- lane: 'intentional_serial',
261
- reasons: ['declared_todos_differ_from_finding'],
262
- split: null,
263
- widened: [],
264
- };
265
- }
266
-
267
- // sensorは1回だけ引く。翻訳(宣言を観測へ合わせる)とcompileは同じ観測の上で行う——
268
- // 別々に引くと、翻訳が見た実態とcompileが見た実態がずれうる。
269
- const sensorEvidence = await collectWitnessSensorEvidence({
270
- cwd: repoRoot, witnessSet: { sensor_query_set: request.sensor_query_set },
271
- });
272
- const built = buildRuntimeSeamWitnessSet({
273
- request, declaration, contestedPath: finding.path,
274
- executors: request.capacity.executors,
275
- observedAffectedTests: affectedTestsFromEvidence({
276
- sensorEvidence, querySet: request.sensor_query_set, path: finding.path,
277
- }),
278
- });
279
- if (built.witnessSet === null) {
280
- return { lane: 'intentional_serial', reasons: built.reasons, split: null, widened: [] };
281
- }
282
- const witnessSet = built.witnessSet;
283
- const plan = syntheticTodoPlan(todoIds);
284
-
285
- // 観測したaffected testsだけを検証に使う。宣言から発明しない。翻訳後の宣言から採る——
286
- // 所有が広がったTODOは、その面のtestも自分のaffectedとして引き受けている。
287
- const affectedTests = [...new Set(todoIds
288
- .flatMap((todoId) => witnessSet.manual_witness[todoId].affected_tests))].sort(compareText);
289
-
290
- const baseArtifact = compileTodoIndependence({
291
- witnessSet, plan, baseSha, compiledAt, sensorEvidence,
292
- });
293
-
294
- const pathNames = { ...declaration.path_names };
295
- // 翻訳で広げた宣言は決着へ載せる。どの宣言の上で五条件を判定したかが残らないと、
296
- // 「変換して通った」という記録が何についてのものか確定しない。
297
- const resolved = await resolveRuntimeSeamTreatment({
298
- finding,
299
- witnessSet,
300
- pathNames,
301
- baseSha,
302
- manifestDigest: baseArtifact.result_digest,
303
- affectedTests,
304
- taskMigrationDigest: declaration.task_migration_digest,
305
- // storeへ記録されたfindingのidで縛る。再計画側はこのidでfinding recordを読む。
306
- recordedFindingDigest: findingRecord.finding_digest,
307
- commitTransform: async ({ files, candidateId }) => commitSeamTransform({
308
- repoRoot, baseSha, files, candidateId,
309
- }),
310
- applyConflict: async ({ conflict }) => {
311
- const applied = await applySeamConflict({
312
- repoRoot,
313
- planKey: SYNTHETIC_PLAN_KEY,
314
- conflict,
315
- witnessSet,
316
- latticeBin,
317
- sharedPathFor: () => declaration.path_names.shared,
318
- executors: request.capacity.executors,
319
- precedences: bundle.plan.precedence,
320
- pathNames,
321
- compileIndependence: {
322
- baseArtifact,
323
- inWorktree: async ({ worktreePath, witnessSet: postWitness }) => compileTodoIndependence({
324
- witnessSet: postWitness,
325
- plan,
326
- baseSha,
327
- compiledAt,
328
- sensorEvidence: await collectWitnessSensorEvidence({
329
- cwd: worktreePath, witnessSet: postWitness,
330
- }),
331
- }),
332
- },
333
- });
334
- return { ...applied, candidate: applied.candidate ?? null };
335
- },
336
- });
337
- return { ...resolved, widened: built.widened };
338
- }
339
-
340
- /** 決着をartifactにする。branchを動かすのは操作するAIなので、行き先を明示して返す。 */
341
- export function buildRuntimeSeamResolution({ runId, findingDigest, resolved }) {
342
- const resolution = {
343
- schema: RUNTIME_SEAM_RESOLUTION_SCHEMA,
344
- run_id: runId,
345
- finding_digest: findingDigest,
346
- lane: resolved.lane,
347
- reasons: [...resolved.reasons].sort(compareText),
348
- // 確実の門(sc-012)。拒否理由を「宣言を直せば機械で通る」「AIが変換すべき」へ分類し、
349
- // 次に誰が動くべきかを事実として返す。可否は決めない。
350
- gate: explainSeamGate(resolved.reasons ?? []),
351
- // 判定の前に宣言をどれだけ観測へ合わせたか。空配列は「予測が実態を覆っていた」という
352
- // 意味であり、翻訳しなかったことと区別できる。
353
- reconciled: [...(resolved.widened ?? [])]
354
- .map((entry) => ({
355
- todo_id: entry.todo_id,
356
- resource: { kind: entry.resource.kind, target: entry.resource.target },
357
- fields: [...entry.fields].sort(compareText),
358
- }))
359
- .sort((left, right) => compareText(
360
- `${left.todo_id}\0${left.resource.kind}\0${left.resource.target}`,
361
- `${right.todo_id}\0${right.resource.kind}\0${right.resource.target}`,
362
- )),
363
- split: resolved.split ?? null,
364
- successor_base_sha: resolved.successor_base_sha ?? null,
365
- successor_base_ref: resolved.successor_base_ref ?? null,
366
- resolution_digest: '',
367
- };
368
- resolution.resolution_digest = todoSelfDigest(resolution, 'resolution_digest');
369
- return resolution;
370
- }
371
-
372
- /**
373
- * seam_split再計画で、後継baseが本当に変換を含むかを検査する(ADR 0141)。
374
- *
375
- * これが無い間、`mode: 'seam_split'`の再計画requestは**変換を含まないbaseを指していても通った**。
376
- * splitは新しい面の所有を宣言するのに、compileされる後継treeにそのfileが無い——rb工程で
377
- * 直したのと同じ欠陥が、管理runtimeの層に残っていた。
378
- *
379
- * 検査するのは3つ。どれもLatticeが既に持っているartifactだけで判定でき、推定を含まない。
380
- *
381
- * 1. baseが前進し、かつ旧baseの子孫であること。変換が着地していなければ前進しない。
382
- * 2. splitが「消える」と述べた競合辺が、後継planに実際に無いこと。後継treeに変換が
383
- * 載っていなければ両TODOは同じfileを書き続けるので、この辺は消えない。
384
- * 3. splitが新たに所有すると述べた資源が、後継requestで**creationとして宣言されていない**こと。
385
- * seam splitは既存codeを新しい面へ移す操作であり、変換が既に作っている。これから作る、
386
- * と宣言されているなら、指しているbaseは変換前である。
387
- */
388
- export function verifySeamSplitSuccessor({
389
- split, predecessorBaseSha, successorBaseSha, successorIsDescendant,
390
- successorConflicts = [], successorWitness = {},
391
- } = {}) {
392
- const reasons = [];
393
- if (successorBaseSha === predecessorBaseSha) reasons.push('successor_base_not_advanced');
394
- else if (successorIsDescendant !== true) reasons.push('successor_base_not_descendant');
395
-
396
- const removedEdges = split?.edge_diff?.removed ?? [];
397
- const remaining = new Set(successorConflicts
398
- .map(({ todo_ids: ids }) => [...ids].sort(compareText).join('\0')));
399
- for (const edge of removedEdges) {
400
- const key = [edge.from_todo_id, edge.to_todo_id].sort(compareText).join('\0');
401
- if (remaining.has(key)) reasons.push(`declared_removed_conflict_persists:${key.replace('\0', ',')}`);
402
- }
403
-
404
- for (const added of split?.ownership_diff?.added ?? []) {
405
- const owns = successorWitness[added.owner_todo_id]?.owns ?? [];
406
- for (const own of owns) {
407
- const resourceId = `own-${own.kind}-${sha16(own.target)}`;
408
- if (resourceId === added.resource_id && own.creates === true) {
409
- reasons.push(`declared_owned_surface_is_creation:${added.owner_todo_id}`);
410
- }
411
- }
412
- }
413
- return { ok: reasons.length === 0, reasons: [...new Set(reasons)].sort(compareText) };
414
- }
415
-
416
- /** `<runDir>/findings/<digest>.json`を読む。存在しない/別epochのfindingは受けない。 */
417
- export async function readRuntimeFindingRecord({ runDir, findingDigest, planEpoch }) {
418
- const filePath = path.join(runDir, 'findings', `${findingDigest}.json`);
419
- let record;
420
- try {
421
- record = JSON.parse(await readFile(filePath, 'utf8'));
422
- } catch {
423
- return { record: null, reason: 'finding_not_recorded' };
424
- }
425
- if (record?.finding_digest !== findingDigest) return { record: null, reason: 'finding_digest_mismatch' };
426
- if (record.plan_epoch !== planEpoch) return { record: null, reason: 'finding_from_other_epoch' };
427
- return { record, reason: null };
428
- }
1
+ /**
2
+ * 実行時に観測した競合を、実際の変換で解消するproduct入口(請求項8)。
3
+ *
4
+ * これが無い間、変換の中身は動くのに実運転からそこへ行く道が無かった。実運転側が使う
5
+ * `routeConflictTreatment`は「事前宣言済みtreatmentがpathを覆う時だけseam_transform」なので、
6
+ * **予期しなかった競合は変換にかからず直列へ退化していた**。
7
+ *
8
+ * 装置の境界にAIを含める(AGENTS.md)。したがってここでLatticeが供給するのは、AIが自分では
9
+ * 作れないもの——構造観測、隔離実行、五条件の検証、変換の確定と記録——だけである。
10
+ * 「どのTODOが係争fileの中のどのsymbolを触るか」「新しい面をどう名付けるか」はAIが既に
11
+ * 知っているので、宣言として受け取る。推定しない。
12
+ */
13
+
14
+ import path from 'node:path';
15
+ import { createHash } from 'node:crypto';
16
+ import { readFile } from 'node:fs/promises';
17
+
18
+ import { digestArtifact } from './artifact-contracts.mjs';
19
+ import { commitSeamTransform } from './seam-commit.mjs';
20
+ import { applySeamConflict } from './seam-apply.mjs';
21
+ import { resolveRuntimeSeamTreatment } from './runtime-seam-treatment.mjs';
22
+ import { affectedTestsFromEvidence } from './runtime-front-end.mjs';
23
+ import { explainSeamGate } from './seam-gate.mjs';
24
+ import { collectWitnessSensorEvidence, compileTodoIndependence } from './todo-independence.mjs';
25
+ import { todoSelfDigest } from './todo-contracts.mjs';
26
+ import { TODO_WITNESS_SET_SCHEMA } from './todo-independence-contracts.mjs';
27
+
28
+ export const RUNTIME_SEAM_REQUEST_SCHEMA = 'lattice.runtime_seam_request.v1';
29
+ // v2は翻訳段(`reconciled`)の追加である。宣言を観測へ合わせてから判定するようになったので、
30
+ // どの宣言の上で五条件を見たかが決着の一部になった。v1の形のまま中身を変えると、記録が何に
31
+ // ついてのものか確定しなくなる。
32
+ export const RUNTIME_SEAM_RESOLUTION_SCHEMA = 'lattice.runtime_seam_resolution.v2';
33
+
34
+ /** 合成するtodo planのkey。実行時planとは別空間なので固定でよい。 */
35
+ const SYNTHETIC_PLAN_KEY = 'runtime';
36
+ const HEX_DIGEST = /^[0-9a-f]{64}$/u;
37
+ const REPO_PATH = /^(?!\/)(?!.*(?:^|\/)\.\.(?:\/|$))[\w./-]+$/u;
38
+ const IDENTIFIER = /^[0-9A-Za-z](?:[0-9A-Za-z._-]{0,127})$/u;
39
+
40
+ const compareText = (left, right) => (left < right ? -1 : left > right ? 1 : 0);
41
+
42
+ /** 資源idはruntime front-endと同じ合成形にする(`own-<kind>-<sha16>`)。 */
43
+ const sha16 = (value) => createHash('sha256').update(value, 'utf8').digest('hex').slice(0, 16);
44
+
45
+ function plainObject(value) {
46
+ return typeof value === 'object' && value !== null && !Array.isArray(value);
47
+ }
48
+
49
+ function exactRecord(value, keys) {
50
+ if (!plainObject(value)) return false;
51
+ const own = Object.keys(value);
52
+ return own.length === keys.length && keys.every((key) => Object.hasOwn(value, key));
53
+ }
54
+
55
+ /**
56
+ * AIが出す宣言。ここに書くのは「係争fileの中で各TODOが触るsymbol」「新しい面の名前」
57
+ * 「後継planへ渡すtask migrationのdigest」だけで、どれもAIが既に持っている情報である。
58
+ */
59
+ export function validateRuntimeSeamRequest(value) {
60
+ if (!exactRecord(value, [
61
+ 'schema', 'run_id', 'finding_digest', 'concern_symbols', 'path_names',
62
+ 'task_migration_digest', 'request_digest',
63
+ ])) return false;
64
+ if (value.schema !== RUNTIME_SEAM_REQUEST_SCHEMA) return false;
65
+ if (!IDENTIFIER.test(value.run_id ?? '')) return false;
66
+ if (!HEX_DIGEST.test(value.finding_digest ?? '')) return false;
67
+ if (!HEX_DIGEST.test(value.task_migration_digest ?? '')) return false;
68
+ if (!plainObject(value.concern_symbols) || !plainObject(value.path_names)) return false;
69
+
70
+ const todoIds = Object.keys(value.concern_symbols);
71
+ if (todoIds.length < 2 || todoIds.length > 64) return false;
72
+ for (const todoId of todoIds) {
73
+ if (!IDENTIFIER.test(todoId)) return false;
74
+ const symbols = value.concern_symbols[todoId];
75
+ if (!Array.isArray(symbols) || symbols.length === 0 || symbols.length > 256) return false;
76
+ if (!symbols.every((symbol) => IDENTIFIER.test(symbol))) return false;
77
+ if (!REPO_PATH.test(value.path_names[todoId] ?? '')) return false;
78
+ }
79
+ // sharedはresidualから切り出す共有面。TODOに属さないので別枠で必ず要る。
80
+ if (!REPO_PATH.test(value.path_names.shared ?? '')) return false;
81
+ if (!exactRecord(value.path_names, [...todoIds, 'shared'])) return false;
82
+ if (!HEX_DIGEST.test(value.request_digest ?? '')) return false;
83
+ return value.request_digest === todoSelfDigest(value, 'request_digest');
84
+ }
85
+
86
+ /**
87
+ * 観測された実態へ宣言を合わせる(翻訳段)。
88
+ *
89
+ * 実行時のpath競合は、**片方がその資源を所有していないから起きる**。所有していない資源の内側に
90
+ * 担当は主張できない(`concern_anchor_resource_not_owned`)ので、宣言のままでは変換の入力が
91
+ * 組めない——請求項8は、実行時に見つかった競合の形をそのままでは受け取れなかった。
92
+ *
93
+ * 境界は計画時の**予測**であって、workerを閉じ込める制約ではない。予測を超えたのは予測が狭かった
94
+ * からであり、作業が不正だったからではない。したがって操作は「破った側を直す」ではなく、観測が
95
+ * 示した実態へ宣言を合わせることであり、**対称**である——どちらの足跡が予測を超えたかは観測が
96
+ * 決めるので、ここでは関与TODOを同じ規則で扱う。
97
+ *
98
+ * これは3つ目の処置ではない。翻訳を通ると計画時競合の形(`owns`の交差)になり、そこから先は
99
+ * 既存の請求項7/8がそのまま適用できる。競合辺が立つのは翻訳の副産物ではなく目的である——
100
+ * 立たないままだと`overlap_reduced`が最初から満たされたことになり、変換の検証が無意味になる。
101
+ *
102
+ * 広げるのは観測が示した資源だけとする。findingが持つ係争pathも関与TODOも観測であって推定では
103
+ * ない。広げた事実は呼び出し側へ返す。黙って広げると、予測が外れたことも、判定がどの宣言の上で
104
+ * 行われたかも残らない。
105
+ *
106
+ * **所有の宣言は裏取りと対で広げる。** `owns`だけ足すとその資源は`sensor_unbound`になり、compileは
107
+ * 非dispatchable(`BOUNDARY_UNKNOWN`)へ落ちる。そこでは競合が投影されないので、翻訳したのに
108
+ * 競合辺が立たず、変換の便益が測れない。裏取りに使えるqueryがrun のquery setに無ければ、
109
+ * 広げずに理由を返す——証明できない宣言を作らない。
110
+ */
111
+ export function reconcileWitnessToObservation({
112
+ manualWitness, contestedPath, todoIds, sensorQuerySet = null, observedAffectedTests = null,
113
+ } = {}) {
114
+ const reconciled = {};
115
+ const widened = [];
116
+ const reject = (reason) => ({ manualWitness: null, widened: [], reasons: [reason] });
117
+ // 係争pathを覆えるqueryを、run のquery setから拾う。無ければ翻訳しない。
118
+ //
119
+ // `affected`だけを見る。path所有を裏取りするのはこのoperationであり、構造query(query/callers/
120
+ // callees/impact)はsymbolを的にする。構造queryがたまたま同じ文字列をtargetに持つからといって
121
+ // 所有の裏取りへ流用すると、束縛の意味が変わる。
122
+ const covering = (sensorQuerySet?.queries ?? [])
123
+ .filter((query) => query.operation === 'affected' && query.target === contestedPath)
124
+ .map((query) => query.id)
125
+ .sort(compareText);
126
+
127
+ for (const todoId of todoIds) {
128
+ const witness = manualWitness?.[todoId];
129
+ if (!plainObject(witness)) return reject(`witness_absent:${todoId}`);
130
+ const next = structuredClone(witness);
131
+ const ownsPath = (next.owns ?? [])
132
+ .some((own) => own.kind === 'path' && own.target === contestedPath);
133
+ const writesPath = (next.writes ?? []).includes(contestedPath);
134
+ const boundPath = (next.sensor_provenance?.queries ?? [])
135
+ .some((entry) => (entry.expect?.kind === 'affected' || entry.expect?.kind === 'path')
136
+ && entry.expect?.path === contestedPath);
137
+ // 既に所有と書き込みを宣言しているなら、観測は予測の内側にある。合わせるものが無いので
138
+ // 触らない——裏取りが足りているかどうかは、その宣言を書いた側の問題であり、compileが見る。
139
+ // 翻訳が手を入れてよいのは、観測が予測を超えた分だけである。
140
+ if (ownsPath && writesPath) {
141
+ reconciled[todoId] = next;
142
+ continue;
143
+ }
144
+ if (!boundPath) {
145
+ if (covering.length === 0) return reject(`observation_unbacked:${todoId}:${contestedPath}`);
146
+ // 同じ資源は同じqueryで裏取りする。TODOごとに別のqueryを選ぶと、front-endが被覆の
147
+ // 曖昧さとして弾く。
148
+ if (covering.length > 1) return reject(`observation_binding_ambiguous:${contestedPath}`);
149
+ // 観測できていないaffectedを推測で埋めない。
150
+ if (!Array.isArray(observedAffectedTests)) {
151
+ return reject(`observation_affected_unread:${contestedPath}`);
152
+ }
153
+ }
154
+ // 所有・書き込み・裏取りをまとめて足す。観測されたのは「このpathへの書き込み」であり、
155
+ // 宣言の一部だけを合わせると、宣言が実態からずれたまま次の判定の前提になる。`creates`は
156
+ // 付けない——観測できたのはpathが既に在るからである。
157
+ if (!ownsPath) next.owns = [...next.owns, { kind: 'path', target: contestedPath }]
158
+ .sort((left, right) => compareText(`${left.kind}\0${left.target}`, `${right.kind}\0${right.target}`));
159
+ if (!writesPath) next.writes = [...next.writes, contestedPath].sort(compareText);
160
+ if (!boundPath) {
161
+ next.sensor_provenance = {
162
+ ...next.sensor_provenance,
163
+ queries: [...next.sensor_provenance.queries,
164
+ { query_id: covering[0], expect: { kind: 'affected', path: contestedPath } }],
165
+ };
166
+ // 面を1つ引き受けたら、その面のaffected testも引き受ける。宣言と観測はTODO単位で
167
+ // exact一致を要求されるので、片方だけ広げるとdriftになる。
168
+ next.affected_tests = [...new Set([...next.affected_tests, ...observedAffectedTests])]
169
+ .sort(compareText);
170
+ }
171
+ reconciled[todoId] = next;
172
+ widened.push({
173
+ todo_id: todoId,
174
+ resource: { kind: 'path', target: contestedPath },
175
+ fields: [
176
+ ...(ownsPath ? [] : ['owns']),
177
+ ...(writesPath ? [] : ['writes']),
178
+ ...(boundPath ? [] : ['affected_tests', 'sensor_provenance']),
179
+ ].sort(compareText),
180
+ });
181
+ }
182
+ return { manualWitness: reconciled, widened, reasons: [] };
183
+ }
184
+
185
+ /**
186
+ * 実行時witnessへconcern anchorを足してtodo witness setにする。
187
+ *
188
+ * 実行時のmanual_witnessはconcern_anchorsを持たない(`lattice.run_request.v4`)。持たせるのでなく、
189
+ * 宣言から足す——係争資源の中のどのsymbolを触るかは実行時に確定する情報であり、run開始時点の
190
+ * 契約に書けるものではないからである。
191
+ *
192
+ * anchorを足す前に宣言を観測へ合わせる(`reconcileWitnessToObservation`)。この順序でないと、
193
+ * 係争資源を所有していないTODOのanchorが必ず不正になる。
194
+ */
195
+ export function buildRuntimeSeamWitnessSet({
196
+ request, declaration, contestedPath, executors, observedAffectedTests = null,
197
+ }) {
198
+ const todoIds = Object.keys(declaration.concern_symbols).sort(compareText);
199
+ const translated = reconcileWitnessToObservation({
200
+ manualWitness: request.manual_witness, contestedPath, todoIds,
201
+ sensorQuerySet: request.sensor_query_set, observedAffectedTests,
202
+ });
203
+ if (translated.manualWitness === null) {
204
+ return { witnessSet: null, widened: [], reasons: translated.reasons };
205
+ }
206
+ const manual = {};
207
+ for (const todoId of todoIds) {
208
+ manual[todoId] = {
209
+ ...translated.manualWitness[todoId],
210
+ concern_anchors: [{
211
+ within: { kind: 'path', target: contestedPath },
212
+ symbols: [...declaration.concern_symbols[todoId]].sort(compareText),
213
+ }],
214
+ };
215
+ }
216
+ const witnessSet = {
217
+ schema: TODO_WITNESS_SET_SCHEMA,
218
+ project_id: SYNTHETIC_PLAN_KEY,
219
+ plan_key: SYNTHETIC_PLAN_KEY,
220
+ capacity: { executors },
221
+ sensor_query_set: structuredClone(request.sensor_query_set),
222
+ manual_witness: manual,
223
+ witness_set_digest: '',
224
+ };
225
+ witnessSet.witness_set_digest = todoSelfDigest(witnessSet, 'witness_set_digest');
226
+ return { witnessSet, widened: translated.widened, reasons: [] };
227
+ }
228
+
229
+ function syntheticTodoPlan(todoIds) {
230
+ return {
231
+ schema: 'lattice.todo_plan.v2',
232
+ project_id: SYNTHETIC_PLAN_KEY,
233
+ plan_key: SYNTHETIC_PLAN_KEY,
234
+ plan_version: 'v1',
235
+ topology_digest: digestArtifact({ tasks: [...todoIds].sort(compareText) }),
236
+ tasks: [...todoIds].sort(compareText).map((taskId) => ({ task_id: taskId })),
237
+ };
238
+ }
239
+
240
+ /**
241
+ * 記録済みfindingと宣言から、変換を導出・適用・検証・確定して処置を返す。
242
+ *
243
+ * 五条件(ADR 0138)を1つでも欠いたら意図的直列を返す。確定できなければ採用しない(ADR 0141)。
244
+ * 「変換した」と言いながら再開できない状態を作らない。
245
+ */
246
+ export async function resolveRuntimeSeam({
247
+ repoRoot, runDir, findingRecord, bundle, declaration, latticeBin, compiledAt,
248
+ } = {}) {
249
+ const finding = findingRecord.finding;
250
+ const request = bundle.request;
251
+ const baseSha = request.repo.base_sha;
252
+ const todoIds = Object.keys(declaration.concern_symbols).sort(compareText);
253
+
254
+ if (finding.kind !== 'observed_write_conflict' || typeof finding.path !== 'string') {
255
+ return { lane: 'intentional_serial', reasons: ['finding_not_write_conflict'], split: null, widened: [] };
256
+ }
257
+ const findingTodoIds = [...finding.todo_ids].sort(compareText);
258
+ if (findingTodoIds.join('\0') !== todoIds.join('\0')) {
259
+ return {
260
+ lane: 'intentional_serial',
261
+ reasons: ['declared_todos_differ_from_finding'],
262
+ split: null,
263
+ widened: [],
264
+ };
265
+ }
266
+
267
+ // sensorは1回だけ引く。翻訳(宣言を観測へ合わせる)とcompileは同じ観測の上で行う——
268
+ // 別々に引くと、翻訳が見た実態とcompileが見た実態がずれうる。
269
+ const sensorEvidence = await collectWitnessSensorEvidence({
270
+ cwd: repoRoot, witnessSet: { sensor_query_set: request.sensor_query_set },
271
+ });
272
+ const built = buildRuntimeSeamWitnessSet({
273
+ request, declaration, contestedPath: finding.path,
274
+ executors: request.capacity.executors,
275
+ observedAffectedTests: affectedTestsFromEvidence({
276
+ sensorEvidence, querySet: request.sensor_query_set, path: finding.path,
277
+ }),
278
+ });
279
+ if (built.witnessSet === null) {
280
+ return { lane: 'intentional_serial', reasons: built.reasons, split: null, widened: [] };
281
+ }
282
+ const witnessSet = built.witnessSet;
283
+ const plan = syntheticTodoPlan(todoIds);
284
+
285
+ // 観測したaffected testsだけを検証に使う。宣言から発明しない。翻訳後の宣言から採る——
286
+ // 所有が広がったTODOは、その面のtestも自分のaffectedとして引き受けている。
287
+ const affectedTests = [...new Set(todoIds
288
+ .flatMap((todoId) => witnessSet.manual_witness[todoId].affected_tests))].sort(compareText);
289
+
290
+ const baseArtifact = compileTodoIndependence({
291
+ witnessSet, plan, baseSha, compiledAt, sensorEvidence,
292
+ });
293
+
294
+ const pathNames = { ...declaration.path_names };
295
+ // 翻訳で広げた宣言は決着へ載せる。どの宣言の上で五条件を判定したかが残らないと、
296
+ // 「変換して通った」という記録が何についてのものか確定しない。
297
+ const resolved = await resolveRuntimeSeamTreatment({
298
+ finding,
299
+ witnessSet,
300
+ pathNames,
301
+ baseSha,
302
+ manifestDigest: baseArtifact.result_digest,
303
+ affectedTests,
304
+ taskMigrationDigest: declaration.task_migration_digest,
305
+ // storeへ記録されたfindingのidで縛る。再計画側はこのidでfinding recordを読む。
306
+ recordedFindingDigest: findingRecord.finding_digest,
307
+ commitTransform: async ({ files, candidateId }) => commitSeamTransform({
308
+ repoRoot, baseSha, files, candidateId,
309
+ }),
310
+ applyConflict: async ({ conflict }) => {
311
+ const applied = await applySeamConflict({
312
+ repoRoot,
313
+ planKey: SYNTHETIC_PLAN_KEY,
314
+ conflict,
315
+ witnessSet,
316
+ latticeBin,
317
+ sharedPathFor: () => declaration.path_names.shared,
318
+ executors: request.capacity.executors,
319
+ precedences: bundle.plan.precedence,
320
+ pathNames,
321
+ compileIndependence: {
322
+ baseArtifact,
323
+ inWorktree: async ({ worktreePath, witnessSet: postWitness }) => compileTodoIndependence({
324
+ witnessSet: postWitness,
325
+ plan,
326
+ baseSha,
327
+ compiledAt,
328
+ sensorEvidence: await collectWitnessSensorEvidence({
329
+ cwd: worktreePath, witnessSet: postWitness,
330
+ }),
331
+ }),
332
+ },
333
+ });
334
+ return { ...applied, candidate: applied.candidate ?? null };
335
+ },
336
+ });
337
+ return { ...resolved, widened: built.widened };
338
+ }
339
+
340
+ /** 決着をartifactにする。branchを動かすのは操作するAIなので、行き先を明示して返す。 */
341
+ export function buildRuntimeSeamResolution({ runId, findingDigest, resolved }) {
342
+ const resolution = {
343
+ schema: RUNTIME_SEAM_RESOLUTION_SCHEMA,
344
+ run_id: runId,
345
+ finding_digest: findingDigest,
346
+ lane: resolved.lane,
347
+ reasons: [...resolved.reasons].sort(compareText),
348
+ // 確実の門(sc-012)。拒否理由を「宣言を直せば機械で通る」「AIが変換すべき」へ分類し、
349
+ // 次に誰が動くべきかを事実として返す。可否は決めない。
350
+ gate: explainSeamGate(resolved.reasons ?? []),
351
+ // 判定の前に宣言をどれだけ観測へ合わせたか。空配列は「予測が実態を覆っていた」という
352
+ // 意味であり、翻訳しなかったことと区別できる。
353
+ reconciled: [...(resolved.widened ?? [])]
354
+ .map((entry) => ({
355
+ todo_id: entry.todo_id,
356
+ resource: { kind: entry.resource.kind, target: entry.resource.target },
357
+ fields: [...entry.fields].sort(compareText),
358
+ }))
359
+ .sort((left, right) => compareText(
360
+ `${left.todo_id}\0${left.resource.kind}\0${left.resource.target}`,
361
+ `${right.todo_id}\0${right.resource.kind}\0${right.resource.target}`,
362
+ )),
363
+ split: resolved.split ?? null,
364
+ successor_base_sha: resolved.successor_base_sha ?? null,
365
+ successor_base_ref: resolved.successor_base_ref ?? null,
366
+ resolution_digest: '',
367
+ };
368
+ resolution.resolution_digest = todoSelfDigest(resolution, 'resolution_digest');
369
+ return resolution;
370
+ }
371
+
372
+ /**
373
+ * seam_split再計画で、後継baseが本当に変換を含むかを検査する(ADR 0141)。
374
+ *
375
+ * これが無い間、`mode: 'seam_split'`の再計画requestは**変換を含まないbaseを指していても通った**。
376
+ * splitは新しい面の所有を宣言するのに、compileされる後継treeにそのfileが無い——rb工程で
377
+ * 直したのと同じ欠陥が、管理runtimeの層に残っていた。
378
+ *
379
+ * 検査するのは3つ。どれもLatticeが既に持っているartifactだけで判定でき、推定を含まない。
380
+ *
381
+ * 1. baseが前進し、かつ旧baseの子孫であること。変換が着地していなければ前進しない。
382
+ * 2. splitが「消える」と述べた競合辺が、後継planに実際に無いこと。後継treeに変換が
383
+ * 載っていなければ両TODOは同じfileを書き続けるので、この辺は消えない。
384
+ * 3. splitが新たに所有すると述べた資源が、後継requestで**creationとして宣言されていない**こと。
385
+ * seam splitは既存codeを新しい面へ移す操作であり、変換が既に作っている。これから作る、
386
+ * と宣言されているなら、指しているbaseは変換前である。
387
+ */
388
+ export function verifySeamSplitSuccessor({
389
+ split, predecessorBaseSha, successorBaseSha, successorIsDescendant,
390
+ successorConflicts = [], successorWitness = {},
391
+ } = {}) {
392
+ const reasons = [];
393
+ if (successorBaseSha === predecessorBaseSha) reasons.push('successor_base_not_advanced');
394
+ else if (successorIsDescendant !== true) reasons.push('successor_base_not_descendant');
395
+
396
+ const removedEdges = split?.edge_diff?.removed ?? [];
397
+ const remaining = new Set(successorConflicts
398
+ .map(({ todo_ids: ids }) => [...ids].sort(compareText).join('\0')));
399
+ for (const edge of removedEdges) {
400
+ const key = [edge.from_todo_id, edge.to_todo_id].sort(compareText).join('\0');
401
+ if (remaining.has(key)) reasons.push(`declared_removed_conflict_persists:${key.replace('\0', ',')}`);
402
+ }
403
+
404
+ for (const added of split?.ownership_diff?.added ?? []) {
405
+ const owns = successorWitness[added.owner_todo_id]?.owns ?? [];
406
+ for (const own of owns) {
407
+ const resourceId = `own-${own.kind}-${sha16(own.target)}`;
408
+ if (resourceId === added.resource_id && own.creates === true) {
409
+ reasons.push(`declared_owned_surface_is_creation:${added.owner_todo_id}`);
410
+ }
411
+ }
412
+ }
413
+ return { ok: reasons.length === 0, reasons: [...new Set(reasons)].sort(compareText) };
414
+ }
415
+
416
+ /** `<runDir>/findings/<digest>.json`を読む。存在しない/別epochのfindingは受けない。 */
417
+ export async function readRuntimeFindingRecord({ runDir, findingDigest, planEpoch }) {
418
+ const filePath = path.join(runDir, 'findings', `${findingDigest}.json`);
419
+ let record;
420
+ try {
421
+ record = JSON.parse(await readFile(filePath, 'utf8'));
422
+ } catch {
423
+ return { record: null, reason: 'finding_not_recorded' };
424
+ }
425
+ if (record?.finding_digest !== findingDigest) return { record: null, reason: 'finding_digest_mismatch' };
426
+ if (record.plan_epoch !== planEpoch) return { record: null, reason: 'finding_from_other_epoch' };
427
+ return { record, reason: null };
428
+ }