@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
@@ -15,7 +15,7 @@
15
15
  "maturity": "stable",
16
16
  "counts": {
17
17
  "manualCount": 4,
18
- "pageCount": 17,
18
+ "pageCount": 18,
19
19
  "cliCommandCount": 9,
20
20
  "nodeApiCount": 0,
21
21
  "workflowCount": 0,
@@ -51,7 +51,7 @@
51
51
  "manualCount": 7,
52
52
  "pageCount": 8,
53
53
  "cliCommandCount": 27,
54
- "nodeApiCount": 21,
54
+ "nodeApiCount": 24,
55
55
  "workflowCount": 4,
56
56
  "actionCount": 3
57
57
  },
@@ -88,7 +88,7 @@
88
88
  "manualCount": 6,
89
89
  "pageCount": 19,
90
90
  "cliCommandCount": 10,
91
- "nodeApiCount": 15,
91
+ "nodeApiCount": 16,
92
92
  "workflowCount": 4,
93
93
  "actionCount": 2
94
94
  },
@@ -295,11 +295,11 @@
295
295
  "maturity": "stable",
296
296
  "counts": {
297
297
  "manualCount": 3,
298
- "pageCount": 11,
298
+ "pageCount": 12,
299
299
  "cliCommandCount": 0,
300
300
  "nodeApiCount": 2,
301
- "workflowCount": 47,
302
- "actionCount": 1
301
+ "workflowCount": 48,
302
+ "actionCount": 2
303
303
  },
304
304
  "manuals": [
305
305
  "docs/cli.md",
@@ -415,9 +415,10 @@
415
415
  "collect github-release"
416
416
  ],
417
417
  "syntaxes": [
418
- "buildchain collect github-release --tag <tag> [--repository <owner/repo>] [--assets-dir <dir>] [--assets-json <json-or-path>] [--release-json <json-or-path>] [--package-set-json <json-or-path>] [--product-name <name>] [--publish-evidence-json <json-or-path>] [--trusted-publishing-json <json-or-path>] [--transaction-json <json-or-path>] [--anchor-manifest-json <json-or-path>] [--impact-json <json-or-path>] [--build-summary-json <json-or-path>] [--build-facts-json <json-or-path>]... [--platform-manifest-json <json-or-path>]... [--dist-tag-evidence-json <json-or-path>] [--kfd-1-witness-json <json-or-path>]... [--kfd-2-claim-json <json-or-path>]... [--kfd-3-prebuild-witness-json <json-or-path>]... [--kfd-3-artifact-witness-json <json-or-path>]... [--kfd-3-artifact-verify-cmd <command>] [--kfd-adopter-manifest-json <json-or-path>] [--kfd-support-matrix-json <json-or-path>] [--kfd-product-gate-json <json-or-path>]... [--invariant-passport-json <json-or-path>]... [--invariant-passport-cmd <command>] [--release-evidence-json <json-or-path>]... [--github-artifact-attestation-policy-json <json-or-path>]... [--kfd-agent-hub-evidence-json <json-or-path>] [--base-passport-json <json-or-path>] [--require-base-kfd] [--release-extra-json <json-or-path>] [--publish-json <json-or-path>] [--output-dir <dir>] [--json]"
418
+ "buildchain collect github-release --tag <tag> [--repository <owner/repo>] [--adopter-delivery-json <legacy-json-or-path>] [--assets-dir <dir>] [--assets-json <json-or-path>] [--release-json <json-or-path>] [--package-set-json <json-or-path>] [--product-name <name>] [--publish-evidence-json <json-or-path>] [--trusted-publishing-json <json-or-path>] [--transaction-json <json-or-path>] [--anchor-manifest-json <json-or-path>] [--impact-json <json-or-path>] [--build-summary-json <json-or-path>] [--build-facts-json <json-or-path>]... [--platform-manifest-json <json-or-path>]... [--dist-tag-evidence-json <json-or-path>] [--kfd-1-witness-json <json-or-path>]... [--kfd-2-claim-json <json-or-path>]... [--kfd-3-prebuild-witness-json <json-or-path>]... [--kfd-3-artifact-witness-json <json-or-path>]... [--kfd-3-artifact-verify-cmd <command>] [--kfd-adopter-manifest-json <json-or-path>] [--kfd-support-matrix-json <json-or-path>] [--kfd-product-gate-json <json-or-path>]... [--invariant-passport-json <json-or-path>]... [--invariant-passport-cmd <command>] [--release-evidence-json <json-or-path>]... [--github-artifact-attestation-policy-json <json-or-path>]... [--kfd-agent-hub-evidence-json <json-or-path>] [--base-passport-json <json-or-path>] [--require-base-kfd] [--release-extra-json <json-or-path>] [--publish-json <json-or-path>] [--output-dir <dir>] [--json]"
419
419
  ],
