@kungfu-tech/buildchain 3.0.9-alpha.0 → 3.0.9-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/contracts/fixtures/kfd-adopter-release-v1/kfd-4-perspective.json +16 -0
  2. package/contracts/fixtures/kfd-adopter-release-v1/kfd-4-replay.json +57 -0
  3. package/contracts/release-cut-v1.schema.json +1 -0
  4. package/contracts/release-train-transition-v1.schema.json +1 -0
  5. package/dist/site/buildchain-contract.json +27 -28
  6. package/dist/site/buildchain-site.json +37 -27
  7. package/dist/site/controller-registry.json +8 -4
  8. package/dist/site/kfd-claims.json +3 -3
  9. package/dist/site/kfd-upstream-aggregate.json +1 -1
  10. package/dist/site/manual-registry.json +7 -7
  11. package/dist/site/node-api-registry.json +370 -73
  12. package/dist/site/page-registry.json +26 -16
  13. package/dist/site/public-surface-audit.json +2 -2
  14. package/dist/site/publication-registry.json +4 -4
  15. package/dist/site/site-manifest.json +11 -11
  16. package/dist/site/workflow-registry.json +4 -4
  17. package/docs/dev-delivery-warrant.md +12 -2
  18. package/docs/node-api-reference.md +116 -106
  19. package/docs/release-governance.md +5 -3
  20. package/docs/release-passport.md +7 -0
  21. package/docs/release-train.md +46 -4
  22. package/docs/reusable-build-surface.md +26 -9
  23. package/docs/runtime-train-validation.md +6 -0
  24. package/docs/versioning.md +3 -2
  25. package/package.json +1 -1
  26. package/packages/core/buildchain-channel-identity.js +119 -0
  27. package/packages/core/buildchain-compatibility-proof.js +32 -0
  28. package/packages/core/buildchain-contract.js +7 -0
  29. package/packages/core/controller-evidence.js +2 -1
  30. package/packages/core/dev-delivery-warrant.js +15 -4
  31. package/packages/core/kfd-adopter-manifest.js +3 -3
  32. package/packages/core/release-blocker-priority.js +192 -0
  33. package/packages/core/release-train.js +220 -0
  34. package/scripts/buildchain-channel-router.mjs +18 -2
  35. package/scripts/buildchain-contract-lock.mjs +11 -1
  36. package/scripts/check-inventory.mjs +2 -2
  37. package/scripts/generate-buildchain-kfd-witnesses.mjs +88 -94
  38. package/scripts/generate-channel-build-workflow.mjs +78 -31
  39. package/scripts/promotion-channel-router.mjs +5 -3
  40. package/scripts/release-train-self-dogfood.mjs +579 -0
  41. package/scripts/runtime-ref-core.mjs +4 -17
@@ -1477,6 +1477,117 @@
1477
1477
  "agent"
1478
1478
  ]
1479
1479
  },
1480
+ {
1481
+ "id": "packages/core/buildchain-channel-identity.js#BUILDCHAIN_CHANNELS",
1482
+ "name": "BUILDCHAIN_CHANNELS",
1483
+ "kind": "constant",
1484
+ "signature": "const BUILDCHAIN_CHANNELS",
1485
+ "parameters": [],
1486
+ "returns": "value",
1487
+ "errors": [
1488
+ "Import does not declare a throw contract."
1489
+ ],
1490
+ "sideEffects": [
1491
+ "none-on-import"
1492
+ ],
1493
+ "source": {
1494
+ "path": "packages/core/buildchain-channel-identity.js",
1495
+ "line": 8
1496
+ },
1497
+ "example": "import { BUILDCHAIN_CHANNELS } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1498
+ "maturity": "stable",
1499
+ "audience": [
1500
+ "developer",
1501
+ "agent"
1502
+ ]
1503
+ },
1504
+ {
1505
+ "id": "packages/core/buildchain-channel-identity.js#evaluateBuildchainChannelBinding",
1506
+ "name": "evaluateBuildchainChannelBinding",
1507
+ "kind": "function",
1508
+ "signature": "function evaluateBuildchainChannelBinding({ workflowShellRef = \"\", runtimeRef = \"\", lockRef = \"\", lockMajorLine = \"\", expectedChannel = \"\", expectedMajor = \"\", allowOpaqueRuntime = false } = {})",
1509
+ "parameters": [
1510
+ {
1511
+ "name": "parameter1",
1512
+ "signature": "{ workflowShellRef = \"\", runtimeRef = \"\", lockRef = \"\", lockMajorLine = \"\", expectedChannel = \"\", expectedMajor = \"\", allowOpaqueRuntime = false } = {}"
1513
+ }
1514
+ ],
1515
+ "returns": "unknown",
1516
+ "errors": [
1517
+ "Errors from called operations may propagate; no narrower throw contract is declared in source."
1518
+ ],
1519
+ "sideEffects": [
1520
+ "none-detected-by-static-source-scan"
1521
+ ],
1522
+ "source": {
1523
+ "path": "packages/core/buildchain-channel-identity.js",
1524
+ "line": 97
1525
+ },
1526
+ "example": "import { evaluateBuildchainChannelBinding } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1527
+ "maturity": "stable",
1528
+ "audience": [
1529
+ "developer",
1530
+ "agent"
1531
+ ]
1532
+ },
1533
+ {
1534
+ "id": "packages/core/buildchain-channel-identity.js#normalizeBuildchainRef",
1535
+ "name": "normalizeBuildchainRef",
1536
+ "kind": "function",
1537
+ "signature": "function normalizeBuildchainRef(ref = \"\")",
1538
+ "parameters": [
1539
+ {
1540
+ "name": "ref",
1541
+ "signature": "ref = \"\""
1542
+ }
1543
+ ],
1544
+ "returns": "unknown",
1545
+ "errors": [
1546
+ "Errors from called operations may propagate; no narrower throw contract is declared in source."
1547
+ ],
1548
+ "sideEffects": [
1549
+ "none-detected-by-static-source-scan"
1550
+ ],
1551
+ "source": {
1552
+ "path": "packages/core/buildchain-channel-identity.js",
1553
+ "line": 10
1554
+ },
1555
+ "example": "import { normalizeBuildchainRef } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1556
+ "maturity": "stable",
1557
+ "audience": [
1558
+ "developer",
1559
+ "agent"
1560
+ ]
1561
+ },
1562
+ {
1563
+ "id": "packages/core/buildchain-channel-identity.js#parseBuildchainRefIdentity",
1564
+ "name": "parseBuildchainRefIdentity",
1565
+ "kind": "function",
1566
+ "signature": "function parseBuildchainRefIdentity(ref = \"\")",
1567
+ "parameters": [
1568
+ {
1569
+ "name": "ref",
1570
+ "signature": "ref = \"\""
1571
+ }
1572
+ ],
1573
+ "returns": "unknown",
1574
+ "errors": [
1575
+ "Errors from called operations may propagate; no narrower throw contract is declared in source."
1576
+ ],
1577
+ "sideEffects": [
1578
+ "none-detected-by-static-source-scan"
1579
+ ],
1580
+ "source": {
1581
+ "path": "packages/core/buildchain-channel-identity.js",
1582
+ "line": 16
1583
+ },
1584
+ "example": "import { parseBuildchainRefIdentity } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1585
+ "maturity": "stable",
1586
+ "audience": [
1587
+ "developer",
1588
+ "agent"
1589
+ ]
1590
+ },
1480
1591
  {
1481
1592
  "id": "packages/core/buildchain-compatibility-proof.js#assertBuildchainCompatibilityProjection",
1482
1593
  "name": "assertBuildchainCompatibilityProjection",
@@ -1497,7 +1608,7 @@
1497
1608
  ],
