@kungfu-tech/buildchain 2.14.2 → 2.14.3-alpha.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 (57) hide show
  1. package/dist/site/agent-index.json +2 -0
  2. package/dist/site/artifact-schemas.json +4 -0
  3. package/dist/site/badge-endpoint-registry.json +320 -0
  4. package/dist/site/badges/v1/kfd-5/aligned.json +14 -0
  5. package/dist/site/badges/v1/kfd-5/declared.json +14 -0
  6. package/dist/site/badges/v1/kfd-5/downgraded.json +14 -0
  7. package/dist/site/badges/v1/kfd-5/draft.json +14 -0
  8. package/dist/site/badges/v1/kfd-5/failed.json +14 -0
  9. package/dist/site/badges/v1/kfd-5/missing.json +14 -0
  10. package/dist/site/badges/v1/kfd-5/passed.json +14 -0
  11. package/dist/site/badges/v1/kfd-5/planned.json +14 -0
  12. package/dist/site/badges/v1/kfd-6/aligned.json +14 -0
  13. package/dist/site/badges/v1/kfd-6/declared.json +14 -0
  14. package/dist/site/badges/v1/kfd-6/downgraded.json +14 -0
  15. package/dist/site/badges/v1/kfd-6/draft.json +14 -0
  16. package/dist/site/badges/v1/kfd-6/failed.json +14 -0
  17. package/dist/site/badges/v1/kfd-6/missing.json +14 -0
  18. package/dist/site/badges/v1/kfd-6/passed.json +14 -0
  19. package/dist/site/badges/v1/kfd-6/planned.json +14 -0
  20. package/dist/site/buildchain-contract.json +149 -28
  21. package/dist/site/buildchain-site.json +25 -23
  22. package/dist/site/capability-registry.json +2 -2
  23. package/dist/site/controller-registry.json +61 -5
  24. package/dist/site/kfd-claims.json +129 -11
  25. package/dist/site/kfd-upstream-aggregate.json +12 -12
  26. package/dist/site/manual-registry.json +6 -6
  27. package/dist/site/node-api-registry.json +20 -7
  28. package/dist/site/page-registry.json +12 -12
  29. package/dist/site/public-surface-audit.json +134 -8
  30. package/dist/site/publication-authority-registry.json +26 -1
  31. package/dist/site/publication-registry.json +4 -4
  32. package/dist/site/release-model.json +3 -1
  33. package/dist/site/release-passport-check-manifest.json +167 -0
  34. package/dist/site/release-provenance.json +3 -0
  35. package/dist/site/schemas/release-passport-v1.schema.json +198 -0
  36. package/dist/site/site-manifest.json +10 -10
  37. package/dist/site/workflow-registry.json +128 -4
  38. package/docs/migration-inventory.md +8 -0
  39. package/docs/release-candidate.md +3 -0
  40. package/docs/release-governance.md +5 -4
  41. package/docs/release-passport.md +19 -0
  42. package/docs/release-propagation.md +19 -7
  43. package/docs/reusable-build-surface.md +26 -1
  44. package/package.json +5 -2
  45. package/packages/core/buildchain-contract.js +41 -0
  46. package/packages/core/buildchain-kfd-claims.js +4 -0
  47. package/packages/core/buildchain-publication-authority.js +1 -0
  48. package/packages/core/controller-evidence.js +1 -1
  49. package/packages/core/index.js +9 -0
  50. package/packages/core/package-manager.js +32 -0
  51. package/packages/core/release-passport-contract.js +249 -0
  52. package/packages/core/release-passport.js +39 -0
  53. package/scripts/check-inventory.mjs +37 -3
  54. package/scripts/generate-channel-promotion-workflow.mjs +331 -0
  55. package/scripts/generate-site-bundle.mjs +15 -0
  56. package/scripts/promotion-channel-router.mjs +132 -0
  57. package/scripts/validate-package-manager-contract.mjs +24 -0
@@ -50,7 +50,7 @@
50
50
  "manualCount": 4,
51
51
  "pageCount": 4,
52
52
  "cliCommandCount": 21,
53
- "nodeApiCount": 6,
53
+ "nodeApiCount": 7,
54
54
  "workflowCount": 2,
55
55
  "actionCount": 1
56
56
  },
@@ -287,7 +287,7 @@
287
287
  "pageCount": 6,
288
288
  "cliCommandCount": 0,
289
289
  "nodeApiCount": 2,
290
- "workflowCount": 31,
290
+ "workflowCount": 32,
291
291
  "actionCount": 0
292
292
  },