420
420
  "options": [
421
+ "--adopter-delivery-json",
421
422
  "--anchor-manifest-json",
422
423
  "--assets-dir",
423
424
  "--assets-json",
@@ -3599,12 +3600,14 @@
3599
3600
  "buildchain release-tail compat --hooks-json <json-or-path> [--output <path>]",
3600
3601
  "buildchain release-tail init --declaration <json-or-path> [--state <path>]",
3601
3602
  "buildchain release-tail plan --declaration <json-or-path> [--output <path>]",
3602
- "buildchain release-tail rehearse --capsule <absolute-path> --candidate-root <absolute-path> --mode <simulate|replay> --state <absolute-path> --evidence <absolute-path>"
3603
+ "buildchain release-tail rehearse --capsule <absolute-path> --candidate-root <absolute-path> [--capsule-root <absolute-path>] [--environment-json <empty-json-or-path>] --mode <simulate|replay> --state <absolute-path> --evidence <absolute-path>"
3603
3604
  ],
3604
3605
  "options": [
3605
3606
  "--candidate-root",
3606
3607
  "--capsule",
3608
+ "--capsule-root",
3607
3609
  "--declaration",
3610
+ "--environment-json",
3608
3611
  "--evidence",
3609
3612
  "--hooks-json",
3610
3613
  "--mode",
@@ -230,6 +230,14 @@
230
230
  "classification": "included",
231
231
  "source": "workflow-call-input"
232
232
  },
233
+ "buildchain-contract-expected-channel": {
234
+ "classification": "included",
235
+ "source": "workflow-call-input"
236
+ },
237
+ "buildchain-contract-expected-major": {
238
+ "classification": "included",
239
+ "source": "workflow-call-input"
240
+ },
233
241
  "buildchain-contract-lock-path": {
234
242
  "classification": "digest-only",
235
243
  "source": "workflow-call-input"
@@ -556,7 +564,7 @@
556
564
  "controller-receipt"
557
565
  ]
558
566
  },
559
- "digest": "sha256:03677ba50080b3813a20004c41802e340368e4d225782fae194e3722c763bd01"
567
+ "digest": "sha256:c36f7dcd859a460ce757bc080132e9bf1be6875ff90e0a44308b414198a494fe"
560
568
  },
561
569
  {
562
570
  "schemaVersion": 1,
@@ -700,6 +708,14 @@
700
708
  "classification": "included",
701
709
  "source": "workflow-call-input"
702
710
  },
711
+ "buildchain-contract-expected-channel": {
712
+ "classification": "included",
713
+ "source": "workflow-call-input"
714
+ },
715
+ "buildchain-contract-expected-major": {
716
+ "classification": "included",
717
+ "source": "workflow-call-input"
718
+ },
703
719
  "buildchain-contract-lock-path": {
704
720
  "classification": "digest-only",
705
721
  "source": "workflow-call-input"
@@ -1014,7 +1030,7 @@
1014
1030
  "controller-receipt"
1015
1031
  ]
1016
1032
  },
1017
- "digest": "sha256:45978a572cf3ce57b48e5c3190761ad4fbeedc8e75ea0dae2e66ea5a980282df"
1033
+ "digest": "sha256:a653e831202898143b5e46cc42120a22290f416b9dc851c1bec7088eb42bcb17"
1018
1034
  },
