@kungfu-tech/buildchain 4.0.2-alpha.2 → 4.0.2-alpha.20

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 (71) hide show
  1. package/architecture/agent-change-map.md +52 -1
  2. package/architecture/ci-lane-change-budget.json +349 -0
  3. package/architecture/internal-capabilities.json +44 -1
  4. package/architecture/maintainability-debt.json +53 -33
  5. package/architecture/maintainability-policy.json +20 -15
  6. package/architecture/v3-core-mechanism-inventory.json +1 -0
  7. package/architecture/v4-delivery-warrant-shadow-fixtures.json +5 -5
  8. package/architecture/v4-release-invocation-fixtures.json +20 -0
  9. package/architecture/v4-release-topology.json +160 -84
  10. package/architecture/v4-runtime-semantic-closure.json +4 -1
  11. package/architecture/v4-universal-workflow-bootstrap.json +171 -0
  12. package/architecture/v4-universal-workflow-fault-campaign.json +72 -0
  13. package/architecture/v4-universal-workflow-train-admission.json +40 -0
  14. package/contracts/buildchain-v2-residuals-v1.json +0 -54
  15. package/contracts/v4-release-invocation-v1.schema.json +50 -2
  16. package/dist/site/buildchain-contract.json +87 -42
  17. package/dist/site/buildchain-site.json +15 -10
  18. package/dist/site/capability-registry.json +1 -1
  19. package/dist/site/controller-registry.json +46 -10
  20. package/dist/site/kfd-claims.json +174 -196
  21. package/dist/site/kfd-upstream-aggregate.json +1 -1
  22. package/dist/site/manual-registry.json +2 -2
  23. package/dist/site/node-api-registry.json +95 -20
  24. package/dist/site/page-registry.json +9 -4
  25. package/dist/site/public-surface-audit.json +178 -198
  26. package/dist/site/publication-authority-registry.json +67 -57
  27. package/dist/site/publication-registry.json +4 -4
  28. package/dist/site/site-manifest.json +6 -6
  29. package/dist/site/workflow-registry.json +209 -259
  30. package/docs/node-api-reference.md +25 -22
  31. package/docs/reusable-build-surface.md +16 -0
  32. package/package.json +2 -2
  33. package/packages/core/buildchain-publication-authority.js +3 -2
  34. package/packages/core/ci-lane-change-budget.js +14 -1
  35. package/packages/core/dev-delivery-candidate-identity.js +18 -0
  36. package/packages/core/dev-delivery-execution-transfer.js +6 -7
  37. package/packages/core/dev-delivery-warrant-legacy-recovery.js +4 -2
  38. package/packages/core/dev-delivery-warrant-native-compatibility.js +33 -0
  39. package/packages/core/dev-delivery-warrant-state.js +42 -26
  40. package/packages/core/dev-delivery-warrant.js +8 -0
  41. package/packages/core/dev-delivery-writer-protocol-transition.js +72 -0
  42. package/packages/core/release-tail-product-capabilities.js +29 -0
  43. package/packages/core/release-tail-provider-plane.js +3 -3
  44. package/packages/core/v4-canonical-contracts.js +6 -0
  45. package/packages/core/v4-product-publication.js +387 -0
  46. package/packages/core/v4-protected-publication-source.js +93 -0
  47. package/packages/core/v4-publication-qualification.js +1 -0
  48. package/packages/core/v4-release-invocation.js +72 -3
  49. package/packages/core/v4-universal-workflow-bootstrap.js +586 -0
  50. package/scripts/check-inventory.mjs +13 -22
  51. package/scripts/check-maintainability.mjs +16 -113
  52. package/scripts/check-v4-release-topology.mjs +296 -40
  53. package/scripts/check-v4-universal-workflow-bootstrap.mjs +265 -0
  54. package/scripts/dev-delivery-warrant-store.mjs +73 -7
  55. package/scripts/dev-delivery-warrant-transition.mjs +109 -0
  56. package/scripts/dev-delivery-warrant.mjs +84 -100
  57. package/scripts/dev-pr-auto-merge.mjs +15 -15
  58. package/scripts/generate-channel-build-workflow.mjs +5 -1
  59. package/scripts/generate-channel-promotion-workflow.mjs +5 -3
  60. package/scripts/generate-v4-universal-workflow-facades.mjs +415 -0
  61. package/scripts/maintainability-public-surface.mjs +115 -0
  62. package/scripts/release-candidate-resolver.mjs +23 -24
  63. package/scripts/resume-from-candidate-run.mjs +16 -17
  64. package/scripts/universal-facade-maintainability.mjs +82 -0
  65. package/scripts/v4-product-publication-intent.mjs +114 -0
  66. package/scripts/v4-release-candidate-adapter.mjs +41 -0
  67. package/scripts/v4-universal-workflow-backflow.mjs +212 -0
  68. package/scripts/v4-universal-workflow-engine.mjs +617 -0
  69. package/scripts/v4-universal-workflow-self-dogfood.mjs +205 -0
  70. package/templates/universal-buildchain-bootstrap-recovery.yml +282 -0
  71. package/templates/universal-buildchain-bootstrap.yml +28 -0