1498
1609
  "source": {
1499
1610
  "path": "packages/core/buildchain-compatibility-proof.js",
1500
- "line": 276
1611
+ "line": 277
1501
1612
  },
1502
1613
  "example": "import { assertBuildchainCompatibilityProjection } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1503
1614
  "maturity": "stable",
@@ -1521,7 +1632,7 @@
1521
1632
  ],
1522
1633
  "source": {
1523
1634
  "path": "packages/core/buildchain-compatibility-proof.js",
1524
- "line": 12
1635
+ "line": 13
1525
1636
  },
1526
1637
  "example": "import { BUILDCHAIN_COMPATIBILITY_PROOF_REGISTRY_SCHEMA } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1527
1638
  "maturity": "stable",
@@ -1545,7 +1656,7 @@
1545
1656
  ],
1546
1657
  "source": {
1547
1658
  "path": "packages/core/buildchain-compatibility-proof.js",
1548
- "line": 11
1659
+ "line": 12
1549
1660
  },
1550
1661
  "example": "import { BUILDCHAIN_COMPATIBILITY_PROOF_SCHEMA } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1551
1662
  "maturity": "stable",
@@ -1569,7 +1680,7 @@
1569
1680
  ],
1570
1681
  "source": {
1571
1682
  "path": "packages/core/buildchain-compatibility-proof.js",
1572
- "line": 13
1683
+ "line": 14
1573
1684
  },
1574
1685
  "example": "import { BUILDCHAIN_COMPATIBILITY_VERIFICATION_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1575
1686
  "maturity": "stable",
@@ -1606,7 +1717,7 @@
1606
1717
  ],
1607
1718
  "source": {
1608
1719
  "path": "packages/core/buildchain-compatibility-proof.js",
1609
- "line": 359
1720
+ "line": 360
1610
1721
  },
1611
1722
  "example": "import { contractSummary } from \"@kungfu-tech/buildchain\";",
1612
1723
  "maturity": "stable",
@@ -1635,7 +1746,7 @@
1635
1746
  ],
1636
1747
  "source": {
1637
1748
  "path": "packages/core/buildchain-compatibility-proof.js",
1638
- "line": 157
1749
+ "line": 158
1639
1750
  },
1640
1751
  "example": "import { createBuildchainCompatibilityProof } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1641
1752
  "maturity": "stable",
@@ -1664,7 +1775,7 @@
1664
1775
  ],
1665
1776
  "source": {
1666
1777
  "path": "packages/core/buildchain-compatibility-proof.js",
1667
- "line": 252
1778
+ "line": 253
1668
1779
  },
1669
1780
  "example": "import { createBuildchainCompatibilityProofRegistry } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1670
1781
  "maturity": "stable",
@@ -1693,7 +1804,7 @@
1693
1804
  ],
1694
1805
  "source": {
1695
1806
  "path": "packages/core/buildchain-compatibility-proof.js",
1696
- "line": 322
1807
+ "line": 323
1697
1808
  },
1698
1809
  "example": "import { createBuildchainCompatibilityVerificationReceipt } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1699
1810
  "maturity": "stable",
@@ -1717,7 +1828,7 @@
1717
1828
  ],
1718
1829
  "source": {
1719
1830
  "path": "packages/core/buildchain-compatibility-proof.js",
1720
- "line": 229
1831
+ "line": 230
1721
1832
  },
1722
1833
  "example": "import { createHistoricalBuildchainCompatibilityProofs } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1723
1834
  "maturity": "stable",
@@ -1730,11 +1841,11 @@
1730
1841
  "id": "packages/core/buildchain-compatibility-proof.js#evaluateBuildchainContractLock",
1731
1842
  "name": "evaluateBuildchainContractLock",
1732
1843
  "kind": "function",
1733
- "signature": "function evaluateBuildchainContractLock({ lock, current, runtimeRef = \"\", runtimeSha = \"\", runtimeClass = \"\", compatibilityPolicy = \"\", } = {})",
1844
+ "signature": "function evaluateBuildchainContractLock({ lock, current, runtimeRef = \"\", runtimeSha = \"\", runtimeClass = \"\", compatibilityPolicy = \"\", workflowShellRef = \"\", expectedChannel = \"\", expectedMajor = \"\", allowOpaqueRuntime = false, } = {})",
1734
1845
  "parameters": [
1735
1846
  {
1736
1847
  "name": "parameter1",
1737
- "signature": "{ lock, current, runtimeRef = \"\", runtimeSha = \"\", runtimeClass = \"\", compatibilityPolicy = \"\", } = {}"
1848
+ "signature": "{ lock, current, runtimeRef = \"\", runtimeSha = \"\", runtimeClass = \"\", compatibilityPolicy = \"\", workflowShellRef = \"\", expectedChannel = \"\", expectedMajor = \"\", allowOpaqueRuntime = false, } = {}"
1738
1849
  }
1739
1850
  ],
1740
1851
  "returns": "unknown",
@@ -1746,7 +1857,7 @@
1746
1857
  ],
1747
1858
  "source": {
1748
1859
  "path": "packages/core/buildchain-compatibility-proof.js",
1749
- "line": 440
1860
+ "line": 454
1750
1861
  },
1751
1862
  "example": "import { evaluateBuildchainContractLock } from \"@kungfu-tech/buildchain\";",