1019
1035
  {
1020
1036
  "schemaVersion": 1,
@@ -1203,6 +1219,14 @@
1203
1219
  "classification": "included",
1204
1220
  "source": "workflow-call-input"
1205
1221
  },
1222
+ "buildchain-contract-expected-channel": {
1223
+ "classification": "included",
1224
+ "source": "workflow-call-input"
1225
+ },
1226
+ "buildchain-contract-expected-major": {
1227
+ "classification": "included",
1228
+ "source": "workflow-call-input"
1229
+ },
1206
1230
  "buildchain-contract-lock-path": {
1207
1231
  "classification": "digest-only",
1208
1232
  "source": "workflow-call-input"
@@ -1395,7 +1419,7 @@
1395
1419
  "controller-receipt"
1396
1420
  ]
1397
1421
  },
1398
- "digest": "sha256:c5274b37f04d0054559fdc8698c51bd0f0d8ae470baf163e9caa7699aa970575"
1422
+ "digest": "sha256:834c08b0099b646075b1850548454986b7c150f808019c6ec7d8eae377214a19"
1399
1423
  },
1400
1424
  {
1401
1425
  "schemaVersion": 1,
@@ -1959,6 +1983,10 @@
1959
1983
  "classification": "included",
1960
1984
  "source": "workflow-call-input"
1961
1985
  },
1986
+ "provider-failure-after-capability": {
1987
+ "classification": "included",
1988
+ "source": "workflow-call-input"
1989
+ },
1962
1990
  "publication-admission-json": {
1963
1991
  "classification": "digest-only",
1964
1992
  "source": "workflow-call-input"
@@ -2123,6 +2151,10 @@
2123
2151
  "classification": "included",
2124
2152
  "source": "workflow-call-input"
2125
2153
  },
2154
+ "release-passport-adopter-delivery-json": {
2155
+ "classification": "digest-only",
2156
+ "source": "workflow-call-input"
2157
+ },
2126
2158
  "release-passport-attachment-command": {
2127
2159
  "classification": "digest-only",
2128
2160
  "source": "workflow-call-input"
@@ -2175,6 +2207,10 @@
2175
2207
  "classification": "digest-only",
2176
2208
  "source": "workflow-call-input"
2177
2209
  },
2210
+ "release-passport-kfd-adopter-manifest-gate-json": {
2211
+ "classification": "digest-only",
2212
+ "source": "workflow-call-input"
2213
+ },
2178
2214
  "release-passport-kfd-adopter-manifest-json": {
2179
2215
  "classification": "digest-only",
2180
2216
  "source": "workflow-call-input"
@@ -2313,7 +2349,7 @@
2313
2349
  "controller-receipt"
2314
2350
  ]
2315
2351
  },
2316
- "digest": "sha256:3c83524f650a4d04004400d3821dbbd081b8802035dc6004464cdcfd0b5cdfc3"
2352
+ "digest": "sha256:f4d2d311fa07f70310f1538c6274ddf17a78392db716687c25171c3ba495d21f"
2317
2353
  },
2318
2354
  {
2319
2355
  "schemaVersion": 1,
@@ -2506,5 +2542,5 @@
2506
2542
  "digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555"
2507
2543
  }
2508
2544
  ],
2509
- "digest": "sha256:eb9eb918b763f303baf313e153076e9d3158ca28a2e6cc558834a06e49d9d9cf"
2545
+ "digest": "sha256:e9fe5b78abb43be3daeebf5a6c214f0c53e6519e96edb76b284bb8b737e57474"
2510
2546
  }
@@ -14,19 +14,19 @@
14
14
  },