@@ -18,9 +18,10 @@
18
18
  "require-trusted-event",
19
19
  "source-artifact-digest",
20
20
  "source-artifact-name",
21
- "source-ref"
21
+ "source-ref",
22
+ "universal-request-json"
22
23
  ],
23
- "inputCount": 11,
24
+ "inputCount": 12,
24
25
  "secrets": [],
25
26
  "secretCount": 0,
26
27
  "outputs": [
@@ -69,9 +70,10 @@
69
70
  "publication-version",
70
71
  "release-tag",
71
72
  "source-sha",
72
- "target-ref"
73
+ "target-ref",
74
+ "universal-request-json"
73
75
  ],
74
- "inputCount": 15,
76
+ "inputCount": 16,
75
77
  "secrets": [],
76
78
  "secretCount": 0,
77
79
  "outputs": [],
@@ -181,12 +183,13 @@
181
183
  "setup-rust",
182
184
  "shifu-cache-profile-digest",
183
185
  "shifu-cache-profile-ref",
186
+ "universal-request-json",
184
187
  "untrusted-policy",
185
188
  "verify-command",
186
189
  "verify-substage-evidence-path",
187
190
  "working-directory"
188
191
  ],
189
- "inputCount": 93,
192
+ "inputCount": 94,
190
193
  "secrets": [
191
194
  "BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
192
195
  "BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
@@ -262,8 +265,10 @@
262
265
  "id": ".bump-minor-version",
263
266
  "path": ".github/workflows/.bump-minor-version.yml",
264
267
  "reusable": true,
265
- "inputs": [],
266
- "inputCount": 0,
268
+ "inputs": [
269
+ "universal-request-json"
270
+ ],
271
+ "inputCount": 1,
267
272
  "secrets": [
268
273
  "GITHUB_PUSH_TOKEN"
269
274
  ],
@@ -297,9 +302,10 @@
297
302
  "render-media",
298
303
  "renderer-image",
299
304
  "scenario-path",
300
- "source-ref"
305
+ "source-ref",
306
+ "universal-request-json"
301
307
  ],
302
- "inputCount": 12,
308
+ "inputCount": 13,
303
309
  "secrets": [
304
310
  "DEMO_UPDATE_TOKEN"
305
311
  ],
@@ -358,10 +364,11 @@
358
364
  "shifu-cache-profile-digest",
359
365
  "shifu-cache-profile-ref",
360
366
  "source-ref",
367
+ "universal-request-json",
361
368
  "untrusted-policy",
362
369
  "working-directory"
363
370
  ],
364
- "inputCount": 30,
371
+ "inputCount": 31,
365
372
  "secrets": [],
366
373
  "secretCount": 0,
367
374
  "outputs": [
@@ -433,9 +440,10 @@
433
440
  "runner-provenance-json",
434
441
  "source-sha",
435
442
  "target-ref",
443
+ "universal-request-json",
436
444
  "used-nonces-json"
437
445
  ],
438
- "inputCount": 37,
446
+ "inputCount": 38,
439
447
  "secrets": [
440
448
  "BUILDCHAIN_GOVERNANCE_READ_TOKEN",
441
449
  "KUNGFU_GOVERNANCE_AUDITOR_APP_PRIVATE_KEY"
@@ -585,9 +593,10 @@
585
593
  "standalone-binary-distribution",
586
594
  "target-ref",
587
595
  "target-sha",
588
- "trusted-publishing"
596
+ "trusted-publishing",
597
+ "universal-request-json"
589
598
  ],
590
- "inputCount": 121,
599
+ "inputCount": 122,
591
600
  "secrets": [
592
601
  "BUILDCHAIN_ISSUE_APP_ID",
593
602
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -646,120 +655,6 @@
646
655
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
647
656
  "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
648
657
  },