1752
1863
  "maturity": "stable",
@@ -1775,7 +1886,7 @@
1775
1886
  ],
1776
1887
  "source": {
1777
1888
  "path": "packages/core/buildchain-compatibility-proof.js",
1778
- "line": 560
1889
+ "line": 592
1779
1890
  },
1780
1891
  "example": "import { renderBuildchainContractDriftIssueBody } from \"@kungfu-tech/buildchain\";",
1781
1892
  "maturity": "stable",
@@ -1808,7 +1919,7 @@
1808
1919
  ],
1809
1920
  "source": {
1810
1921
  "path": "packages/core/buildchain-compatibility-proof.js",
1811
- "line": 205
1922
+ "line": 206
1812
1923
  },
1813
1924
  "example": "import { verifyBuildchainCompatibilityProof } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1814
1925
  "maturity": "stable",
@@ -1837,7 +1948,7 @@
1837
1948
  ],
1838
1949
  "source": {
1839
1950
  "path": "packages/core/buildchain-compatibility-proof.js",
1840
- "line": 346
1951
+ "line": 347
1841
1952
  },
1842
1953
  "example": "import { verifyBuildchainCompatibilityVerificationReceipt } from \"@kungfu-tech/buildchain/buildchain-contract\";",
1843
1954
  "maturity": "stable",
@@ -2299,7 +2410,7 @@
2299
2410
  ],
2300
2411
  "source": {
2301
2412
  "path": "packages/core/buildchain-contract.js",
2302
- "line": 29
2413
+ "line": 36
2303
2414
  },
2304
2415
  "example": "import { BUILDCHAIN_CONTRACT_LOCK } from \"@kungfu-tech/buildchain\";",
2305
2416
  "maturity": "stable",
@@ -2323,7 +2434,7 @@
2323
2434
  ],
2324
2435
  "source": {
2325
2436
  "path": "packages/core/buildchain-contract.js",
2326
- "line": 28
2437
+ "line": 35
2327
2438
  },
2328
2439
  "example": "import { BUILDCHAIN_RUNTIME_CONTRACT_WORLD } from \"@kungfu-tech/buildchain\";",
2329
2440
  "maturity": "stable",
@@ -2352,7 +2463,7 @@
2352
2463
  ],
2353
2464
  "source": {
2354
2465
  "path": "packages/core/buildchain-contract.js",
2355
- "line": 839
2466
+ "line": 846
2356
2467
  },
2357
2468
  "example": "import { createBuildchainContractLock } from \"@kungfu-tech/buildchain\";",
2358
2469
  "maturity": "stable",
@@ -2381,7 +2492,7 @@
2381
2492
  ],
2382
2493
  "source": {
2383
2494
  "path": "packages/core/buildchain-contract.js",
2384
- "line": 130
2495
+ "line": 137
2385
2496
  },
2386
2497
  "example": "import { createBuildchainContractWorld } from \"@kungfu-tech/buildchain\";",
2387
2498
  "maturity": "stable",
@@ -2410,7 +2521,7 @@
2410
2521
  ],
2411
2522
  "source": {
2412
2523
  "path": "packages/core/buildchain-contract.js",
2413
- "line": 794
2524
+ "line": 801
2414
2525
  },
2415
2526
  "example": "import { finalizeBuildchainContractWorld } from \"@kungfu-tech/buildchain\";",
2416
2527
  "maturity": "stable",
@@ -2439,7 +2550,7 @@
2439
2550
  ],
2440
2551
  "source": {
2441
2552
  "path": "packages/core/buildchain-contract.js",
2442
- "line": 893
2553
+ "line": 900
2443
2554
  },
2444
2555
  "example": "import { readBuildchainContractLock } from \"@kungfu-tech/buildchain\";",
2445
2556
  "maturity": "stable",
@@ -2468,7 +2579,7 @@
2468
2579
  ],
2469
2580
  "source": {
2470
2581
  "path": "packages/core/buildchain-contract.js",
2471
- "line": 872
2582
+ "line": 879
2472
2583
  },
2473
2584
  "example": "import { readBuildchainContractWorld } from \"@kungfu-tech/buildchain\";",
2474
2585
  "maturity": "stable",
@@ -2497,7 +2608,7 @@
2497
2608
  ],
2498
2609
  "source": {
2499
2610
  "path": "packages/core/buildchain-contract.js",
2500
- "line": 50
2611
+ "line": 57
2501
2612
  },
2502
2613
  "example": "import { sha256BuildchainContractJson } from \"@kungfu-tech/buildchain\";",
2503
2614
  "maturity": "stable",
@@ -2526,7 +2637,7 @@
2526
2637
  ],
2527
2638
  "source": {
2528
2639
  "path": "packages/core/buildchain-contract.js",
2529
- "line": 54
2640
+ "line": 61
2530
2641
  },
2531
2642
  "example": "import { sha256File } from \"@kungfu-tech/buildchain/buildchain-contract\";",
2532
2643
  "maturity": "stable",
@@ -2555,7 +2666,7 @@
2555
2666
  ],
2556
2667
  "source": {
2557
2668
  "path": "packages/core/buildchain-contract.js",
2558
- "line": 50
2669
+ "line": 57
2559
2670
  },
2560
2671
  "example": "import { sha256Json } from \"@kungfu-tech/buildchain/buildchain-contract\";",
2561
2672
  "maturity": "stable",
@@ -4349,7 +4460,7 @@
4349
4460
  ],
4350
4461
  "source": {
4351
4462
  "path": "packages/core/controller-evidence.js",
4352
- "line": 449
4463
+ "line": 450
4353
4464
  },
4354
4465
  "example": "import { aggregateControllerReceipts } from \"@kungfu-tech/buildchain\";",
4355
4466
  "maturity": "stable",
@@ -4474,7 +4585,7 @@
4474
4585
  ],
4475
4586
  "source": {
4476
4587
  "path": "packages/core/controller-evidence.js",
4477
- "line": 151
4588
+ "line": 152
4478
4589
  },
4479
4590
  "example": "import { controllerEvidenceDigest } from \"@kungfu-tech/buildchain\";",
4480
4591
  "maturity": "stable",
@@ -4503,7 +4614,7 @@
4503
4614
  ],
4504
4615
  "source": {
4505
4616
  "path": "packages/core/controller-evidence.js",
4506
- "line": 287
4617
+ "line": 288
4507
4618
  },
4508
4619
  "example": "import { createControllerPlan } from \"@kungfu-tech/buildchain\";",
4509
4620
  "maturity": "stable",