293
293
  "manuals": [
@@ -1345,8 +1345,8 @@
1345
1345
  "id": "release-candidate-promotion",
1346
1346
  "version": 1,
1347
1347
  "workflow": {
1348
- "id": "release-candidate-promote",
1349
- "path": ".github/workflows/release-candidate-promote.yml"
1348
+ "id": ".release-candidate-promote",
1349
+ "path": ".github/workflows/.release-candidate-promote.yml"
1350
1350
  },
1351
1351
  "inputs": {
1352
1352
  "BUILDCHAIN_ISSUE_APP_ID": {
@@ -1445,6 +1445,50 @@
1445
1445
  "classification": "included",
1446
1446
  "source": "workflow-call-input"
1447
1447
  },
1448
+ "promotion-contract-lock-digest": {
1449
+ "classification": "included",
1450
+ "source": "workflow-call-input"
1451
+ },
1452
+ "promotion-contract-lock-path": {
1453
+ "classification": "digest-only",
1454
+ "source": "workflow-call-input"
1455
+ },
1456
+ "promotion-override-used": {
1457
+ "classification": "included",
1458
+ "source": "workflow-call-input"
1459
+ },
1460
+ "promotion-publication-channel": {
1461
+ "classification": "included",
1462
+ "source": "workflow-call-input"
1463
+ },
1464
+ "promotion-router-ref": {
1465
+ "classification": "included",
1466
+ "source": "workflow-call-input"
1467
+ },
1468
+ "promotion-router-sha": {
1469
+ "classification": "included",
1470
+ "source": "workflow-call-input"
1471
+ },
1472
+ "promotion-runtime-ref": {
1473
+ "classification": "included",
1474
+ "source": "workflow-call-input"
1475
+ },
1476
+ "promotion-runtime-sha": {
1477
+ "classification": "included",
1478
+ "source": "workflow-call-input"
1479
+ },
1480
+ "promotion-shell-ref": {
1481
+ "classification": "included",
1482
+ "source": "workflow-call-input"
1483
+ },
1484
+ "promotion-shell-sha": {
1485
+ "classification": "included",
1486
+ "source": "workflow-call-input"
1487
+ },
1488
+ "promotion-target-ref": {
1489
+ "classification": "included",
1490
+ "source": "workflow-call-input"
1491
+ },
1448
1492
  "publication-admission-json": {
1449
1493
  "classification": "digest-only",
1450
1494
  "source": "workflow-call-input"
@@ -1655,7 +1699,7 @@
1655
1699
  "controller-receipt"
1656
1700
  ]
1657
1701
  },
1658
- "digest": "sha256:2507d132710f66d3ae6ffdb18f5e66172707b8e0f9ad9e888f7422fdacc99133"
1702
+ "digest": "sha256:6a531c572b59eb3b8aa5d47df3658f8f438a0d026468dd13b1a6642a3ea8c425"
1659
1703
  },
1660
1704
  {
1661
1705
  "schemaVersion": 1,
@@ -1683,6 +1727,10 @@
1683
1727
  "classification": "included",
1684
1728
  "source": "workflow-call-input"
1685
1729
  },
1730
+ "downstream-prepare-command": {
1731
+ "classification": "digest-only",
1732
+ "source": "workflow-call-input"
1733
+ },
1686
1734
  "downstream-repository": {
1687
1735
  "classification": "included",
1688
1736
  "source": "workflow-call-input"
@@ -1691,6 +1739,10 @@
1691
1739
  "classification": "included",
1692
1740
  "source": "workflow-call-input"
1693
1741
  },
1742
+ "downstream-verify-command": {
1743
+ "classification": "digest-only",
1744
+ "source": "workflow-call-input"
1745
+ },
1694
1746
  "dry-run": {
1695
1747
  "classification": "included",
1696
1748
  "source": "workflow-call-input"
@@ -1715,6 +1767,10 @@
1715
1767
  "classification": "redacted",
1716
1768
  "source": "workflow-call-secret"
1717
1769
  },
1770
+ "refresh-managed-readme-badges": {
1771
+ "classification": "included",
1772
+ "source": "workflow-call-input"
1773
+ },
1718
1774
  "source-node": {
1719
1775
  "classification": "included",
1720
1776
  "source": "workflow-call-input"
@@ -1758,8 +1814,8 @@
1758
1814
  "controller-receipt"
1759
1815
  ]
1760
1816
  },
1761
- "digest": "sha256:9b9f9a2320c4349903d72ee46e329211b5538ed5ebebaa93559df4eafb835997"
1817
+ "digest": "sha256:ede9eba43b87cf19330d5f8203a1585bf066aa9affc9cac0f43230ac76b8580d"
1762
1818
  }