649
- {
650
- "id": ".release-docker",
651
- "path": ".github/workflows/.release-docker.yml",
652
- "reusable": true,
653
- "inputs": [
654
- "image-name"
655
- ],
656
- "inputCount": 1,
657
- "secrets": [
658
- "DOCKER_HUB_PASSWORD",
659
- "DOCKER_HUB_USERNAME",
660
- "GITHUB_PUSH_TOKEN"
661
- ],
662
- "secretCount": 3,
663
- "outputs": [],
664
- "outputCount": 0,
665
- "surface": "reusable-workflow",
666
- "capabilityGroup": "api-cli-reference",
667
- "status": "active",
668
- "owner": "buildchain-workflows",
669
- "maturity": "active",
670
- "introducedVersion": "pre-3.0.2-alpha.4",
671
- "compatibilityPromise": "preserved-through-the-v3-major-line",
672
- "deprecationReplacement": "",
673
- "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
674
- "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
675
- },
676
- {
677
- "id": ".release-elastic-beanstalk",
678
- "path": ".github/workflows/.release-elastic-beanstalk.yml",
679
- "reusable": true,
680
- "inputs": [
681
- "aws-region",
682
- "eb-application-name",
683
- "eb-environment-name"
684
- ],
685
- "inputCount": 3,
686
- "secrets": [
687
- "AWS_USER_ACCESS_KEY_ID",
688
- "AWS_USER_SECRET_ACCESS_KEY",
689
- "GITHUB_PUSH_TOKEN"
690
- ],
691
- "secretCount": 3,
692
- "outputs": [],
693
- "outputCount": 0,
694
- "surface": "reusable-workflow",
695
- "capabilityGroup": "api-cli-reference",
696
- "status": "active",
697
- "owner": "buildchain-workflows",
698
- "maturity": "active",
699
- "introducedVersion": "pre-3.0.2-alpha.4",
700
- "compatibilityPromise": "preserved-through-the-v3-major-line",
701
- "deprecationReplacement": "",
702
- "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
703
- "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
704
- },
705
- {
706
- "id": ".release-new-version",
707
- "path": ".github/workflows/.release-new-version.yml",
708
- "reusable": true,
709
- "inputs": [
710
- "action-bump-version-path",
711
- "action-bump-version-ref",
712
- "action-bump-version-repository",
713
- "aws-ci-region",
714
- "aws-user-region",
715
- "bucket-release-ci",
716
- "bucket-release-user",
717
- "bucket-staging-ci",
718
- "bucket-staging-user",
719
- "clean-release-ci",
720
- "clean-release-user",
721
- "close-issues",
722
- "cloudfront-id-ci",
723
- "cloudfront-id-user",
724
- "cloudfront-paths-ci",
725
- "cloudfront-paths-user",
726
- "create-release-note",
727
- "max-preview-links",
728
- "need-qa-automated",
729
- "node-version",
730
- "protect-dev-branches",
731
- "publish-aws-ci",
732
- "publish-aws-user",
733
- "publish-github-npm",
734
- "publish-npmjs",
735
- "publish-release-note",
736
- "sync-extensions-version"
737
- ],
738
- "inputCount": 27,
739
- "secrets": [
740
- "AIRTABLE_API_KEY",
741
- "AWS_CI_ACCESS_KEY_ID",
742
- "AWS_CI_SECRET_ACCESS_KEY",
743
- "AWS_USER_ACCESS_KEY_ID",
744
- "AWS_USER_SECRET_ACCESS_KEY",
745
- "GITHUB_PUSH_TOKEN",
746
- "MONDAY_API_KEY",
747
- "NPM_PUSH_TOKEN"
748
- ],
749
- "secretCount": 8,
750
- "outputs": [],
751
- "outputCount": 0,
752
- "surface": "reusable-workflow",
753
- "capabilityGroup": "api-cli-reference",
754
- "status": "active",
755
- "owner": "buildchain-workflows",
756
- "maturity": "active",
757
- "introducedVersion": "pre-3.0.2-alpha.4",
758
- "compatibilityPromise": "preserved-through-the-v3-major-line",
759
- "deprecationReplacement": "",
760
- "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
761
- "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
762
- },
763
658
  {
764
659
  "id": ".release-verify",
765
660
  "path": ".github/workflows/.release-verify.yml",
@@ -804,10 +699,11 @@
804
699
  "python-version",
805
700
  "setup-env-timeout-minutes",
806
701
  "setup-python-enabled",
702
+ "universal-request-json",
807
703
  "use-pipenv",
808
704
  "use-poetry"
809
705
  ],
810
- "inputCount": 41,
706
+ "inputCount": 42,
811
707
  "secrets": [
812
708
  "APPLE_CSC_KEY",
813
709
  "APPLE_CSC_KEY_PASSWORD",
@@ -835,34 +731,6 @@
835
731
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
836
732
  "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
837
733
  },
838
- {
839
- "id": ".sam-release",
840
- "path": ".github/workflows/.sam-release.yml",
841
- "reusable": true,
842
- "inputs": [
843
- "aws-region",
844
- "aws-role",
845
- "aws-root",
846
- "bucket-release"
847
- ],
848
- "inputCount": 4,
849
- "secrets": [
850
- "AWS_ACCOUNT_ID"
851
- ],
852
- "secretCount": 1,
853
- "outputs": [],
854
- "outputCount": 0,
855
- "surface": "reusable-workflow",
856
- "capabilityGroup": "api-cli-reference",
857
- "status": "active",
858
- "owner": "buildchain-workflows",
859
- "maturity": "active",
860
- "introducedVersion": "pre-3.0.2-alpha.4",
861
- "compatibilityPromise": "preserved-through-the-v3-major-line",
862
- "deprecationReplacement": "",
863
- "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
864
- "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
865
- },
866
734
  {
867
735
  "id": ".sam-verify",
868
736
  "path": ".github/workflows/.sam-verify.yml",
@@ -871,9 +739,10 @@
871
739
  "aws-region",
872
740
  "aws-role",
873
741
  "aws-root",
874
- "manager"
742
+ "manager",
743
+ "universal-request-json"
875
744
  ],