@@ -4532,7 +4643,7 @@
4532
4643
  ],
4533
4644
  "source": {
4534
4645
  "path": "packages/core/controller-evidence.js",
4535
- "line": 363
4646
+ "line": 364
4536
4647
  },
4537
4648
  "example": "import { createControllerReceipt } from \"@kungfu-tech/buildchain\";",
4538
4649
  "maturity": "stable",
@@ -4561,7 +4672,7 @@
4561
4672
  ],
4562
4673
  "source": {
4563
4674
  "path": "packages/core/controller-evidence.js",
4564
- "line": 491
4675
+ "line": 492
4565
4676
  },
4566
4677
  "example": "import { createControllerReceiptReference } from \"@kungfu-tech/buildchain\";",
4567
4678
  "maturity": "stable",
@@ -4590,7 +4701,7 @@
4590
4701
  ],
4591
4702
  "source": {
4592
4703
  "path": "packages/core/controller-evidence.js",
4593
- "line": 197
4704
+ "line": 198
4594
4705
  },
4595
4706
  "example": "import { createControllerRegistry } from \"@kungfu-tech/buildchain\";",
4596
4707
  "maturity": "stable",
@@ -4619,7 +4730,7 @@
4619
4730
  ],
4620
4731
  "source": {
4621
4732
  "path": "packages/core/controller-evidence.js",
4622
- "line": 532
4733
+ "line": 533
4623
4734
  },
4624
4735
  "example": "import { normalizeControllerReceiptReferences } from \"@kungfu-tech/buildchain\";",
4625
4736
  "maturity": "stable",
@@ -4648,7 +4759,7 @@
4648
4759
  ],
4649
4760
  "source": {
4650
4761
  "path": "packages/core/controller-evidence.js",
4651
- "line": 325
4762
+ "line": 326
4652
4763
  },
4653
4764
  "example": "import { validateControllerPlan } from \"@kungfu-tech/buildchain\";",
4654
4765
  "maturity": "stable",
@@ -4681,7 +4792,7 @@
4681
4792
  ],
4682
4793
  "source": {
4683
4794
  "path": "packages/core/controller-evidence.js",
4684
- "line": 423
4795
+ "line": 424
4685
4796
  },
4686
4797
  "example": "import { validateControllerReceipt } from \"@kungfu-tech/buildchain\";",
4687
4798
  "maturity": "stable",
@@ -4714,7 +4825,7 @@
4714
4825
  ],
4715
4826
  "source": {
4716
4827
  "path": "packages/core/controller-evidence.js",
4717
- "line": 505
4828
+ "line": 506
4718
4829
  },
4719
4830
  "example": "import { validateControllerReceiptReference } from \"@kungfu-tech/buildchain\";",
4720
4831
  "maturity": "stable",
@@ -5178,7 +5289,7 @@
5178
5289
  ],
5179
5290
  "source": {
5180
5291
  "path": "packages/core/dev-delivery-warrant.js",
5181
- "line": 568
5292
+ "line": 579
5182
5293
  },
5183
5294
  "example": "import { cancelQueuedDevDeliveryCandidate } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5184
5295
  "maturity": "stable",
@@ -5215,7 +5326,7 @@
5215
5326
  ],
5216
5327
  "source": {
5217
5328
  "path": "packages/core/dev-delivery-warrant.js",
5218
- "line": 520
5329
+ "line": 531
5219
5330
  },
5220
5331
  "example": "import { closeDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5221
5332
  "maturity": "stable",
@@ -5244,7 +5355,7 @@
5244
5355
  ],
5245
5356
  "source": {
5246
5357
  "path": "packages/core/dev-delivery-warrant.js",
5247
- "line": 96
5358
+ "line": 100
5248
5359
  },
5249
5360
  "example": "import { createDevDeliveryQueue } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5250
5361
  "maturity": "stable",
@@ -5292,7 +5403,7 @@
5292
5403
  ],
5293
5404
  "source": {
5294
5405
  "path": "packages/core/dev-delivery-warrant.js",
5295
- "line": 20
5406
+ "line": 22
5296
5407
  },
5297
5408
  "example": "import { DEV_DELIVERY_CLASSES } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5298
5409
  "maturity": "stable",
@@ -5316,7 +5427,7 @@
5316
5427
  ],
5317
5428
  "source": {
5318
5429
  "path": "packages/core/dev-delivery-warrant.js",
5319
- "line": 12
5430
+ "line": 14
5320
5431
  },
5321
5432
  "example": "import { DEV_DELIVERY_LEASE_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5322
5433
  "maturity": "stable",
@@ -5340,7 +5451,7 @@
5340
5451
  ],
5341
5452
  "source": {
5342
5453
  "path": "packages/core/dev-delivery-warrant.js",
5343
- "line": 14
5454
+ "line": 16
5344
5455
  },
5345
5456
  "example": "import { DEV_DELIVERY_PRIORITIES } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5346
5457
  "maturity": "stable",
@@ -5364,7 +5475,7 @@
5364
5475
  ],
5365
5476
  "source": {
5366
5477
  "path": "packages/core/dev-delivery-warrant.js",
5367
- "line": 8
5478
+ "line": 10
5368
5479
  },
5369
5480
  "example": "import { DEV_DELIVERY_QUEUE_CONTRACT } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5370
5481
  "maturity": "stable",
@@ -5388,7 +5499,7 @@
5388
5499
  ],
5389
5500
  "source": {
5390
5501
  "path": "packages/core/dev-delivery-warrant.js",
5391
- "line": 11
5502
+ "line": 13
5392
5503
  },
5393
5504
  "example": "import { DEV_DELIVERY_SELECTION_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5394
5505
  "maturity": "stable",
@@ -5436,7 +5547,7 @@
5436
5547
  ],
5437
5548
  "source": {
5438
5549
  "path": "packages/core/dev-delivery-warrant.js",
5439
- "line": 10
5550
+ "line": 12
5440
5551
  },
5441
5552
  "example": "import { DEV_DELIVERY_SUBMISSION_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5442
5553
  "maturity": "stable",
@@ -5460,7 +5571,7 @@
5460
5571
  ],
5461
5572
  "source": {
5462
5573
  "path": "packages/core/dev-delivery-warrant.js",
5463
- "line": 9
5574
+ "line": 11
5464
5575
  },
5465
5576
  "example": "import { DEV_DELIVERY_WARRANT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5466
5577
  "maturity": "stable",
@@ -5497,7 +5608,7 @@
5497
5608
  ],