15
15
  "runtimeContract": {
16
16
  "contract": "kungfu-buildchain-runtime-contract-world",
17
- "compatibilityDigest": "sha256:5de1c69386510b74b17eb70141b8bdd07063d62c504f91db5e84b67c6d4b64a2",
17
+ "compatibilityDigest": "sha256:20411029d83211dff426fb6535a608902129844a5ccb4788db77d3f81becb839",
18
18
  "majorLine": "v4"
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": "f29dd0538e4b0a12a83d029da185e64bc6f338570c20931be876bc1132fac891",
24
+ "sha256": "ac7fa1c43d79b817090fa6ebfe2344d6ccd980bc5ec71547e53a0856b5db066b",
25
25
  "summary": {
26
26
  "cliCommandCount": 117,
27
- "workflowCount": 76,
28
- "actionCount": 7,
29
- "sitePageCount": 82,
27
+ "workflowCount": 77,
28
+ "actionCount": 8,
29
+ "sitePageCount": 84,
30
30
  "docCommandRefCount": 1049,
31
31
  "failureCount": 0
32
32
  },
@@ -246,12 +246,12 @@
246
246
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
247
247
  "path": "dist/site/public-surface-audit.json",
248
248
  "status": "passed",
249
- "sha256": "f29dd0538e4b0a12a83d029da185e64bc6f338570c20931be876bc1132fac891",
249
+ "sha256": "ac7fa1c43d79b817090fa6ebfe2344d6ccd980bc5ec71547e53a0856b5db066b",
250
250
  "summary": {
251
251
  "cliCommandCount": 117,
252
- "workflowCount": 76,
253
- "actionCount": 7,
254
- "sitePageCount": 82,
252
+ "workflowCount": 77,
253
+ "actionCount": 8,
254
+ "sitePageCount": 84,
255
255
  "docCommandRefCount": 1049,
256
256
  "failureCount": 0
257
257
  },
@@ -368,6 +368,18 @@
368
368
  "public": true,
369
369
  "plane": "action"
370
370
  },
371
+ {
372
+ "id": "doc:actions/v4-release-candidate-promote/README.md",
373
+ "name": "actions/v4-release-candidate-promote/README.md",
374
+ "kind": "documentation",
375
+ "sourcePath": "actions/v4-release-candidate-promote/README.md",
376
+ "evidencePath": "actions/v4-release-candidate-promote/README.md",
377
+ "availability": "shipped",
378
+ "visibility": "public",
379
+ "participantFacing": true,
380
+ "public": true,
381
+ "plane": "action"
382
+ },
371
383
  {
372
384
  "id": "doc:actions/validate-config/README.md",
373
385
  "name": "actions/validate-config/README.md",
@@ -1676,6 +1688,42 @@
1676
1688
  "public": true,
1677
1689
  "packageExport": "./v4-publication-rehearsal"
1678
1690
  },
1691
+ {
1692
+ "id": "export:./publication-rehearsal-runtime",
1693
+ "name": "@kungfu-tech/buildchain/publication-rehearsal-runtime",
1694
+ "kind": "package-export",
1695
+ "sourcePath": "packages/core/publication-rehearsal-runtime.js",
1696
+ "evidencePath": "packages/core/publication-rehearsal-runtime.js",
1697
+ "availability": "shipped",
1698
+ "visibility": "public",
1699
+ "participantFacing": true,
1700
+ "public": true,
1701
+ "packageExport": "./publication-rehearsal-runtime"
1702
+ },
1703
+ {
1704
+ "id": "export:./publication-rehearsal-projection",
1705
+ "name": "@kungfu-tech/buildchain/publication-rehearsal-projection",
1706
+ "kind": "package-export",
1707
+ "sourcePath": "packages/core/publication-rehearsal-projection.js",
1708
+ "evidencePath": "packages/core/publication-rehearsal-projection.js",
1709
+ "availability": "shipped",
1710
+ "visibility": "public",
1711
+ "participantFacing": true,
1712
+ "public": true,
1713
+ "packageExport": "./publication-rehearsal-projection"
1714
+ },
1715
+ {
1716
+ "id": "export:./v4-publication-qualification",
1717
+ "name": "@kungfu-tech/buildchain/v4-publication-qualification",
1718
+ "kind": "package-export",
1719
+ "sourcePath": "packages/core/v4-publication-qualification.js",
1720
+ "evidencePath": "packages/core/v4-publication-qualification.js",
1721
+ "availability": "shipped",
1722
+ "visibility": "public",
1723
+ "participantFacing": true,
1724
+ "public": true,
1725
+ "packageExport": "./v4-publication-qualification"
1726
+ },
1679
1727
  {
1680
1728
  "id": "export:./adopter-delivery-gate",
1681
1729
  "name": "@kungfu-tech/buildchain/adopter-delivery-gate",
@@ -1796,6 +1844,18 @@
1796
1844
  "public": true,
1797
1845
  "packageExport": "./v4-adopter-delivery"
1798
1846
  },