876
- "inputCount": 4,
745
+ "inputCount": 5,
877
746
  "secrets": [
878
747
  "AWS_ACCOUNT_ID",
879
748
  "NODE_AUTH_TOKEN"
@@ -909,9 +778,10 @@
909
778
  "release-path",
910
779
  "release-url",
911
780
  "repo",
781
+ "universal-request-json",
912
782
  "upper-edge"
913
783
  ],
914
- "inputCount": 13,
784
+ "inputCount": 14,
915
785
  "secrets": [
916
786
  "AIRTABLE_API_KEY",
917
787
  "GITHUB_PUSH_TOKEN"
@@ -938,9 +808,10 @@
938
808
  "force",
939
809
  "remote-host",
940
810
  "remote-path",
941
- "remote-repo"
811
+ "remote-repo",
812
+ "universal-request-json"
942
813
  ],
943
- "inputCount": 4,
814
+ "inputCount": 5,
944
815
  "secrets": [
945
816
  "REMOTE_CREDENTIAL",
946
817
  "REMOTE_USER"
@@ -1005,10 +876,11 @@
1005
876
  "staging-apply",
1006
877
  "staging-aws-role-arn",
1007
878
  "staging-environment",
879
+ "universal-request-json",
1008
880
  "verify-command",
1009
881
  "working-directory"
1010
882
  ],
1011
- "inputCount": 43,
883
+ "inputCount": 44,
1012
884
  "secrets": [
1013
885
  "production-release-app-private-key"
1014
886
  ],
@@ -1050,34 +922,6 @@
1050
922
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1051
923
  "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
1052
924
  },
1053
- {
1054
- "id": ".wheel-release",
1055
- "path": ".github/workflows/.wheel-release.yml",
1056
- "reusable": true,
1057
- "inputs": [
1058
- "aws-region",
1059
- "aws-user-region",
1060
- "bucket-release"
1061
- ],
1062
- "inputCount": 3,
1063
- "secrets": [
1064
- "AWS_USER_ACCESS_KEY_ID",
1065
- "AWS_USER_SECRET_ACCESS_KEY"
1066
- ],
1067
- "secretCount": 2,
1068
- "outputs": [],
1069
- "outputCount": 0,
1070
- "surface": "reusable-workflow",
1071
- "capabilityGroup": "api-cli-reference",
1072
- "status": "active",
1073
- "owner": "buildchain-workflows",
1074
- "maturity": "active",
1075
- "introducedVersion": "pre-3.0.2-alpha.4",
1076
- "compatibilityPromise": "preserved-through-the-v3-major-line",
1077
- "deprecationReplacement": "",
1078
- "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1079
- "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
1080
- },
1081
925
  {
1082
926
  "id": ".wheel-verify",
1083
927
  "path": ".github/workflows/.wheel-verify.yml",
@@ -1087,9 +931,10 @@
1087
931
  "bucket-release",
1088
932
  "max-preview-links",
1089
933
  "node-version",
1090
- "preview-files"
934
+ "preview-files",
935
+ "universal-request-json"
1091
936
  ],
1092
- "inputCount": 5,
937
+ "inputCount": 6,
1093
938
  "secrets": [
1094
939
  "AWS_USER_ACCESS_KEY_ID",
1095
940
  "AWS_USER_SECRET_ACCESS_KEY",
@@ -1214,6 +1059,38 @@
1214
1059
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1215
1060
  "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
1216
1061
  },
1062
+ {
1063
+ "id": "bootstrap",
1064
+ "path": ".github/workflows/bootstrap.yml",
1065
+ "reusable": true,
1066
+ "inputs": [
1067
+ "request-json"
1068
+ ],
1069
+ "inputCount": 1,
1070
+ "secrets": [],
1071
+ "secretCount": 0,
1072
+ "outputs": [
1073
+ "admission-root",
1074
+ "backflow-root",
1075
+ "request-root",
1076
+ "result-json",
1077
+ "result-root",
1078
+ "runtime-sha",
1079
+ "terminal-receipt-json",
1080
+ "terminal-receipt-root"
1081
+ ],
1082
+ "outputCount": 8,
1083
+ "surface": "repository-workflow",
1084
+ "capabilityGroup": "api-cli-reference",
1085
+ "status": "active",
1086
+ "owner": "buildchain-workflows",
1087
+ "maturity": "active",
1088
+ "introducedVersion": "pre-3.0.2-alpha.4",
1089
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1090
+ "deprecationReplacement": "",
1091
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1092
+ "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
1093
+ },
1217
1094
  {
1218
1095
  "id": "build-surface-fixture",
1219
1096
  "path": ".github/workflows/build-surface-fixture.yml",
@@ -1332,12 +1209,13 @@
1332
1209
  "setup-rust",
1333
1210
  "shifu-cache-profile-digest",
1334
1211
  "shifu-cache-profile-ref",
1212
+ "universal-request-json",
1335
1213
  "untrusted-policy",
1336
1214
  "verify-command",
1337
1215
  "verify-substage-evidence-path",
1338
1216
  "working-directory"
1339
1217
  ],
