@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,554 +1,554 @@
1
- import { createHash } from 'node:crypto';
2
- import { readFile, writeFile } from 'node:fs/promises';
3
- import path from 'node:path';
4
-
5
- import {
6
- canonicalizeArtifact,
7
- digestArtifact,
8
- validateBoundaryManifest,
9
- validateBoundaryVerdict,
10
- validatePlanGraph,
11
- validateTransformArtifact,
12
- } from './artifact-contracts.mjs';
13
- import { runIsolatedTransform } from './isolation-runner.mjs';
14
- import { isCanonicalUtcTimestamp } from './timestamp-contract.mjs';
15
-
16
- const SHA256 = /^[0-9a-f]{64}$/;
17
- const SHA1 = /^[0-9a-f]{40}$/;
18
- const PORTABLE_SENSOR_PROJECTION = 'lattice.sensor_portable_outcome.v1';
19
- const CANDIDATE_ID = 'extract-dispatch-policies';
20
- const FIXTURE_ENTRY = 'research/fixtures/dispatch-record/src/dispatch-record.mjs';
21
- const CHANNEL_PATH = 'research/fixtures/dispatch-record/src/dispatch-channel.mjs';
22
- const LABEL_PATH = 'research/fixtures/dispatch-record/src/dispatch-label.mjs';
23
- const ALLOWED_PATHS = Object.freeze([CHANNEL_PATH, LABEL_PATH, FIXTURE_ENTRY]);
24
- const VERIFIERS = Object.freeze([{
25
- id: 'dispatch-characterization',
26
- command: 'node',
27
- args: ['--test', '--test-reporter=dot', 'test/research-dispatch-record.test.mjs'],
28
- }]);
29
-
30
- const CHANNEL_SOURCE = [
31
- "export function selectDispatchChannel(priority) {",
32
- " if (priority !== 'urgent' && priority !== 'routine') {",
33
- " throw new TypeError('priority must be urgent or routine');",
34
- ' }',
35
- '',
36
- " return priority === 'urgent' ? 'pager' : 'queue';",
37
- '}',
38
- '',
39
- ].join('\n');
40
-
41
- const LABEL_SOURCE = [
42
- 'function nonEmptyString(value, field) {',
43
- " if (typeof value !== 'string' || value.trim().length === 0) {",
44
- ' throw new TypeError(`${field} must be a non-empty string`);',
45
- ' }',
46
- ' return value.trim();',
47
- '}',
48
- '',
49
- 'export function formatDispatchLabel(recipient, title) {',
50
- " const normalizedRecipient = nonEmptyString(recipient, 'recipient');",
51
- " const normalizedTitle = nonEmptyString(title, 'title');",
52
- ' return `${normalizedRecipient}:${normalizedTitle}`;',
53
- '}',
54
- '',
55
- ].join('\n');
56
-
57
- const COMPOSITION_SOURCE = [
58
- "import { selectDispatchChannel } from './dispatch-channel.mjs';",
59
- "import { formatDispatchLabel } from './dispatch-label.mjs';",
60
- '',
61
- "const INPUT_KEYS = ['priority', 'recipient', 'title'];",
62
- '',
63
- 'function isPlainObject(value) {',
64
- ' return value !== null',
65
- " && typeof value === 'object'",
66
- ' && !Array.isArray(value)',
67
- ' && Object.getPrototypeOf(value) === Object.prototype;',
68
- '}',
69
- '',
70
- 'function hasExactInputKeys(value) {',
71
- ' if (!isPlainObject(value)) {',
72
- ' return false;',
73
- ' }',
74
- '',
75
- ' const actual = Object.keys(value).sort();',
76
- ' return actual.length === INPUT_KEYS.length',
77
- ' && actual.every((key, index) => key === INPUT_KEYS[index]);',
78
- '}',
79
- '',
80
- 'export function buildDispatchRecord(input) {',
81
- ' if (!hasExactInputKeys(input)) {',
82
- ' throw new TypeError(',
83
- " 'dispatch input must be a plain object with exact keys: priority, recipient, title',",
84
- ' );',
85
- ' }',
86
- '',
87
- ' const channel = selectDispatchChannel(input.priority);',
88
- ' const label = formatDispatchLabel(input.recipient, input.title);',
89
- '',
90
- ' return Object.freeze({ channel, label });',
91
- '}',
92
- '',
93
- ].join('\n');
94
-
95
- function fail(reason) {
96
- throw new TypeError(`RC1 seam transform契約違反: ${reason}`);
97
- }
98
-
99
- function sha256(value) {
100
- return createHash('sha256').update(value).digest('hex');
101
- }
102
-
103
- function sameArray(left, right) {
104
- return left.length === right.length && left.every((entry, index) => entry === right[index]);
105
- }
106
-
107
- function exactRecord(value, keys) {
108
- if (value === null || typeof value !== 'object' || Array.isArray(value)
109
- || Object.getPrototypeOf(value) !== Object.prototype) {
110
- return false;
111
- }
112
- const actual = Object.keys(value).sort();
113
- const expected = [...keys].sort();
114
- return actual.length === expected.length
115
- && actual.every((key, index) => key === expected[index]);
116
- }
117
-
118
- function evidenceArtifact(value) {
119
- return exactRecord(value, ['digest', 'canonical_bytes'])
120
- && typeof value.digest === 'string'
121
- && SHA256.test(value.digest)
122
- && Number.isSafeInteger(value.canonical_bytes)
123
- && value.canonical_bytes > 0;
124
- }
125
-
126
- function evidenceArtifactSet(value) {
127
- return exactRecord(value, ['boundary_manifest', 'boundary_verdict', 'plan_graph'])
128
- && Object.values(value).every((artifact) => evidenceArtifact(artifact));
129
- }
130
-
131
- function portableOutcomeRecord(value) {
132
- return exactRecord(value, ['id', 'operation', 'outcome', 'result_digest'])
133
- && typeof value.id === 'string'
134
- && value.id.length > 0
135
- && typeof value.operation === 'string'
136
- && value.operation.length > 0
137
- && typeof value.outcome === 'string'
138
- && value.outcome.length > 0
139
- && typeof value.result_digest === 'string'
140
- && SHA256.test(value.result_digest);
141
- }
142
-
143
- function assertPortableLatticeSensorEvidence(sensor, { querySet, graphEvidence }) {
144
- if (!exactRecord(sensor, [
145
- 'version',
146
- 'file_count',
147
- 'node_count',
148
- 'edge_count',
149
- 'pending_changes',
150
- 'pending_refs',
151
- 'worktree_mismatch',
152
- 'fresh_index_repetitions',
153
- 'raw_outcomes_digests',
154
- 'raw_outcomes_equal',
155
- 'portable_outcomes_digest',
156
- 'portable_outcomes_equal',
157
- 'outcomes',
158
- ])
159
- || typeof sensor.version !== 'string'
160
- || sensor.version.length === 0
161
- || !Number.isSafeInteger(sensor.file_count)
162
- || sensor.file_count <= 0
163
- || !Number.isSafeInteger(sensor.node_count)
164
- || sensor.node_count <= 0
165
- || !Number.isSafeInteger(sensor.edge_count)
166
- || sensor.edge_count <= 0
167
- || !exactRecord(sensor.pending_changes, ['added', 'modified', 'removed'])
168
- || Object.values(sensor.pending_changes).some((count) => count !== 0)
169
- || sensor.pending_refs !== 0
170
- || sensor.worktree_mismatch !== null
171
- || sensor.fresh_index_repetitions !== 2
172
- || !Array.isArray(sensor.raw_outcomes_digests)
173
- || sensor.raw_outcomes_digests.length !== 2
174
- || sensor.raw_outcomes_digests.some((digest) => (
175
- typeof digest !== 'string' || !SHA256.test(digest)
176
- ))
177
- || new Set(sensor.raw_outcomes_digests).size !== 2
178
- || sensor.raw_outcomes_equal !== false
179
- || typeof sensor.portable_outcomes_digest !== 'string'
180
- || !SHA256.test(sensor.portable_outcomes_digest)
181
- || sensor.portable_outcomes_equal !== true
182
- || !Array.isArray(sensor.outcomes)
183
- || sensor.outcomes.length === 0
184
- || sensor.outcomes.some((outcome) => !portableOutcomeRecord(outcome))) {
185
- fail('portable LatticeSensor portability proofが不正');
186
- }
187
-
188
- if (!Array.isArray(querySet.queries)
189
- || sensor.outcomes.length !== querySet.queries.length
190
- || sensor.outcomes.some((outcome, index) => (
191
- outcome.id !== querySet.queries[index]?.id
192
- || outcome.operation !== querySet.queries[index]?.operation
193
- ))) {
194
- fail('portable LatticeSensor evidenceがquery setと一致しない');
195
- }
196
-
197
- const compiledGraphEvidence = sensor.outcomes.map((outcome) => ({
198
- id: outcome.id,
199
- operation: outcome.operation,
200
- status: outcome.outcome,
201
- result_digest: outcome.result_digest,
202
- }));
203
- if (JSON.stringify(compiledGraphEvidence) !== JSON.stringify(graphEvidence)) {
204
- fail('portable LatticeSensor evidenceがboundary manifestのgraph evidenceと一致しない');
205
- }
206
- }
207
-
208
- function assertControlCompilationEvidence(evidence, {
209
- manifestDigest,
210
- verdictDigest,
211
- controlPlanDigest,
212
- querySetDigest,
213
- codeSnapshotDigest,
214
- querySet,
215
- graphEvidence,
216
- }) {
217
- if (!exactRecord(evidence, [
218
- 'schema',
219
- 'observed_at',
220
- 'head',
221
- 'executor_head',
222
- 'graph_digest_projection',
223
- 'input_digests',
224
- 'sensor',
225
- 'artifacts',
226
- 'observed_facts',
227
- 'presentation_note',
228
- ])
229
- || evidence.schema !== 'lattice.rc1.control_compilation_evidence.v2'
230
- || evidence.graph_digest_projection !== PORTABLE_SENSOR_PROJECTION) {
231
- fail('portable control compilation evidence v2またはprojectionが不正');
232
- }
233
- if (!isCanonicalUtcTimestamp(evidence.observed_at)
234
- || typeof evidence.head !== 'string'
235
- || !SHA1.test(evidence.head)
236
- || typeof evidence.executor_head !== 'string'
237
- || !SHA1.test(evidence.executor_head)
238
- || !exactRecord(evidence.input_digests, [
239
- 'plan_input',
240
- 'query_set',
241
- 'manual_normal',
242
- 'manual_shared_state_negative',
243
- 'code_snapshot',
244
- ])
245
- || Object.values(evidence.input_digests).some((digest) => (
246
- typeof digest !== 'string' || !SHA256.test(digest)
247
- ))
248
- || !exactRecord(evidence.artifacts, ['control', 'shared_state_negative'])
249
- || !evidenceArtifactSet(evidence.artifacts.control)
250
- || !evidenceArtifactSet(evidence.artifacts.shared_state_negative)) {
251
- fail('control compilation evidenceまたはcontrol baseが不正');
252
- }
253
- assertPortableLatticeSensorEvidence(evidence.sensor, { querySet, graphEvidence });
254
- if (evidence.input_digests.query_set !== querySetDigest
255
- || evidence.input_digests.code_snapshot !== codeSnapshotDigest
256
- || evidence.artifacts.control.boundary_manifest.digest !== manifestDigest
257
- || evidence.artifacts.control.boundary_verdict.digest !== verdictDigest
258
- || evidence.artifacts.control.plan_graph.digest !== controlPlanDigest) {
259
- fail('control compilation evidenceのdigest chainがcontrol artifactと一致しない');
260
- }
261
- return evidence.head;
262
- }
263
-
264
- function assertCandidateInputs({
265
- boundaryManifest,
266
- boundaryVerdict,
267
- controlPlan,
268
- querySet,
269
- controlCompilationEvidence,
270
- }) {
271
- for (const value of [
272
- boundaryManifest,
273
- boundaryVerdict,
274
- controlPlan,
275
- querySet,
276
- controlCompilationEvidence,
277
- ]) {
278
- canonicalizeArtifact(value);
279
- }
280
- if (!validateBoundaryManifest(boundaryManifest)
281
- || !validateBoundaryVerdict(boundaryVerdict)
282
- || !validatePlanGraph(controlPlan)) {
283
- fail('control artifactがpublic contractを満たさない');
284
- }
285
- const manifestDigest = digestArtifact(boundaryManifest);
286
- const verdictDigest = digestArtifact(boundaryVerdict);
287
- const controlPlanDigest = digestArtifact(controlPlan);
288
- const querySetDigest = digestArtifact(querySet);
289
- if (boundaryVerdict.boundary_manifest_digest !== manifestDigest
290
- || controlPlan.source_manifest_digest !== manifestDigest
291
- || boundaryManifest.source.query_set_digest !== querySetDigest) {
292
- fail('control artifactとquery setのdigest chainが一致しない');
293
- }
294
- if (boundaryManifest.conflicts.length !== 1
295
- || boundaryManifest.conflicts[0].kind !== 'write_boundary'
296
- || boundaryManifest.todos.length !== 2
297
- || boundaryManifest.todos.some(({ unknowns }) => unknowns
298
- .some((entry) => !entry.startsWith('new_surface_unknown:')
299
- && !entry.startsWith('path_not_indexed_unknown:')))) {
300
- fail('RC1 normal control以外はseam interventionへ進めない');
301
- }
302
- if (controlPlan.plan_version !== 'rc1-control-v1'
303
- || controlPlan.capacity.writers !== 2
304
- || controlPlan.minimum_feasible_waves !== 2) {
305
- fail('RC1 control plan topologyまたはcapacityがdriftした');
306
- }
307
- if (boundaryVerdict.verdicts.length !== 1
308
- || boundaryVerdict.verdicts[0].verdict !== 'seam_candidate'
309
- || boundaryVerdict.verdicts[0].seam_candidate?.id !== CANDIDATE_ID) {
310
- fail('accepted seam candidateがexactly one存在しない');
311
- }
312
- const candidate = boundaryVerdict.verdicts[0].seam_candidate;
313
- const owns = new Map(candidate.proposed_owns.map((entry) => [entry.todo_id, entry.resources]));
314
- const expected = new Map([
315
- ['channel-policy', [
316
- { kind: 'symbol', target: 'selectDispatchChannel' },
317
- { kind: 'path', target: CHANNEL_PATH },
318
- ]],
319
- ['label-policy', [
320
- { kind: 'symbol', target: 'formatDispatchLabel' },
321
- { kind: 'path', target: LABEL_PATH },
322
- ]],
323
- ]);
324
- if (owns.size !== expected.size
325
- || [...expected].some(([todoId, resources]) => {
326
- const actual = owns.get(todoId);
327
- return JSON.stringify(actual) !== JSON.stringify(resources);
328
- })) {
329
- fail('seam candidate ownershipがfixed interventionと一致しない');
330
- }
331
- const digests = {
332
- manifestDigest,
333
- verdictDigest,
334
- controlPlanDigest,
335
- querySetDigest,
336
- codeSnapshotDigest: boundaryManifest.source.code_snapshot_digest,
337
- };
338
- return {
339
- ...digests,
340
- controlBaseSha: assertControlCompilationEvidence(controlCompilationEvidence, {
341
- ...digests,
342
- querySet,
343
- graphEvidence: boundaryManifest.graph_evidence,
344
- }),
345
- };
346
- }
347
-
348
- function receiptsFromRunner(verifications) {
349
- if (!Array.isArray(verifications) || verifications.length > VERIFIERS.length) {
350
- fail('runner verification receipt数がfixed verifierと一致しない');
351
- }
352
- return verifications.map((receipt, index) => {
353
- const expected = VERIFIERS[index];
354
- if (receipt.command !== expected.command || !sameArray(receipt.args, expected.args)) {
355
- fail('runner receiptがfixed verifier commandと一致しない');
356
- }
357
- return {
358
- id: expected.id,
359
- command: receipt.command,
360
- args: receipt.args,
361
- outcome: receipt.outcome,
362
- exit_code: receipt.exit_code,
363
- stdout_digest: receipt.stdout_digest,
364
- stderr_digest: receipt.stderr_digest,
365
- };
366
- });
367
- }
368
-
369
- function verificationArtifact(status, receipts) {
370
- return {
371
- status,
372
- digest: digestArtifact({ status, receipts }),
373
- receipts,
374
- };
375
- }
376
-
377
- function sourceArtifact(baseSha, digests) {
378
- return {
379
- base_sha: baseSha,
380
- boundary_manifest_digest: digests.manifestDigest,
381
- boundary_verdict_digest: digests.verdictDigest,
382
- control_plan_digest: digests.controlPlanDigest,
383
- query_set_digest: digests.querySetDigest,
384
- code_snapshot_digest: digests.codeSnapshotDigest,
385
- };
386
- }
387
-
388
- async function observeOutput({ worktreePath, changedPaths }) {
389
- if (!sameArray(changedPaths, ALLOWED_PATHS)) {
390
- throw new Error('transform scope does not exactly match the accepted RC1 paths');
391
- }
392
- const files = await Promise.all(changedPaths.map(async (relativePath) => ({
393
- path: relativePath,
394
- content_digest: sha256(await readFile(path.join(worktreePath, relativePath))),
395
- })));
396
- return { snapshot_digest: digestArtifact({ files }), files };
397
- }
398
-
399
- function flattenErrors(error) {
400
- if (!(error instanceof AggregateError)) return [error];
401
- return error.errors.flatMap((entry) => flattenErrors(entry));
402
- }
403
-
404
- function portableReason(error, repoRoot) {
405
- return String(error?.message ?? error)
406
- .split(repoRoot).join('<repo-root>')
407
- .replace(/\S*lattice-isolated-transform-[^\s:]+/g, '<isolated-worktree>')
408
- .replace(/[\u0000-\u001f\u007f]+/g, ' ')
409
- .trim()
410
- .slice(0, 4_096) || 'isolated transform failed without a message';
411
- }
412
-
413
- function rejectionKind(reasons) {
414
- const text = reasons.join(' ').toLowerCase();
415
- if (text.includes('source repository changed')) return 'source_invariant_violation';
416
- if (text.includes('cleanup failed')) return 'cleanup_failure';
417
- if (text.includes('outside allowed paths') || text.includes('transform scope')) return 'scope_violation';
418
- if (text.includes('mutated isolated snapshot')) return 'snapshot_mutation';
419
- if (text.includes('verifier failed')) return 'behavior_verification_failed';
420
- return 'execution_failure';
421
- }
422
-
423
- function rejectedArtifact({ error, repoRoot, digests }) {
424
- const errors = flattenErrors(error);
425
- const evidence = errors.map((entry) => entry.transformEvidence).find(Boolean);
426
- if (!evidence || typeof evidence.baseSha !== 'string') throw error;
427
- if (evidence.baseSha !== digests.controlBaseSha) {
428
- fail('runnerがcontrol compilation evidenceと異なるbaseを使用した');
429
- }
430
- const reasons = [...new Set(errors.map((entry) => portableReason(entry, repoRoot)))];
431
- const kind = rejectionKind(reasons);
432
- const rejection = { kind, reasons };
433
- const receipts = receiptsFromRunner(evidence.verifications);
434
- const verificationStatus = receipts.length === 0 ? 'not_run' : 'failed';
435
- const patch = Buffer.isBuffer(evidence.patch) ? evidence.patch : null;
436
- const changedPaths = Array.isArray(evidence.changedPaths) ? [...evidence.changedPaths].sort() : [];
437
- const cleanupFailed = reasons.some((entry) => entry.toLowerCase().includes('cleanup failed'));
438
- const sourceChanged = reasons.some((entry) => entry.toLowerCase().includes('source repository changed'));
439
- const artifact = {
440
- schema: 'lattice.transform_artifact.v1',
441
- candidate_id: CANDIDATE_ID,
442
- status: 'rejected',
443
- source: sourceArtifact(evidence.baseSha, digests),
444
- scope: { allowed_paths: [...ALLOWED_PATHS], changed_paths: changedPaths },
445
- patch: {
446
- digest: patch ? sha256(patch) : null,
447
- bytes: patch ? patch.byteLength : 0,
448
- },
449
- verification: verificationArtifact(verificationStatus, receipts),
450
- output: { snapshot_digest: null, files: [] },
451
- cleanup: {
452
- status: cleanupFailed ? 'failed' : 'passed',
453
- source_status: sourceChanged ? 'changed' : 'unchanged',
454
- },
455
- rejection: { ...rejection, evidence_digest: digestArtifact(rejection) },
456
- unknowns: patch ? ['post-transform content snapshot unavailable after rejection'] : [
457
- 'changed paths and post-transform snapshot unavailable after rejection',
458
- ],
459
- };
460
- if (!validateTransformArtifact(artifact)) {
461
- fail('生成したrejected transform artifactがpublic contractを満たさない');
462
- }
463
- return { artifact, artifact_digest: digestArtifact(artifact), patch: null };
464
- }
465
-
466
- export async function applyRc1SeamTransform({ worktreePath } = {}) {
467
- if (typeof worktreePath !== 'string' || worktreePath.length === 0) {
468
- throw new TypeError('worktreePath is required');
469
- }
470
- await Promise.all([
471
- writeFile(path.join(worktreePath, CHANNEL_PATH), CHANNEL_SOURCE),
472
- writeFile(path.join(worktreePath, LABEL_PATH), LABEL_SOURCE),
473
- writeFile(path.join(worktreePath, FIXTURE_ENTRY), COMPOSITION_SOURCE),
474
- ]);
475
- }
476
-
477
- /**
478
- * RC1のaccepted seam candidateをdisposable worktreeで実行し、typed artifactへ変換する。
479
- * @param {object} options
480
- * @returns {Promise<{artifact: object, artifact_digest: string, patch: Buffer | null}>}
481
- */
482
- export async function runRc1SeamTreatment({
483
- repoRoot,
484
- baseRef,
485
- boundaryManifest,
486
- boundaryVerdict,
487
- controlPlan,
488
- querySet,
489
- controlCompilationEvidence,
490
- transform = applyRc1SeamTransform,
491
- } = {}) {
492
- if (typeof repoRoot !== 'string' || repoRoot.length === 0
493
- || typeof transform !== 'function') {
494
- throw new TypeError('invalid RC1 seam treatment arguments');
495
- }
496
- if (baseRef !== undefined) {
497
- fail('baseRef overrideは禁止。control compilation evidenceのheadを使う');
498
- }
499
- const digests = assertCandidateInputs({
500
- boundaryManifest,
501
- boundaryVerdict,
502
- controlPlan,
503
- querySet,
504
- controlCompilationEvidence,
505
- });
506
- let output;
507
- let isolated;
508
- try {
509
- isolated = await runIsolatedTransform({
510
- repoRoot,
511
- baseRef: digests.controlBaseSha,
512
- allowedPaths: [...ALLOWED_PATHS],
513
- transform,
514
- verifyCommands: VERIFIERS.map(({ command, args }) => ({ command, args: [...args] })),
515
- observe: async (context) => {
516
- output = await observeOutput(context);
517
- },
518
- });
519
- } catch (error) {
520
- return rejectedArtifact({ error, repoRoot, digests });
521
- }
522
- if (!output || !Buffer.isBuffer(isolated.patch) || !sameArray(isolated.changedPaths, ALLOWED_PATHS)) {
523
- fail('accepted runner resultにpatch、scope、post snapshotが揃っていない');
524
- }
525
- if (isolated.baseSha !== digests.controlBaseSha) {
526
- fail('runnerがcontrol compilation evidenceと異なるbaseを使用した');
527
- }
528
- const receipts = receiptsFromRunner(isolated.verifications);
529
- if (receipts.length !== VERIFIERS.length) {
530
- fail('accepted runner resultが全fixed verifier receiptを持たない');
531
- }
532
- const artifact = {
533
- schema: 'lattice.transform_artifact.v1',
534
- candidate_id: CANDIDATE_ID,
535
- status: 'accepted',
536
- source: sourceArtifact(isolated.baseSha, digests),
537
- scope: { allowed_paths: [...ALLOWED_PATHS], changed_paths: [...isolated.changedPaths] },
538
- patch: { digest: sha256(isolated.patch), bytes: isolated.patch.byteLength },
539
- verification: verificationArtifact('passed', receipts),
540
- output,
541
- cleanup: { status: 'passed', source_status: 'unchanged' },
542
- rejection: null,
543
- unknowns: [],
544
- };
545
- if (!validateTransformArtifact(artifact)) {
546
- fail('生成したaccepted transform artifactがpublic contractを満たさない');
547
- }
548
- if (!SHA256.test(artifact.patch.digest)) fail('patch digestがSHA-256でない');
549
- return {
550
- artifact,
551
- artifact_digest: digestArtifact(artifact),
552
- patch: Buffer.from(isolated.patch),
553
- };
554
- }
1
+ import { createHash } from 'node:crypto';
2
+ import { readFile, writeFile } from 'node:fs/promises';
3
+ import path from 'node:path';
4
+
5
+ import {
6
+ canonicalizeArtifact,
7
+ digestArtifact,
8
+ validateBoundaryManifest,
9
+ validateBoundaryVerdict,
10
+ validatePlanGraph,
11
+ validateTransformArtifact,
12
+ } from './artifact-contracts.mjs';
13
+ import { runIsolatedTransform } from './isolation-runner.mjs';
14
+ import { isCanonicalUtcTimestamp } from './timestamp-contract.mjs';
15
+
16
+ const SHA256 = /^[0-9a-f]{64}$/;
17
+ const SHA1 = /^[0-9a-f]{40}$/;
18
+ const PORTABLE_SENSOR_PROJECTION = 'lattice.sensor_portable_outcome.v1';
19
+ const CANDIDATE_ID = 'extract-dispatch-policies';
20
+ const FIXTURE_ENTRY = 'research/fixtures/dispatch-record/src/dispatch-record.mjs';
21
+ const CHANNEL_PATH = 'research/fixtures/dispatch-record/src/dispatch-channel.mjs';
22
+ const LABEL_PATH = 'research/fixtures/dispatch-record/src/dispatch-label.mjs';
23
+ const ALLOWED_PATHS = Object.freeze([CHANNEL_PATH, LABEL_PATH, FIXTURE_ENTRY]);
24
+ const VERIFIERS = Object.freeze([{
25
+ id: 'dispatch-characterization',
26
+ command: 'node',
27
+ args: ['--test', '--test-reporter=dot', 'test/research-dispatch-record.test.mjs'],
28
+ }]);
29
+
30
+ const CHANNEL_SOURCE = [
31
+ "export function selectDispatchChannel(priority) {",
32
+ " if (priority !== 'urgent' && priority !== 'routine') {",
33
+ " throw new TypeError('priority must be urgent or routine');",
34
+ ' }',
35
+ '',
36
+ " return priority === 'urgent' ? 'pager' : 'queue';",
37
+ '}',
38
+ '',
39
+ ].join('\n');
40
+
41
+ const LABEL_SOURCE = [
42
+ 'function nonEmptyString(value, field) {',
43
+ " if (typeof value !== 'string' || value.trim().length === 0) {",
44
+ ' throw new TypeError(`${field} must be a non-empty string`);',
45
+ ' }',
46
+ ' return value.trim();',
47
+ '}',
48
+ '',
49
+ 'export function formatDispatchLabel(recipient, title) {',
50
+ " const normalizedRecipient = nonEmptyString(recipient, 'recipient');",
51
+ " const normalizedTitle = nonEmptyString(title, 'title');",
52
+ ' return `${normalizedRecipient}:${normalizedTitle}`;',
53
+ '}',
54
+ '',
55
+ ].join('\n');
56
+
57
+ const COMPOSITION_SOURCE = [
58
+ "import { selectDispatchChannel } from './dispatch-channel.mjs';",
59
+ "import { formatDispatchLabel } from './dispatch-label.mjs';",
60
+ '',
61
+ "const INPUT_KEYS = ['priority', 'recipient', 'title'];",
62
+ '',
63
+ 'function isPlainObject(value) {',
64
+ ' return value !== null',
65
+ " && typeof value === 'object'",
66
+ ' && !Array.isArray(value)',
67
+ ' && Object.getPrototypeOf(value) === Object.prototype;',
68
+ '}',
69
+ '',
70
+ 'function hasExactInputKeys(value) {',
71
+ ' if (!isPlainObject(value)) {',
72
+ ' return false;',
73
+ ' }',
74
+ '',
75
+ ' const actual = Object.keys(value).sort();',
76
+ ' return actual.length === INPUT_KEYS.length',
77
+ ' && actual.every((key, index) => key === INPUT_KEYS[index]);',
78
+ '}',
79
+ '',
80
+ 'export function buildDispatchRecord(input) {',
81
+ ' if (!hasExactInputKeys(input)) {',
82
+ ' throw new TypeError(',
83
+ " 'dispatch input must be a plain object with exact keys: priority, recipient, title',",
84
+ ' );',
85
+ ' }',
86
+ '',
87
+ ' const channel = selectDispatchChannel(input.priority);',
88
+ ' const label = formatDispatchLabel(input.recipient, input.title);',
89
+ '',
90
+ ' return Object.freeze({ channel, label });',
91
+ '}',
92
+ '',
93
+ ].join('\n');
94
+
95
+ function fail(reason) {
96
+ throw new TypeError(`RC1 seam transform契約違反: ${reason}`);
97
+ }
98
+
99
+ function sha256(value) {
100
+ return createHash('sha256').update(value).digest('hex');
101
+ }
102
+
103
+ function sameArray(left, right) {
104
+ return left.length === right.length && left.every((entry, index) => entry === right[index]);
105
+ }
106
+
107
+ function exactRecord(value, keys) {
108
+ if (value === null || typeof value !== 'object' || Array.isArray(value)
109
+ || Object.getPrototypeOf(value) !== Object.prototype) {
110
+ return false;
111
+ }
112
+ const actual = Object.keys(value).sort();
113
+ const expected = [...keys].sort();
114
+ return actual.length === expected.length
115
+ && actual.every((key, index) => key === expected[index]);
116
+ }
117
+
118
+ function evidenceArtifact(value) {
119
+ return exactRecord(value, ['digest', 'canonical_bytes'])
120
+ && typeof value.digest === 'string'
121
+ && SHA256.test(value.digest)
122
+ && Number.isSafeInteger(value.canonical_bytes)
123
+ && value.canonical_bytes > 0;
124
+ }
125
+
126
+ function evidenceArtifactSet(value) {
127
+ return exactRecord(value, ['boundary_manifest', 'boundary_verdict', 'plan_graph'])
128
+ && Object.values(value).every((artifact) => evidenceArtifact(artifact));
129
+ }
130
+
131
+ function portableOutcomeRecord(value) {
132
+ return exactRecord(value, ['id', 'operation', 'outcome', 'result_digest'])
133
+ && typeof value.id === 'string'
134
+ && value.id.length > 0
135
+ && typeof value.operation === 'string'
136
+ && value.operation.length > 0
137
+ && typeof value.outcome === 'string'
138
+ && value.outcome.length > 0
139
+ && typeof value.result_digest === 'string'
140
+ && SHA256.test(value.result_digest);
141
+ }
142
+
143
+ function assertPortableLatticeSensorEvidence(sensor, { querySet, graphEvidence }) {
144
+ if (!exactRecord(sensor, [
145
+ 'version',
146
+ 'file_count',
147
+ 'node_count',
148
+ 'edge_count',
149
+ 'pending_changes',
150
+ 'pending_refs',
151
+ 'worktree_mismatch',
152
+ 'fresh_index_repetitions',
153
+ 'raw_outcomes_digests',
154
+ 'raw_outcomes_equal',
155
+ 'portable_outcomes_digest',
156
+ 'portable_outcomes_equal',
157
+ 'outcomes',
158
+ ])
159
+ || typeof sensor.version !== 'string'
160
+ || sensor.version.length === 0
161
+ || !Number.isSafeInteger(sensor.file_count)
162
+ || sensor.file_count <= 0
163
+ || !Number.isSafeInteger(sensor.node_count)
164
+ || sensor.node_count <= 0
165
+ || !Number.isSafeInteger(sensor.edge_count)
166
+ || sensor.edge_count <= 0
167
+ || !exactRecord(sensor.pending_changes, ['added', 'modified', 'removed'])
168
+ || Object.values(sensor.pending_changes).some((count) => count !== 0)
169
+ || sensor.pending_refs !== 0
170
+ || sensor.worktree_mismatch !== null
171
+ || sensor.fresh_index_repetitions !== 2
172
+ || !Array.isArray(sensor.raw_outcomes_digests)
173
+ || sensor.raw_outcomes_digests.length !== 2
174
+ || sensor.raw_outcomes_digests.some((digest) => (
175
+ typeof digest !== 'string' || !SHA256.test(digest)
176
+ ))
177
+ || new Set(sensor.raw_outcomes_digests).size !== 2
178
+ || sensor.raw_outcomes_equal !== false
179
+ || typeof sensor.portable_outcomes_digest !== 'string'
180
+ || !SHA256.test(sensor.portable_outcomes_digest)
181
+ || sensor.portable_outcomes_equal !== true
182
+ || !Array.isArray(sensor.outcomes)
183
+ || sensor.outcomes.length === 0
184
+ || sensor.outcomes.some((outcome) => !portableOutcomeRecord(outcome))) {
185
+ fail('portable LatticeSensor portability proofが不正');
186
+ }
187
+
188
+ if (!Array.isArray(querySet.queries)
189
+ || sensor.outcomes.length !== querySet.queries.length
190
+ || sensor.outcomes.some((outcome, index) => (
191
+ outcome.id !== querySet.queries[index]?.id
192
+ || outcome.operation !== querySet.queries[index]?.operation
193
+ ))) {
194
+ fail('portable LatticeSensor evidenceがquery setと一致しない');
195
+ }
196
+
197
+ const compiledGraphEvidence = sensor.outcomes.map((outcome) => ({
198
+ id: outcome.id,
199
+ operation: outcome.operation,
200
+ status: outcome.outcome,
201
+ result_digest: outcome.result_digest,
202
+ }));
203
+ if (JSON.stringify(compiledGraphEvidence) !== JSON.stringify(graphEvidence)) {
204
+ fail('portable LatticeSensor evidenceがboundary manifestのgraph evidenceと一致しない');
205
+ }
206
+ }
207
+
208
+ function assertControlCompilationEvidence(evidence, {
209
+ manifestDigest,
210
+ verdictDigest,
211
+ controlPlanDigest,
212
+ querySetDigest,
213
+ codeSnapshotDigest,
214
+ querySet,
215
+ graphEvidence,
216
+ }) {
217
+ if (!exactRecord(evidence, [
218
+ 'schema',
219
+ 'observed_at',
220
+ 'head',
221
+ 'executor_head',
222
+ 'graph_digest_projection',
223
+ 'input_digests',
224
+ 'sensor',
225
+ 'artifacts',
226
+ 'observed_facts',
227
+ 'presentation_note',
228
+ ])
229
+ || evidence.schema !== 'lattice.rc1.control_compilation_evidence.v2'
230
+ || evidence.graph_digest_projection !== PORTABLE_SENSOR_PROJECTION) {
231
+ fail('portable control compilation evidence v2またはprojectionが不正');
232
+ }
233
+ if (!isCanonicalUtcTimestamp(evidence.observed_at)
234
+ || typeof evidence.head !== 'string'
235
+ || !SHA1.test(evidence.head)
236
+ || typeof evidence.executor_head !== 'string'
237
+ || !SHA1.test(evidence.executor_head)
238
+ || !exactRecord(evidence.input_digests, [
239
+ 'plan_input',
240
+ 'query_set',
241
+ 'manual_normal',
242
+ 'manual_shared_state_negative',
243
+ 'code_snapshot',
244
+ ])
245
+ || Object.values(evidence.input_digests).some((digest) => (
246
+ typeof digest !== 'string' || !SHA256.test(digest)
247
+ ))
248
+ || !exactRecord(evidence.artifacts, ['control', 'shared_state_negative'])
249
+ || !evidenceArtifactSet(evidence.artifacts.control)
250
+ || !evidenceArtifactSet(evidence.artifacts.shared_state_negative)) {
251
+ fail('control compilation evidenceまたはcontrol baseが不正');
252
+ }
253
+ assertPortableLatticeSensorEvidence(evidence.sensor, { querySet, graphEvidence });
254
+ if (evidence.input_digests.query_set !== querySetDigest
255
+ || evidence.input_digests.code_snapshot !== codeSnapshotDigest
256
+ || evidence.artifacts.control.boundary_manifest.digest !== manifestDigest
257
+ || evidence.artifacts.control.boundary_verdict.digest !== verdictDigest
258
+ || evidence.artifacts.control.plan_graph.digest !== controlPlanDigest) {
259
+ fail('control compilation evidenceのdigest chainがcontrol artifactと一致しない');
260
+ }
261
+ return evidence.head;
262
+ }
263
+
264
+ function assertCandidateInputs({
265
+ boundaryManifest,
266
+ boundaryVerdict,
267
+ controlPlan,
268
+ querySet,
269
+ controlCompilationEvidence,
270
+ }) {
271
+ for (const value of [
272
+ boundaryManifest,
273
+ boundaryVerdict,
274
+ controlPlan,
275
+ querySet,
276
+ controlCompilationEvidence,
277
+ ]) {
278
+ canonicalizeArtifact(value);
279
+ }
280
+ if (!validateBoundaryManifest(boundaryManifest)
281
+ || !validateBoundaryVerdict(boundaryVerdict)
282
+ || !validatePlanGraph(controlPlan)) {
283
+ fail('control artifactがpublic contractを満たさない');
284
+ }
285
+ const manifestDigest = digestArtifact(boundaryManifest);
286
+ const verdictDigest = digestArtifact(boundaryVerdict);
287
+ const controlPlanDigest = digestArtifact(controlPlan);
288
+ const querySetDigest = digestArtifact(querySet);
289
+ if (boundaryVerdict.boundary_manifest_digest !== manifestDigest
290
+ || controlPlan.source_manifest_digest !== manifestDigest
291
+ || boundaryManifest.source.query_set_digest !== querySetDigest) {
292
+ fail('control artifactとquery setのdigest chainが一致しない');
293
+ }
294
+ if (boundaryManifest.conflicts.length !== 1
295
+ || boundaryManifest.conflicts[0].kind !== 'write_boundary'
296
+ || boundaryManifest.todos.length !== 2
297
+ || boundaryManifest.todos.some(({ unknowns }) => unknowns
298
+ .some((entry) => !entry.startsWith('new_surface_unknown:')
299
+ && !entry.startsWith('path_not_indexed_unknown:')))) {
300
+ fail('RC1 normal control以外はseam interventionへ進めない');
301
+ }
302
+ if (controlPlan.plan_version !== 'rc1-control-v1'
303
+ || controlPlan.capacity.writers !== 2
304
+ || controlPlan.minimum_feasible_waves !== 2) {
305
+ fail('RC1 control plan topologyまたはcapacityがdriftした');
306
+ }
307
+ if (boundaryVerdict.verdicts.length !== 1
308
+ || boundaryVerdict.verdicts[0].verdict !== 'seam_candidate'
309
+ || boundaryVerdict.verdicts[0].seam_candidate?.id !== CANDIDATE_ID) {
310
+ fail('accepted seam candidateがexactly one存在しない');
311
+ }
312
+ const candidate = boundaryVerdict.verdicts[0].seam_candidate;
313
+ const owns = new Map(candidate.proposed_owns.map((entry) => [entry.todo_id, entry.resources]));
314
+ const expected = new Map([
315
+ ['channel-policy', [
316
+ { kind: 'symbol', target: 'selectDispatchChannel' },
317
+ { kind: 'path', target: CHANNEL_PATH },
318
+ ]],
319
+ ['label-policy', [
320
+ { kind: 'symbol', target: 'formatDispatchLabel' },
321
+ { kind: 'path', target: LABEL_PATH },
322
+ ]],
323
+ ]);
324
+ if (owns.size !== expected.size
325
+ || [...expected].some(([todoId, resources]) => {
326
+ const actual = owns.get(todoId);
327
+ return JSON.stringify(actual) !== JSON.stringify(resources);
328
+ })) {
329
+ fail('seam candidate ownershipがfixed interventionと一致しない');
330
+ }
331
+ const digests = {
332
+ manifestDigest,
333
+ verdictDigest,
334
+ controlPlanDigest,
335
+ querySetDigest,
336
+ codeSnapshotDigest: boundaryManifest.source.code_snapshot_digest,
337
+ };
338
+ return {
339
+ ...digests,
340
+ controlBaseSha: assertControlCompilationEvidence(controlCompilationEvidence, {
341
+ ...digests,
342
+ querySet,
343
+ graphEvidence: boundaryManifest.graph_evidence,
344
+ }),
345
+ };
346
+ }
347
+
348
+ function receiptsFromRunner(verifications) {
349
+ if (!Array.isArray(verifications) || verifications.length > VERIFIERS.length) {
350
+ fail('runner verification receipt数がfixed verifierと一致しない');
351
+ }
352
+ return verifications.map((receipt, index) => {
353
+ const expected = VERIFIERS[index];
354
+ if (receipt.command !== expected.command || !sameArray(receipt.args, expected.args)) {
355
+ fail('runner receiptがfixed verifier commandと一致しない');
356
+ }
357
+ return {
358
+ id: expected.id,
359
+ command: receipt.command,
360
+ args: receipt.args,
361
+ outcome: receipt.outcome,
362
+ exit_code: receipt.exit_code,
363
+ stdout_digest: receipt.stdout_digest,
364
+ stderr_digest: receipt.stderr_digest,
365
+ };
366
+ });
367
+ }
368
+
369
+ function verificationArtifact(status, receipts) {
370
+ return {
371
+ status,
372
+ digest: digestArtifact({ status, receipts }),
373
+ receipts,
374
+ };
375
+ }
376
+
377
+ function sourceArtifact(baseSha, digests) {
378
+ return {
379
+ base_sha: baseSha,
380
+ boundary_manifest_digest: digests.manifestDigest,
381
+ boundary_verdict_digest: digests.verdictDigest,
382
+ control_plan_digest: digests.controlPlanDigest,
383
+ query_set_digest: digests.querySetDigest,
384
+ code_snapshot_digest: digests.codeSnapshotDigest,
385
+ };
386
+ }
387
+
388
+ async function observeOutput({ worktreePath, changedPaths }) {
389
+ if (!sameArray(changedPaths, ALLOWED_PATHS)) {
390
+ throw new Error('transform scope does not exactly match the accepted RC1 paths');
391
+ }
392
+ const files = await Promise.all(changedPaths.map(async (relativePath) => ({
393
+ path: relativePath,
394
+ content_digest: sha256(await readFile(path.join(worktreePath, relativePath))),
395
+ })));
396
+ return { snapshot_digest: digestArtifact({ files }), files };
397
+ }
398
+
399
+ function flattenErrors(error) {
400
+ if (!(error instanceof AggregateError)) return [error];
401
+ return error.errors.flatMap((entry) => flattenErrors(entry));
402
+ }
403
+
404
+ function portableReason(error, repoRoot) {
405
+ return String(error?.message ?? error)
406
+ .split(repoRoot).join('<repo-root>')
407
+ .replace(/\S*lattice-isolated-transform-[^\s:]+/g, '<isolated-worktree>')
408
+ .replace(/[\u0000-\u001f\u007f]+/g, ' ')
409
+ .trim()
410
+ .slice(0, 4_096) || 'isolated transform failed without a message';
411
+ }
412
+
413
+ function rejectionKind(reasons) {
414
+ const text = reasons.join(' ').toLowerCase();
415
+ if (text.includes('source repository changed')) return 'source_invariant_violation';
416
+ if (text.includes('cleanup failed')) return 'cleanup_failure';
417
+ if (text.includes('outside allowed paths') || text.includes('transform scope')) return 'scope_violation';
418
+ if (text.includes('mutated isolated snapshot')) return 'snapshot_mutation';
419
+ if (text.includes('verifier failed')) return 'behavior_verification_failed';
420
+ return 'execution_failure';
421
+ }
422
+
423
+ function rejectedArtifact({ error, repoRoot, digests }) {
424
+ const errors = flattenErrors(error);
425
+ const evidence = errors.map((entry) => entry.transformEvidence).find(Boolean);
426
+ if (!evidence || typeof evidence.baseSha !== 'string') throw error;
427
+ if (evidence.baseSha !== digests.controlBaseSha) {
428
+ fail('runnerがcontrol compilation evidenceと異なるbaseを使用した');
429
+ }
430
+ const reasons = [...new Set(errors.map((entry) => portableReason(entry, repoRoot)))];
431
+ const kind = rejectionKind(reasons);
432
+ const rejection = { kind, reasons };
433
+ const receipts = receiptsFromRunner(evidence.verifications);
434
+ const verificationStatus = receipts.length === 0 ? 'not_run' : 'failed';
435
+ const patch = Buffer.isBuffer(evidence.patch) ? evidence.patch : null;
436
+ const changedPaths = Array.isArray(evidence.changedPaths) ? [...evidence.changedPaths].sort() : [];
437
+ const cleanupFailed = reasons.some((entry) => entry.toLowerCase().includes('cleanup failed'));
438
+ const sourceChanged = reasons.some((entry) => entry.toLowerCase().includes('source repository changed'));
439
+ const artifact = {
440
+ schema: 'lattice.transform_artifact.v1',
441
+ candidate_id: CANDIDATE_ID,
442
+ status: 'rejected',
443
+ source: sourceArtifact(evidence.baseSha, digests),
444
+ scope: { allowed_paths: [...ALLOWED_PATHS], changed_paths: changedPaths },
445
+ patch: {
446
+ digest: patch ? sha256(patch) : null,
447
+ bytes: patch ? patch.byteLength : 0,
448
+ },
449
+ verification: verificationArtifact(verificationStatus, receipts),
450
+ output: { snapshot_digest: null, files: [] },
451
+ cleanup: {
452
+ status: cleanupFailed ? 'failed' : 'passed',
453
+ source_status: sourceChanged ? 'changed' : 'unchanged',
454
+ },
455
+ rejection: { ...rejection, evidence_digest: digestArtifact(rejection) },
456
+ unknowns: patch ? ['post-transform content snapshot unavailable after rejection'] : [
457
+ 'changed paths and post-transform snapshot unavailable after rejection',
458
+ ],
459
+ };
460
+ if (!validateTransformArtifact(artifact)) {
461
+ fail('生成したrejected transform artifactがpublic contractを満たさない');
462
+ }
463
+ return { artifact, artifact_digest: digestArtifact(artifact), patch: null };
464
+ }
465
+
466
+ export async function applyRc1SeamTransform({ worktreePath } = {}) {
467
+ if (typeof worktreePath !== 'string' || worktreePath.length === 0) {
468
+ throw new TypeError('worktreePath is required');
469
+ }
470
+ await Promise.all([
471
+ writeFile(path.join(worktreePath, CHANNEL_PATH), CHANNEL_SOURCE),
472
+ writeFile(path.join(worktreePath, LABEL_PATH), LABEL_SOURCE),
473
+ writeFile(path.join(worktreePath, FIXTURE_ENTRY), COMPOSITION_SOURCE),
474
+ ]);
475
+ }
476
+
477
+ /**
478
+ * RC1のaccepted seam candidateをdisposable worktreeで実行し、typed artifactへ変換する。
479
+ * @param {object} options
480
+ * @returns {Promise<{artifact: object, artifact_digest: string, patch: Buffer | null}>}
481
+ */
482
+ export async function runRc1SeamTreatment({
483
+ repoRoot,
484
+ baseRef,
485
+ boundaryManifest,
486
+ boundaryVerdict,
487
+ controlPlan,
488
+ querySet,
489
+ controlCompilationEvidence,
490
+ transform = applyRc1SeamTransform,
491
+ } = {}) {
492
+ if (typeof repoRoot !== 'string' || repoRoot.length === 0
493
+ || typeof transform !== 'function') {
494
+ throw new TypeError('invalid RC1 seam treatment arguments');
495
+ }
496
+ if (baseRef !== undefined) {
497
+ fail('baseRef overrideは禁止。control compilation evidenceのheadを使う');
498
+ }
499
+ const digests = assertCandidateInputs({
500
+ boundaryManifest,
501
+ boundaryVerdict,
502
+ controlPlan,
503
+ querySet,
504
+ controlCompilationEvidence,
505
+ });
506
+ let output;
507
+ let isolated;
508
+ try {
509
+ isolated = await runIsolatedTransform({
510
+ repoRoot,
511
+ baseRef: digests.controlBaseSha,
512
+ allowedPaths: [...ALLOWED_PATHS],
513
+ transform,
514
+ verifyCommands: VERIFIERS.map(({ command, args }) => ({ command, args: [...args] })),
515
+ observe: async (context) => {
516
+ output = await observeOutput(context);
517
+ },
518
+ });
519
+ } catch (error) {
520
+ return rejectedArtifact({ error, repoRoot, digests });
521
+ }
522
+ if (!output || !Buffer.isBuffer(isolated.patch) || !sameArray(isolated.changedPaths, ALLOWED_PATHS)) {
523
+ fail('accepted runner resultにpatch、scope、post snapshotが揃っていない');
524
+ }
525
+ if (isolated.baseSha !== digests.controlBaseSha) {
526
+ fail('runnerがcontrol compilation evidenceと異なるbaseを使用した');
527
+ }
528
+ const receipts = receiptsFromRunner(isolated.verifications);
529
+ if (receipts.length !== VERIFIERS.length) {
530
+ fail('accepted runner resultが全fixed verifier receiptを持たない');
531
+ }
532
+ const artifact = {
533
+ schema: 'lattice.transform_artifact.v1',
534
+ candidate_id: CANDIDATE_ID,
535
+ status: 'accepted',
536
+ source: sourceArtifact(isolated.baseSha, digests),
537
+ scope: { allowed_paths: [...ALLOWED_PATHS], changed_paths: [...isolated.changedPaths] },
538
+ patch: { digest: sha256(isolated.patch), bytes: isolated.patch.byteLength },
539
+ verification: verificationArtifact('passed', receipts),
540
+ output,
541
+ cleanup: { status: 'passed', source_status: 'unchanged' },
542
+ rejection: null,
543
+ unknowns: [],
544
+ };
545
+ if (!validateTransformArtifact(artifact)) {
546
+ fail('生成したaccepted transform artifactがpublic contractを満たさない');
547
+ }
548
+ if (!SHA256.test(artifact.patch.digest)) fail('patch digestがSHA-256でない');
549
+ return {
550
+ artifact,
551
+ artifact_digest: digestArtifact(artifact),
552
+ patch: Buffer.from(isolated.patch),
553
+ };
554
+ }