5498
5609
  "source": {
5499
5610
  "path": "packages/core/dev-delivery-warrant.js",
5500
- "line": 437
5611
+ "line": 448
5501
5612
  },
5502
5613
  "example": "import { heartbeatDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5503
5614
  "maturity": "stable",
@@ -5530,7 +5641,7 @@
5530
5641
  ],
5531
5642
  "source": {
5532
5643
  "path": "packages/core/dev-delivery-warrant.js",
5533
- "line": 111
5644
+ "line": 115
5534
5645
  },
5535
5646
  "example": "import { normalizeDevDeliveryQueue } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5536
5647
  "maturity": "stable",
@@ -5563,7 +5674,7 @@
5563
5674
  ],
5564
5675
  "source": {
5565
5676
  "path": "packages/core/dev-delivery-warrant.js",
5566
- "line": 571
5677
+ "line": 582
5567
5678
  },
5568
5679
  "example": "import { observeDevDeliveryQueue } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5569
5680
  "maturity": "stable",
@@ -5596,7 +5707,7 @@
5596
5707
  ],
5597
5708
  "source": {
5598
5709
  "path": "packages/core/dev-delivery-warrant.js",
5599
- "line": 276
5710
+ "line": 285
5600
5711
  },
5601
5712
  "example": "import { rankDevDeliveryCandidates } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5602
5713
  "maturity": "stable",
@@ -5629,7 +5740,7 @@
5629
5740
  ],
5630
5741
  "source": {
5631
5742
  "path": "packages/core/dev-delivery-warrant.js",
5632
- "line": 470
5743
+ "line": 481
5633
5744
  },
5634
5745
  "example": "import { recoverExpiredDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5635
5746
  "maturity": "stable",
@@ -5662,7 +5773,7 @@
5662
5773
  ],
5663
5774
  "source": {
5664
5775
  "path": "packages/core/dev-delivery-warrant.js",
5665
- "line": 300
5776
+ "line": 309
5666
5777
  },
5667
5778
  "example": "import { selectDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5668
5779
  "maturity": "stable",
@@ -5686,7 +5797,7 @@
5686
5797
  ],
5687
5798
  "source": {
5688
5799
  "path": "packages/core/dev-delivery-warrant.js",
5689
- "line": 569
5800
+ "line": 580
5690
5801
  },
5691
5802
  "example": "import { settleDevDeliveryTerminalEvent } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5692
5803
  "maturity": "stable",
@@ -5723,7 +5834,7 @@
5723
5834
  ],
5724
5835
  "source": {
5725
5836
  "path": "packages/core/dev-delivery-warrant.js",
5726
- "line": 195
5837
+ "line": 201
5727
5838
  },
5728
5839
  "example": "import { submitDevDeliveryCandidate } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
5729
5840
  "maturity": "stable",
@@ -16333,6 +16444,63 @@
16333
16444
  "agent"
16334
16445
  ]
16335
16446
  },
16447
+ {
16448
+ "id": "packages/core/release-blocker-priority.js#createReleaseBlockerPriorityClaim",
16449
+ "name": "createReleaseBlockerPriorityClaim",
16450
+ "kind": "function",
16451
+ "signature": "function createReleaseBlockerPriorityClaim(repairInput, input = {})",
16452
+ "parameters": [
16453
+ {
16454
+ "name": "repairInput",
16455
+ "signature": "repairInput"
16456
+ },
16457
+ {
16458
+ "name": "input",
16459
+ "signature": "input = {}"
16460
+ }
16461
+ ],
16462
+ "returns": "unknown",
16463
+ "errors": [
16464
+ "May throw an Error on rejected input or failed operations; follow the linked source contract."
16465
+ ],
16466
+ "sideEffects": [
16467
+ "none-detected-by-static-source-scan"
16468
+ ],
16469
+ "source": {
16470
+ "path": "packages/core/release-blocker-priority.js",
16471
+ "line": 32
16472
+ },
16473
+ "example": "import { createReleaseBlockerPriorityClaim } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
16474
+ "maturity": "stable",
16475
+ "audience": [
16476
+ "developer",
16477
+ "agent"
16478
+ ]
16479
+ },
16480
+ {
16481
+ "id": "packages/core/release-blocker-priority.js#RELEASE_BLOCKER_PRIORITY_CLAIM_SCHEMA",
16482
+ "name": "RELEASE_BLOCKER_PRIORITY_CLAIM_SCHEMA",
16483
+ "kind": "constant",
16484
+ "signature": "const RELEASE_BLOCKER_PRIORITY_CLAIM_SCHEMA",
16485
+ "parameters": [],
16486
+ "returns": "value",
16487
+ "errors": [
16488
+ "Import does not declare a throw contract."
16489
+ ],
16490
+ "sideEffects": [
16491
+ "none-on-import"
16492
+ ],
16493
+ "source": {
16494
+ "path": "packages/core/release-blocker-priority.js",
16495
+ "line": 15
16496
+ },
16497
+ "example": "import { RELEASE_BLOCKER_PRIORITY_CLAIM_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
16498
+ "maturity": "stable",
16499
+ "audience": [
16500
+ "developer",
16501
+ "agent"
16502
+ ]
16503
+ },
16336
16504
  {
16337
16505
  "id": "packages/core/release-candidate-recovery.js#rebindPublicationGateAggregateForEquivalentTree",
16338
16506
  "name": "rebindPublicationGateAggregateForEquivalentTree",
@@ -19814,6 +19982,39 @@
19814
19982
  "agent"
19815
19983
  ]
19816
19984
  },
19985
+ {
19986
+ "id": "packages/core/release-train.js#createReleaseBlockerRepair",
19987
+ "name": "createReleaseBlockerRepair",
19988
+ "kind": "function",
19989
+ "signature": "function createReleaseBlockerRepair(activeTrainInput, input = {})",
19990
+ "parameters": [
19991
+ {
19992
+ "name": "activeTrainInput",
19993
+ "signature": "activeTrainInput"
19994
+ },
19995
+ {
19996
+ "name": "input",
19997
+ "signature": "input = {}"
19998
+ }
19999
+ ],
20000
+ "returns": "unknown",
20001
+ "errors": [
20002
+ "Errors from called operations may propagate; no narrower throw contract is declared in source."
20003
+ ],
20004
+ "sideEffects": [
20005
+ "none-detected-by-static-source-scan"
20006
+ ],
20007
+ "source": {
20008
+ "path": "packages/core/release-train.js",
20009
+ "line": 668
20010
+ },
20011
+ "example": "import { createReleaseBlockerRepair } from \"@kungfu-tech/buildchain/release-train\";",
20012
+ "maturity": "stable",
20013
+ "audience": [
20014
+ "developer",
20015
+ "agent"
20016
+ ]
20017
+ },
19817
20018
  {
19818
20019
  "id": "packages/core/release-train.js#createReleaseCut",
19819
20020
  "name": "createReleaseCut",
@@ -19834,7 +20035,7 @@
19834
20035
  ],