1340
- "inputCount": 96,
1218
+ "inputCount": 97,
1341
1219
  "secrets": [
1342
1220
  "BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
1343
1221
  "BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
@@ -1558,9 +1436,10 @@
1558
1436
  "require-approval",
1559
1437
  "required-status-checks",
1560
1438
  "same-repository-only",
1561
- "target-branch"
1439
+ "target-branch",
1440
+ "universal-request-json"
1562
1441
  ],
1563
- "inputCount": 16,
1442
+ "inputCount": 17,
1564
1443
  "secrets": [
1565
1444
  "github-token"
1566
1445
  ],
@@ -1704,10 +1583,11 @@
1704
1583
  "source-proof-policy-paths-json",
1705
1584
  "source-proof-required-contexts-json",
1706
1585
  "source-proof-reuse",
1586
+ "universal-request-json",
1707
1587
  "upload-artifacts",
1708
1588
  "working-directory"
1709
1589
  ],
1710
- "inputCount": 12,
1590
+ "inputCount": 13,
1711
1591
  "secrets": [],
1712
1592
  "secretCount": 0,
1713
1593
  "outputs": [
@@ -1755,9 +1635,10 @@
1755
1635
  "reactivation-authorized",
1756
1636
  "settlement-authorized",
1757
1637
  "source-branch",
1758
- "target-branch"
1638
+ "target-branch",
1639
+ "universal-request-json"
1759
1640
  ],
1760
- "inputCount": 15,
1641
+ "inputCount": 16,
1761
1642
  "secrets": [
1762
1643
  "promotion-token"
1763
1644
  ],
@@ -1809,9 +1690,10 @@
1809
1690
  "outcome",
1810
1691
  "reason",
1811
1692
  "target-branch",
1812
- "terminal-evidence-root"
1693
+ "terminal-evidence-root",
1694
+ "universal-request-json"
1813
1695
  ],
1814
- "inputCount": 12,
1696
+ "inputCount": 13,
1815
1697
  "secrets": [
1816
1698
  "github-token"
1817
1699
  ],
@@ -1850,9 +1732,10 @@
1850
1732
  "replay-tree-sha",
1851
1733
  "required-context-roots-json",
1852
1734
  "target-branch",
1853
- "terminal-evidence-root"
1735
+ "terminal-evidence-root",
1736
+ "universal-request-json"
1854
1737
  ],
1855
- "inputCount": 13,
1738
+ "inputCount": 14,
1856
1739
  "secrets": [
1857
1740
  "github-token"
1858
1741
  ],
@@ -1944,9 +1827,10 @@
1944
1827
  "source-workflow-run-id",
1945
1828
  "target-branch",
1946
1829
  "toolchain-root",
1830
+ "universal-request-json",
1947
1831
  "warrant-lease-seconds"
1948
1832
  ],
1949
- "inputCount": 44,
1833
+ "inputCount": 45,
1950
1834
  "secrets": [
1951
1835
  "github-token"
1952
1836
  ],
@@ -1998,9 +1882,10 @@
1998
1882
  "mutation-authorized",
1999
1883
  "preflight-workflow-path",
2000
1884
  "priority-workflows-json",
2001
- "source-branch"
1885
+ "source-branch",
1886
+ "universal-request-json"
2002
1887
  ],
2003
- "inputCount": 10,
1888
+ "inputCount": 11,
2004
1889
  "secrets": [
2005
1890
  "qualification-token"
2006
1891
  ],
@@ -2041,7 +1926,7 @@
2041
1926
  "status": "preview",
2042
1927
  "owner": "buildchain-workflows",
2043
1928
  "maturity": "preview",
2044
- "introducedVersion": "4.0.2-alpha.2",
1929
+ "introducedVersion": "4.0.2-alpha.20",
2045
1930
  "compatibilityPromise": "preserved-through-the-v3-major-line",
2046
1931
  "deprecationReplacement": "",
2047
1932
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
@@ -2062,7 +1947,7 @@
2062
1947
  "status": "preview",