1763
1819
  ],
1764
- "digest": "sha256:266928038838e26ba1350c70d78290723ddb2fd209b66ab1afab776d948a379b"
1820
+ "digest": "sha256:5f771d5b2f481a28afc48f516685f50985c1d51391857cdf04e3238c271fecc8"
1765
1821
  }
@@ -14,20 +14,20 @@
14
14
  },
15
15
  "runtimeContract": {
16
16
  "contract": "kungfu-buildchain-runtime-contract-world",
17
- "compatibilityDigest": "sha256:af162b86ab4506e9b5f1d3c59b41f3fd57fbad79ff4d749a7f12ff16460517f8",
17
+ "compatibilityDigest": "sha256:edc3653e5cb34efd97065a6941db16140bbf375a565bbcf329d9d795bb07676f",
18
18
  "majorLine": "v2"
19
19
  },
20
20
  "publicSurfaceReverseAudit": {
21
21
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
22
22
  "path": "dist/site/public-surface-audit.json",
23
23
  "status": "passed",
24
- "sha256": "3d9e43510266b900fe450253fbb8aac72953c7128a797154150eb301ef71ed6a",
24
+ "sha256": "01e8843cfb9848464fdc5402afb1760f3b6f7c5a79b4a9251cfd91010217c665",
25
25
  "summary": {
26
26
  "cliCommandCount": 83,
27
- "workflowCount": 48,
27
+ "workflowCount": 49,
28
28
  "actionCount": 4,
29
29
  "sitePageCount": 50,
30
- "docCommandRefCount": 257,
30
+ "docCommandRefCount": 258,
31
31
  "failureCount": 0
32
32
  },
33
33
  "auditBoundary": {
@@ -166,6 +166,7 @@
166
166
  "packages/core/buildchain-contract.js",
167
167
  "scripts/buildchain-contract-lock.mjs",
168
168
  ".github/workflows/.build.yml",
169
+ ".github/workflows/.release-candidate-promote.yml",
169
170
  ".github/workflows/release-candidate-promote.yml",
170
171
  "docs/reusable-build-surface.md"
171
172
  ],
@@ -181,6 +182,7 @@
181
182
  "actions/promote-buildchain-ref/index.js",
182
183
  "actions/promote-buildchain-ref/action.yml",
183
184
  "scripts/ensure-github-release.mjs",
185
+ ".github/workflows/.release-candidate-promote.yml",
184
186
  ".github/workflows/release-candidate-promote.yml",
185
187
  "docs/release-governance.md"
186
188
  ],
@@ -209,6 +211,7 @@
209
211
  "sourcePaths": [
210
212
  "scripts/npm-publish-transaction.mjs",
211
213
  "actions/promote-buildchain-ref/index.js",
214
+ ".github/workflows/.release-candidate-promote.yml",
212
215
  ".github/workflows/release-candidate-promote.yml",
213
216
  "docs/publish-transaction.md"
214
217
  ],
@@ -225,13 +228,13 @@
225
228
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
226
229
  "path": "dist/site/public-surface-audit.json",
227
230
  "status": "passed",
228
- "sha256": "3d9e43510266b900fe450253fbb8aac72953c7128a797154150eb301ef71ed6a",
231
+ "sha256": "01e8843cfb9848464fdc5402afb1760f3b6f7c5a79b4a9251cfd91010217c665",
229
232
  "summary": {
230
233
  "cliCommandCount": 83,
231
- "workflowCount": 48,
234
+ "workflowCount": 49,
232
235
  "actionCount": 4,
233
236
  "sitePageCount": 50,
234
- "docCommandRefCount": 257,
237
+ "docCommandRefCount": 258,
235
238
  "failureCount": 0
236
239
  },
237
240
  "auditBoundary": {
@@ -1303,6 +1306,18 @@
1303
1306
  "public": true,
1304
1307
  "packageExport": "./release-passport"
1305
1308
  },
1309
+ {
1310
+ "id": "export:./release-passport-contract",
1311
+ "name": "@kungfu-tech/buildchain/release-passport-contract",
1312
+ "kind": "package-export",
1313
+ "sourcePath": "packages/core/release-passport-contract.js",
1314
+ "evidencePath": "packages/core/release-passport-contract.js",
1315
+ "availability": "shipped",
1316
+ "visibility": "public",
1317
+ "participantFacing": true,
1318
+ "public": true,
1319
+ "packageExport": "./release-passport-contract"
1320
+ },
1306
1321
  {
1307
1322
  "id": "export:./release-propagation",
1308
1323
  "name": "@kungfu-tech/buildchain/release-propagation",
@@ -2752,6 +2767,91 @@
2752
2767
  ],
