@quolu/lattice 0.52.2 → 0.52.4
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.
- package/package.json +1 -1
- package/src/artifact-contracts-v2.mjs +325 -325
- package/src/artifact-contracts.mjs +895 -895
- package/src/boundary-compiler.mjs +712 -712
- package/src/boundary-observation-compiler-v2.mjs +344 -344
- package/src/bounded-seam.mjs +230 -230
- package/src/bridge-address.mjs +107 -107
- package/src/bridge-cli.mjs +297 -297
- package/src/bridge-config.mjs +346 -346
- package/src/bridge-daemon.mjs +378 -378
- package/src/bridge-hub-protocol.mjs +198 -0
- package/src/bridge-launch-agent.mjs +323 -323
- package/src/bridge-registrar.mjs +102 -102
- package/src/bridge-server.mjs +376 -376
- package/src/cli-help.mjs +308 -308
- package/src/cli-stdio.mjs +40 -40
- package/src/control-compiler.mjs +532 -532
- package/src/dag-chain.mjs +261 -261
- package/src/factory-diagnostics.mjs +188 -188
- package/src/git-process.mjs +72 -0
- package/src/hash-chain.mjs +76 -76
- package/src/hooks-cli.mjs +1057 -1057
- package/src/isolation-runner.mjs +409 -409
- package/src/node-version-guard.mjs +44 -44
- package/src/project-cli.mjs +699 -697
- package/src/project-identity.mjs +130 -130
- package/src/rc1-black-box-oracle.mjs +906 -906
- package/src/rc1-comparison.mjs +154 -154
- package/src/rc1-evidence-bundle.mjs +456 -456
- package/src/rc1-v4-campaign.mjs +708 -708
- package/src/rc1-v4-transform.mjs +467 -467
- package/src/rc1-v5-artifact-set.mjs +855 -855
- package/src/rc1-v5-behavior-evidence.mjs +594 -594
- package/src/rc1-v5-campaign.mjs +797 -797
- package/src/rc1-v5-transform.mjs +421 -421
- package/src/rc1-v6-artifact-set.mjs +807 -807
- package/src/rc1-v6-behavior-evidence.mjs +273 -273
- package/src/rc1-v6-campaign.mjs +623 -623
- package/src/rc1-v6-causal-binding.mjs +473 -473
- package/src/rc1-v6-measurement.mjs +313 -313
- package/src/rc2-artifact-set.mjs +1584 -1584
- package/src/rc2-campaign.mjs +1506 -1506
- package/src/rc2-delivery-policy-front-end.mjs +1079 -1079
- package/src/rc2-delivery-policy-oracle.mjs +134 -134
- package/src/rc2-delivery-policy-transform.mjs +1127 -1127
- package/src/rc2-rc1-transfer-front-end.mjs +511 -511
- package/src/rc3-actual-dogfood.mjs +652 -652
- package/src/rc3-dogfood-scaffold.mjs +315 -315
- package/src/rc3-scripted-campaign.mjs +1383 -1383
- package/src/rc4-stage1-dogfood.mjs +673 -673
- package/src/runtime-adapter-registry.mjs +524 -524
- package/src/runtime-cli.mjs +4588 -4588
- package/src/runtime-contracts.mjs +824 -824
- package/src/runtime-control-store.mjs +604 -604
- package/src/runtime-controller-protocol.mjs +587 -587
- package/src/runtime-decision-verifier.mjs +701 -701
- package/src/runtime-diff-observer.mjs +361 -361
- package/src/runtime-direct-os-observer.mjs +301 -301
- package/src/runtime-driver-state.mjs +166 -166
- package/src/runtime-engine.mjs +779 -779
- package/src/runtime-errors.mjs +356 -356
- package/src/runtime-event-store.mjs +189 -189
- package/src/runtime-front-end.mjs +925 -925
- package/src/runtime-gate-store.mjs +481 -481
- package/src/runtime-hold-recompile.mjs +916 -916
- package/src/runtime-io-sentinel.mjs +391 -391
- package/src/runtime-lifecycle-lock.mjs +294 -294
- package/src/runtime-managed-supervisor.mjs +1490 -1490
- package/src/runtime-multi-epoch-store.mjs +838 -838
- package/src/runtime-projection.mjs +269 -269
- package/src/runtime-pull-intake.mjs +1192 -1192
- package/src/runtime-scripted-adapter-controller.mjs +1160 -1160
- package/src/runtime-scripted-executor.mjs +163 -163
- package/src/runtime-scripted-worktree.mjs +104 -104
- package/src/runtime-seam-resolve.mjs +428 -428
- package/src/runtime-seam-treatment.mjs +173 -173
- package/src/runtime-socket-owner.mjs +125 -125
- package/src/runtime-work-order-contracts.mjs +91 -91
- package/src/runtime-work-order-controller.mjs +1171 -1171
- package/src/runtime-worktree-executor.mjs +199 -199
- package/src/schedulability-compiler-v2.mjs +303 -303
- package/src/schedulability-verifier-v2.mjs +317 -317
- package/src/seam-apply.mjs +549 -549
- package/src/seam-commit-shared.mjs +22 -22
- package/src/seam-commit-transform.mjs +81 -81
- package/src/seam-commit.mjs +18 -18
- package/src/seam-cost.mjs +322 -322
- package/src/seam-derivation.mjs +188 -188
- package/src/seam-gate.mjs +146 -146
- package/src/seam-proposal-contracts.mjs +446 -446
- package/src/seam-proposal-queries.mjs +521 -521
- package/src/seam-proposal.mjs +2011 -2011
- package/src/seam-ref.mjs +33 -33
- package/src/seam-rewrite.mjs +286 -286
- package/src/seam-transform.mjs +554 -554
- package/src/seam-verification.mjs +260 -260
- package/src/sensor-adapter.mjs +432 -432
- package/src/sensor-cli.mjs +139 -139
- package/src/sensor-diff.mjs +661 -661
- package/src/sensor-node-runtime.mjs +53 -53
- package/src/sensor-runtime.mjs +52 -52
- package/src/timestamp-contract.mjs +8 -8
- package/src/todo-audit-pending.mjs +91 -91
- package/src/todo-chain.mjs +178 -178
- package/src/todo-cli.mjs +3143 -3141
- package/src/todo-contracts.mjs +728 -728
- package/src/todo-dashboard-registry.mjs +573 -573
- package/src/todo-dispatch-shape.mjs +190 -190
- package/src/todo-gantt-html-independence.mjs +239 -239
- package/src/todo-gantt-html-shared.mjs +226 -226
- package/src/todo-gantt-html-style.mjs +131 -131
- package/src/todo-gantt-html.mjs +248 -248
- package/src/todo-gantt-layout.mjs +974 -974
- package/src/todo-gantt-live.mjs +361 -361
- package/src/todo-gantt-nested.mjs +263 -263
- package/src/todo-gantt-presentation.mjs +217 -217
- package/src/todo-gantt-scope.mjs +123 -123
- package/src/todo-gantt-svg.mjs +353 -353
- package/src/todo-independence-contracts.mjs +595 -595
- package/src/todo-independence-guidance.mjs +322 -322
- package/src/todo-independence.mjs +640 -640
- package/src/todo-markdown-renderer.mjs +260 -260
- package/src/todo-migration.mjs +448 -448
- package/src/todo-narrative-anchor.mjs +130 -130
- package/src/todo-note-store.mjs +629 -629
- package/src/todo-parallel-candidates.mjs +114 -114
- package/src/todo-revision.mjs +995 -995
- package/src/todo-split.mjs +472 -472
- package/src/todo-status.mjs +690 -690
- package/src/todo-store-git-transaction.mjs +418 -418
- package/src/todo-store.mjs +4360 -4322
- package/src/treatment-compiler.mjs +728 -728
- package/src/treatment-runner.mjs +656 -656
- package/src/witness-scaffold.mjs +180 -180
package/src/seam-transform.mjs
CHANGED
|
@@ -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
|
+
}
|