1847
+ {
1848
+ "id": "export:./v4-cross-platform-adopter-qualification",
1849
+ "name": "@kungfu-tech/buildchain/v4-cross-platform-adopter-qualification",
1850
+ "kind": "package-export",
1851
+ "sourcePath": "packages/core/v4-cross-platform-adopter-qualification.js",
1852
+ "evidencePath": "packages/core/v4-cross-platform-adopter-qualification.js",
1853
+ "availability": "shipped",
1854
+ "visibility": "public",
1855
+ "participantFacing": true,
1856
+ "public": true,
1857
+ "packageExport": "./v4-cross-platform-adopter-qualification"
1858
+ },
1799
1859
  {
1800
1860
  "id": "export:./logging",
1801
1861
  "name": "@kungfu-tech/buildchain/logging",
@@ -3850,7 +3910,7 @@
3850
3910
  "visibility": "public",
3851
3911
  "participantFacing": true,
3852
3912
  "public": true,
3853
- "inputCount": 91,
3913
+ "inputCount": 93,
3854
3914
  "inputs": [
3855
3915
  "artifact-compression-level",
3856
3916
  "artifact-finalization-command",
@@ -3874,6 +3934,8 @@
3874
3934
  "build-command",
3875
3935
  "buildchain-contract-compatibility-policy",
3876
3936
  "buildchain-contract-drift-issue-mode",
3937
+ "buildchain-contract-expected-channel",
3938
+ "buildchain-contract-expected-major",
3877
3939
  "buildchain-contract-lock-path",
3878
3940
  "buildchain-expected-channel",
3879
3941
  "buildchain-expected-major",
@@ -4042,9 +4104,10 @@
4042
4104
  "visibility": "public",
4043
4105
  "participantFacing": true,
4044
4106
  "public": true,
4045
- "inputCount": 37,
4107
+ "inputCount": 38,
4046
4108
  "inputs": [
4047
4109
  "admission-json",
4110
+ "authority-job-id",
4048
4111
  "authority-workflow-path",
4049
4112
  "auto-admission",
4050
4113
  "auto-admission-kind",
@@ -4094,7 +4157,7 @@
4094
4157
  "visibility": "public",
4095
4158
  "participantFacing": true,
4096
4159
  "public": true,
4097
- "inputCount": 118,
4160
+ "inputCount": 121,
4098
4161
  "inputs": [
4099
4162
  "allow-repository",
4100
4163
  "artifact-name",
@@ -4136,6 +4199,7 @@
4136
4199
  "promotion-shell-ref",
4137
4200
  "promotion-shell-sha",
4138
4201
  "promotion-target-ref",
4202
+ "provider-failure-after-capability",
4139
4203
  "publication-admission-json",
4140
4204
  "publication-authority-workflow-path",
4141
4205
  "publication-auto-admission",
@@ -4177,6 +4241,7 @@
4177
4241
  "release-candidate-workflow-file",
4178
4242
  "release-candidate-workflow-name",
4179
4243
  "release-passport",
4244
+ "release-passport-adopter-delivery-json",
4180
4245
  "release-passport-attachment-command",
4181
4246
  "release-passport-buildchain-self-kfd",
4182
4247
  "release-passport-evidence-command",
@@ -4190,6 +4255,7 @@
4190
4255
  "release-passport-kfd-3-artifact-verify-command",
4191
4256
  "release-passport-kfd-3-artifact-witness-jsons",
4192
4257
  "release-passport-kfd-3-prebuild-witness-jsons",
4258
+ "release-passport-kfd-adopter-manifest-gate-json",
4193
4259
  "release-passport-kfd-adopter-manifest-json",
4194
4260
  "release-passport-kfd-product-gate-jsons",
4195
4261
  "release-passport-kfd-support-matrix-json",
@@ -4444,13 +4510,15 @@
4444
4510
  "visibility": "public",
4445
4511
  "participantFacing": true,
4446
4512
  "public": true,
4447
- "inputCount": 41,
4513
+ "inputCount": 43,
4448
4514
  "inputs": [
4449
4515
  "artifact-path",
4450
4516
  "aws-region",
4451
4517
  "build-command",
4452
4518
  "buildchain-contract-compatibility-policy",
4453
4519
  "buildchain-contract-drift-issue-mode",
4520
+ "buildchain-contract-expected-channel",
4521
+ "buildchain-contract-expected-major",
4454
4522
  "buildchain-contract-lock-path",
4455
4523
  "buildchain-ref",
4456
4524
  "buildchain-repository",
@@ -4622,7 +4690,7 @@
4622
4690
  "visibility": "public",
4623
4691
  "participantFacing": true,
4624
4692
  "public": true,
4625
- "inputCount": 94,
4693
+ "inputCount": 96,
4626
4694
  "inputs": [
4627
4695
  "artifact-compression-level",
4628
4696
  "artifact-finalization-command",
@@ -4648,6 +4716,8 @@
4648
4716
  "buildchain-channel",
4649
4717
  "buildchain-contract-compatibility-policy",
4650
4718
  "buildchain-contract-drift-issue-mode",
4719
+ "buildchain-contract-expected-channel",
4720
+ "buildchain-contract-expected-major",
4651
4721
  "buildchain-contract-lock-path",
4652
4722
  "buildchain-expected-channel",
4653
4723
  "buildchain-expected-major",
@@ -5042,7 +5112,7 @@
5042
5112
  "visibility": "public",
5043
5113
  "participantFacing": true,
5044
5114
  "public": true,
5045
- "inputCount": 43,
5115
+ "inputCount": 44,
5046
5116
  "inputs": [
5047
5117
  "active-lease-context",
5048
5118
  "affected-paths-json",
@@ -5052,6 +5122,7 @@
5052
5122
  "buildchain-ref",
5053
5123
  "buildchain-repository",
5054
5124
  "closure-root",
5125
+ "defer-landing",
5055
5126
  "delivery-class",
5056
5127
  "delivery-priority",
5057
5128
  "delivery-warrant-mode",
@@ -5477,7 +5548,7 @@
5477
5548
  "visibility": "public",
5478
5549
  "participantFacing": true,
5479
5550
  "public": true,
5480
- "inputCount": 103,
5551
+ "inputCount": 106,
5481
5552
  "inputs": [
5482
5553
  "allow-repository",
5483
5554
  "artifact-name",
@@ -5505,6 +5576,7 @@
5505
5576
  "github-release-payload-patterns",
5506
5577
  "github-release-title",
5507
5578
  "package-manager",
5579
+ "provider-failure-after-capability",
5508
5580
  "publication-admission-json",
5509
5581
  "publication-auto-admission",
5510
5582
  "publication-auto-no-gate",
@@ -5545,6 +5617,7 @@
5545
5617
  "release-candidate-workflow-file",
5546
5618
  "release-candidate-workflow-name",
5547
5619
  "release-passport",
5620
+ "release-passport-adopter-delivery-json",
5548
5621
  "release-passport-attachment-command",
5549
5622
  "release-passport-buildchain-self-kfd",
5550
5623
  "release-passport-evidence-command",
@@ -5558,6 +5631,7 @@
5558
5631
  "release-passport-kfd-3-artifact-verify-command",
5559
5632
  "release-passport-kfd-3-artifact-witness-jsons",
5560
5633
  "release-passport-kfd-3-prebuild-witness-jsons",
5634
+ "release-passport-kfd-adopter-manifest-gate-json",
5561
5635
  "release-passport-kfd-adopter-manifest-json",
5562
5636
  "release-passport-kfd-product-gate-jsons",
5563
5637
  "release-passport-kfd-support-matrix-json",
@@ -5676,11 +5750,15 @@
5676
5750
  "visibility": "public",
5677
5751
  "participantFacing": true,
5678
5752
  "public": true,
5679
- "inputCount": 10,
5753
+ "inputCount": 14,
5680
5754
  "inputs": [
5681
5755
  "buildchain-ref",
5682
5756
  "candidate-root",
5757
+ "capsule-contract",
5758
+ "capsule-path",
5759
+ "capsule-root",
5683
5760
  "declaration-path",
5761
+ "evidence-path",
5684
5762
  "execute",
5685
5763
  "provider-bindings-path",
5686
5764
  "rehearsal-authority-path",
@@ -5788,16 +5866,33 @@
5788
5866
  "visibility": "public",
5789
5867
  "participantFacing": true,
5790
5868
  "public": true,
5791
- "inputCount": 5,
5869
+ "inputCount": 8,
5792
5870
  "inputs": [
5793
5871
  "archive-path",
5794
5872
  "bootstrap-path",
5795
5873
  "consumer",
5874
+ "consumer-ref",
5875
+ "consumer-repository",
5796
5876
  "input-path",
5877
+ "invocation-source-path",
5797
5878
  "node-version"
5798
5879
  ],
5799
5880
  "reverseAuditSource": ".github/workflows"
5800
5881
  },
5882
+ {
5883
+ "id": "workflow:v4-declarative-release-tail-dogfood",
5884
+ "name": "workflow:v4-declarative-release-tail-dogfood",
5885
+ "kind": "workflow",
5886
+ "sourcePath": ".github/workflows/v4-declarative-release-tail-dogfood.yml",
5887
+ "evidencePath": ".github/workflows/v4-declarative-release-tail-dogfood.yml",
5888
+ "availability": "shipped",
5889
+ "visibility": "public",
5890
+ "participantFacing": true,
5891
+ "public": true,
5892
+ "inputCount": 0,
5893
+ "inputs": [],
5894
+ "reverseAuditSource": ".github/workflows"
5895
+ },
5801
5896
  {
5802
5897
  "id": "workflow:v4-public-consumer-dogfood",
5803
5898
  "name": "workflow:v4-public-consumer-dogfood",
@@ -5954,7 +6049,7 @@
5954
6049
  "visibility": "public",
5955
6050
  "participantFacing": true,
5956
6051
  "public": true,
5957
- "inputCount": 84,
6052
+ "inputCount": 87,
5958
6053
  "inputs": [
5959
6054
  "allow-repository",
5960
6055
  "branch-protection-bypass-apps",
@@ -5970,6 +6065,7 @@
5970
6065
  "github-release-artifact-paths",
5971
6066
  "github-release-notes",
5972
6067
  "github-release-title",
6068
+ "plan-before-target-advance",
5973
6069
  "promote-only-release-candidate",
5974
6070
  "publication-capability-json",
5975
6071
  "publication-gate-aggregate-json",
@@ -6003,6 +6099,7 @@
6003
6099
  "release-candidate-version",
6004
6100
  "release-material-sha",
6005
6101
  "release-passport",
6102
+ "release-passport-adopter-delivery-json",
6006
6103
  "release-passport-attachment-command",
6007
6104
  "release-passport-build-summary-path",
6008
6105
  "release-passport-buildchain-self-kfd",
@@ -6017,6 +6114,7 @@
6017
6114
  "release-passport-kfd-3-artifact-verify-command",
6018
6115
  "release-passport-kfd-3-artifact-witness-jsons",
6019
6116
  "release-passport-kfd-3-prebuild-witness-jsons",
6117
+ "release-passport-kfd-adopter-manifest-gate-json",
6020
6118
  "release-passport-kfd-adopter-manifest-json",
6021
6119
  "release-passport-kfd-product-gate-jsons",
6022
6120
  "release-passport-kfd-support-matrix-json",
@@ -6053,10 +6151,14 @@
6053
6151
  "visibility": "public",
6054
6152
  "participantFacing": true,
6055
6153
  "public": true,
6056
- "inputCount": 11,
6154
+ "inputCount": 15,
6057
6155
  "inputs": [
6058
6156
  "candidate-root",
6157
+ "capsule",
6158
+ "capsule-contract",
6159
+ "capsule-root",
6059
6160
  "declaration",
6161
+ "evidence-path",
6060
6162
  "execute",
6061
6163
  "github-token",
6062
6164
  "http-token",
@@ -6164,6 +6266,29 @@
6164
6266
  ],
6165
6267
  "reverseAuditSource": "actions/*/action.yml"
6166
6268
  },
6269
+ {
6270
+ "id": "action:v4-release-candidate-promote",
6271
+ "name": "action:v4-release-candidate-promote",
6272
+ "kind": "action",
6273
+ "sourcePath": "actions/v4-release-candidate-promote/action.yml",
6274
+ "evidencePath": "actions/v4-release-candidate-promote/action.yml",
6275
+ "availability": "shipped",
6276
+ "visibility": "public",
6277
+ "participantFacing": true,
6278
+ "public": true,
6279
+ "inputCount": 8,
6280
+ "inputs": [
6281
+ "artifact-paths",
6282
+ "candidate-passport-path",
6283
+ "failure-after-capability",
6284
+ "publication-qualification-path",
6285
+ "repository",
6286
+ "stage-capsules-path",
6287
+ "state-path",
6288
+ "token"
6289
+ ],
6290
+ "reverseAuditSource": "actions/*/action.yml"
6291
+ },
6167
6292
  {
6168
6293
  "id": "action:validate-config",
6169
6294
  "name": "action:validate-config",
@@ -6254,6 +6379,18 @@
6254
6379
  "public": true,
6255
6380
  "reverseAuditSource": "dist/site/page-registry.json"
6256
6381
  },
6382
+ {
6383
+ "id": "site-page:action:v4-release-candidate-promote",
6384
+ "name": "site-page:action:v4-release-candidate-promote",
6385
+ "kind": "site-page",
6386
+ "sourcePath": "dist/site/page-registry.json",
6387
+ "evidencePath": "dist/site/page-registry.json",
6388
+ "availability": "shipped",
6389
+ "visibility": "public",
6390
+ "participantFacing": true,
6391
+ "public": true,
6392
+ "reverseAuditSource": "dist/site/page-registry.json"
6393
+ },
6257
6394
  {
6258
6395
  "id": "site-page:action:validate-config",
6259
6396
  "name": "site-page:action:validate-config",
@@ -7046,6 +7183,18 @@
7046
7183
  "public": true,
7047
7184
  "reverseAuditSource": "dist/site/page-registry.json"
7048
7185
  },
7186
+ {
7187
+ "id": "site-page:manual:v4-declarative-release-tail-migration",
7188
+ "name": "site-page:manual:v4-declarative-release-tail-migration",
7189
+ "kind": "site-page",
7190
+ "sourcePath": "dist/site/page-registry.json",
7191
+ "evidencePath": "dist/site/page-registry.json",
7192
+ "availability": "shipped",
7193
+ "visibility": "public",
7194
+ "participantFacing": true,
7195
+ "public": true,
7196
+ "reverseAuditSource": "dist/site/page-registry.json"
7197
+ },
7049
7198
  {
7050
7199
  "id": "site-page:manual:v4-delivery-warrant-read-candidate",
7051
7200
  "name": "site-page:manual:v4-delivery-warrant-read-candidate",
@@ -7337,6 +7486,6 @@
7337
7486
  }
7338
7487
  }
7339
7488
  ],
7340
- "publicSurfaceCount": 472
7489
+ "publicSurfaceCount": 481
7341
7490
  }
7342
7491
  }
@@ -4,7 +4,7 @@
4
4
  "product": {
5
5
  "id": "kungfu-tech-buildchain",
6
6
  "name": "@kungfu-tech/buildchain",
7
- "version": "4.0.1-alpha.8",
7
+ "version": "4.0.1",
8
8
  "repository": "https://github.com/kungfu-systems/buildchain"
9
9
  },
10
10
  "source": {