2063
1948
  "owner": "buildchain-workflows",
2064
1949
  "maturity": "preview",
2065
- "introducedVersion": "4.0.2-alpha.2",
1950
+ "introducedVersion": "4.0.2-alpha.20",
2066
1951
  "compatibilityPromise": "preserved-through-the-v3-major-line",
2067
1952
  "deprecationReplacement": "",
2068
1953
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
@@ -2083,7 +1968,7 @@
2083
1968
  "status": "preview",
2084
1969
  "owner": "buildchain-workflows",
2085
1970
  "maturity": "preview",
2086
- "introducedVersion": "4.0.2-alpha.2",
1971
+ "introducedVersion": "4.0.2-alpha.20",
2087
1972
  "compatibilityPromise": "preserved-through-the-v3-major-line",
2088
1973
  "deprecationReplacement": "",
2089
1974
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
@@ -2107,9 +1992,10 @@
2107
1992
  "stale-days",
2108
1993
  "stale-pull-request-label",
2109
1994
  "target-branch",
2110
- "temporary-branch-patterns"
1995
+ "temporary-branch-patterns",
1996
+ "universal-request-json"
2111
1997
  ],
2112
- "inputCount": 14,
1998
+ "inputCount": 15,
2113
1999
  "secrets": [
2114
2000
  "housekeeper_app_id",
2115
2001
  "housekeeper_app_private_key",
@@ -2133,7 +2019,7 @@
2133
2019
  "status": "preview",
2134
2020
  "owner": "buildchain-workflows",
2135
2021
  "maturity": "preview",
2136
- "introducedVersion": "4.0.2-alpha.2",
2022
+ "introducedVersion": "4.0.2-alpha.20",
2137
2023
  "compatibilityPromise": "preserved-through-the-v3-major-line",
2138
2024
  "deprecationReplacement": "",
2139
2025
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
@@ -2156,9 +2042,10 @@
2156
2042
  "retention-days",
2157
2043
  "source-sha",
2158
2044
  "subject-artifact-name",
2159
- "subject-relative-path"
2045
+ "subject-relative-path",
2046
+ "universal-request-json"
2160
2047
  ],
2161
- "inputCount": 13,
2048
+ "inputCount": 14,
2162
2049
  "secrets": [],
2163
2050
  "secretCount": 0,
2164
2051
  "outputs": [
@@ -2251,10 +2138,11 @@
2251
2138
  "target-ref",
2252
2139
  "target-sha",
2253
2140
  "toolchain-type",
2141
+ "universal-request-json",
2254
2142
  "verify-command",
2255
2143
  "working-directory"
2256
2144
  ],
2257
- "inputCount": 26,
2145
+ "inputCount": 27,
2258
2146
  "secrets": [
2259
2147
  "BUILDCHAIN_GENERATED_WRITE_APP_CLIENT_ID",
2260
2148
  "BUILDCHAIN_GENERATED_WRITE_APP_PRIVATE_KEY",
@@ -2325,10 +2213,11 @@
2325
2213
  "toolchain-digest",
2326
2214
  "toolchain-image",
2327
2215
  "toolchain-type",
2216
+ "universal-request-json",
2328
2217
  "verify-command",
2329
2218
  "working-directory"
2330
2219
  ],
2331
- "inputCount": 38,
2220
+ "inputCount": 39,
2332
2221
  "secrets": [],
2333
2222
  "secretCount": 0,
2334
2223
  "outputs": [
@@ -2374,9 +2263,10 @@
2374
2263
  "require-approval",
2375
2264
  "required-status-checks",
2376
2265
  "same-repository-only",
2377
- "target-branch"
2266
+ "target-branch",
2267
+ "universal-request-json"
2378
2268
  ],
2379
- "inputCount": 13,
2269
+ "inputCount": 14,
2380
2270
  "secrets": [
2381
2271
  "github-token"
2382
2272
  ],
@@ -2408,9 +2298,10 @@
2408
2298
  "buildchain-ref",
2409
2299
  "buildchain-repository",
2410
2300
  "dry-run",
2411
- "target-branch"
2301
+ "target-branch",
2302
+ "universal-request-json"
2412
2303
  ],
2413
- "inputCount": 4,
2304
+ "inputCount": 5,
2414
2305
  "secrets": [
2415
2306
  "github-token"
2416
2307
  ],
@@ -2450,9 +2341,10 @@
2450
2341
  "production-aws-role-arn",
2451
2342
  "production-bucket",
2452
2343
  "production-environment",
2344
+ "universal-request-json",
2453
2345
  "verify-command"
2454
2346
  ],
2455
- "inputCount": 12,
2347
+ "inputCount": 13,
2456
2348
  "secrets": [],
2457
2349
  "secretCount": 0,