19835
20036
  "source": {
19836
20037
  "path": "packages/core/release-train.js",
19837
- "line": 179
20038
+ "line": 182
19838
20039
  },
19839
20040
  "example": "import { createReleaseCut } from \"@kungfu-tech/buildchain/release-train\";",
19840
20041
  "maturity": "stable",
@@ -19863,7 +20064,7 @@
19863
20064
  ],
19864
20065
  "source": {
19865
20066
  "path": "packages/core/release-train.js",
19866
- "line": 213
20067
+ "line": 216
19867
20068
  },
19868
20069
  "example": "import { createReleaseTrain } from \"@kungfu-tech/buildchain/release-train\";",
19869
20070
  "maturity": "stable",
@@ -19887,7 +20088,7 @@
19887
20088
  ],
19888
20089
  "source": {
19889
20090
  "path": "packages/core/release-train.js",
19890
- "line": 11
20091
+ "line": 13
19891
20092
  },
19892
20093
  "example": "import { LEGACY_DEV_ALPHA_CANDIDATE_STATE_SCHEMA } from \"@kungfu-tech/buildchain/release-train\";",
19893
20094
  "maturity": "stable",
@@ -19920,7 +20121,7 @@
19920
20121
  ],
19921
20122
  "source": {
19922
20123
  "path": "packages/core/release-train.js",
19923
- "line": 358
20124
+ "line": 361
19924
20125
  },
19925
20126
  "example": "import { observeReleaseTrain } from \"@kungfu-tech/buildchain/release-train\";",
19926
20127
  "maturity": "stable",
@@ -19949,7 +20150,7 @@
19949
20150
  ],
19950
20151
  "source": {
19951
20152
  "path": "packages/core/release-train.js",
19952
- "line": 491
20153
+ "line": 494
19953
20154
  },
19954
20155
  "example": "import { readReleaseTrain } from \"@kungfu-tech/buildchain/release-train\";",
19955
20156
  "maturity": "stable",
@@ -19958,6 +20159,30 @@
19958
20159
  "agent"
19959
20160
  ]
19960
20161
  },
20162
+ {
20163
+ "id": "packages/core/release-train.js#RELEASE_BLOCKER_REPAIR_CONTRACT",
20164
+ "name": "RELEASE_BLOCKER_REPAIR_CONTRACT",
20165
+ "kind": "constant",
20166
+ "signature": "const RELEASE_BLOCKER_REPAIR_CONTRACT",
20167
+ "parameters": [],
20168
+ "returns": "value",
20169
+ "errors": [
20170
+ "Import does not declare a throw contract."
20171
+ ],
20172
+ "sideEffects": [
20173
+ "none-on-import"
20174
+ ],
20175
+ "source": {
20176
+ "path": "packages/core/release-train.js",
20177
+ "line": 11
20178
+ },
20179
+ "example": "import { RELEASE_BLOCKER_REPAIR_CONTRACT } from \"@kungfu-tech/buildchain/release-train\";",
20180
+ "maturity": "stable",
20181
+ "audience": [
20182
+ "developer",
20183
+ "agent"
20184
+ ]
20185
+ },
19961
20186
  {
19962
20187
  "id": "packages/core/release-train.js#RELEASE_CUT_CONTRACT",
19963
20188
  "name": "RELEASE_CUT_CONTRACT",
@@ -20045,7 +20270,7 @@
20045
20270
  ],
20046
20271
  "source": {
20047
20272
  "path": "packages/core/release-train.js",
20048
- "line": 14
20273
+ "line": 16
20049
20274
  },
20050
20275
  "example": "import { RELEASE_TRAIN_STATES } from \"@kungfu-tech/buildchain/release-train\";",
20051
20276
  "maturity": "stable",
@@ -20069,7 +20294,7 @@
20069
20294
  ],
20070
20295
  "source": {
20071
20296
  "path": "packages/core/release-train.js",
20072
- "line": 24
20297
+ "line": 26
20073
20298
  },
20074
20299
  "example": "import { RELEASE_TRAIN_SUPERSESSION_CAUSES } from \"@kungfu-tech/buildchain/release-train\";",
20075
20300
  "maturity": "stable",
@@ -20122,7 +20347,7 @@
20122
20347
  ],
20123
20348
  "source": {
20124
20349
  "path": "packages/core/release-train.js",
20125
- "line": 71
20350
+ "line": 74
20126
20351
  },
20127
20352
  "example": "import { releaseTrainRoot } from \"@kungfu-tech/buildchain/release-train\";",
20128
20353
  "maturity": "stable",
@@ -20131,6 +20356,39 @@
20131
20356
  "agent"
20132
20357
  ]
20133
20358
  },
20359
+ {
20360
+ "id": "packages/core/release-train.js#settleReleaseBlockerDevLanding",
20361
+ "name": "settleReleaseBlockerDevLanding",
20362
+ "kind": "function",
20363
+ "signature": "function settleReleaseBlockerDevLanding(repairInput, input = {})",
20364
+ "parameters": [
20365
+ {
20366
+ "name": "repairInput",
20367
+ "signature": "repairInput"
20368
+ },
20369
+ {
20370
+ "name": "input",
20371
+ "signature": "input = {}"
20372
+ }
20373
+ ],
20374
+ "returns": "unknown",
20375
+ "errors": [
20376
+ "May throw an Error on rejected input or failed operations; follow the linked source contract."
20377
+ ],
20378
+ "sideEffects": [
20379
+ "may-write-or-invoke-external-actions"
20380
+ ],
20381
+ "source": {
20382
+ "path": "packages/core/release-train.js",
20383
+ "line": 708
20384
+ },
20385
+ "example": "import { settleReleaseBlockerDevLanding } from \"@kungfu-tech/buildchain/release-train\";",
20386
+ "maturity": "stable",
20387
+ "audience": [
20388
+ "developer",
20389
+ "agent"
20390
+ ]
20391
+ },
20134
20392
  {
20135
20393
  "id": "packages/core/release-train.js#transitionReleaseTrain",
20136
20394
  "name": "transitionReleaseTrain",
@@ -20155,7 +20413,7 @@
20155
20413
  ],