2753
2768
  "reverseAuditSource": ".github/workflows"
2754
2769
  },
2770
+ {
2771
+ "id": "workflow:.release-candidate-promote",
2772
+ "name": "workflow:.release-candidate-promote",
2773
+ "kind": "workflow",
2774
+ "sourcePath": ".github/workflows/.release-candidate-promote.yml",
2775
+ "evidencePath": ".github/workflows/.release-candidate-promote.yml",
2776
+ "availability": "shipped",
2777
+ "visibility": "public",
2778
+ "participantFacing": true,
2779
+ "public": true,
2780
+ "inputCount": 70,
2781
+ "inputs": [
2782
+ "allow-repository",
2783
+ "artifact-name",
2784
+ "artifact-patterns",
2785
+ "branch-protection-bypass-apps",
2786
+ "branch-protection-bypass-teams",
2787
+ "branch-protection-bypass-users",
2788
+ "buildchain-contract-compatibility-policy",
2789
+ "buildchain-contract-drift-issue-mode",
2790
+ "buildchain-contract-lock-path",
2791
+ "buildchain-ref",
2792
+ "buildchain-repository",
2793
+ "channel",
2794
+ "dry-run",
2795
+ "github-release",
2796
+ "github-release-notes",
2797
+ "github-release-title",
2798
+ "package-manager",
2799
+ "promotion-contract-lock-digest",
2800
+ "promotion-contract-lock-path",
2801
+ "promotion-override-used",
2802
+ "promotion-publication-channel",
2803
+ "promotion-router-ref",
2804
+ "promotion-router-sha",
2805
+ "promotion-runtime-ref",
2806
+ "promotion-runtime-sha",
2807
+ "promotion-shell-ref",
2808
+ "promotion-shell-sha",
2809
+ "promotion-target-ref",
2810
+ "publication-admission-json",
2811
+ "publication-auto-admission",
2812
+ "publication-auto-no-gate",
2813
+ "publication-consumer-predicate-id",
2814
+ "publication-consumer-qualification-command",
2815
+ "publication-control-plane-audit-json",
2816
+ "publication-expected-json",
2817
+ "publication-gate-aggregate-json",
2818
+ "publication-package-name",
2819
+ "publication-product",
2820
+ "publication-publisher-workflow-path",
2821
+ "publication-runner-provenance-json",
2822
+ "publication-target",
2823
+ "publication-used-nonces-json",
2824
+ "publication-used-qualification-nonces-json",
2825
+ "publish-artifact-kind",
2826
+ "publish-command",
2827
+ "publish-dist-tag",
2828
+ "publish-mode",
2829
+ "publish-package-main",
2830
+ "publish-package-set-order",
2831
+ "publish-required-artifacts-json",
2832
+ "publish-target",
2833
+ "release-candidate-workflow-file",
2834
+ "release-candidate-workflow-name",
2835
+ "release-passport",
2836
+ "release-passport-buildchain-self-kfd",
2837
+ "release-passport-impact-json",
2838
+ "release-passport-kfd-1-witness-jsons",
2839
+ "release-passport-kfd-2-claim-jsons",
2840
+ "release-passport-kfd-3-artifact-verify-command",
2841
+ "release-passport-kfd-3-artifact-witness-jsons",
2842
+ "release-passport-kfd-3-prebuild-witness-jsons",
2843
+ "release-passport-output-dir",
2844
+ "release-passport-platform-manifest-paths",
2845
+ "release-passport-product-name",
2846
+ "required-artifact-count",
2847
+ "required-status-check",
2848
+ "runner-preset",
2849
+ "target-ref",
2850
+ "target-sha",
2851
+ "trusted-publishing"
2852
+ ],
2853
+ "reverseAuditSource": ".github/workflows"
2854
+ },
2755
2855
  {
2756
2856
  "id": "workflow:.release-docker",
2757
2857
  "name": "workflow:.release-docker",
@@ -3605,7 +3705,7 @@
3605
3705
  "visibility": "public",
3606
3706
  "participantFacing": true,
3607
3707
  "public": true,
3608
- "inputCount": 59,
3708
+ "inputCount": 62,
3609
3709
  "inputs": [
3610
3710
  "allow-repository",
3611
3711
  "artifact-name",
@@ -3613,11 +3713,14 @@
3613
3713
  "branch-protection-bypass-apps",
3614
3714
  "branch-protection-bypass-teams",
3615
3715
  "branch-protection-bypass-users",
3716
+ "buildchain-alpha-contract-lock-path",
3717
+ "buildchain-channel",
3616
3718
  "buildchain-contract-compatibility-policy",
3617
3719
  "buildchain-contract-drift-issue-mode",
3618
3720
  "buildchain-contract-lock-path",
3619
3721
  "buildchain-ref",
3620
3722
  "buildchain-repository",
3723
+ "buildchain-stable-contract-lock-path",
3621
3724
  "channel",
3622
3725
  "dry-run",
3623
3726
  "github-release",
@@ -3707,19 +3810,22 @@
3707
3810
  "visibility": "public",
3708
3811
  "participantFacing": true,
3709
3812
  "public": true,
3710
- "inputCount": 13,
3813
+ "inputCount": 16,
3711
3814
  "inputs": [
3712
3815
  "buildchain-ref",
3713
3816
  "buildchain-repository",
3714
3817
  "downstream-base-ref",
3715
3818
  "downstream-branch",
3819
+ "downstream-prepare-command",
3716
3820
  "downstream-repository",
3717
3821
  "downstream-target",
3822
+ "downstream-verify-command",
3718
3823
  "dry-run",
3719
3824
  "graph-json",
3720
3825
  "lock-path",
3721
3826
  "pr-body",
3722
3827
  "pr-title",
3828
+ "refresh-managed-readme-badges",
3723
3829
  "source-node",
3724
3830
  "upstream-release-json"
3725
3831
  ],
@@ -3821,7 +3927,7 @@
3821
3927
  "visibility": "public",
3822
3928
  "participantFacing": true,
3823
3929
  "public": true,
3824
- "inputCount": 59,
3930
+ "inputCount": 60,
3825
3931
  "inputs": [
3826
3932
  "allow-repository",
3827
3933
  "branch-protection-bypass-apps",
@@ -3871,6 +3977,7 @@
3871
3977
  "release-passport-output-dir",
3872
3978
  "release-passport-platform-manifest-paths",
3873
3979
  "release-passport-product-name",
3980
+ "release-passport-promotion-routing-json",
3874
3981
  "require-governance",
3875
3982
  "require-publication-qualification",
3876
3983
  "require-publish-source-lock",
@@ -4611,6 +4718,17 @@
4611
4718
  "participantFacing": true,
4612
4719
  "public": true
4613
4720
  },
4721
+ {
4722
+ "id": "control:.github/workflows/.release-candidate-promote.yml",
4723
+ "name": "control:.github/workflows/.release-candidate-promote.yml",
4724
+ "kind": "workflow",
4725
+ "sourcePath": ".github/workflows/.release-candidate-promote.yml",
4726
+ "evidencePath": ".github/workflows/.release-candidate-promote.yml",
4727
+ "availability": "shipped",
4728
+ "visibility": "public",
4729
+ "participantFacing": true,
4730
+ "public": true
4731
+ },
4614
4732
  {
4615
4733
  "id": "control:.github/workflows/release-candidate-promote.yml",
4616
4734
  "name": "control:.github/workflows/release-candidate-promote.yml",
@@ -4702,6 +4820,6 @@
4702
4820
  }
4703
4821
  }
4704
4822
  ],