2458
2350
  "outputs": [
@@ -2478,9 +2370,10 @@
2478
2370
  "buildchain-ref",
2479
2371
  "buildchain-repository",
2480
2372
  "dry-run",
2481
- "target-branch"
2373
+ "target-branch",
2374
+ "universal-request-json"
2482
2375
  ],
2483
- "inputCount": 4,
2376
+ "inputCount": 5,
2484
2377
  "secrets": [
2485
2378
  "github-token"
2486
2379
  ],
@@ -2530,10 +2423,11 @@
2530
2423
  "toolchain-digest",
2531
2424
  "toolchain-image",
2532
2425
  "toolchain-type",
2426
+ "universal-request-json",
2533
2427
  "verify-command",
2534
2428
  "working-directory"
2535
2429
  ],
2536
- "inputCount": 23,
2430
+ "inputCount": 24,
2537
2431
  "secrets": [],
2538
2432
  "secretCount": 0,
2539
2433
  "outputs": [
@@ -2676,9 +2570,10 @@
2676
2570
  "standalone-binary-distribution",
2677
2571
  "target-ref",
2678
2572
  "target-sha",
2679
- "trusted-publishing"
2573
+ "trusted-publishing",
2574
+ "universal-request-json"
2680
2575
  ],
2681
- "inputCount": 106,
2576
+ "inputCount": 107,
2682
2577
  "secrets": [
2683
2578
  "BUILDCHAIN_ISSUE_APP_ID",
2684
2579
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -2757,9 +2652,10 @@
2757
2652
  "apply",
2758
2653
  "branch",
2759
2654
  "buildchain-ref",
2760
- "candidate-sha"
2655
+ "candidate-sha",
2656
+ "universal-request-json"
2761
2657
  ],
2762
- "inputCount": 4,
2658
+ "inputCount": 5,
2763
2659
  "secrets": [
2764
2660
  "BUILDCHAIN_PROMOTION_TOKEN",
2765
2661
  "governance-token"
@@ -2843,9 +2739,10 @@
2843
2739
  "pr-title",
2844
2740
  "refresh-managed-readme-badges",
2845
2741
  "source-node",
2742
+ "universal-request-json",
2846
2743
  "upstream-release-json"
2847
2744
  ],
2848
- "inputCount": 19,
2745
+ "inputCount": 20,
2849
2746
  "secrets": [
2850
2747
  "propagation-token"
2851
2748
  ],
@@ -2895,9 +2792,10 @@
2895
2792
  "rehearsal-capsule-path",
2896
2793
  "rehearsal-evidence-path",
2897
2794
  "rehearsal-mode",
2898
- "state-path"
2795
+ "state-path",
2796
+ "universal-request-json"
2899
2797
  ],
2900
- "inputCount": 14,
2798
+ "inputCount": 15,
2901
2799
  "secrets": [
2902
2800
  "http-token"
2903
2801
  ],
@@ -2943,27 +2841,6 @@
2943
2841
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
2944
2842
  "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
2945
2843
  },
2946
- {
2947
- "id": "schedule-purge-artifacts",
2948
- "path": ".github/workflows/schedule-purge-artifacts.yml",
2949
- "reusable": false,
2950
- "inputs": [],
2951
- "inputCount": 0,
2952
- "secrets": [],
2953
- "secretCount": 0,
2954
- "outputs": [],
2955
- "outputCount": 0,
2956
- "surface": "repository-workflow",
2957
- "capabilityGroup": "api-cli-reference",
2958
- "status": "active",
2959
- "owner": "buildchain-workflows",
2960
- "maturity": "active",
2961
- "introducedVersion": "pre-3.0.2-alpha.4",
2962
- "compatibilityPromise": "preserved-through-the-v3-major-line",
2963
- "deprecationReplacement": "",
2964
- "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
2965
- "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
2966
- },
2967
2844
  {
2968
2845
  "id": "self-hosted-runner-smoke",
2969
2846
  "path": ".github/workflows/self-hosted-runner-smoke.yml",
@@ -3005,9 +2882,10 @@
3005
2882
  "required-checks",
3006
2883
  "revoke-reason",
3007
2884
  "revoked-versions",
3008
- "target-branch"
2885
+ "target-branch",
2886
+ "universal-request-json"
3009
2887
  ],
3010
- "inputCount": 16,
2888
+ "inputCount": 17,
3011
2889
  "secrets": [
3012
2890
  "approval-token",
3013
2891
  "promotion-token"
@@ -3033,6 +2911,56 @@
3033
2911
  "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
3034
2912
  "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
3035
2913
  },