20156
20414
  "source": {
20157
20415
  "path": "packages/core/release-train.js",
20158
- "line": 336
20416
+ "line": 339
20159
20417
  },
20160
20418
  "example": "import { transitionReleaseTrain } from \"@kungfu-tech/buildchain/release-train\";",
20161
20419
  "maturity": "stable",
@@ -20164,6 +20422,35 @@
20164
20422
  "agent"
20165
20423
  ]
20166
20424
  },
20425
+ {
20426
+ "id": "packages/core/release-train.js#validateReleaseBlockerRepair",
20427
+ "name": "validateReleaseBlockerRepair",
20428
+ "kind": "function",
20429
+ "signature": "function validateReleaseBlockerRepair(input)",
20430
+ "parameters": [
20431
+ {
20432
+ "name": "input",
20433
+ "signature": "input"
20434
+ }
20435
+ ],
20436
+ "returns": "unknown",
20437
+ "errors": [
20438
+ "May throw an Error on rejected input or failed operations; follow the linked source contract."
20439
+ ],
20440
+ "sideEffects": [
20441
+ "none-detected-by-static-source-scan"
20442
+ ],
20443
+ "source": {
20444
+ "path": "packages/core/release-train.js",
20445
+ "line": 672
20446
+ },
20447
+ "example": "import { validateReleaseBlockerRepair } from \"@kungfu-tech/buildchain/release-train\";",
20448
+ "maturity": "stable",
20449
+ "audience": [
20450
+ "developer",
20451
+ "agent"
20452
+ ]
20453
+ },
20167
20454
  {
20168
20455
  "id": "packages/core/release-train.js#validateReleaseCut",
20169
20456
  "name": "validateReleaseCut",
@@ -20184,7 +20471,7 @@
20184
20471
  ],
20185
20472
  "source": {
20186
20473
  "path": "packages/core/release-train.js",
20187
- "line": 229
20474
+ "line": 232
20188
20475
  },
20189
20476
  "example": "import { validateReleaseCut } from \"@kungfu-tech/buildchain/release-train\";",
20190
20477
  "maturity": "stable",
@@ -20213,7 +20500,7 @@
20213
20500
  ],
20214
20501
  "source": {
20215
20502
  "path": "packages/core/release-train.js",
20216
- "line": 362
20503
+ "line": 365
20217
20504
  },
20218
20505
  "example": "import { validateReleaseTrain } from \"@kungfu-tech/buildchain/release-train\";",
20219
20506
  "maturity": "stable",
@@ -22359,16 +22646,17 @@
22359
22646
  "specifier": "@kungfu-tech/buildchain/buildchain-contract",
22360
22647
  "export": "./buildchain-contract",
22361
22648
  "target": "./packages/core/buildchain-contract.js",
22362
- "digest": "sha256:03ed3b622731f78dce445ef48a2d718ad211ab144fd74686741d547687867a5f",
22649
+ "digest": "sha256:ce3eb4b59193b9a5b4edbe67483f685dd56350bb0f9e1ae26e9ea9c013a0b4ad",
22363
22650
  "summary": "Runtime contract world and compatibility digest APIs for floating-ref drift checks.",
22364
22651
  "capabilityGroup": "governance-versioning",
22365
22652
  "audience": [
22366
22653
  "developer",
22367
22654
  "agent"
22368
22655
  ],
