@kungfu-tech/buildchain 4.0.1-alpha.8 → 4.0.1

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 (98) hide show
  1. package/README.md +9 -6
  2. package/actions/v4-release-candidate-promote/README.md +3 -0
  3. package/architecture/agent-change-map.md +1015 -0
  4. package/architecture/ci-lane-change-budget.json +70 -1
  5. package/architecture/decisions/0004-v4-declarative-release-tail.md +47 -0
  6. package/architecture/internal-capabilities.json +156 -11
  7. package/architecture/maintainability-debt.json +3229 -0
  8. package/architecture/maintainability-policy.json +480 -129
  9. package/architecture/v3-core-mechanism-inventory.json +4 -3
  10. package/architecture/v3-v4-capability-closure.md +59 -0
  11. package/architecture/v3-v4-live-capability-inventory.json +102404 -0
  12. package/architecture/v4-cross-platform-adopter-qualification.json +52 -0
  13. package/architecture/v4-delivery-warrant-shadow-fixtures.json +3 -3
  14. package/architecture/v4-runtime-semantic-closure.json +710 -0
  15. package/bin/internal/trust-release-release-handlers.mjs +5 -0
  16. package/contracts/fixtures/v4-tail-reseal-v1/valid.json +1 -1
  17. package/contracts/v4-publication-qualification-v1.schema.json +51 -0
  18. package/dist/site/agent-index.json +1 -0
  19. package/dist/site/artifact-schemas.json +2 -0
  20. package/dist/site/buildchain-contract.json +123 -32
  21. package/dist/site/buildchain-site.json +96 -28
  22. package/dist/site/capability-registry.json +6 -6
  23. package/dist/site/cli-registry.json +5 -2
  24. package/dist/site/controller-registry.json +41 -5
  25. package/dist/site/kfd-claims.json +170 -21
  26. package/dist/site/kfd-upstream-aggregate.json +1 -1
  27. package/dist/site/manual-registry.json +6 -6
  28. package/dist/site/node-api-registry.json +1474 -215
  29. package/dist/site/page-registry.json +85 -17
  30. package/dist/site/public-surface-audit.json +85 -20
  31. package/dist/site/publication-authority-registry.json +28 -1
  32. package/dist/site/publication-registry.json +4 -4
  33. package/dist/site/release-provenance.json +5 -0
  34. package/dist/site/schemas/v4-publication-qualification-v1.schema.json +51 -0
  35. package/dist/site/site-manifest.json +10 -10
  36. package/dist/site/workflow-registry.json +94 -18
  37. package/docs/MAP.md +1 -1
  38. package/docs/cli-reference.md +4 -4
  39. package/docs/dev-delivery-warrant.md +12 -9
  40. package/docs/node-api-reference.md +291 -206
  41. package/docs/publish-transaction.md +11 -4
  42. package/docs/release-candidate.md +7 -0
  43. package/docs/v4-adopter-delivery.md +23 -4
  44. package/docs/v4-declarative-release-tail-migration.md +43 -0
  45. package/package.json +8 -3
  46. package/packages/core/adopter-delivery-passport.js +36 -0
  47. package/packages/core/buildchain-contract.js +31 -1
  48. package/packages/core/buildchain-publication-authority.js +1 -0
  49. package/packages/core/dev-delivery-warrant-settlement.js +239 -3
  50. package/packages/core/dev-delivery-warrant-state.js +15 -2
  51. package/packages/core/dev-delivery-warrant.js +21 -4
  52. package/packages/core/github-governance-authority.js +4 -4
  53. package/packages/core/index.js +1 -0
  54. package/packages/core/paper-scaffold-content.js +401 -0
  55. package/packages/core/paper.js +12 -378
  56. package/packages/core/publication-control-plane-audit.js +135 -111
  57. package/packages/core/publication-rehearsal-projection.js +104 -0
  58. package/packages/core/publication-rehearsal-runtime.js +190 -0
  59. package/packages/core/release-candidate-recovery.js +6 -5
  60. package/packages/core/release-passport.js +82 -184
  61. package/packages/core/v4-cross-platform-adopter-qualification.js +343 -0
  62. package/packages/core/v4-floating-consumer-policy.js +3 -2
  63. package/packages/core/v4-floating-consumer-release-passport.js +134 -15
  64. package/packages/core/v4-publication-qualification.js +222 -0
  65. package/scripts/artifact-signing-controller-core.mjs +1 -1
  66. package/scripts/audit-publication-control-plane.mjs +17 -17
  67. package/scripts/buildchain-cli-help.mjs +3 -0
  68. package/scripts/check-internal-architecture.mjs +23 -3
  69. package/scripts/check-inventory.mjs +23 -5
  70. package/scripts/check-maintainability.mjs +145 -4
  71. package/scripts/check-project-cut-merge-queue-admission.mjs +87 -0
  72. package/scripts/check-v3-v4-capability-inventory.mjs +574 -0
  73. package/scripts/check-v4-floating-consumer-policy-contract.mjs +10 -3
  74. package/scripts/check-v4-runtime-semantic-closure.mjs +266 -0
  75. package/scripts/dev-delivery-warrant-options.mjs +27 -11
  76. package/scripts/dev-delivery-warrant.mjs +45 -5
  77. package/scripts/dev-pr-auto-merge.mjs +25 -11
  78. package/scripts/dev-pr-delivery-warrant.mjs +44 -0
  79. package/scripts/dev-pr-prequeue-guard.mjs +0 -18
  80. package/scripts/dispatch-artifact-signing-authority.mjs +1 -1
  81. package/scripts/generate-agent-change-map.mjs +118 -0
  82. package/scripts/generate-release-candidate-passport.mjs +26 -1
  83. package/scripts/generate-site-bundle.mjs +6 -0
  84. package/scripts/maintainability-domain-metrics.mjs +237 -0
  85. package/scripts/maintainability-governance.mjs +473 -0
  86. package/scripts/maintainability-metrics.mjs +28 -6
  87. package/scripts/project-cut-merge-queue-admission.mjs +394 -0
  88. package/scripts/promotion-routing-evidence.mjs +35 -6
  89. package/scripts/release-candidate-resolver.mjs +44 -0
  90. package/scripts/release-line-policy.mjs +25 -15
  91. package/scripts/release-tail.mjs +19 -2
  92. package/scripts/resume-from-candidate-run.mjs +106 -103
  93. package/scripts/run-lifecycle-core.mjs +341 -376
  94. package/scripts/site-capability-metadata.mjs +4 -0
  95. package/scripts/stable-candidate-qualification.mjs +9 -10
  96. package/scripts/v3-v4-capability-catalog.mjs +439 -0
  97. package/scripts/v4-cross-platform-adopter-qualification.mjs +228 -0
  98. package/scripts/v4-declarative-promotion-admission.mjs +42 -0