2914
+ {
2915
+ "id": "universal-bootstrap-dogfood",
2916
+ "path": ".github/workflows/universal-bootstrap-dogfood.yml",
2917
+ "reusable": false,
2918
+ "inputs": [],
2919
+ "inputCount": 0,
2920
+ "secrets": [],
2921
+ "secretCount": 0,
2922
+ "outputs": [],
2923
+ "outputCount": 0,
2924
+ "surface": "repository-workflow",
2925
+ "capabilityGroup": "api-cli-reference",
2926
+ "status": "active",
2927
+ "owner": "buildchain-workflows",
2928
+ "maturity": "active",
2929
+ "introducedVersion": "pre-3.0.2-alpha.4",
2930
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
2931
+ "deprecationReplacement": "",
2932
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
2933
+ "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
2934
+ },
2935
+ {
2936
+ "id": "universal-bootstrap-recovery",
2937
+ "path": ".github/workflows/universal-bootstrap-recovery.yml",
2938
+ "reusable": true,
2939
+ "inputs": [
2940
+ "request-json"
2941
+ ],
2942
+ "inputCount": 1,
2943
+ "secrets": [],
2944
+ "secretCount": 0,
2945
+ "outputs": [
2946
+ "backflow-root",
2947
+ "result-json",
2948
+ "runtime-sha",
2949
+ "terminal-receipt-json",
2950
+ "terminal-receipt-root"
2951
+ ],
2952
+ "outputCount": 5,
2953
+ "surface": "repository-workflow",
2954
+ "capabilityGroup": "api-cli-reference",
2955
+ "status": "active",
2956
+ "owner": "buildchain-workflows",
2957
+ "maturity": "active",
2958
+ "introducedVersion": "pre-3.0.2-alpha.4",
2959
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
2960
+ "deprecationReplacement": "",
2961
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
2962
+ "nonDuplicationRationale": "Existing workflow identity retained for caller compatibility and repository orchestration."
2963
+ },
3036
2964
  {
3037
2965
  "id": "v4-adopter-delivery-dogfood",
3038
2966
  "path": ".github/workflows/v4-adopter-delivery-dogfood.yml",
@@ -3066,9 +2994,10 @@
3066
2994
  "consumer-repository",
3067
2995
  "input-path",
3068
2996
  "invocation-source-path",
3069
- "node-version"
2997
+ "node-version",
2998
+ "universal-request-json"
3070
2999
  ],
3071
- "inputCount": 8,
3000
+ "inputCount": 9,
3072
3001
  "secrets": [],
3073
3002
  "secretCount": 0,
3074
3003
  "outputs": [],
@@ -3157,9 +3086,10 @@
3157
3086
  "go-version",
3158
3087
  "install-artifact-path",
3159
3088
  "node-version",
3089
+ "universal-request-json",
3160
3090
  "verify-artifact-path"
3161
3091
  ],
3162
- "inputCount": 6,
3092
+ "inputCount": 7,
3163
3093
  "secrets": [],
3164
3094
  "secretCount": 0,
3165
3095
  "outputs": [],
@@ -3183,9 +3113,10 @@
3183
3113
  "artifact-retention-days",
3184
3114
  "consumer-policy-receipt-json",
3185
3115
  "macos-finalization-command",
3186
- "request-json"
3116
+ "request-json",
3117
+ "universal-request-json"
3187
3118
  ],
3188
- "inputCount": 4,
3119
+ "inputCount": 5,
3189
3120
  "secrets": [
3190
3121
  "BUILDCHAIN_EVIDENCE_READ_TOKEN",
3191
3122
  "BUILDCHAIN_SIGNING_TOKEN"
@@ -3533,18 +3464,37 @@
3533
3464
  "path": "actions/v4-release-candidate-promote/action.yml",
3534
3465
  "inputs": [
3535
3466
  "artifact-paths",
3467
+ "candidate-build-summary-path",
3536
3468
  "candidate-passport-path",
3537
3469
  "failure-after-capability",
3470
+ "mutation-token",
3471
+ "product-publication-intent-path",
3538
3472
  "publication-qualification-path",
3473
+ "publish-auth",
3474
+ "publish-command",
3475
+ "publish-dist-tag",
3476
+ "publish-mode",
3477
+ "publish-package-main",
3478
+ "publish-package-set-order",
3479
+ "publish-rematerialize-on-resume",
3480
+ "publish-transaction-override",
3539
3481
  "publisher-workflow-sha",
3540
3482
  "repository",
3483
+ "required-artifacts-path",
3484
+ "required-status-check",
3485
+ "resume-transaction-id",
3541
3486
  "runtime-commit",
3542
3487
  "runtime-tree",
3488
+ "sealed-bundle-manifest",
3489
+ "sealed-bundle-root",
3490
+ "source-sha",
3543
3491
  "stage-capsules-path",
3544
3492
  "state-path",
3493
+ "target-ref",
3494
+ "target-sha",
3545
3495
  "token"
3546
3496
  ],
3547
- "inputCount": 11,
3497
+ "inputCount": 30,
3548
3498
  "capabilityGroup": "api-cli-reference",
3549
3499
  "status": "active",
3550
3500
  "owner": "buildchain-actions",