22369
- "symbolCount": 22,
22656
+ "symbolCount": 26,
22370
22657
  "symbolIds": [
22371
22658
  "packages/core/buildchain-compatibility-proof.js#assertBuildchainCompatibilityProjection",
22659
+ "packages/core/buildchain-channel-identity.js#BUILDCHAIN_CHANNELS",
22372
22660
  "packages/core/buildchain-compatibility-proof.js#BUILDCHAIN_COMPATIBILITY_PROOF_REGISTRY_SCHEMA",
22373
22661
  "packages/core/buildchain-compatibility-proof.js#BUILDCHAIN_COMPATIBILITY_PROOF_SCHEMA",
22374
22662
  "packages/core/buildchain-compatibility-proof.js#BUILDCHAIN_COMPATIBILITY_VERIFICATION_RECEIPT_SCHEMA",
@@ -22381,8 +22669,11 @@
22381
22669
  "packages/core/buildchain-contract.js#createBuildchainContractLock",
22382
22670
  "packages/core/buildchain-contract.js#createBuildchainContractWorld",
22383
22671
  "packages/core/buildchain-compatibility-proof.js#createHistoricalBuildchainCompatibilityProofs",
22672
+ "packages/core/buildchain-channel-identity.js#evaluateBuildchainChannelBinding",
22384
22673
  "packages/core/buildchain-compatibility-proof.js#evaluateBuildchainContractLock",
22385
22674
  "packages/core/buildchain-contract.js#finalizeBuildchainContractWorld",
22675
+ "packages/core/buildchain-channel-identity.js#normalizeBuildchainRef",
22676
+ "packages/core/buildchain-channel-identity.js#parseBuildchainRefIdentity",
22386
22677
  "packages/core/buildchain-contract.js#readBuildchainContractLock",
22387
22678
  "packages/core/buildchain-contract.js#readBuildchainContractWorld",
22388
22679
  "packages/core/buildchain-compatibility-proof.js#renderBuildchainContractDriftIssueBody",
@@ -22484,7 +22775,7 @@
22484
22775
  "specifier": "@kungfu-tech/buildchain/controller-evidence",
22485
22776
  "export": "./controller-evidence",
22486
22777
  "target": "./packages/core/controller-evidence.js",
22487
- "digest": "sha256:482b124aefc9c829098f68967c6d942fa0731b77628e309767347a0aaaf8d456",
22778
+ "digest": "sha256:a5bdccdba101c45186930855d3dda5e09dee405b33b1f71e042f65ccf706a16f",
22488
22779
  "summary": "Project-independent controller descriptors, source/runtime-bound plans, receipts, aggregates, and validation APIs.",
22489
22780
  "capabilityGroup": "reusable-build",
22490
22781
  "audience": [
@@ -22572,14 +22863,14 @@
22572
22863
  "specifier": "@kungfu-tech/buildchain/dev-delivery-warrant",
22573
22864
  "export": "./dev-delivery-warrant",
22574
22865
  "target": "./packages/core/dev-delivery-warrant.js",
22575
- "digest": "sha256:084b586e798779c324b5fb68b6d2e9a9e2cc397daba1bd9f78a34d584c51f445",
22866
+ "digest": "sha256:a002358b4c13b8859340e4427d489ce8c77f738ed64d560b964d8aacc03cdeea",
22576
22867
  "summary": "Durable fair Dev Delivery Warrant queue, fenced lease, and split source and integration proof APIs.",
22577
22868
  "capabilityGroup": "governance-versioning",
22578
22869
  "audience": [
22579
22870
  "developer",
22580
22871
  "agent"
22581
22872
  ],
22582
- "symbolCount": 32,
22873
+ "symbolCount": 34,
22583
22874
  "symbolIds": [
22584
22875
  "packages/core/dev-delivery-warrant.js#cancelQueuedDevDeliveryCandidate",
22585
22876
  "packages/core/dev-delivery-proof.js#classifyDevDeliveryDelta",
@@ -22588,6 +22879,7 @@
22588
22879
  "packages/core/dev-delivery-proof.js#createIntegrationDeliveryProof",
22589
22880
  "packages/core/dev-delivery-proof.js#createProjectCutReplayPlan",
22590
22881
  "packages/core/dev-delivery-proof.js#createProjectCutReplayProof",
22882
+ "packages/core/release-blocker-priority.js#createReleaseBlockerPriorityClaim",
22591
22883
  "packages/core/dev-delivery-proof.js#createSourceQualificationProof",
22592
22884
  "packages/core/dev-delivery-warrant.js#DEV_DELIVERY_CANCELLATION_RECEIPT_SCHEMA",
22593
22885
  "packages/core/dev-delivery-warrant.js#DEV_DELIVERY_CLASSES",
@@ -22606,6 +22898,7 @@
22606
22898
  "packages/core/dev-delivery-proof.js#PROJECT_CUT_REPLAY_PROOF_SCHEMA",
22607
22899
  "packages/core/dev-delivery-warrant.js#rankDevDeliveryCandidates",
22608
22900
  "packages/core/dev-delivery-warrant.js#recoverExpiredDevDeliveryWarrant",
22901
+ "packages/core/release-blocker-priority.js#RELEASE_BLOCKER_PRIORITY_CLAIM_SCHEMA",
22609
22902
  "packages/core/dev-delivery-warrant.js#selectDevDeliveryWarrant",
22610
22903
  "packages/core/dev-delivery-warrant.js#settleDevDeliveryTerminalEvent",
22611
22904
  "packages/core/dev-delivery-proof.js#SOURCE_QUALIFICATION_PROOF_SCHEMA",
@@ -22764,7 +23057,7 @@
22764
23057
  "specifier": "@kungfu-tech/buildchain/kfd-adopter-manifest",
22765
23058
  "export": "./kfd-adopter-manifest",
22766
23059
  "target": "./packages/core/kfd-adopter-manifest.js",
22767
- "digest": "sha256:45fc7620410c48001da97cb0748c0b19ff9f5c5b07267f1aaf744dc816e970bd",
23060
+ "digest": "sha256:9300bf0531cd9bb6a0cce50363765cb5dd22cdf1bd0c9075d0eb36b80cea9943",
22768
23061
  "summary": "Exact-cut KFD adopter manifest verification, Buildchain evidence binding, and one-way legacy support-matrix projection APIs.",
22769
23062
  "capabilityGroup": "kfd-trust",
22770
23063
  "audience": [
@@ -23544,20 +23837,22 @@
23544
23837
  "specifier": "@kungfu-tech/buildchain/release-train",
23545
23838
  "export": "./release-train",
23546
23839
  "target": "./packages/core/release-train.js",
23547
- "digest": "sha256:16ea77f54dde016af95de9b2c18bfdb925f13fc3d263819eacd1100a111731c4",
23840
+ "digest": "sha256:87689dcbf4b7d2fc1e5be41193a695ebf28f2e28e32df1f41661ae9c828614b4",
23548
23841
  "summary": "Frozen Release Cut identity, rooted Release Train transitions, Dev observations, supersession, replay, and legacy read compatibility APIs.",
23549
23842
  "capabilityGroup": "governance-versioning",
23550
23843
  "audience": [
23551
23844
  "developer",
23552
23845
  "agent"
23553
23846
  ],
23554
- "symbolCount": 15,
23847
+ "symbolCount": 19,
23555
23848
  "symbolIds": [
23849
+ "packages/core/release-train.js#createReleaseBlockerRepair",
23556
23850
  "packages/core/release-train.js#createReleaseCut",
23557
23851
  "packages/core/release-train.js#createReleaseTrain",
23558
23852
  "packages/core/release-train.js#LEGACY_DEV_ALPHA_CANDIDATE_STATE_SCHEMA",
23559
23853
  "packages/core/release-train.js#observeReleaseTrain",
23560
23854
  "packages/core/release-train.js#readReleaseTrain",
23855
+ "packages/core/release-train.js#RELEASE_BLOCKER_REPAIR_CONTRACT",
23561
23856
  "packages/core/release-train.js#RELEASE_CUT_CONTRACT",
23562
23857
  "packages/core/release-train.js#RELEASE_TRAIN_CONTRACT",
23563
23858
  "packages/core/release-train.js#RELEASE_TRAIN_OBSERVATION_CONTRACT",
@@ -23565,7 +23860,9 @@
23565
23860
  "packages/core/release-train.js#RELEASE_TRAIN_SUPERSESSION_CAUSES",
23566
23861
  "packages/core/release-train.js#RELEASE_TRAIN_TRANSITION_CONTRACT",
23567
23862
  "packages/core/release-train.js#releaseTrainRoot",
23863
+ "packages/core/release-train.js#settleReleaseBlockerDevLanding",
23568
23864
  "packages/core/release-train.js#transitionReleaseTrain",
23865
+ "packages/core/release-train.js#validateReleaseBlockerRepair",
23569
23866
  "packages/core/release-train.js#validateReleaseCut",
23570
23867
  "packages/core/release-train.js#validateReleaseTrain"
23571
23868
  ],
@@ -24021,7 +24318,7 @@
24021
24318
  {
24022
24319
  "id": "node-api-reference",
24023
24320
  "path": "docs/node-api-reference.md",
24024
- "digest": "sha256:5caa3d6020c9449cb57bdeff92ec04255e7dafca8dd3639d3e134d72e75c5a2d"
24321
+ "digest": "sha256:bbef23e4f489376f759e5678d61e2f07c69dfa5542f5538e14c68a0714233ea3"
24025
24322
  },
24026
24323
  {
24027
24324
  "id": "build-facts",