4705
- "publicSurfaceCount": 304
4823
+ "publicSurfaceCount": 307
4706
4824
  }
4707
4825
  }
@@ -4,7 +4,7 @@
4
4
  "product": {
5
5
  "id": "kungfu-tech-buildchain",
6
6
  "name": "@kungfu-tech/buildchain",
7
- "version": "2.14.2",
7
+ "version": "2.14.3-alpha.1",
8
8
  "repository": "https://github.com/kungfu-systems/buildchain"
9
9
  },
10
10
  "source": {
@@ -21,7 +21,7 @@
21
21
  "roleValid": true,
22
22
  "package": {
23
23
  "name": "@kungfu-tech/kfd",
24
- "version": "1.0.0-alpha.21"
24
+ "version": "1.0.0-alpha.29"
25
25
  },
26
26
  "repository": "kungfu-systems/kfd",
27
27
  "kfd": {
@@ -37,19 +37,19 @@
37
37
  "line": "v1.0",
38
38
  "channel": "alpha",
39
39
  "npmPackage": "@kungfu-tech/kfd",
40
- "npmVersion": "1.0.0-alpha.21",
40
+ "npmVersion": "1.0.0-alpha.29",
41
41
  "source": {
42
42
  "repository": "kungfu-systems/kfd",
43
43
  "branch": "alpha/v1/v1.0"
44
44
  },
45
45
  "rationale": "KFD uses an anchored/manual Buildchain mode: the public package version is an explicit release fact, while the outer KFD line remains v1.0."
46
46
  },
47
- "kfd3SurfaceCount": 18,
47
+ "kfd3SurfaceCount": 24,
48
48
  "assets": [
49
49
  {
50
50
  "path": "kfd.release.json",
51
51
  "kind": "package",
52
- "sha256": "sha256:bfb302c839b6cb45204d541b5af5b1c211568efb16fb3eebbb04dc65f7de83d2",
52
+ "sha256": "sha256:5fc018c587ba2e2d04932cf46ebb51cf617768e36f4af50e38fcdaa2fcdc39e1",
53
53
  "contract": "kfd-release-anchor",
54
54
  "role": "",
55
55
  "directory": false
@@ -57,7 +57,7 @@
57
57
  {
58
58
  "path": ".buildchain/kfd-1/contract-world.witness.json",
59
59
  "kind": "package",
60
- "sha256": "sha256:542fe5b730f2e4782655d096ec04a5dd82a88d4fc9e8701ee235eb111a06dab6",
60
+ "sha256": "sha256:f1b3faf10ac37a8b69482cf4b0e996972a736ffcb441be898ef6f548a871e034",
61
61
  "contract": "",
62
62
  "role": "",
63
63
  "directory": false
@@ -65,7 +65,7 @@
65
65
  {
66
66
  "path": ".buildchain/kfd-2/public-release-trust.claim.json",
67
67
  "kind": "package",
68
- "sha256": "sha256:3780b47472762b5ce9575250da73ee800af71dd194a9b0a3f61a063569311237",
68
+ "sha256": "sha256:eb157cad7d0b711f81dfb0fca4f46b7f9dd531860dc43c6f95e86c12d366e5b7",
69
69
  "contract": "",
70
70
  "role": "",
71
71
  "directory": false
@@ -73,7 +73,7 @@
73
73
  {
74
74
  "path": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
75
75
  "kind": "package",
76
- "sha256": "sha256:87757bd26c8f64465472aaafda05fe56497939a3ce66274563c142594d9d769b",
76
+ "sha256": "sha256:da6625c1fda4102704b4320f99276c6118d201e064d58266ca5426f6e71ef26e",
77
77
  "contract": "kfd-2-trust-claims",
78
78
  "role": "",
79
79
  "directory": false
@@ -81,7 +81,7 @@
81
81
  {
82
82
  "path": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
83
83
  "kind": "package",
84
- "sha256": "sha256:c3749585bb4a295bb2f0f510a4b6030f0398d9a09dc50dab0ace31248bf95b0f",
84
+ "sha256": "sha256:dad8415898516b571e86f2c9671f81a31f9c1af055b1f76f237184062181ba03",
85
85
  "contract": "kfd-2-trust-assessment",
86
86
  "role": "",
87
87
  "directory": false
@@ -89,7 +89,7 @@
89
89
  {
90
90
  "path": ".buildchain/kfd-3/collaboration-interface.json",
91
91
  "kind": "package",
92
- "sha256": "sha256:fa41128be4ee57a4a40b76d4d7a063c01d7c2e5c53aec2b9c6db819c7a27b22b",
92
+ "sha256": "sha256:5641f78086384fa7288c05a373cb8f0d90a5496c368b014e33f3873527c5b8ce",
93
93
  "contract": "kfd-3-collaboration-interface",
94
94
  "role": "",
95
95
  "directory": false
@@ -97,7 +97,7 @@
97
97
  {
98
98
  "path": "standards.json",
99
99
  "kind": "package",
100
- "sha256": "sha256:4ee9e5fc732eef1b43c75a146125496e0dbd859ef5a11d0c637c41e9091c677f",
100
+ "sha256": "sha256:e19cb764adf739b9eb5627e83e32e00e35613af0a7c0968d1cf51cd8635c891e",
101
101
  "contract": "kfd-standards-metadata",
102
102
  "role": "",
103
103
  "directory": false
@@ -113,7 +113,7 @@
113
113
  "kfd"
114
114
  ],
115
115
  "packageVersions": {
116
- "kfd": "1.0.0-alpha.21"
116
+ "kfd": "1.0.0-alpha.29"
117
117
  },
118
118
  "status": "collected"
119
119
  }
@@ -36,7 +36,7 @@
36
36
  "title": "Release Passport protocol",
37
37
  "path": "docs/release-passport.md",
38
38
  "plane": "verify",
39
- "digest": "sha256:2421e3e9f2dd892971bea5deb605492dfec38f3a83e539229442b55380bebe25",
39
+ "digest": "sha256:0029014ffab7d7228a12d8b92326b78cf6757a41f481b661c5997e2cef06d3cc",
40
40
  "capabilityGroup": "release-passport-trust",
41
41
  "audience": [
42
42
  "release-operator",
@@ -79,7 +79,7 @@
79
79
  "title": "Release Candidate Passport",
80
80
  "path": "docs/release-candidate.md",
81
81
  "plane": "verify",
82
- "digest": "sha256:1fc581cf1b4e4a202464c8d6671b3bff12d0b349760246a951e88ef524f99e6b",
82
+ "digest": "sha256:81463a74dfe3d337768797b5b47f8cb3a22389312a917447f9b0e6096ab4f90a",
83
83
  "capabilityGroup": "reusable-build",
84
84
  "audience": [
85
85
  "release-operator",
@@ -93,7 +93,7 @@
93
93
  "title": "Release propagation",
94
94
  "path": "docs/release-propagation.md",
95
95
  "plane": "use",
96
- "digest": "sha256:d5877075eb41a3d41e531549da113756d29d6f34c91e3b68b8ce650753d5ca1d",
96
+ "digest": "sha256:fc2b743e3d76c4f90cdd8c6560cf9d619ad25d74c15c074be96db7bcb6cc2a29",
97
97
  "capabilityGroup": "site-and-propagation",
98
98
  "audience": [
99
99
  "release-operator",
@@ -205,7 +205,7 @@
205
205
  "title": "Migration inventory",
206
206
  "path": "docs/migration-inventory.md",
207
207
  "plane": "verify",
208
- "digest": "sha256:80018cf78785431e67bbc5278d82dda80d0baa320cdb5e4abda26a0b05e5c0bc",
208
+ "digest": "sha256:08daa7d0b42543c1d1dacf1f56f461f0e7a7ca9e25d0859e39599ceb97054ee0",
209
209
  "capabilityGroup": "governance-versioning",
210
210
  "audience": [
211
211
  "maintainer",
@@ -302,7 +302,7 @@
302
302
  "title": "Reusable build surface",
303
303
  "path": "docs/reusable-build-surface.md",
304
304
  "plane": "use",
305
- "digest": "sha256:a2092c8064332cec9a4be852b24d94f90625cb45f885c4c3208f7068a643a3f0",
305
+ "digest": "sha256:7b745037fedafa1bc2f8ce65f32bb7e887988df2bfe2439694da418d482f6929",
306
306
  "capabilityGroup": "reusable-build",
307
307
  "audience": [
308
308
  "consumer",
@@ -329,7 +329,7 @@
329
329
  "title": "Release governance",
330
330
  "path": "docs/release-governance.md",
331
331
  "plane": "why",
332
- "digest": "sha256:e64ffd6183eaa7b73f8c0c133a645ced22212bca70c9609ad5f667cf3830aaae",
332
+ "digest": "sha256:d25a2ceb6cdc1a1db321e7d2a6aa8a454fb4d7a10560177604f8ecb5801a6e66",
333
333
  "capabilityGroup": "governance-versioning",
334
334
  "audience": [
335
335
  "maintainer",
@@ -8,7 +8,7 @@
8
8
  "specifier": "@kungfu-tech/buildchain",
9
9
  "export": ".",
10
10
  "target": "./packages/core/index.js",
11
- "digest": "sha256:454830df8be696e9c25136421dd9f4efaf5900b043422f5c4238648b493bc15c",
11
+ "digest": "sha256:1863f8af4327bf4d77b46d0646043b6675c0094656edb6ba69f221c7b1b8da82",
12
12
  "summary": "Root toolkit export for Buildchain's public Node API.",
13
13
  "capabilityGroup": "api-cli-reference",
14
14
  "audience": [
@@ -47,7 +47,7 @@
47
47
  "specifier": "@kungfu-tech/buildchain/core",
48
48
  "export": "./core",
49
49
  "target": "./packages/core/index.js",
50
- "digest": "sha256:454830df8be696e9c25136421dd9f4efaf5900b043422f5c4238648b493bc15c",
50
+ "digest": "sha256:1863f8af4327bf4d77b46d0646043b6675c0094656edb6ba69f221c7b1b8da82",
51
51
  "summary": "Alias for the root public toolkit export.",
52
52
  "capabilityGroup": "api-cli-reference",
53
53
  "audience": [
@@ -86,7 +86,7 @@
86
86
  "specifier": "@kungfu-tech/buildchain/buildchain-contract",
87
87
  "export": "./buildchain-contract",
88
88
  "target": "./packages/core/buildchain-contract.js",
89
- "digest": "sha256:a7af059ca8fd80a3e12485d3f756276326a1593edc40e3e1518ff709c47399fe",
89
+ "digest": "sha256:f5959c9260e04c9779396c50bd352956012da9ddb6d55532efc64a4536236dfa",
90
90
  "summary": "Runtime contract world and compatibility digest APIs for floating-ref drift checks.",
91
91
  "capabilityGroup": "governance-versioning",
92
92
  "audience": [
@@ -99,7 +99,7 @@
99
99
  "specifier": "@kungfu-tech/buildchain/controller-evidence",
100
100
  "export": "./controller-evidence",
101
101
  "target": "./packages/core/controller-evidence.js",
102
- "digest": "sha256:3c9cf557ee0e2e4376335bb7d0e61b6e8c9a1d8699962dd8a1e7adc529e13f89",
102
+ "digest": "sha256:074c9bd73addbd33e03a4fd251ad27e7fe4bac51c25d0747d66561d31d738bab",
103
103
  "summary": "Project-independent controller descriptors, source/runtime-bound plans, receipts, aggregates, and validation APIs.",
104
104
  "capabilityGroup": "reusable-build",
105
105
  "audience": [
@@ -294,7 +294,7 @@
294
294
  "specifier": "@kungfu-tech/buildchain/buildchain-publication-authority",
295
295
  "export": "./buildchain-publication-authority",
296
296
  "target": "./packages/core/buildchain-publication-authority.js",
297
- "digest": "sha256:5c1c4ec0ef4cbda07ae4dead6423f800ecad6d45f02f19745aef23513fae45d4",
297
+ "digest": "sha256:2c999f7b237e532aceb2221ce504144aac26357ed3057b47f853b15f4eb76298",
298
298
  "summary": "Buildchain-owned closed-world publication authority descriptor registry.",
299
299
  "capabilityGroup": "release-passport-trust",
300
300
  "audience": [
@@ -346,7 +346,7 @@
346
346
  "specifier": "@kungfu-tech/buildchain/release-passport",
347
347
  "export": "./release-passport",
348
348
  "target": "./packages/core/release-passport.js",
349
- "digest": "sha256:af307129d9df51a1a0d5f7cfff742b0db7d9f8f04dd810cf97a62c79e2d3a726",
349
+ "digest": "sha256:05abae7c71444b0c48c097a4363218ed3ae7d652677588f1cf2c457a358cc4c1",
350
350
  "summary": "Release passport collection, verification, explanation, and evidence APIs.",
351
351
  "capabilityGroup": "release-passport-trust",
352
352
  "audience": [
@@ -355,6 +355,19 @@
355
355
  ],
356
356
  "maturity": "stable"
357
357
  },
358
+ {
359
+ "specifier": "@kungfu-tech/buildchain/release-passport-contract",
360
+ "export": "./release-passport-contract",
361
+ "target": "./packages/core/release-passport-contract.js",
362
+ "digest": "sha256:230863e62b63bce897f8ea51859c958a3c8aacf38b87ed9640bdada3c9383da6",
363
+ "summary": "Standalone release passport JSON Schema, ownership/check manifest, and structural validation APIs.",
364
+ "capabilityGroup": "release-passport-trust",
365
+ "audience": [
366
+ "developer",
367
+ "agent"
368
+ ],
369
+ "maturity": "stable"
370
+ },
358
371
  {
359
372
  "specifier": "@kungfu-tech/buildchain/release-propagation",
360
373
  "export": "./release-propagation",
@@ -385,7 +398,7 @@
385
398
  "specifier": "@kungfu-tech/buildchain/buildchain-kfd-claims",
386
399
  "export": "./buildchain-kfd-claims",
387
400
  "target": "./packages/core/buildchain-kfd-claims.js",
388
- "digest": "sha256:e9178d4fa1d5aba1063aacf3f0b4fa0d9523c2379824386ac65a21c8262ac0b4",
401
+ "digest": "sha256:316ca2f86a3934ccacd13b2321e2c10701337638266793d230c687c2fe963e84",
389
402
  "summary": "Buildchain self KFD claim registry, witnesses, and public claim APIs.",
390
403
  "capabilityGroup": "kfd-trust",
391
404
  "audience": [