@@ -0,0 +1,3229 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "contract": "kungfu-buildchain-maintainability-debt/v1",
4
+ "sourceCut": {
5
+ "baselineRevision": "4271eceaa2aa11dc98d2917dcb390f943ca42031",
6
+ "currentRevision": "working-tree"
7
+ },
8
+ "totalExcessLedger": {
9
+ "metric": "calibrated-full-dimensional-excess-v1",
10
+ "measuredExcess": 67962,
11
+ "current": 59901
12
+ },
13
+ "defaults": {
14
+ "owner": "Buildchain architecture maintainers",
15
+ "capability": "maintainability-governance",
16
+ "expiry": "2026-12-31",
17
+ "impact": "Oversized surfaces increase review ambiguity, regression radius, and Agent context cost.",
18
+ "recovery": "Use the generated Agent change map, focused mapped tests, and the exact lower ratchet before editing.",
19
+ "stopCondition": "Stop if a split changes public behavior, trust authority, evidence bytes, or fails to reduce aggregate debt.",
20
+ "invariant": "Every over-default surface remains exactly measured, owned, mapped, and unable to widen.",
21
+ "tests": [
22
+ "tests/maintainability.test.mjs",
23
+ "tests/maintainability-governance.test.mjs"
24
+ ],
25
+ "safeChangeRoute": "Reduce one owned responsibility behind the stable facade, run focused differential tests, regenerate this map, and lower the exact ceiling."
26
+ },
27
+ "surfaces": {
28
+ "sources": {
29
+ "actions/macos-credential-island/index.js": {
30
+ "baseline": {
31
+ "lines": 710,
32
+ "functions": {
33
+ "main@309": {
34
+ "lines": 394
35
+ }
36
+ }
37
+ },
38
+ "current": {
39
+ "lines": 710,
40
+ "functions": {
41
+ "main@309": {
42
+ "lines": 394
43
+ }
44
+ }
45
+ },
46
+ "target": {
47
+ "lines": 600,
48
+ "functions": {
49
+ "main@309": {
50
+ "lines": 180
51
+ }
52
+ }
53
+ }
54
+ },
55
+ "actions/macos-credential-island/lib.js": {
56
+ "baseline": {
57
+ "lines": 816
58
+ },
59
+ "current": {
60
+ "lines": 816
61
+ },
62
+ "target": {
63
+ "lines": 600
64
+ }
65
+ },
66
+ "actions/promote-buildchain-ref/index.js": {
67
+ "baseline": {
68
+ "functions": {
69
+ "main@224": {
70
+ "lines": 280,
71
+ "complexity": 52
72
+ }
73
+ }
74
+ },
75
+ "current": {
76
+ "functions": {
77
+ "main@224": {
78
+ "lines": 280,
79
+ "complexity": 52
80
+ }
81
+ }
82
+ },
83
+ "target": {
84
+ "functions": {
85
+ "main@224": {
86
+ "lines": 180,
87
+ "complexity": 25
88
+ }
89
+ }
90
+ }
91
+ },
92
+ "actions/promote-buildchain-ref/internal/durable-transaction-operations.js": {
93
+ "baseline": {
94
+ "functions": {
95
+ "createDurableTransactionOperations@11": {
96
+ "lines": 378
97
+ }
98
+ }
99
+ },
100
+ "current": {
101
+ "functions": {
102
+ "createDurableTransactionOperations@11": {
103
+ "lines": 378
104
+ }
105
+ }
106
+ },
107
+ "target": {
108
+ "functions": {
109
+ "createDurableTransactionOperations@11": {
110
+ "lines": 180
111
+ }
112
+ }
113
+ }
114
+ },
115
+ "actions/promote-buildchain-ref/internal/durable-transaction-store.js": {
116
+ "baseline": {
117
+ "functions": {
118
+ "persistDurableReleaseTransaction@176": {
119
+ "lines": 213
120
+ }
121
+ }
122
+ },
123
+ "current": {
124
+ "functions": {
125
+ "persistDurableReleaseTransaction@176": {
126
+ "lines": 213
127
+ }
128
+ }
129
+ },
130
+ "target": {
131
+ "functions": {
132
+ "persistDurableReleaseTransaction@176": {
133
+ "lines": 180
134
+ }
135
+ }
136
+ }
137
+ },
138
+ "actions/promote-buildchain-ref/internal/version-state-operations.js": {
139
+ "baseline": {
140
+ "functions": {
141
+ "createVersionStateOperations@131": {
142
+ "lines": 415
143
+ },
144
+ "createVersionStateCommit@245": {
145
+ "lines": 286,
146
+ "complexity": 27
147
+ }
148
+ }
149
+ },
150
+ "current": {
151
+ "functions": {
152
+ "createVersionStateOperations@131": {
153
+ "lines": 415
154
+ },
155
+ "createVersionStateCommit@245": {
156
+ "lines": 286,
157
+ "complexity": 27
158
+ }
159
+ }
160
+ },
161
+ "target": {
162
+ "functions": {
163
+ "createVersionStateOperations@131": {
164
+ "lines": 180
165
+ },
166
+ "createVersionStateCommit@245": {
167
+ "lines": 180,
168
+ "complexity": 25
169
+ }
170
+ }
171
+ }
172
+ },
173
+ "actions/promote-buildchain-ref/lib.js": {
174
+ "baseline": {
175
+ "lines": 5132,
176
+ "functions": {
177
+ "resolvePublishContract@258": {
178
+ "complexity": 30
179
+ },
180
+ "validatePromotionReleaseCandidate@528": {
181
+ "complexity": 27
182
+ },
183
+ "runPublishTransaction@1419": {
184
+ "lines": 247,
185
+ "complexity": 33
186
+ }
187
+ }
188
+ },
189
+ "current": {
190
+ "lines": 3468,
191
+ "functions": {
192
+ "resolvePublishContract@258": {
193
+ "complexity": 30
194
+ },
195
+ "validatePromotionReleaseCandidate@528": {
196
+ "complexity": 27
197
+ },
198
+ "runPublishTransaction@1419": {
199
+ "lines": 247,
200
+ "complexity": 33
201
+ }
202
+ }
203
+ },
204
+ "target": {
205
+ "lines": 600,
206
+ "functions": {
207
+ "resolvePublishContract@258": {
208
+ "complexity": 25
209
+ },
210
+ "validatePromotionReleaseCandidate@528": {
211
+ "complexity": 25
212
+ },
213
+ "runPublishTransaction@1419": {
214
+ "lines": 180,
215
+ "complexity": 25
216
+ }
217
+ }
218
+ }
219
+ },
220
+ "bin/buildchain.mjs": {
221
+ "baseline": {
222
+ "lines": 1821,
223
+ "functions": {
224
+ "runKfd3Cli@359": {
225
+ "complexity": 30
226
+ },
227
+ "runKfd2Cli@544": {
228
+ "complexity": 41
229
+ },
230
+ "runKfdCli@794": {
231
+ "lines": 195,
232
+ "complexity": 60
233
+ }
234
+ }
235
+ },
236
+ "current": {
237
+ "lines": 1821,
238
+ "functions": {
239
+ "runKfd3Cli@359": {
240
+ "complexity": 30
241
+ },
242
+ "runKfd2Cli@544": {
243
+ "complexity": 41
244
+ },
245
+ "runKfdCli@794": {
246
+ "lines": 195,
247
+ "complexity": 60
248
+ }
249
+ }
250
+ },
251
+ "target": {
252
+ "lines": 600,
253
+ "functions": {
254
+ "runKfd3Cli@359": {
255
+ "complexity": 25
256
+ },
257
+ "runKfd2Cli@544": {
258
+ "complexity": 25
259
+ },
260
+ "runKfdCli@794": {
261
+ "lines": 180,
262
+ "complexity": 25
263
+ }
264
+ }
265
+ }
266
+ },
267
+ "packages/core/artifact-passport.js": {
268
+ "baseline": {
269
+ "lines": 847,
270
+ "functions": {
271
+ "resolveArtifactSubject@368": {
272
+ "complexity": 40
273
+ }
274
+ }
275
+ },
276
+ "current": {
277
+ "lines": 847,
278
+ "functions": {
279
+ "resolveArtifactSubject@368": {
280
+ "complexity": 40
281
+ }
282
+ }
283
+ },
284
+ "target": {
285
+ "lines": 600,
286
+ "functions": {
287
+ "resolveArtifactSubject@368": {
288
+ "complexity": 25
289
+ }
290
+ }
291
+ }
292
+ },
293
+ "packages/core/artifact-verification-envelope.js": {
294
+ "baseline": {
295
+ "functions": {
296
+ "verifyArtifactVerificationEnvelope@153": {
297
+ "complexity": 78
298
+ }
299
+ }
300
+ },
301
+ "current": {
302
+ "functions": {
303
+ "verifyArtifactVerificationEnvelope@153": {
304
+ "complexity": 78
305
+ }
306
+ }
307
+ },
308
+ "target": {
309
+ "functions": {
310
+ "verifyArtifactVerificationEnvelope@153": {
311
+ "complexity": 25
312
+ }
313
+ }
314
+ }
315
+ },
316
+ "packages/core/buildchain-config.js": {
317
+ "baseline": {
318
+ "lines": 1885
319
+ },
320
+ "current": {
321
+ "lines": 1885
322
+ },
323
+ "target": {
324
+ "lines": 600
325
+ }
326
+ },
327
+ "packages/core/buildchain-contract.js": {
328
+ "baseline": {
329
+ "lines": 1078,
330
+ "functions": {
331
+ "createBuildchainContractWorld@199": {
332
+ "lines": 681
333
+ }
334
+ }
335
+ },
336
+ "current": {
337
+ "lines": 1078,
338
+ "functions": {
339
+ "createBuildchainContractWorld@199": {
340
+ "lines": 681
341
+ }
342
+ }
343
+ },
344
+ "target": {
345
+ "lines": 600,
346
+ "functions": {
347
+ "createBuildchainContractWorld@199": {
348
+ "lines": 180
349
+ }
350
+ }
351
+ }
352
+ },
353
+ "packages/core/buildchain-kfd-claims.js": {
354
+ "baseline": {
355
+ "lines": 733,
356
+ "functions": {
357
+ "createBuildchainPublicClaimDefinitions@226": {
358
+ "lines": 184
359
+ }
360
+ }
361
+ },
362
+ "current": {
363
+ "lines": 733,
364
+ "functions": {
365
+ "createBuildchainPublicClaimDefinitions@226": {
366
+ "lines": 184
367
+ }
368
+ }
369
+ },
370
+ "target": {
371
+ "lines": 600,
372
+ "functions": {
373
+ "createBuildchainPublicClaimDefinitions@226": {
374
+ "lines": 180
375
+ }
376
+ }
377
+ }
378
+ },
379
+ "packages/core/dev-delivery-execution-transfer.js": {
380
+ "baseline": {
381
+ "functions": {
382
+ "verifyNativeExecutionTransfer@469": {
383
+ "complexity": 36
384
+ }
385
+ }
386
+ },
387
+ "current": {
388
+ "functions": {
389
+ "verifyNativeExecutionTransfer@469": {
390
+ "complexity": 36
391
+ }
392
+ }
393
+ },
394
+ "target": {
395
+ "functions": {
396
+ "verifyNativeExecutionTransfer@469": {
397
+ "complexity": 25
398
+ }
399
+ }
400
+ }
401
+ },
402
+ "packages/core/dev-delivery-native-proof.js": {
403
+ "baseline": {
404
+ "functions": {
405
+ "validateActiveDevDeliveryWarrant@75": {
406
+ "complexity": 29
407
+ }
408
+ }
409
+ },
410
+ "current": {
411
+ "functions": {
412
+ "validateActiveDevDeliveryWarrant@75": {
413
+ "complexity": 29
414
+ }
415
+ }
416
+ },
417
+ "target": {
418
+ "functions": {
419
+ "validateActiveDevDeliveryWarrant@75": {
420
+ "complexity": 25
421
+ }
422
+ }
423
+ }
424
+ },
425
+ "packages/core/dev-delivery-process-boundary.js": {
426
+ "baseline": {
427
+ "functions": {
428
+ "createProviderFinalizerBoundary@305": {
429
+ "lines": 191,
430
+ "complexity": 33
431
+ }
432
+ }
433
+ },
434
+ "current": {
435
+ "functions": {
436
+ "createProviderFinalizerBoundary@305": {
437
+ "lines": 191,
438
+ "complexity": 33
439
+ }
440
+ }
441
+ },
442
+ "target": {
443
+ "functions": {
444
+ "createProviderFinalizerBoundary@305": {
445
+ "lines": 180,
446
+ "complexity": 25
447
+ }
448
+ }
449
+ }
450
+ },
451
+ "packages/core/diagnostics.js": {
452
+ "baseline": {
453
+ "lines": 1904,
454
+ "functions": {
455
+ "validateAnchoredPackageRelease@325": {
456
+ "complexity": 43
457
+ },
458
+ "createStructuredCacheEvidence@722": {
459
+ "lines": 199,
460
+ "complexity": 42
461
+ },
462
+ "summarizeProcessSamples@1254": {
463
+ "complexity": 30
464
+ },
465
+ "<anonymous@1828>@1828": {
466
+ "complexity": 32
467
+ }
468
+ }
469
+ },
470
+ "current": {
471
+ "lines": 1904,
472
+ "functions": {
473
+ "validateAnchoredPackageRelease@325": {
474
+ "complexity": 43
475
+ },
476
+ "createStructuredCacheEvidence@722": {
477
+ "lines": 199,
478
+ "complexity": 42
479
+ },
480
+ "summarizeProcessSamples@1254": {
481
+ "complexity": 30
482
+ },
483
+ "<anonymous@1828>@1828": {
484
+ "complexity": 32
485
+ }
486
+ }
487
+ },
488
+ "target": {
489
+ "lines": 600,
490
+ "functions": {
491
+ "validateAnchoredPackageRelease@325": {
492
+ "complexity": 25
493
+ },
494
+ "createStructuredCacheEvidence@722": {
495
+ "lines": 180,
496
+ "complexity": 25
497
+ },
498
+ "summarizeProcessSamples@1254": {
499
+ "complexity": 25
500
+ },
501
+ "<anonymous@1828>@1828": {
502
+ "complexity": 25
503
+ }
504
+ }
505
+ }
506
+ },
507
+ "packages/core/engineering-housekeeper-github.js": {
508
+ "baseline": {
509
+ "lines": 707
510
+ },
511
+ "current": {
512
+ "lines": 707
513
+ },
514
+ "target": {
515
+ "lines": 600
516
+ }
517
+ },
518
+ "packages/core/github-artifact-attestation.js": {
519
+ "baseline": {
520
+ "lines": 642
521
+ },
522
+ "current": {
523
+ "lines": 642
524
+ },
525
+ "target": {
526
+ "lines": 600
527
+ }
528
+ },
529
+ "packages/core/github-governance-authority.js": {
530
+ "baseline": {
531
+ "lines": 1369,
532
+ "functions": {
533
+ "evaluateGithubGovernanceSnapshot@697": {
534
+ "lines": 189,
535
+ "complexity": 41
536
+ },
537
+ "createGithubRulesetGovernanceRolloutPlan@1192": {
538
+ "complexity": 36
539
+ }
540
+ }
541
+ },
542
+ "current": {
543
+ "lines": 1369,
544
+ "functions": {
545
+ "evaluateGithubGovernanceSnapshot@697": {
546
+ "lines": 189,
547
+ "complexity": 41
548
+ },
549
+ "createGithubRulesetGovernanceRolloutPlan@1192": {
550
+ "complexity": 36
551
+ }
552
+ }
553
+ },
554
+ "target": {
555
+ "lines": 600,
556
+ "functions": {
557
+ "evaluateGithubGovernanceSnapshot@697": {
558
+ "lines": 180,
559
+ "complexity": 25
560
+ },
561
+ "createGithubRulesetGovernanceRolloutPlan@1192": {
562
+ "complexity": 25
563
+ }
564
+ }
565
+ }
566
+ },
567
+ "packages/core/index.js": {
568
+ "baseline": {
569
+ "lines": 705
570
+ },
571
+ "current": {
572
+ "lines": 705
573
+ },
574
+ "target": {
575
+ "lines": 600
576
+ }
577
+ },
578
+ "packages/core/issue-reporting.js": {
579
+ "baseline": {
580
+ "functions": {
581
+ "buildConsumerIssueReport@104": {
582
+ "complexity": 43
583
+ },
584
+ "buildWorkflowFrictionIssueReport@199": {
585
+ "complexity": 54
586
+ }
587
+ }
588
+ },
589
+ "current": {
590
+ "functions": {
591
+ "buildConsumerIssueReport@104": {
592
+ "complexity": 43
593
+ },
594
+ "buildWorkflowFrictionIssueReport@199": {
595
+ "complexity": 54
596
+ }
597
+ }
598
+ },
599
+ "target": {
600
+ "functions": {
601
+ "buildConsumerIssueReport@104": {
602
+ "complexity": 25
603
+ },
604
+ "buildWorkflowFrictionIssueReport@199": {
605
+ "complexity": 25
606
+ }
607
+ }
608
+ }
609
+ },
610
+ "packages/core/kfd-gate.js": {
611
+ "baseline": {
612
+ "lines": 1672,
613
+ "functions": {
614
+ "normalizeKfd3Surface@354": {
615
+ "complexity": 27
616
+ },
617
+ "normalizeKfd3AuditBoundary@574": {
618
+ "complexity": 33
619
+ },
620
+ "normalizeKfd3CollaborationInterfacePrebuildWitness@667": {
621
+ "complexity": 44
622
+ },
623
+ "normalizeKfd1ContractWorldWitness@897": {
624
+ "complexity": 30
625
+ },
626
+ "createKfd3CollaborationInterfaceReleaseGateEvidence@1132": {
627
+ "lines": 204
628
+ },
629
+ "<anonymous@1161>@1161": {
630
+ "complexity": 28
631
+ },
632
+ "validateKfd1ReleaseGateEvidence@1337": {
633
+ "complexity": 46
634
+ },
635
+ "validateKfd3CollaborationInterfaceReleaseGateEvidence@1470": {
636
+ "lines": 203,
637
+ "complexity": 62
638
+ }
639
+ }
640
+ },
641
+ "current": {
642
+ "lines": 1672,
643
+ "functions": {
644
+ "normalizeKfd3Surface@354": {
645
+ "complexity": 27
646
+ },
647
+ "normalizeKfd3AuditBoundary@574": {
648
+ "complexity": 33
649
+ },
650
+ "normalizeKfd3CollaborationInterfacePrebuildWitness@667": {
651
+ "complexity": 44
652
+ },
653
+ "normalizeKfd1ContractWorldWitness@897": {
654
+ "complexity": 30
655
+ },
656
+ "createKfd3CollaborationInterfaceReleaseGateEvidence@1132": {
657
+ "lines": 204
658
+ },
659
+ "<anonymous@1161>@1161": {
660
+ "complexity": 28
661
+ },
662
+ "validateKfd1ReleaseGateEvidence@1337": {
663
+ "complexity": 46
664
+ },
665
+ "validateKfd3CollaborationInterfaceReleaseGateEvidence@1470": {
666
+ "lines": 203,
667
+ "complexity": 62
668
+ }
669
+ }
670
+ },
671
+ "target": {
672
+ "lines": 600,
673
+ "functions": {
674
+ "normalizeKfd3Surface@354": {
675
+ "complexity": 25
676
+ },
677
+ "normalizeKfd3AuditBoundary@574": {
678
+ "complexity": 25
679
+ },
680
+ "normalizeKfd3CollaborationInterfacePrebuildWitness@667": {
681
+ "complexity": 25
682
+ },
683
+ "normalizeKfd1ContractWorldWitness@897": {
684
+ "complexity": 25
685
+ },
686
+ "createKfd3CollaborationInterfaceReleaseGateEvidence@1132": {
687
+ "lines": 180
688
+ },
689
+ "<anonymous@1161>@1161": {
690
+ "complexity": 25
691
+ },
692
+ "validateKfd1ReleaseGateEvidence@1337": {
693
+ "complexity": 25
694
+ },
695
+ "validateKfd3CollaborationInterfaceReleaseGateEvidence@1470": {
696
+ "lines": 180,
697
+ "complexity": 25
698
+ }
699
+ }
700
+ }
701
+ },
702
+ "packages/core/kfd-product-gates.js": {
703
+ "baseline": {
704
+ "functions": {
705
+ "evaluateKfdProductGate@419": {
706
+ "complexity": 31
707
+ }
708
+ }
709
+ },
710
+ "current": {
711
+ "functions": {
712
+ "evaluateKfdProductGate@419": {
713
+ "complexity": 31
714
+ }
715
+ }
716
+ },
717
+ "target": {
718
+ "functions": {
719
+ "evaluateKfdProductGate@419": {
720
+ "complexity": 25
721
+ }
722
+ }
723
+ }
724
+ },
725
+ "packages/core/kfd.js": {
726
+ "baseline": {
727
+ "lines": 966,
728
+ "functions": {
729
+ "checkKfdUpstreamFacts@798": {
730
+ "complexity": 35
731
+ }
732
+ }
733
+ },
734
+ "current": {
735
+ "lines": 966,
736
+ "functions": {
737
+ "checkKfdUpstreamFacts@798": {
738
+ "complexity": 35
739
+ }
740
+ }
741
+ },
742
+ "target": {
743
+ "lines": 600,
744
+ "functions": {
745
+ "checkKfdUpstreamFacts@798": {
746
+ "complexity": 25
747
+ }
748
+ }
749
+ }
750
+ },
751
+ "packages/core/kfd3-surface-register.js": {
752
+ "baseline": {
753
+ "lines": 924,
754
+ "functions": {
755
+ "queryKfd3Capabilities@824": {
756
+ "complexity": 33
757
+ }
758
+ }
759
+ },
760
+ "current": {
761
+ "lines": 924,
762
+ "functions": {
763
+ "queryKfd3Capabilities@824": {
764
+ "complexity": 33
765
+ }
766
+ }
767
+ },
768
+ "target": {
769
+ "lines": 600,
770
+ "functions": {
771
+ "queryKfd3Capabilities@824": {
772
+ "complexity": 25
773
+ }
774
+ }
775
+ }
776
+ },
777
+ "packages/core/next-development-controller.js": {
778
+ "baseline": {
779
+ "lines": 728
780
+ },
781
+ "current": {
782
+ "lines": 728
783
+ },
784
+ "target": {
785
+ "lines": 600
786
+ }
787
+ },
788
+ "packages/core/next-development-transition.js": {
789
+ "baseline": {
790
+ "lines": 738
791
+ },
792
+ "current": {
793
+ "lines": 738
794
+ },
795
+ "target": {
796
+ "lines": 600
797
+ }
798
+ },
799
+ "packages/core/paper-npm-bootstrap.js": {
800
+ "baseline": {
801
+ "functions": {
802
+ "executePaperNpmBootstrap@1": {
803
+ "lines": 490,
804
+ "complexity": 58
805
+ }
806
+ }
807
+ },
808
+ "current": {
809
+ "functions": {
810
+ "executePaperNpmBootstrap@1": {
811
+ "lines": 490,
812
+ "complexity": 58
813
+ }
814
+ }
815
+ },
816
+ "target": {
817
+ "functions": {
818
+ "executePaperNpmBootstrap@1": {
819
+ "lines": 180,
820
+ "complexity": 25
821
+ }
822
+ }
823
+ }
824
+ },
825
+ "packages/core/paper.js": {
826
+ "baseline": {
827
+ "lines": 2878,
828
+ "functions": {
829
+ "collectPaperStatus@1117": {
830
+ "lines": 190,
831
+ "complexity": 47
832
+ },
833
+ "validatePaperProvisioningAuthority@1308": {
834
+ "complexity": 45
835
+ }
836
+ }
837
+ },
838
+ "current": {
839
+ "lines": 2512,
840
+ "functions": {
841
+ "collectPaperStatus@1117": {
842
+ "lines": 190,
843
+ "complexity": 47
844
+ },
845
+ "validatePaperProvisioningAuthority@1308": {
846
+ "complexity": 45
847
+ }
848
+ }
849
+ },
850
+ "target": {
851
+ "lines": 600,
852
+ "functions": {
853
+ "collectPaperStatus@1117": {
854
+ "lines": 180,
855
+ "complexity": 25
856
+ },
857
+ "validatePaperProvisioningAuthority@1308": {
858
+ "complexity": 25
859
+ }
860
+ }
861
+ }
862
+ },
863
+ "packages/core/publication-artifact.js": {
864
+ "baseline": {
865
+ "lines": 641
866
+ },
867
+ "current": {
868
+ "lines": 641
869
+ },
870
+ "target": {
871
+ "lines": 600
872
+ }
873
+ },
874
+ "packages/core/publication-authority.js": {
875
+ "baseline": {
876
+ "lines": 1163,
877
+ "functions": {
878
+ "validatePublicationEvidence@468": {
879
+ "lines": 262,
880
+ "complexity": 52
881
+ },
882
+ "verifyPublicationAdmission@791": {
883
+ "complexity": 35
884
+ }
885
+ }
886
+ },
887
+ "current": {
888
+ "lines": 1163,
889
+ "functions": {
890
+ "validatePublicationEvidence@468": {
891
+ "lines": 262,
892
+ "complexity": 52
893
+ },
894
+ "verifyPublicationAdmission@791": {
895
+ "complexity": 35
896
+ }
897
+ }
898
+ },
899
+ "target": {
900
+ "lines": 600,
901
+ "functions": {
902
+ "validatePublicationEvidence@468": {
903
+ "lines": 180,
904
+ "complexity": 25
905
+ },
906
+ "verifyPublicationAdmission@791": {
907
+ "complexity": 25
908
+ }
909
+ }
910
+ }
911
+ },
912
+ "packages/core/publication-reproducibility.js": {
913
+ "baseline": {
914
+ "lines": 947
915
+ },
916
+ "current": {
917
+ "lines": 947
918
+ },
919
+ "target": {
920
+ "lines": 600
921
+ }
922
+ },
923
+ "packages/core/publish-transaction.js": {
924
+ "baseline": {
925
+ "lines": 829,
926
+ "functions": {
927
+ "normalizePublishArtifact@407": {
928
+ "complexity": 37
929
+ }
930
+ }
931
+ },
932
+ "current": {
933
+ "lines": 829,
934
+ "functions": {
935
+ "normalizePublishArtifact@407": {
936
+ "complexity": 37
937
+ }
938
+ }
939
+ },
940
+ "target": {
941
+ "lines": 600,
942
+ "functions": {
943
+ "normalizePublishArtifact@407": {
944
+ "complexity": 25
945
+ }
946
+ }
947
+ }
948
+ },
949
+ "packages/core/readme-badges.js": {
950
+ "baseline": {
951
+ "lines": 893,
952
+ "functions": {
953
+ "summarizeKfdStandards@361": {
954
+ "complexity": 37
955
+ }
956
+ }
957
+ },
958
+ "current": {
959
+ "lines": 893,
960
+ "functions": {
961
+ "summarizeKfdStandards@361": {
962
+ "complexity": 37
963
+ }
964
+ }
965
+ },
966
+ "target": {
967
+ "lines": 600,
968
+ "functions": {
969
+ "summarizeKfdStandards@361": {
970
+ "complexity": 25
971
+ }
972
+ }
973
+ }
974
+ },
975
+ "packages/core/release-candidate.js": {
976
+ "baseline": {
977
+ "functions": {
978
+ "normalizeFamilyReleaseEvidence@233": {
979
+ "complexity": 26
980
+ },
981
+ "createReleaseCandidatePassport@369": {
982
+ "complexity": 37
983
+ },
984
+ "validateReleaseCandidatePassport@475": {
985
+ "complexity": 38
986
+ }
987
+ }
988
+ },
989
+ "current": {
990
+ "functions": {
991
+ "normalizeFamilyReleaseEvidence@233": {
992
+ "complexity": 26
993
+ },
994
+ "createReleaseCandidatePassport@369": {
995
+ "complexity": 37
996
+ },
997
+ "validateReleaseCandidatePassport@475": {
998
+ "complexity": 38
999
+ }
1000
+ }
1001
+ },
1002
+ "target": {
1003
+ "functions": {
1004
+ "normalizeFamilyReleaseEvidence@233": {
1005
+ "complexity": 25
1006
+ },
1007
+ "createReleaseCandidatePassport@369": {
1008
+ "complexity": 25
1009
+ },
1010
+ "validateReleaseCandidatePassport@475": {
1011
+ "complexity": 25
1012
+ }
1013
+ }
1014
+ }
1015
+ },
1016
+ "packages/core/release-passport.js": {
1017
+ "baseline": {
1018
+ "lines": 2987,
1019
+ "functions": {
1020
+ "mergeAuthoritativePassportBase@407": {
1021
+ "complexity": 29
1022
+ },
1023
+ "normalizeKfd2Claim@832": {
1024
+ "complexity": 59
1025
+ },
1026
+ "createReleasePassport@1165": {
1027
+ "lines": 268,
1028
+ "complexity": 30
1029
+ },
1030
+ "collectGitHubReleasePassport@1465": {
1031
+ "lines": 304,
1032
+ "complexity": 43
1033
+ },
1034
+ "validateKfd2ReleaseTrustPassportAudit@1786": {
1035
+ "complexity": 65
1036
+ },
1037
+ "validateReleaseEvidenceAttachments@2105": {
1038
+ "complexity": 26
1039
+ }
1040
+ }
1041
+ },
1042
+ "current": {
1043
+ "lines": 2883,
1044
+ "functions": {
1045
+ "mergeAuthoritativePassportBase@407": {
1046
+ "complexity": 29
1047
+ },
1048
+ "normalizeKfd2Claim@832": {
1049
+ "complexity": 59
1050
+ },
1051
+ "createReleasePassport@1165": {
1052
+ "lines": 268,
1053
+ "complexity": 30
1054
+ },
1055
+ "collectGitHubReleasePassport@1465": {
1056
+ "lines": 304,
1057
+ "complexity": 43
1058
+ },
1059
+ "validateKfd2ReleaseTrustPassportAudit@1786": {
1060
+ "complexity": 65
1061
+ },
1062
+ "validateReleaseEvidenceAttachments@2105": {
1063
+ "complexity": 26
1064
+ }
1065
+ }
1066
+ },
1067
+ "target": {
1068
+ "lines": 600,
1069
+ "functions": {
1070
+ "mergeAuthoritativePassportBase@407": {
1071
+ "complexity": 25
1072
+ },
1073
+ "normalizeKfd2Claim@832": {
1074
+ "complexity": 25
1075
+ },
1076
+ "createReleasePassport@1165": {
1077
+ "lines": 180,
1078
+ "complexity": 25
1079
+ },
1080
+ "collectGitHubReleasePassport@1465": {
1081
+ "lines": 180,
1082
+ "complexity": 25
1083
+ },
1084
+ "validateKfd2ReleaseTrustPassportAudit@1786": {
1085
+ "complexity": 25
1086
+ },
1087
+ "validateReleaseEvidenceAttachments@2105": {
1088
+ "complexity": 25
1089
+ }
1090
+ }
1091
+ }
1092
+ },
1093
+ "packages/core/release-tail-provider-plane.js": {
1094
+ "baseline": {
1095
+ "lines": 1228,
1096
+ "functions": {
1097
+ "normalizeCapability@235": {
1098
+ "lines": 255
1099
+ },
1100
+ "validateReleaseTailEffectPlan@602": {
1101
+ "complexity": 30
1102
+ },
1103
+ "validateReleaseTailTransaction@744": {
1104
+ "complexity": 33
1105
+ },
1106
+ "executeReleaseTailTransaction@1016": {
1107
+ "lines": 190,
1108
+ "complexity": 27
1109
+ }
1110
+ }
1111
+ },
1112
+ "current": {
1113
+ "lines": 1228,
1114
+ "functions": {
1115
+ "normalizeCapability@235": {
1116
+ "lines": 255
1117
+ },
1118
+ "validateReleaseTailEffectPlan@602": {
1119
+ "complexity": 30
1120
+ },
1121
+ "validateReleaseTailTransaction@744": {
1122
+ "complexity": 33
1123
+ },
1124
+ "executeReleaseTailTransaction@1016": {
1125
+ "lines": 190,
1126
+ "complexity": 27
1127
+ }
1128
+ }
1129
+ },
1130
+ "target": {
1131
+ "lines": 600,
1132
+ "functions": {
1133
+ "normalizeCapability@235": {
1134
+ "lines": 180
1135
+ },
1136
+ "validateReleaseTailEffectPlan@602": {
1137
+ "complexity": 25
1138
+ },
1139
+ "validateReleaseTailTransaction@744": {
1140
+ "complexity": 25
1141
+ },
1142
+ "executeReleaseTailTransaction@1016": {
1143
+ "lines": 180,
1144
+ "complexity": 25
1145
+ }
1146
+ }
1147
+ }
1148
+ },
1149
+ "packages/core/release-train.js": {
1150
+ "baseline": {
1151
+ "lines": 740
1152
+ },
1153
+ "current": {
1154
+ "lines": 740
1155
+ },
1156
+ "target": {
1157
+ "lines": 600
1158
+ }
1159
+ },
1160
+ "packages/core/stable-release-gate.js": {
1161
+ "baseline": {
1162
+ "functions": {
1163
+ "evaluateStableReleaseGate@121": {
1164
+ "complexity": 26
1165
+ }
1166
+ }
1167
+ },
1168
+ "current": {
1169
+ "functions": {
1170
+ "evaluateStableReleaseGate@121": {
1171
+ "complexity": 26
1172
+ }
1173
+ }
1174
+ },
1175
+ "target": {
1176
+ "functions": {
1177
+ "evaluateStableReleaseGate@121": {
1178
+ "complexity": 25
1179
+ }
1180
+ }
1181
+ }
1182
+ },
1183
+ "packages/core/v4-runtime-ref-resume-authority.js": {
1184
+ "baseline": {
1185
+ "lines": 625
1186
+ },
1187
+ "current": {
1188
+ "lines": 625
1189
+ },
1190
+ "target": {
1191
+ "lines": 600
1192
+ }
1193
+ },
1194
+ "scripts/audit-github-governance.mjs": {
1195
+ "baseline": {
1196
+ "functions": {
1197
+ "collectGithubGovernanceAudit@286": {
1198
+ "lines": 181,
1199
+ "complexity": 35
1200
+ }
1201
+ }
1202
+ },
1203
+ "current": {
1204
+ "functions": {
1205
+ "collectGithubGovernanceAudit@286": {
1206
+ "lines": 181,
1207
+ "complexity": 35
1208
+ }
1209
+ }
1210
+ },
1211
+ "target": {
1212
+ "functions": {
1213
+ "collectGithubGovernanceAudit@286": {
1214
+ "lines": 180,
1215
+ "complexity": 25
1216
+ }
1217
+ }
1218
+ }
1219
+ },
1220
+ "scripts/audit-publication-control-plane.mjs": {
1221
+ "baseline": {
1222
+ "functions": {
1223
+ "main@200": {
1224
+ "lines": 322,
1225
+ "complexity": 92
1226
+ }
1227
+ }
1228
+ },
1229
+ "current": {
1230
+ "functions": {
1231
+ "main@200": {
1232
+ "lines": 322,
1233
+ "complexity": 92
1234
+ }
1235
+ }
1236
+ },
1237
+ "target": {
1238
+ "functions": {
1239
+ "main@200": {
1240
+ "lines": 180,
1241
+ "complexity": 25
1242
+ }
1243
+ }
1244
+ }
1245
+ },
1246
+ "scripts/auditable-demo.mjs": {
1247
+ "baseline": {
1248
+ "lines": 1324
1249
+ },
1250
+ "current": {
1251
+ "lines": 1324
1252
+ },
1253
+ "target": {
1254
+ "lines": 600
1255
+ }
1256
+ },
1257
+ "scripts/build-contract-core.mjs": {
1258
+ "baseline": {
1259
+ "lines": 1229
1260
+ },
1261
+ "current": {
1262
+ "lines": 1229
1263
+ },
1264
+ "target": {
1265
+ "lines": 600
1266
+ }
1267
+ },
1268
+ "scripts/check-inventory.mjs": {
1269
+ "baseline": {
1270
+ "lines": 1515
1271
+ },
1272
+ "current": {
1273
+ "lines": 1515
1274
+ },
1275
+ "target": {
1276
+ "lines": 600
1277
+ }
1278
+ },
1279
+ "scripts/check-maintainability.mjs": {
1280
+ "baseline": {
1281
+ "functions": {
1282
+ "evaluateMaintainability@353": {
1283
+ "complexity": 29
1284
+ }
1285
+ }
1286
+ },
1287
+ "current": {
1288
+ "functions": {
1289
+ "evaluateMaintainability@353": {
1290
+ "complexity": 29
1291
+ }
1292
+ }
1293
+ },
1294
+ "target": {
1295
+ "functions": {
1296
+ "evaluateMaintainability@353": {
1297
+ "complexity": 25
1298
+ }
1299
+ }
1300
+ }
1301
+ },
1302
+ "scripts/dev-alpha-candidate-patrol.mjs": {
1303
+ "baseline": {
1304
+ "lines": 1197,
1305
+ "functions": {
1306
+ "normalizeDevAlphaPatrolOptions@240": {
1307
+ "complexity": 33
1308
+ },
1309
+ "runDevAlphaCandidatePatrol@582": {
1310
+ "lines": 333,
1311
+ "complexity": 53
1312
+ },
1313
+ "createGitHubChannelCandidateClient@920": {
1314
+ "lines": 208
1315
+ }
1316
+ }
1317
+ },
1318
+ "current": {
1319
+ "lines": 1197,
1320
+ "functions": {
1321
+ "normalizeDevAlphaPatrolOptions@240": {
1322
+ "complexity": 33
1323
+ },
1324
+ "runDevAlphaCandidatePatrol@582": {
1325
+ "lines": 333,
1326
+ "complexity": 53
1327
+ },
1328
+ "createGitHubChannelCandidateClient@920": {
1329
+ "lines": 208
1330
+ }
1331
+ }
1332
+ },
1333
+ "target": {
1334
+ "lines": 600,
1335
+ "functions": {
1336
+ "normalizeDevAlphaPatrolOptions@240": {
1337
+ "complexity": 25
1338
+ },
1339
+ "runDevAlphaCandidatePatrol@582": {
1340
+ "lines": 180,
1341
+ "complexity": 25
1342
+ },
1343
+ "createGitHubChannelCandidateClient@920": {
1344
+ "lines": 180
1345
+ }
1346
+ }
1347
+ }
1348
+ },
1349
+ "scripts/dev-delivery-authority.mjs": {
1350
+ "baseline": {
1351
+ "functions": {
1352
+ "devDeliveryAuthorityCliOptions@241": {
1353
+ "lines": 207
1354
+ }
1355
+ }
1356
+ },
1357
+ "current": {
1358
+ "functions": {
1359
+ "devDeliveryAuthorityCliOptions@241": {
1360
+ "lines": 207
1361
+ }
1362
+ }
1363
+ },
1364
+ "target": {
1365
+ "functions": {
1366
+ "devDeliveryAuthorityCliOptions@241": {
1367
+ "lines": 180
1368
+ }
1369
+ }
1370
+ }
1371
+ },
1372
+ "scripts/dev-delivery-two-phase.mjs": {
1373
+ "baseline": {
1374
+ "functions": {
1375
+ "runTwoPhaseDelivery@211": {
1376
+ "lines": 200,
1377
+ "complexity": 35
1378
+ }
1379
+ }
1380
+ },
1381
+ "current": {
1382
+ "functions": {
1383
+ "runTwoPhaseDelivery@211": {
1384
+ "lines": 200,
1385
+ "complexity": 35
1386
+ }
1387
+ }
1388
+ },
1389
+ "target": {
1390
+ "functions": {
1391
+ "runTwoPhaseDelivery@211": {
1392
+ "lines": 180,
1393
+ "complexity": 25
1394
+ }
1395
+ }
1396
+ }
1397
+ },
1398
+ "scripts/dev-delivery-warrant-options.mjs": {
1399
+ "baseline": {
1400
+ "functions": {
1401
+ "devDeliveryCliOptions@36": {
1402
+ "lines": 247
1403
+ }
1404
+ }
1405
+ },
1406
+ "current": {
1407
+ "functions": {
1408
+ "devDeliveryCliOptions@36": {
1409
+ "lines": 247
1410
+ }
1411
+ }
1412
+ },
1413
+ "target": {
1414
+ "functions": {
1415
+ "devDeliveryCliOptions@36": {
1416
+ "lines": 180
1417
+ }
1418
+ }
1419
+ }
1420
+ },
1421
+ "scripts/dev-pr-auto-merge.mjs": {
1422
+ "baseline": {
1423
+ "lines": 1222,
1424
+ "functions": {
1425
+ "evaluatePullRequest@204": {
1426
+ "complexity": 31
1427
+ },
1428
+ "runDevPrAdmission@764": {
1429
+ "complexity": 32
1430
+ },
1431
+ "runDevPrAutoMerge@909": {
1432
+ "lines": 186,
1433
+ "complexity": 53
1434
+ }
1435
+ }
1436
+ },
1437
+ "current": {
1438
+ "lines": 1222,
1439
+ "functions": {
1440
+ "evaluatePullRequest@204": {
1441
+ "complexity": 31
1442
+ },
1443
+ "runDevPrAdmission@764": {
1444
+ "complexity": 32
1445
+ },
1446
+ "runDevPrAutoMerge@909": {
1447
+ "lines": 186,
1448
+ "complexity": 53
1449
+ }
1450
+ }
1451
+ },
1452
+ "target": {
1453
+ "lines": 600,
1454
+ "functions": {
1455
+ "evaluatePullRequest@204": {
1456
+ "complexity": 25
1457
+ },
1458
+ "runDevPrAdmission@764": {
1459
+ "complexity": 25
1460
+ },
1461
+ "runDevPrAutoMerge@909": {
1462
+ "lines": 180,
1463
+ "complexity": 25
1464
+ }
1465
+ }
1466
+ }
1467
+ },
1468
+ "scripts/finalize-native-artifact-signing-result.mjs": {
1469
+ "baseline": {
1470
+ "functions": {
1471
+ "finalizeNativeArtifactSigningResult@58": {
1472
+ "lines": 201
1473
+ }
1474
+ }
1475
+ },
1476
+ "current": {
1477
+ "functions": {
1478
+ "finalizeNativeArtifactSigningResult@58": {
1479
+ "lines": 201
1480
+ }
1481
+ }
1482
+ },
1483
+ "target": {
1484
+ "functions": {
1485
+ "finalizeNativeArtifactSigningResult@58": {
1486
+ "lines": 180
1487
+ }
1488
+ }
1489
+ }
1490
+ },
1491
+ "scripts/generate-channel-promotion-workflow.mjs": {
1492
+ "baseline": {
1493
+ "functions": {
1494
+ "generateChannelPromotionWorkflow@277": {
1495
+ "lines": 282
1496
+ }
1497
+ }
1498
+ },
1499
+ "current": {
1500
+ "functions": {
1501
+ "generateChannelPromotionWorkflow@277": {
1502
+ "lines": 282
1503
+ }
1504
+ }
1505
+ },
1506
+ "target": {
1507
+ "functions": {
1508
+ "generateChannelPromotionWorkflow@277": {
1509
+ "lines": 180
1510
+ }
1511
+ }
1512
+ }
1513
+ },
1514
+ "scripts/generate-site-bundle.mjs": {
1515
+ "baseline": {
1516
+ "lines": 1410,
1517
+ "functions": {
1518
+ "buildSiteBundle@719": {
1519
+ "lines": 637
1520
+ }
1521
+ }
1522
+ },
1523
+ "current": {
1524
+ "lines": 1410,
1525
+ "functions": {
1526
+ "buildSiteBundle@719": {
1527
+ "lines": 637
1528
+ }
1529
+ }
1530
+ },
1531
+ "target": {
1532
+ "lines": 600,
1533
+ "functions": {
1534
+ "buildSiteBundle@719": {
1535
+ "lines": 180
1536
+ }
1537
+ }
1538
+ }
1539
+ },
1540
+ "scripts/infra-contract-core.mjs": {
1541
+ "baseline": {
1542
+ "lines": 1032,
1543
+ "functions": {
1544
+ "verifyInfraContractEvidenceBundle@698": {
1545
+ "complexity": 50
1546
+ }
1547
+ }
1548
+ },
1549
+ "current": {
1550
+ "lines": 1032,
1551
+ "functions": {
1552
+ "verifyInfraContractEvidenceBundle@698": {
1553
+ "complexity": 50
1554
+ }
1555
+ }
1556
+ },
1557
+ "target": {
1558
+ "lines": 600,
1559
+ "functions": {
1560
+ "verifyInfraContractEvidenceBundle@698": {
1561
+ "complexity": 25
1562
+ }
1563
+ }
1564
+ }
1565
+ },
1566
+ "scripts/infra-contract.mjs": {
1567
+ "baseline": {
1568
+ "functions": {
1569
+ "infraContractCli@110": {
1570
+ "lines": 227,
1571
+ "complexity": 31
1572
+ }
1573
+ }
1574
+ },
1575
+ "current": {
1576
+ "functions": {
1577
+ "infraContractCli@110": {
1578
+ "lines": 227,
1579
+ "complexity": 31
1580
+ }
1581
+ }
1582
+ },
1583
+ "target": {
1584
+ "functions": {
1585
+ "infraContractCli@110": {
1586
+ "lines": 180,
1587
+ "complexity": 25
1588
+ }
1589
+ }
1590
+ }
1591
+ },
1592
+ "scripts/locked-source-checkout.mjs": {
1593
+ "baseline": {
1594
+ "functions": {
1595
+ "lockedSourceCheckout@386": {
1596
+ "lines": 194,
1597
+ "complexity": 31
1598
+ }
1599
+ }
1600
+ },
1601
+ "current": {
1602
+ "functions": {
1603
+ "lockedSourceCheckout@386": {
1604
+ "lines": 194,
1605
+ "complexity": 31
1606
+ }
1607
+ }
1608
+ },
1609
+ "target": {
1610
+ "functions": {
1611
+ "lockedSourceCheckout@386": {
1612
+ "lines": 180,
1613
+ "complexity": 25
1614
+ }
1615
+ }
1616
+ }
1617
+ },
1618
+ "scripts/maintainability-domain-metrics.mjs": {
1619
+ "baseline": {
1620
+ "functions": {
1621
+ "rustTokens@10": {
1622
+ "complexity": 29
1623
+ }
1624
+ }
1625
+ },
1626
+ "current": {
1627
+ "functions": {
1628
+ "rustTokens@10": {
1629
+ "complexity": 29
1630
+ }
1631
+ }
1632
+ },
1633
+ "target": {
1634
+ "functions": {
1635
+ "rustTokens@10": {
1636
+ "complexity": 25
1637
+ }
1638
+ }
1639
+ }
1640
+ },
1641
+ "scripts/paper.mjs": {
1642
+ "baseline": {
1643
+ "lines": 644,
1644
+ "functions": {
1645
+ "humanSummary@102": {
1646
+ "complexity": 28
1647
+ }
1648
+ }
1649
+ },
1650
+ "current": {
1651
+ "lines": 644,
1652
+ "functions": {
1653
+ "humanSummary@102": {
1654
+ "complexity": 28
1655
+ }
1656
+ }
1657
+ },
1658
+ "target": {
1659
+ "lines": 600,
1660
+ "functions": {
1661
+ "humanSummary@102": {
1662
+ "complexity": 25
1663
+ }
1664
+ }
1665
+ }
1666
+ },
1667
+ "scripts/publication-commit-evidence.mjs": {
1668
+ "baseline": {
1669
+ "functions": {
1670
+ "validateInstallerBundle@85": {
1671
+ "complexity": 42
1672
+ },
1673
+ "verifyInstallerBundleReadback@307": {
1674
+ "complexity": 30
1675
+ }
1676
+ }
1677
+ },
1678
+ "current": {
1679
+ "functions": {
1680
+ "validateInstallerBundle@85": {
1681
+ "complexity": 42
1682
+ },
1683
+ "verifyInstallerBundleReadback@307": {
1684
+ "complexity": 30
1685
+ }
1686
+ }
1687
+ },
1688
+ "target": {
1689
+ "functions": {
1690
+ "validateInstallerBundle@85": {
1691
+ "complexity": 25
1692
+ },
1693
+ "verifyInstallerBundleReadback@307": {
1694
+ "complexity": 25
1695
+ }
1696
+ }
1697
+ }
1698
+ },
1699
+ "scripts/reconcile-github-governance.mjs": {
1700
+ "baseline": {
1701
+ "lines": 689
1702
+ },
1703
+ "current": {
1704
+ "lines": 689
1705
+ },
1706
+ "target": {
1707
+ "lines": 600
1708
+ }
1709
+ },
1710
+ "scripts/release-candidate-resolver.mjs": {
1711
+ "baseline": {
1712
+ "lines": 854,
1713
+ "functions": {
1714
+ "resolveReleaseCandidateArtifacts@475": {
1715
+ "lines": 309,
1716
+ "complexity": 62
1717
+ },
1718
+ "resolveReleaseCandidateArtifactsCli@785": {
1719
+ "complexity": 29
1720
+ }
1721
+ }
1722
+ },
1723
+ "current": {
1724
+ "lines": 854,
1725
+ "functions": {
1726
+ "resolveReleaseCandidateArtifacts@475": {
1727
+ "lines": 309,
1728
+ "complexity": 62
1729
+ },
1730
+ "resolveReleaseCandidateArtifactsCli@785": {
1731
+ "complexity": 29
1732
+ }
1733
+ }
1734
+ },
1735
+ "target": {
1736
+ "lines": 600,
1737
+ "functions": {
1738
+ "resolveReleaseCandidateArtifacts@475": {
1739
+ "lines": 180,
1740
+ "complexity": 25
1741
+ },
1742
+ "resolveReleaseCandidateArtifactsCli@785": {
1743
+ "complexity": 25
1744
+ }
1745
+ }
1746
+ }
1747
+ },
1748
+ "scripts/release-line-policy.mjs": {
1749
+ "baseline": {
1750
+ "functions": {
1751
+ "getBumpKeyword@135": {
1752
+ "complexity": 35
1753
+ }
1754
+ }
1755
+ },
1756
+ "current": {
1757
+ "functions": {
1758
+ "getBumpKeyword@135": {
1759
+ "complexity": 31
1760
+ }
1761
+ }
1762
+ },
1763
+ "target": {
1764
+ "functions": {
1765
+ "getBumpKeyword@135": {
1766
+ "complexity": 25
1767
+ }
1768
+ }
1769
+ }
1770
+ },
1771
+ "scripts/resume-from-candidate-run.mjs": {
1772
+ "baseline": {
1773
+ "lines": 1125
1774
+ },
1775
+ "current": {
1776
+ "lines": 1125
1777
+ },
1778
+ "target": {
1779
+ "lines": 600
1780
+ }
1781
+ },
1782
+ "scripts/run-lifecycle-core.mjs": {
1783
+ "baseline": {
1784
+ "lines": 885
1785
+ },
1786
+ "current": {
1787
+ "lines": 850
1788
+ },
1789
+ "target": {
1790
+ "lines": 600
1791
+ }
1792
+ },
1793
+ "scripts/stable-candidate-patrol.mjs": {
1794
+ "baseline": {
1795
+ "functions": {
1796
+ "runStableCandidatePatrol@141": {
1797
+ "complexity": 31
1798
+ }
1799
+ }
1800
+ },
1801
+ "current": {
1802
+ "functions": {
1803
+ "runStableCandidatePatrol@141": {
1804
+ "complexity": 31
1805
+ }
1806
+ }
1807
+ },
1808
+ "target": {
1809
+ "functions": {
1810
+ "runStableCandidatePatrol@141": {
1811
+ "complexity": 25
1812
+ }
1813
+ }
1814
+ }
1815
+ },
1816
+ "scripts/stable-release-gate.mjs": {
1817
+ "baseline": {
1818
+ "functions": {
1819
+ "resolveCanaryEvidence@130": {
1820
+ "complexity": 56
1821
+ }
1822
+ }
1823
+ },
1824
+ "current": {
1825
+ "functions": {
1826
+ "resolveCanaryEvidence@130": {
1827
+ "complexity": 56
1828
+ }
1829
+ }
1830
+ },
1831
+ "target": {
1832
+ "functions": {
1833
+ "resolveCanaryEvidence@130": {
1834
+ "complexity": 25
1835
+ }
1836
+ }
1837
+ }
1838
+ },
1839
+ "scripts/v4-architecture.mjs": {
1840
+ "baseline": {
1841
+ "lines": 610
1842
+ },
1843
+ "current": {
1844
+ "lines": 610
1845
+ },
1846
+ "target": {
1847
+ "lines": 600
1848
+ }
1849
+ },
1850
+ "scripts/v4-warrant-shadow-plan.mjs": {
1851
+ "baseline": {
1852
+ "lines": 601,
1853
+ "functions": {
1854
+ "validatePlan@96": {
1855
+ "lines": 182,
1856
+ "complexity": 26
1857
+ }
1858
+ }
1859
+ },
1860
+ "current": {
1861
+ "lines": 601,
1862
+ "functions": {
1863
+ "validatePlan@96": {
1864
+ "lines": 182,
1865
+ "complexity": 26
1866
+ }
1867
+ }
1868
+ },
1869
+ "target": {
1870
+ "lines": 600,
1871
+ "functions": {
1872
+ "validatePlan@96": {
1873
+ "lines": 180,
1874
+ "complexity": 25
1875
+ }
1876
+ }
1877
+ }
1878
+ },
1879
+ "scripts/web-surface-core.mjs": {
1880
+ "baseline": {
1881
+ "lines": 2603,
1882
+ "functions": {
1883
+ "preflightWebSurfaceProduction@1331": {
1884
+ "lines": 243,
1885
+ "complexity": 54
1886
+ },
1887
+ "checkWebSurfaceHealth@1757": {
1888
+ "lines": 276,
1889
+ "complexity": 56
1890
+ },
1891
+ "deployBindingOperations@2034": {
1892
+ "lines": 205,
1893
+ "complexity": 28
1894
+ }
1895
+ }
1896
+ },
1897
+ "current": {
1898
+ "lines": 2603,
1899
+ "functions": {
1900
+ "preflightWebSurfaceProduction@1331": {
1901
+ "lines": 243,
1902
+ "complexity": 54
1903
+ },
1904
+ "checkWebSurfaceHealth@1757": {
1905
+ "lines": 276,
1906
+ "complexity": 56
1907
+ },
1908
+ "deployBindingOperations@2034": {
1909
+ "lines": 205,
1910
+ "complexity": 28
1911
+ }
1912
+ }
1913
+ },
1914
+ "target": {
1915
+ "lines": 600,
1916
+ "functions": {
1917
+ "preflightWebSurfaceProduction@1331": {
1918
+ "lines": 180,
1919
+ "complexity": 25
1920
+ },
1921
+ "checkWebSurfaceHealth@1757": {
1922
+ "lines": 180,
1923
+ "complexity": 25
1924
+ },
1925
+ "deployBindingOperations@2034": {
1926
+ "lines": 180,
1927
+ "complexity": 25
1928
+ }
1929
+ }
1930
+ }
1931
+ },
1932
+ "scripts/web-surface-production-release-pr.mjs": {
1933
+ "baseline": {
1934
+ "lines": 712,
1935
+ "functions": {
1936
+ "webSurfaceProductionReleasePrCli@558": {
1937
+ "complexity": 38
1938
+ }
1939
+ }
1940
+ },
1941
+ "current": {
1942
+ "lines": 712,
1943
+ "functions": {
1944
+ "webSurfaceProductionReleasePrCli@558": {
1945
+ "complexity": 38
1946
+ }
1947
+ }
1948
+ },
1949
+ "target": {
1950
+ "lines": 600,
1951
+ "functions": {
1952
+ "webSurfaceProductionReleasePrCli@558": {
1953
+ "complexity": 25
1954
+ }
1955
+ }
1956
+ }
1957
+ },
1958
+ "scripts/web-surface.mjs": {
1959
+ "baseline": {
1960
+ "functions": {
1961
+ "compactWebSurfaceApplyResult@188": {
1962
+ "complexity": 27
1963
+ },
1964
+ "webSurfaceCli@229": {
1965
+ "lines": 223,
1966
+ "complexity": 58
1967
+ }
1968
+ }
1969
+ },
1970
+ "current": {
1971
+ "functions": {
1972
+ "compactWebSurfaceApplyResult@188": {
1973
+ "complexity": 27
1974
+ },
1975
+ "webSurfaceCli@229": {
1976
+ "lines": 223,
1977
+ "complexity": 58
1978
+ }
1979
+ }
1980
+ },
1981
+ "target": {
1982
+ "functions": {
1983
+ "compactWebSurfaceApplyResult@188": {
1984
+ "complexity": 25
1985
+ },
1986
+ "webSurfaceCli@229": {
1987
+ "lines": 180,
1988
+ "complexity": 25
1989
+ }
1990
+ }
1991
+ }
1992
+ },
1993
+ "actions/promote-buildchain-ref/internal/promotion-operations.js": {
1994
+ "baseline": {
1995
+ "lines": 1320,
1996
+ "functions": {
1997
+ "updateBranch@158": {
1998
+ "lines": 378,
1999
+ "complexity": 34
2000
+ },
2001
+ "assertReleasePrOrVersionStateParent@795": {
2002
+ "lines": 335,
2003
+ "complexity": 42
2004
+ }
2005
+ }
2006
+ },
2007
+ "current": {
2008
+ "lines": 1171,
2009
+ "functions": {
2010
+ "updateBranch@158": {
2011
+ "lines": 378,
2012
+ "complexity": 34
2013
+ },
2014
+ "assertReleasePrOrVersionStateParent@795": {
2015
+ "lines": 335,
2016
+ "complexity": 42
2017
+ }
2018
+ }
2019
+ },
2020
+ "target": {
2021
+ "lines": 600,
2022
+ "functions": {
2023
+ "updateBranch@158": {
2024
+ "lines": 180,
2025
+ "complexity": 25
2026
+ },
2027
+ "assertReleasePrOrVersionStateParent@795": {
2028
+ "lines": 180,
2029
+ "complexity": 25
2030
+ }
2031
+ }
2032
+ }
2033
+ }
2034
+ },
2035
+ "rust": {
2036
+ "crates/buildchain-v4-bridge/src/main.rs": {
2037
+ "baseline": {
2038
+ "functions": {
2039
+ "execute@222": {
2040
+ "lines": 192
2041
+ }
2042
+ }
2043
+ },
2044
+ "current": {
2045
+ "functions": {
2046
+ "execute@222": {
2047
+ "lines": 192
2048
+ }
2049
+ }
2050
+ },
2051
+ "target": {
2052
+ "functions": {
2053
+ "execute@222": {
2054
+ "lines": 140
2055
+ }
2056
+ }
2057
+ }
2058
+ },
2059
+ "crates/buildchain-v4-contracts/src/main.rs": {
2060
+ "baseline": {
2061
+ "functions": {
2062
+ "run@482": {
2063
+ "complexity": 32
2064
+ }
2065
+ }
2066
+ },
2067
+ "current": {
2068
+ "functions": {
2069
+ "run@482": {
2070
+ "complexity": 32
2071
+ }
2072
+ }
2073
+ },
2074
+ "target": {
2075
+ "functions": {
2076
+ "run@482": {
2077
+ "complexity": 30
2078
+ }
2079
+ }
2080
+ }
2081
+ },
2082
+ "crates/buildchain-v4-contracts/src/provider_operation_journal.rs": {
2083
+ "baseline": {
2084
+ "functions": {
2085
+ "validate@239": {
2086
+ "complexity": 39
2087
+ }
2088
+ }
2089
+ },
2090
+ "current": {
2091
+ "functions": {
2092
+ "validate@239": {
2093
+ "complexity": 39
2094
+ }
2095
+ }
2096
+ },
2097
+ "target": {
2098
+ "functions": {
2099
+ "validate@239": {
2100
+ "complexity": 30
2101
+ }
2102
+ }
2103
+ }
2104
+ },
2105
+ "crates/buildchain-v4-contracts/src/provider_operation_journal/fold.rs": {
2106
+ "baseline": {
2107
+ "functions": {
2108
+ "fold_provider_operation_journal@43": {
2109
+ "lines": 176,
2110
+ "complexity": 34
2111
+ }
2112
+ }
2113
+ },
2114
+ "current": {
2115
+ "functions": {
2116
+ "fold_provider_operation_journal@43": {
2117
+ "lines": 176,
2118
+ "complexity": 34
2119
+ }
2120
+ }
2121
+ },
2122
+ "target": {
2123
+ "functions": {
2124
+ "fold_provider_operation_journal@43": {
2125
+ "lines": 140,
2126
+ "complexity": 30
2127
+ }
2128
+ }
2129
+ }
2130
+ },
2131
+ "crates/buildchain-v4-contracts/src/warrant.rs": {
2132
+ "baseline": {
2133
+ "functions": {
2134
+ "validate@150": {
2135
+ "complexity": 39
2136
+ }
2137
+ }
2138
+ },
2139
+ "current": {
2140
+ "functions": {
2141
+ "validate@150": {
2142
+ "complexity": 39
2143
+ }
2144
+ }
2145
+ },
2146
+ "target": {
2147
+ "functions": {
2148
+ "validate@150": {
2149
+ "complexity": 30
2150
+ }
2151
+ }
2152
+ }
2153
+ },
2154
+ "crates/buildchain-v4-contracts/src/warrant/decision.rs": {
2155
+ "baseline": {
2156
+ "functions": {
2157
+ "decide_delivery_warrant@126": {
2158
+ "lines": 345,
2159
+ "complexity": 36
2160
+ }
2161
+ }
2162
+ },
2163
+ "current": {
2164
+ "functions": {
2165
+ "decide_delivery_warrant@126": {
2166
+ "lines": 345,
2167
+ "complexity": 36
2168
+ }
2169
+ }
2170
+ },
2171
+ "target": {
2172
+ "functions": {
2173
+ "decide_delivery_warrant@126": {
2174
+ "lines": 140,
2175
+ "complexity": 30
2176
+ }
2177
+ }
2178
+ }
2179
+ }
2180
+ },
2181
+ "tests": {
2182
+ "tests/auditable-demo-platform.test.mjs": {
2183
+ "baseline": {
2184
+ "lines": 712
2185
+ },
2186
+ "current": {
2187
+ "lines": 712
2188
+ },
2189
+ "target": {
2190
+ "lines": 600
2191
+ }
2192
+ },
2193
+ "tests/auditable-demo.test.mjs": {
2194
+ "baseline": {
2195
+ "lines": 1389
2196
+ },
2197
+ "current": {
2198
+ "lines": 1389
2199
+ },
2200
+ "target": {
2201
+ "lines": 600
2202
+ }
2203
+ },
2204
+ "tests/aws-windows-jit-controller.test.mjs": {
2205
+ "baseline": {
2206
+ "lines": 728,
2207
+ "functions": {
2208
+ "<anonymous@543>@543": {
2209
+ "lines": 186
2210
+ }
2211
+ }
2212
+ },
2213
+ "current": {
2214
+ "lines": 728,
2215
+ "functions": {
2216
+ "<anonymous@543>@543": {
2217
+ "lines": 186
2218
+ }
2219
+ }
2220
+ },
2221
+ "target": {
2222
+ "lines": 600,
2223
+ "functions": {
2224
+ "<anonymous@543>@543": {
2225
+ "lines": 180
2226
+ }
2227
+ }
2228
+ }
2229
+ },
2230
+ "tests/build-surface-promotion.test.mjs": {
2231
+ "baseline": {
2232
+ "lines": 3181,
2233
+ "functions": {
2234
+ "<anonymous@2013>@2013": {
2235
+ "lines": 206
2236
+ }
2237
+ }
2238
+ },
2239
+ "current": {
2240
+ "lines": 3178,
2241
+ "functions": {
2242
+ "<anonymous@2013>@2013": {
2243
+ "lines": 206
2244
+ }
2245
+ }
2246
+ },
2247
+ "target": {
2248
+ "lines": 600,
2249
+ "functions": {
2250
+ "<anonymous@2013>@2013": {
2251
+ "lines": 180
2252
+ }
2253
+ }
2254
+ }
2255
+ },
2256
+ "tests/build-surface.test.mjs": {
2257
+ "baseline": {
2258
+ "lines": 4639,
2259
+ "functions": {
2260
+ "<anonymous@170>@170": {
2261
+ "lines": 195
2262
+ },
2263
+ "<anonymous@553>@553": {
2264
+ "lines": 183
2265
+ },
2266
+ "<anonymous@737>@737": {
2267
+ "lines": 506
2268
+ },
2269
+ "<anonymous@2153>@2153": {
2270
+ "lines": 249
2271
+ },
2272
+ "<anonymous@3337>@3337": {
2273
+ "lines": 188
2274
+ }
2275
+ }
2276
+ },
2277
+ "current": {
2278
+ "lines": 3680,
2279
+ "functions": {
2280
+ "<anonymous@170>@170": {
2281
+ "lines": 195
2282
+ },
2283
+ "<anonymous@553>@553": {
2284
+ "lines": 183
2285
+ },
2286
+ "<anonymous@737>@737": {
2287
+ "lines": 506
2288
+ },
2289
+ "<anonymous@2153>@2153": {
2290
+ "lines": 249
2291
+ },
2292
+ "<anonymous@3337>@3337": {
2293
+ "lines": 188
2294
+ }
2295
+ }
2296
+ },
2297
+ "target": {
2298
+ "lines": 600,
2299
+ "functions": {
2300
+ "<anonymous@170>@170": {
2301
+ "lines": 180
2302
+ },
2303
+ "<anonymous@553>@553": {
2304
+ "lines": 180
2305
+ },
2306
+ "<anonymous@737>@737": {
2307
+ "lines": 180
2308
+ },
2309
+ "<anonymous@2153>@2153": {
2310
+ "lines": 180
2311
+ },
2312
+ "<anonymous@3337>@3337": {
2313
+ "lines": 180
2314
+ }
2315
+ }
2316
+ }
2317
+ },
2318
+ "tests/buildchain-config.test.mjs": {
2319
+ "baseline": {
2320
+ "lines": 1420
2321
+ },
2322
+ "current": {
2323
+ "lines": 1420
2324
+ },
2325
+ "target": {
2326
+ "lines": 600
2327
+ }
2328
+ },
2329
+ "tests/cli.test.mjs": {
2330
+ "baseline": {
2331
+ "lines": 2840,
2332
+ "functions": {
2333
+ "<anonymous@2363>@2363": {
2334
+ "lines": 253
2335
+ }
2336
+ }
2337
+ },
2338
+ "current": {
2339
+ "lines": 2840,
2340
+ "functions": {
2341
+ "<anonymous@2363>@2363": {
2342
+ "lines": 253
2343
+ }
2344
+ }
2345
+ },
2346
+ "target": {
2347
+ "lines": 600,
2348
+ "functions": {
2349
+ "<anonymous@2363>@2363": {
2350
+ "lines": 180
2351
+ }
2352
+ }
2353
+ }
2354
+ },
2355
+ "tests/dev-alpha-candidate-patrol.test.mjs": {
2356
+ "baseline": {
2357
+ "lines": 1422
2358
+ },
2359
+ "current": {
2360
+ "lines": 1422
2361
+ },
2362
+ "target": {
2363
+ "lines": 600
2364
+ }
2365
+ },
2366
+ "tests/dev-delivery-authority.test.mjs": {
2367
+ "baseline": {
2368
+ "lines": 2458,
2369
+ "functions": {
2370
+ "<anonymous@893>@893": {
2371
+ "lines": 253
2372
+ },
2373
+ "<anonymous@1323>@1323": {
2374
+ "lines": 279
2375
+ }
2376
+ }
2377
+ },
2378
+ "current": {
2379
+ "lines": 2458,
2380
+ "functions": {
2381
+ "<anonymous@893>@893": {
2382
+ "lines": 253
2383
+ },
2384
+ "<anonymous@1323>@1323": {
2385
+ "lines": 279
2386
+ }
2387
+ }
2388
+ },
2389
+ "target": {
2390
+ "lines": 600,
2391
+ "functions": {
2392
+ "<anonymous@893>@893": {
2393
+ "lines": 180
2394
+ },
2395
+ "<anonymous@1323>@1323": {
2396
+ "lines": 180
2397
+ }
2398
+ }
2399
+ }
2400
+ },
2401
+ "tests/dev-delivery-process-boundary.test.mjs": {
2402
+ "baseline": {
2403
+ "lines": 806
2404
+ },
2405
+ "current": {
2406
+ "lines": 806
2407
+ },
2408
+ "target": {
2409
+ "lines": 600
2410
+ }
2411
+ },
2412
+ "tests/dev-delivery-warrant-command.test.mjs": {
2413
+ "baseline": {
2414
+ "lines": 626
2415
+ },
2416
+ "current": {
2417
+ "lines": 626
2418
+ },
2419
+ "target": {
2420
+ "lines": 600
2421
+ }
2422
+ },
2423
+ "tests/dev-delivery-warrant.test.mjs": {
2424
+ "baseline": {
2425
+ "lines": 841
2426
+ },
2427
+ "current": {
2428
+ "lines": 841
2429
+ },
2430
+ "target": {
2431
+ "lines": 600
2432
+ }
2433
+ },
2434
+ "tests/dev-pr-auto-merge.test.mjs": {
2435
+ "baseline": {
2436
+ "lines": 1415
2437
+ },
2438
+ "current": {
2439
+ "lines": 1415
2440
+ },
2441
+ "target": {
2442
+ "lines": 600
2443
+ }
2444
+ },
2445
+ "tests/github-governance-authority.test.mjs": {
2446
+ "baseline": {
2447
+ "lines": 1179,
2448
+ "functions": {
2449
+ "<anonymous@817>@817": {
2450
+ "lines": 205
2451
+ }
2452
+ }
2453
+ },
2454
+ "current": {
2455
+ "lines": 1179,
2456
+ "functions": {
2457
+ "<anonymous@817>@817": {
2458
+ "lines": 205
2459
+ }
2460
+ }
2461
+ },
2462
+ "target": {
2463
+ "lines": 600,
2464
+ "functions": {
2465
+ "<anonymous@817>@817": {
2466
+ "lines": 180
2467
+ }
2468
+ }
2469
+ }
2470
+ },
2471
+ "tests/infra-contract.test.mjs": {
2472
+ "baseline": {
2473
+ "lines": 1056
2474
+ },
2475
+ "current": {
2476
+ "lines": 1056
2477
+ },
2478
+ "target": {
2479
+ "lines": 600
2480
+ }
2481
+ },
2482
+ "tests/macos-credential-island.test.mjs": {
2483
+ "baseline": {
2484
+ "lines": 916
2485
+ },
2486
+ "current": {
2487
+ "lines": 916
2488
+ },
2489
+ "target": {
2490
+ "lines": 600
2491
+ }
2492
+ },
2493
+ "tests/native-artifact-signing-authority.test.mjs": {
2494
+ "baseline": {
2495
+ "lines": 744,
2496
+ "functions": {
2497
+ "<anonymous@233>@233": {
2498
+ "lines": 229
2499
+ }
2500
+ }
2501
+ },
2502
+ "current": {
2503
+ "lines": 744,
2504
+ "functions": {
2505
+ "<anonymous@233>@233": {
2506
+ "lines": 229
2507
+ }
2508
+ }
2509
+ },
2510
+ "target": {
2511
+ "lines": 600,
2512
+ "functions": {
2513
+ "<anonymous@233>@233": {
2514
+ "lines": 180
2515
+ }
2516
+ }
2517
+ }
2518
+ },
2519
+ "tests/paper.test.mjs": {
2520
+ "baseline": {
2521
+ "lines": 1202
2522
+ },
2523
+ "current": {
2524
+ "lines": 1202
2525
+ },
2526
+ "target": {
2527
+ "lines": 600
2528
+ }
2529
+ },
2530
+ "tests/promote-buildchain-ref-governance.test.mjs": {
2531
+ "baseline": {
2532
+ "lines": 4220,
2533
+ "functions": {
2534
+ "<anonymous@4>@4": {
2535
+ "lines": 195
2536
+ },
2537
+ "<anonymous@200>@200": {
2538
+ "lines": 181
2539
+ },
2540
+ "<anonymous@382>@382": {
2541
+ "lines": 184
2542
+ },
2543
+ "<anonymous@696>@696": {
2544
+ "lines": 188
2545
+ },
2546
+ "<anonymous@904>@904": {
2547
+ "lines": 204
2548
+ }
2549
+ }
2550
+ },
2551
+ "current": {
2552
+ "lines": 1371,
2553
+ "functions": {
2554
+ "<anonymous@4>@4": {
2555
+ "lines": 195
2556
+ },
2557
+ "<anonymous@200>@200": {
2558
+ "lines": 181
2559
+ },
2560
+ "<anonymous@382>@382": {
2561
+ "lines": 184
2562
+ },
2563
+ "<anonymous@696>@696": {
2564
+ "lines": 188
2565
+ },
2566
+ "<anonymous@904>@904": {
2567
+ "lines": 204
2568
+ }
2569
+ }
2570
+ },
2571
+ "target": {
2572
+ "lines": 600,
2573
+ "functions": {
2574
+ "<anonymous@4>@4": {
2575
+ "lines": 180
2576
+ },
2577
+ "<anonymous@200>@200": {
2578
+ "lines": 180
2579
+ },
2580
+ "<anonymous@382>@382": {
2581
+ "lines": 180
2582
+ },
2583
+ "<anonymous@696>@696": {
2584
+ "lines": 180
2585
+ },
2586
+ "<anonymous@904>@904": {
2587
+ "lines": 180
2588
+ }
2589
+ }
2590
+ }
2591
+ },
2592
+ "tests/promote-buildchain-ref.test.mjs": {
2593
+ "baseline": {
2594
+ "lines": 4211,
2595
+ "functions": {
2596
+ "<anonymous@62>@62": {
2597
+ "lines": 203
2598
+ }
2599
+ }
2600
+ },
2601
+ "current": {
2602
+ "functions": {
2603
+ "<anonymous@62>@62": {
2604
+ "lines": 203
2605
+ }
2606
+ }
2607
+ },
2608
+ "target": {
2609
+ "functions": {
2610
+ "<anonymous@62>@62": {
2611
+ "lines": 180
2612
+ }
2613
+ }
2614
+ }
2615
+ },
2616
+ "tests/publication-authority.test.mjs": {
2617
+ "baseline": {
2618
+ "lines": 1034,
2619
+ "functions": {
2620
+ "fixture@94": {
2621
+ "lines": 215
2622
+ }
2623
+ }
2624
+ },
2625
+ "current": {
2626
+ "lines": 1034,
2627
+ "functions": {
2628
+ "fixture@94": {
2629
+ "lines": 215
2630
+ }
2631
+ }
2632
+ },
2633
+ "target": {
2634
+ "lines": 600,
2635
+ "functions": {
2636
+ "fixture@94": {
2637
+ "lines": 180
2638
+ }
2639
+ }
2640
+ }
2641
+ },
2642
+ "tests/publish-transaction.test.mjs": {
2643
+ "baseline": {
2644
+ "lines": 849
2645
+ },
2646
+ "current": {
2647
+ "lines": 849
2648
+ },
2649
+ "target": {
2650
+ "lines": 600
2651
+ }
2652
+ },
2653
+ "tests/release-candidate-recovery.test.mjs": {
2654
+ "baseline": {
2655
+ "lines": 1217
2656
+ },
2657
+ "current": {
2658
+ "lines": 1208
2659
+ },
2660
+ "target": {
2661
+ "lines": 600
2662
+ }
2663
+ },
2664
+ "tests/release-candidate.test.mjs": {
2665
+ "baseline": {
2666
+ "lines": 1327
2667
+ },
2668
+ "current": {
2669
+ "lines": 1327
2670
+ },
2671
+ "target": {
2672
+ "lines": 600
2673
+ }
2674
+ },
2675
+ "tests/release-passport.test.mjs": {
2676
+ "baseline": {
2677
+ "lines": 3135
2678
+ },
2679
+ "current": {
2680
+ "lines": 3135
2681
+ },
2682
+ "target": {
2683
+ "lines": 600
2684
+ }
2685
+ },
2686
+ "tests/release-propagation.test.mjs": {
2687
+ "baseline": {
2688
+ "lines": 1355
2689
+ },
2690
+ "current": {
2691
+ "lines": 1355
2692
+ },
2693
+ "target": {
2694
+ "lines": 600
2695
+ }
2696
+ },
2697
+ "tests/v4-delivery-authority-parity.test.mjs": {
2698
+ "baseline": {
2699
+ "lines": 1038,
2700
+ "functions": {
2701
+ "<anonymous@427>@427": {
2702
+ "lines": 612,
2703
+ "complexity": 43
2704
+ }
2705
+ }
2706
+ },
2707
+ "current": {
2708
+ "lines": 1038,
2709
+ "functions": {
2710
+ "<anonymous@427>@427": {
2711
+ "lines": 612,
2712
+ "complexity": 43
2713
+ }
2714
+ }
2715
+ },
2716
+ "target": {
2717
+ "lines": 600,
2718
+ "functions": {
2719
+ "<anonymous@427>@427": {
2720
+ "lines": 180,
2721
+ "complexity": 25
2722
+ }
2723
+ }
2724
+ }
2725
+ },
2726
+ "tests/v4-floating-consumer-policy-contract.test.mjs": {
2727
+ "baseline": {
2728
+ "functions": {
2729
+ "<anonymous@76>@76": {
2730
+ "lines": 292
2731
+ }
2732
+ }
2733
+ },
2734
+ "current": {
2735
+ "functions": {
2736
+ "<anonymous@76>@76": {
2737
+ "lines": 292
2738
+ }
2739
+ }
2740
+ },
2741
+ "target": {
2742
+ "functions": {
2743
+ "<anonymous@76>@76": {
2744
+ "lines": 180
2745
+ }
2746
+ }
2747
+ }
2748
+ },
2749
+ "tests/v4-floating-consumer-policy.test.mjs": {
2750
+ "baseline": {
2751
+ "lines": 714
2752
+ },
2753
+ "current": {
2754
+ "lines": 714
2755
+ },
2756
+ "target": {
2757
+ "lines": 600
2758
+ }
2759
+ },
2760
+ "tests/v4-publication-rehearsal.test.mjs": {
2761
+ "baseline": {
2762
+ "lines": 773
2763
+ },
2764
+ "current": {
2765
+ "lines": 773
2766
+ },
2767
+ "target": {
2768
+ "lines": 600
2769
+ }
2770
+ },
2771
+ "tests/web-surface.test.mjs": {
2772
+ "baseline": {
2773
+ "lines": 2231
2774
+ },
2775
+ "current": {
2776
+ "lines": 2231
2777
+ },
2778
+ "target": {
2779
+ "lines": 600
2780
+ }
2781
+ },
2782
+ "tests/build-surface-reusable-build.test.mjs": {
2783
+ "baseline": {
2784
+ "functions": {
2785
+ "<anonymous@3>@3": {
2786
+ "lines": 342
2787
+ }
2788
+ }
2789
+ },
2790
+ "current": {
2791
+ "functions": {
2792
+ "<anonymous@3>@3": {
2793
+ "lines": 342
2794
+ }
2795
+ }
2796
+ },
2797
+ "target": {
2798
+ "functions": {
2799
+ "<anonymous@3>@3": {
2800
+ "lines": 180
2801
+ }
2802
+ }
2803
+ }
2804
+ },
2805
+ "tests/build-surface-reusable-build-signing.test.mjs": {
2806
+ "baseline": {
2807
+ "functions": {
2808
+ "<anonymous@3>@3": {
2809
+ "lines": 266
2810
+ }
2811
+ }
2812
+ },
2813
+ "current": {
2814
+ "functions": {
2815
+ "<anonymous@3>@3": {
2816
+ "lines": 266
2817
+ }
2818
+ }
2819
+ },
2820
+ "target": {
2821
+ "functions": {
2822
+ "<anonymous@3>@3": {
2823
+ "lines": 180
2824
+ }
2825
+ }
2826
+ }
2827
+ },
2828
+ "tests/build-surface-reusable-build-artifacts.test.mjs": {
2829
+ "baseline": {
2830
+ "functions": {
2831
+ "<anonymous@3>@3": {
2832
+ "lines": 232
2833
+ }
2834
+ }
2835
+ },
2836
+ "current": {
2837
+ "functions": {
2838
+ "<anonymous@3>@3": {
2839
+ "lines": 230
2840
+ }
2841
+ }
2842
+ },
2843
+ "target": {
2844
+ "functions": {
2845
+ "<anonymous@3>@3": {
2846
+ "lines": 180
2847
+ }
2848
+ }
2849
+ }
2850
+ },
2851
+ "tests/promote-buildchain-ref-durable-recovery.test.mjs": {
2852
+ "baseline": {
2853
+ "functions": {
2854
+ "<anonymous@350>@350": {
2855
+ "lines": 219
2856
+ }
2857
+ }
2858
+ },
2859
+ "current": {
2860
+ "functions": {
2861
+ "<anonymous@350>@350": {
2862
+ "lines": 219
2863
+ }
2864
+ }
2865
+ },
2866
+ "target": {
2867
+ "functions": {
2868
+ "<anonymous@350>@350": {
2869
+ "lines": 180
2870
+ }
2871
+ }
2872
+ }
2873
+ },
2874
+ "tests/promote-buildchain-ref-major-promotion.test.mjs": {
2875
+ "baseline": {
2876
+ "functions": {
2877
+ "<anonymous@291>@291": {
2878
+ "lines": 228
2879
+ }
2880
+ }
2881
+ },
2882
+ "current": {
2883
+ "functions": {
2884
+ "<anonymous@291>@291": {
2885
+ "lines": 228
2886
+ }
2887
+ }
2888
+ },
2889
+ "target": {
2890
+ "functions": {
2891
+ "<anonymous@291>@291": {
2892
+ "lines": 180
2893
+ }
2894
+ }
2895
+ }
2896
+ },
2897
+ "tests/promote-buildchain-ref-recovery-alpha-finalization.test.mjs": {
2898
+ "baseline": {
2899
+ "functions": {
2900
+ "<anonymous@3>@3": {
2901
+ "lines": 262
2902
+ }
2903
+ }
2904
+ },
2905
+ "current": {
2906
+ "functions": {
2907
+ "<anonymous@3>@3": {
2908
+ "lines": 262
2909
+ }
2910
+ }
2911
+ },
2912
+ "target": {
2913
+ "functions": {
2914
+ "<anonymous@3>@3": {
2915
+ "lines": 180
2916
+ }
2917
+ }
2918
+ }
2919
+ },
2920
+ "tests/promote-buildchain-ref-recovery-release-reconciliation.test.mjs": {
2921
+ "baseline": {
2922
+ "functions": {
2923
+ "<anonymous@3>@3": {
2924
+ "lines": 244
2925
+ }
2926
+ }
2927
+ },
2928
+ "current": {
2929
+ "functions": {
2930
+ "<anonymous@3>@3": {
2931
+ "lines": 244
2932
+ }
2933
+ }
2934
+ },
2935
+ "target": {
2936
+ "functions": {
2937
+ "<anonymous@3>@3": {
2938
+ "lines": 180
2939
+ }
2940
+ }
2941
+ }
2942
+ }
2943
+ },
2944
+ "workflows": {
2945
+ ".github/workflows/.build.yml": {
2946
+ "baseline": {
2947
+ "lines": 3370,
2948
+ "jobs": 14,
2949
+ "steps": 194,
2950
+ "maxStepsPerJob": 44,
2951
+ "decisions": 113
2952
+ },
2953
+ "current": {
2954
+ "lines": 3341,
2955
+ "jobs": 14,
2956
+ "steps": 194,
2957
+ "maxStepsPerJob": 44,
2958
+ "decisions": 113
2959
+ },
2960
+ "target": {
2961
+ "lines": 600,
2962
+ "jobs": 8,
2963
+ "steps": 50,
2964
+ "maxStepsPerJob": 20,
2965
+ "decisions": 25
2966
+ }
2967
+ },
2968
+ ".github/workflows/.gate-profile.yml": {
2969
+ "baseline": {
2970
+ "lines": 701,
2971
+ "decisions": 30
2972
+ },
2973
+ "current": {
2974
+ "lines": 701,
2975
+ "decisions": 30
2976
+ },
2977
+ "target": {
2978
+ "lines": 600,
2979
+ "decisions": 25
2980
+ }
2981
+ },
2982
+ ".github/workflows/.publication-authority.yml": {
2983
+ "baseline": {
2984
+ "lines": 1010,
2985
+ "maxStepsPerJob": 30,
2986
+ "decisions": 27
2987
+ },
2988
+ "current": {
2989
+ "lines": 1007,
2990
+ "maxStepsPerJob": 30,
2991
+ "decisions": 27
2992
+ },
2993
+ "target": {
2994
+ "lines": 600,
2995
+ "maxStepsPerJob": 20,
2996
+ "decisions": 25
2997
+ }
2998
+ },
2999
+ ".github/workflows/.release-candidate-promote.yml": {
3000
+ "baseline": {
3001
+ "lines": 2736,
3002
+ "jobs": 13,
3003
+ "steps": 99,
3004
+ "maxStepsPerJob": 47,
3005
+ "decisions": 75
3006
+ },
3007
+ "current": {
3008
+ "lines": 2677,
3009
+ "jobs": 13,
3010
+ "steps": 99,
3011
+ "maxStepsPerJob": 47,
3012
+ "decisions": 75
3013
+ },
3014
+ "target": {
3015
+ "lines": 600,
3016
+ "jobs": 8,
3017
+ "steps": 50,
3018
+ "maxStepsPerJob": 20,
3019
+ "decisions": 25
3020
+ }
3021
+ },
3022
+ ".github/workflows/.release-verify.yml": {
3023
+ "baseline": {
3024
+ "lines": 806,
3025
+ "steps": 58,
3026
+ "decisions": 47
3027
+ },
3028
+ "current": {
3029
+ "lines": 806,
3030
+ "steps": 58,
3031
+ "decisions": 47
3032
+ },
3033
+ "target": {
3034
+ "lines": 600,
3035
+ "steps": 50,
3036
+ "decisions": 25
3037
+ }
3038
+ },
3039
+ ".github/workflows/.web-surface.yml": {
3040
+ "baseline": {
3041
+ "lines": 2020,
3042
+ "jobs": 14,
3043
+ "steps": 112,
3044
+ "decisions": 35
3045
+ },
3046
+ "current": {
3047
+ "lines": 2020,
3048
+ "jobs": 14,
3049
+ "steps": 112,
3050
+ "decisions": 35
3051
+ },
3052
+ "target": {
3053
+ "lines": 600,
3054
+ "jobs": 8,
3055
+ "steps": 50,
3056
+ "decisions": 25
3057
+ }
3058
+ },
3059
+ ".github/workflows/build.yml": {
3060
+ "baseline": {
3061
+ "lines": 1218
3062
+ },
3063
+ "current": {
3064
+ "lines": 1218
3065
+ },
3066
+ "target": {
3067
+ "lines": 600
3068
+ }
3069
+ },
3070
+ ".github/workflows/check.yml": {
3071
+ "baseline": {
3072
+ "maxStepsPerJob": 22
3073
+ },
3074
+ "current": {
3075
+ "maxStepsPerJob": 22
3076
+ },
3077
+ "target": {
3078
+ "maxStepsPerJob": 20
3079
+ }
3080
+ },
3081
+ ".github/workflows/dev-pr-auto-merge.yml": {
3082
+ "baseline": {
3083
+ "lines": 1529,
3084
+ "decisions": 28
3085
+ },
3086
+ "current": {
3087
+ "lines": 1529,
3088
+ "decisions": 28
3089
+ },
3090
+ "target": {
3091
+ "lines": 600,
3092
+ "decisions": 25
3093
+ }
3094
+ },
3095
+ ".github/workflows/paper-release-sealed.yml": {
3096
+ "baseline": {
3097
+ "lines": 688
3098
+ },
3099
+ "current": {
3100
+ "lines": 688
3101
+ },
3102
+ "target": {
3103
+ "lines": 600
3104
+ }
3105
+ },
3106
+ ".github/workflows/paper-release.yml": {
3107
+ "baseline": {
3108
+ "lines": 858,
3109
+ "maxStepsPerJob": 23
3110
+ },
3111
+ "current": {
3112
+ "lines": 858,
3113
+ "maxStepsPerJob": 23
3114
+ },
3115
+ "target": {
3116
+ "lines": 600,
3117
+ "maxStepsPerJob": 20
3118
+ }
3119
+ },
3120
+ ".github/workflows/publication-artifact.yml": {
3121
+ "baseline": {
3122
+ "lines": 701,
3123
+ "maxStepsPerJob": 23
3124
+ },
3125
+ "current": {
3126
+ "lines": 701,
3127
+ "maxStepsPerJob": 23
3128
+ },
3129
+ "target": {
3130
+ "lines": 600,
3131
+ "maxStepsPerJob": 20
3132
+ }
3133
+ },
3134
+ ".github/workflows/release-candidate-promote.yml": {
3135
+ "baseline": {
3136
+ "lines": 1218
3137
+ },
3138
+ "current": {
3139
+ "lines": 1218
3140
+ },
3141
+ "target": {
3142
+ "lines": 600
3143
+ }
3144
+ },
3145
+ ".github/workflows/release-propagation.yml": {
3146
+ "baseline": {
3147
+ "lines": 732,
3148
+ "maxStepsPerJob": 29
3149
+ },
3150
+ "current": {
3151
+ "lines": 732,
3152
+ "maxStepsPerJob": 29
3153
+ },
3154
+ "target": {
3155
+ "lines": 600,
3156
+ "maxStepsPerJob": 20
3157
+ }
3158
+ }
3159
+ }
3160
+ },
3161
+ "hotspots": [
3162
+ "tests/v3-v4-capability-inventory.test.mjs",
3163
+ "tests/v4-floating-consumer-policy-contract.test.mjs",
3164
+ ".github/workflows/v4-adopter-delivery.yml",
3165
+ ".github/workflows/buildchain-ref-promotion.yml",
3166
+ "tests/release-candidate-recovery.test.mjs",
3167
+ ".github/workflows/.release-candidate-promote.yml",
3168
+ "tests/build-surface-promotion.test.mjs",
3169
+ ".github/workflows/buildchain-ref-promotion-recovery.yml",
3170
+ "tests/build-surface.test.mjs",
3171
+ "tests/internal-architecture.test.mjs",
3172
+ "scripts/resume-from-candidate-run.mjs",
3173
+ "scripts/check-v3-v4-capability-inventory.mjs",
3174
+ ".github/workflows/release-candidate-promote.yml",
3175
+ "actions/promote-buildchain-ref/lib.js",
3176
+ "scripts/check-inventory.mjs",
3177
+ "tests/promote-buildchain-ref.test.mjs",
3178
+ "tests/promotion-channel-router.test.mjs",
3179
+ "scripts/site-capability-metadata.mjs",
3180
+ "tests/v4-floating-consumer-policy.test.mjs",
3181
+ "scripts/buildchain-cli-help.mjs",
3182
+ "scripts/check-v4-floating-consumer-policy-contract.mjs",
3183
+ "tests/dev-delivery-warrant.test.mjs",
3184
+ "actions/promote-buildchain-ref/internal/version-state.js",
3185
+ "packages/core/v4-floating-consumer-policy.js",
3186
+ "packages/core/v4-floating-consumer-release-passport.js",
3187
+ "packages/core/release-passport.js",
3188
+ "tests/promote-buildchain-ref-governance.test.mjs",
3189
+ "tests/v4-declarative-promotion-mode.test.mjs",
3190
+ "scripts/buildchain-cli-help.mjs"
3191
+ ],
3192
+ "burnDownSlices": [
3193
+ {
3194
+ "domain": "sources",
3195
+ "path": "actions/promote-buildchain-ref/lib.js",
3196
+ "metric": "lines",
3197
+ "baseline": 5132,
3198
+ "current": 3468
3199
+ },
3200
+ {
3201
+ "domain": "tests",
3202
+ "path": "tests/build-surface.test.mjs",
3203
+ "metric": "lines",
3204
+ "baseline": 4639,
3205
+ "current": 3680
3206
+ },
3207
+ {
3208
+ "domain": "workflows",
3209
+ "path": ".github/workflows/.release-candidate-promote.yml",
3210
+ "metric": "lines",
3211
+ "baseline": 2736,
3212
+ "current": 2677
3213
+ },
3214
+ {
3215
+ "domain": "sources",
3216
+ "path": "packages/core/release-passport.js",
3217
+ "metric": "lines",
3218
+ "baseline": 2987,
3219
+ "current": 2883
3220
+ },
3221
+ {
3222
+ "domain": "sources",
3223
+ "path": "packages/core/paper.js",
3224
+ "metric": "lines",
3225
+ "baseline": 2878,
3226
+ "current": 2512
3227
+ }
3228
+ ]
3229
+ }