@kungfu-tech/buildchain 3.0.2 → 3.0.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.
- package/AGENTS.md +1 -1
- package/CONTRIBUTING.md +1 -1
- package/README.md +27 -1
- package/actions/promote-buildchain-ref/README.md +90 -19
- package/actions/report-buildchain-issue/README.md +20 -2
- package/actions/run-lifecycle/README.md +5 -0
- package/actions/validate-config/README.md +19 -1
- package/bin/buildchain.mjs +56 -2
- package/bin/internal/command-registry.mjs +82 -0
- package/bin/internal/trust-release-cli.mjs +1 -0
- package/contracts/auditable-demo-media-profiles-v1.json +116 -1
- package/contracts/buildchain-v2-residuals-v1.json +146 -0
- package/contracts/evidence/auditable-demo-responsive-web-delivery-v1.json +143 -0
- package/contracts/evidence/auditable-demo-web-delivery-v1.json +7 -3
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/complete-transcript.txt +2 -0
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/public-projection.json +16 -0
- package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/scene.json +12 -0
- package/dist/site/buildchain-contract.json +188 -46
- package/dist/site/buildchain-site.json +181 -90
- package/dist/site/capability-registry.json +5 -5
- package/dist/site/cli-registry.json +860 -98
- package/dist/site/controller-registry.json +118 -5
- package/dist/site/kfd-claims.json +233 -19
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +20 -20
- package/dist/site/node-api-registry.json +374 -59
- package/dist/site/page-registry.json +156 -65
- package/dist/site/public-surface-audit.json +231 -22
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +3 -0
- package/dist/site/site-manifest.json +24 -24
- package/dist/site/workflow-registry.json +575 -79
- package/docs/MAP.md +22 -4
- package/docs/auditable-demo.md +54 -13
- package/docs/aws-us-elastic-runner-burst-plane.md +381 -0
- package/docs/cli.md +119 -12
- package/docs/consumer-issue-reporting.md +20 -2
- package/docs/dev-alpha-candidate-patrol.md +24 -10
- package/docs/github-governance-authority.md +24 -31
- package/docs/lifecycle-protocol.md +20 -2
- package/docs/migration-inventory.md +24 -5
- package/docs/observed-evidence-patrol.md +28 -12
- package/docs/ownership.md +19 -1
- package/docs/publication-artifacts.md +158 -18
- package/docs/publication-authority.md +4 -4
- package/docs/publish-transaction.md +78 -31
- package/docs/release-candidate.md +24 -0
- package/docs/release-flow.md +50 -32
- package/docs/release-governance.md +39 -32
- package/docs/release-passport.md +4 -0
- package/docs/release-propagation.md +57 -12
- package/docs/reusable-build-surface.md +218 -90
- package/docs/runtime-train-validation.md +20 -2
- package/docs/shifu-gate-profiles.md +7 -1
- package/docs/stable-candidate-patrol.md +6 -6
- package/docs/toolkit-observability.md +22 -0
- package/docs/versioning.md +46 -24
- package/docs/web-surface-deployments.md +82 -1
- package/package.json +7 -5
- package/packages/core/README.md +60 -4
- package/packages/core/artifact-signing.js +1 -0
- package/packages/core/buildchain-contract.js +9 -4
- package/packages/core/cache-evidence.js +1 -0
- package/packages/core/controller-evidence.js +2 -0
- package/packages/core/diagnostics.js +105 -30
- package/packages/core/github-governance-authority.js +25 -17
- package/packages/core/index.js +40 -0
- package/packages/core/paper.js +3226 -0
- package/packages/core/public-surface-audit.js +3 -0
- package/packages/core/publication-artifact.js +1 -6
- package/packages/core/publication-authority.js +1 -0
- package/packages/core/publication-control-plane-audit.js +28 -0
- package/packages/core/publication-reproducibility.js +947 -0
- package/packages/core/publication-sealed-bundle.js +190 -0
- package/packages/core/publish-transaction.js +147 -17
- package/packages/core/release-candidate.js +234 -0
- package/packages/core/release-passport.js +519 -228
- package/packages/core/release-propagation.js +175 -1
- package/packages/core/stable-release-gate.js +4 -1
- package/scripts/artifact-signing-delegation.mjs +268 -0
- package/scripts/audit-github-governance.mjs +32 -13
- package/scripts/audit-publication-control-plane.mjs +17 -8
- package/scripts/auditable-demo.mjs +266 -7
- package/scripts/aws-codebuild-toolchain.mjs +285 -0
- package/scripts/aws-macos-jit-core.mjs +378 -0
- package/scripts/aws-macos-jit.mjs +123 -0
- package/scripts/aws-runner-burst-core.mjs +248 -0
- package/scripts/aws-runner-burst.mjs +79 -0
- package/scripts/aws-windows-jit-core.mjs +374 -0
- package/scripts/aws-windows-jit.mjs +121 -0
- package/scripts/build-contract-core.mjs +69 -6
- package/scripts/build-standalone-binary.mjs +23 -0
- package/scripts/buildchain-contract-lock.mjs +1 -1
- package/scripts/buildchain-patrol.mjs +1 -1
- package/scripts/check-internal-architecture.mjs +69 -2
- package/scripts/check-inventory.mjs +70 -2
- package/scripts/check-javascript-syntax.mjs +31 -0
- package/scripts/check-maintainability.mjs +371 -0
- package/scripts/compiler-cache-evidence.mjs +221 -0
- package/scripts/dev-alpha-candidate-patrol.mjs +288 -43
- package/scripts/dispatch-artifact-signing-authority.mjs +7 -1
- package/scripts/finalize-native-artifact-signing-result.mjs +185 -31
- package/scripts/gate-profile-core.mjs +6 -1
- package/scripts/generate-channel-promotion-workflow.mjs +3 -12
- package/scripts/generate-release-candidate-passport.mjs +4 -0
- package/scripts/generate-site-bundle.mjs +84 -18
- package/scripts/import-artifact-signing-results.mjs +64 -5
- package/scripts/inspect-artifact-signing-requests.mjs +52 -14
- package/scripts/maintainability-metrics.mjs +339 -0
- package/scripts/npm-publish-transaction.mjs +57 -6
- package/scripts/observed-evidence.mjs +151 -33
- package/scripts/paper.mjs +645 -0
- package/scripts/promotion-channel-router.mjs +16 -4
- package/scripts/publication-reproducibility.mjs +62 -0
- package/scripts/reconcile-github-governance.mjs +8 -1
- package/scripts/release-propagation.mjs +39 -0
- package/scripts/resolve-artifact-signing-upload-route.mjs +55 -0
- package/scripts/resolve-build-contract.mjs +6 -0
- package/scripts/route-offline-runners.mjs +236 -0
- package/scripts/run-candidate-body-prefix-renderer.mjs +187 -0
- package/scripts/run-lifecycle-core.mjs +62 -1
- package/scripts/runtime-ref-core.mjs +36 -4
- package/scripts/seal-artifact-signing-requests.mjs +64 -12
- package/scripts/stable-candidate-qualification.mjs +50 -0
- package/scripts/verify-artifact-signing-results.mjs +26 -1
- package/scripts/web-surface-core.mjs +272 -86
- package/scripts/web-surface-production-decision.mjs +19 -3
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
4
4
|
"status": "passed",
|
|
5
5
|
"summary": {
|
|
6
|
-
"cliCommandCount":
|
|
6
|
+
"cliCommandCount": 107,
|
|
7
7
|
"workflowCount": 57,
|
|
8
8
|
"actionCount": 6,
|
|
9
|
-
"sitePageCount":
|
|
10
|
-
"docCommandRefCount":
|
|
9
|
+
"sitePageCount": 60,
|
|
10
|
+
"docCommandRefCount": 311,
|
|
11
11
|
"failureCount": 0
|
|
12
12
|
},
|
|
13
13
|
"enumerated": {
|
|
@@ -367,6 +367,51 @@
|
|
|
367
367
|
"source": "bin/buildchain.mjs",
|
|
368
368
|
"usage": "buildchain npm dry-run [--cwd <dir>] [--expected-tag <tag>] [--registry <url>]"
|
|
369
369
|
},
|
|
370
|
+
{
|
|
371
|
+
"id": "paper",
|
|
372
|
+
"source": "bin/buildchain.mjs",
|
|
373
|
+
"usage": "buildchain paper"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"id": "paper-alpha",
|
|
377
|
+
"source": "bin/buildchain.mjs",
|
|
378
|
+
"usage": "buildchain paper alpha [--cwd <dir>] [--source-ref <ref>] [--target-ref <ref>]"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"id": "paper-bootstrap-npm",
|
|
382
|
+
"source": "bin/buildchain.mjs",
|
|
383
|
+
"usage": "buildchain paper bootstrap npm [--cwd <dir>] [--execute]"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"id": "paper-build",
|
|
387
|
+
"source": "bin/buildchain.mjs",
|
|
388
|
+
"usage": "buildchain paper build [--cwd <dir>] [--execute] [--json]"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"id": "paper-migrate",
|
|
392
|
+
"source": "bin/buildchain.mjs",
|
|
393
|
+
"usage": "buildchain paper migrate [--cwd <dir>] [--write] [--json]"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"id": "paper-preflight",
|
|
397
|
+
"source": "bin/buildchain.mjs",
|
|
398
|
+
"usage": "buildchain paper preflight [--cwd <dir>] [--offline] [--json]"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"id": "paper-resume",
|
|
402
|
+
"source": "bin/buildchain.mjs",
|
|
403
|
+
"usage": "buildchain paper resume [--cwd <dir>] [--buildchain-ref <ref>] [--execute] [--json]"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"id": "paper-scaffold",
|
|
407
|
+
"source": "bin/buildchain.mjs",
|
|
408
|
+
"usage": "buildchain paper scaffold --package <name> --repository <owner/repo> [--write] [--json]"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"id": "paper-status",
|
|
412
|
+
"source": "bin/buildchain.mjs",
|
|
413
|
+
"usage": "buildchain paper status [--cwd <dir>] [--json]"
|
|
414
|
+
},
|
|
370
415
|
{
|
|
371
416
|
"id": "portable-cache",
|
|
372
417
|
"source": "bin/buildchain.mjs",
|
|
@@ -392,6 +437,11 @@
|
|
|
392
437
|
"source": "bin/buildchain.mjs",
|
|
393
438
|
"usage": "buildchain publication-artifact npm-package [--cwd <dir>] [--output-dir <dir>] [--package-name <name>] [--json]"
|
|
394
439
|
},
|
|
440
|
+
{
|
|
441
|
+
"id": "publication-artifact-reproducibility",
|
|
442
|
+
"source": "bin/buildchain.mjs",
|
|
443
|
+
"usage": "buildchain publication-artifact reproducibility [--cwd <dir>] [--source-sha <sha>]"
|
|
444
|
+
},
|
|
395
445
|
{
|
|
396
446
|
"id": "publish-source",
|
|
397
447
|
"source": "bin/buildchain.mjs",
|
|
@@ -504,6 +554,7 @@
|
|
|
504
554
|
"path": ".github/workflows/.auditable-demo.yml",
|
|
505
555
|
"reusable": true,
|
|
506
556
|
"inputs": [
|
|
557
|
+
"adapter-arguments-json",
|
|
507
558
|
"adapter-path",
|
|
508
559
|
"artifact-retention-days",
|
|
509
560
|
"buildchain-repository",
|
|
@@ -515,7 +566,7 @@
|
|
|
515
566
|
"source-artifact-name",
|
|
516
567
|
"source-ref"
|
|
517
568
|
],
|
|
518
|
-
"inputCount":
|
|
569
|
+
"inputCount": 11,
|
|
519
570
|
"secrets": [],
|
|
520
571
|
"secretCount": 0,
|
|
521
572
|
"outputs": [
|
|
@@ -567,6 +618,7 @@
|
|
|
567
618
|
"path": ".github/workflows/.build.yml",
|
|
568
619
|
"reusable": true,
|
|
569
620
|
"inputs": [
|
|
621
|
+
"artifact-compression-level",
|
|
570
622
|
"artifact-name",
|
|
571
623
|
"artifact-name-template",
|
|
572
624
|
"artifact-paths",
|
|
@@ -578,7 +630,11 @@
|
|
|
578
630
|
"artifact-relay-s3-role-arn",
|
|
579
631
|
"artifact-relay-s3-upload-role-arn",
|
|
580
632
|
"artifact-retention-days",
|
|
633
|
+
"artifact-signing-request-upload-no-proxy",
|
|
581
634
|
"artifact-transfer-mode",
|
|
635
|
+
"aws-codebuild-project",
|
|
636
|
+
"aws-ec2-macos-runner-label",
|
|
637
|
+
"aws-ec2-windows-runner-label",
|
|
582
638
|
"build-command",
|
|
583
639
|
"buildchain-contract-compatibility-policy",
|
|
584
640
|
"buildchain-contract-drift-issue-mode",
|
|
@@ -596,6 +652,9 @@
|
|
|
596
652
|
"checkout-cache-mode",
|
|
597
653
|
"checkout-cache-reference-repository-template",
|
|
598
654
|
"checkout-cache-timeout-seconds",
|
|
655
|
+
"compiler-cache-platforms-json",
|
|
656
|
+
"compiler-cache-provider",
|
|
657
|
+
"compiler-cache-required",
|
|
599
658
|
"control-runner-json",
|
|
600
659
|
"credential-island-caller-owned",
|
|
601
660
|
"credential-island-environment",
|
|
@@ -622,6 +681,7 @@
|
|
|
622
681
|
"publish-registry",
|
|
623
682
|
"publish-source-ref",
|
|
624
683
|
"release-candidate",
|
|
684
|
+
"release-candidate-family-evidence-json",
|
|
625
685
|
"requested-parallelism",
|
|
626
686
|
"require-build",
|
|
627
687
|
"require-install",
|
|
@@ -632,6 +692,7 @@
|
|
|
632
692
|
"rustup-dist-server",
|
|
633
693
|
"rustup-update-root",
|
|
634
694
|
"sample-process-tree",
|
|
695
|
+
"self-hosted-offline-fallback",
|
|
635
696
|
"setup-node",
|
|
636
697
|
"setup-rust",
|
|
637
698
|
"shifu-cache-profile-digest",
|
|
@@ -640,7 +701,7 @@
|
|
|
640
701
|
"verify-command",
|
|
641
702
|
"working-directory"
|
|
642
703
|
],
|
|
643
|
-
"inputCount":
|
|
704
|
+
"inputCount": 82,
|
|
644
705
|
"secrets": [
|
|
645
706
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
646
707
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -695,9 +756,10 @@
|
|
|
695
756
|
"release-candidate-passport-json",
|
|
696
757
|
"release-manifest-json",
|
|
697
758
|
"runner-preset",
|
|
759
|
+
"runner-routing-json",
|
|
698
760
|
"trusted-event"
|
|
699
761
|
],
|
|
700
|
-
"outputCount":
|
|
762
|
+
"outputCount": 43
|
|
701
763
|
},
|
|
702
764
|
{
|
|
703
765
|
"id": ".bump-minor-version",
|
|
@@ -889,11 +951,17 @@
|
|
|
889
951
|
"publish-transaction-override",
|
|
890
952
|
"release-activation-command",
|
|
891
953
|
"release-activation-receipt-set-path",
|
|
954
|
+
"release-candidate-family-assignment-id",
|
|
955
|
+
"release-candidate-family-evidence-required",
|
|
956
|
+
"release-candidate-family-evidence-root",
|
|
957
|
+
"release-candidate-family-initiative-id",
|
|
892
958
|
"release-candidate-workflow-file",
|
|
893
959
|
"release-candidate-workflow-name",
|
|
894
960
|
"release-passport",
|
|
961
|
+
"release-passport-attachment-command",
|
|
895
962
|
"release-passport-buildchain-self-kfd",
|
|
896
963
|
"release-passport-evidence-command",
|
|
964
|
+
"release-passport-evidence-jsons",
|
|
897
965
|
"release-passport-evidence-path",
|
|
898
966
|
"release-passport-impact-json",
|
|
899
967
|
"release-passport-invariant-passport-command",
|
|
@@ -916,7 +984,7 @@
|
|
|
916
984
|
"target-sha",
|
|
917
985
|
"trusted-publishing"
|
|
918
986
|
],
|
|
919
|
-
"inputCount":
|
|
987
|
+
"inputCount": 94,
|
|
920
988
|
"secrets": [
|
|
921
989
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
922
990
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -1364,6 +1432,7 @@
|
|
|
1364
1432
|
"path": ".github/workflows/build.yml",
|
|
1365
1433
|
"reusable": true,
|
|
1366
1434
|
"inputs": [
|
|
1435
|
+
"artifact-compression-level",
|
|
1367
1436
|
"artifact-name",
|
|
1368
1437
|
"artifact-name-template",
|
|
1369
1438
|
"artifact-paths",
|
|
@@ -1375,7 +1444,11 @@
|
|
|
1375
1444
|
"artifact-relay-s3-role-arn",
|
|
1376
1445
|
"artifact-relay-s3-upload-role-arn",
|
|
1377
1446
|
"artifact-retention-days",
|
|
1447
|
+
"artifact-signing-request-upload-no-proxy",
|
|
1378
1448
|
"artifact-transfer-mode",
|
|
1449
|
+
"aws-codebuild-project",
|
|
1450
|
+
"aws-ec2-macos-runner-label",
|
|
1451
|
+
"aws-ec2-windows-runner-label",
|
|
1379
1452
|
"build-command",
|
|
1380
1453
|
"buildchain-alpha-contract-lock-path",
|
|
1381
1454
|
"buildchain-channel",
|
|
@@ -1396,6 +1469,9 @@
|
|
|
1396
1469
|
"checkout-cache-mode",
|
|
1397
1470
|
"checkout-cache-reference-repository-template",
|
|
1398
1471
|
"checkout-cache-timeout-seconds",
|
|
1472
|
+
"compiler-cache-platforms-json",
|
|
1473
|
+
"compiler-cache-provider",
|
|
1474
|
+
"compiler-cache-required",
|
|
1399
1475
|
"control-runner-json",
|
|
1400
1476
|
"credential-island-caller-owned",
|
|
1401
1477
|
"credential-island-environment",
|
|
@@ -1422,6 +1498,7 @@
|
|
|
1422
1498
|
"publish-registry",
|
|
1423
1499
|
"publish-source-ref",
|
|
1424
1500
|
"release-candidate",
|
|
1501
|
+
"release-candidate-family-evidence-json",
|
|
1425
1502
|
"requested-parallelism",
|
|
1426
1503
|
"require-build",
|
|
1427
1504
|
"require-install",
|
|
@@ -1432,6 +1509,7 @@
|
|
|
1432
1509
|
"rustup-dist-server",
|
|
1433
1510
|
"rustup-update-root",
|
|
1434
1511
|
"sample-process-tree",
|
|
1512
|
+
"self-hosted-offline-fallback",
|
|
1435
1513
|
"setup-node",
|
|
1436
1514
|
"setup-rust",
|
|
1437
1515
|
"shifu-cache-profile-digest",
|
|
@@ -1440,7 +1518,7 @@
|
|
|
1440
1518
|
"verify-command",
|
|
1441
1519
|
"working-directory"
|
|
1442
1520
|
],
|
|
1443
|
-
"inputCount":
|
|
1521
|
+
"inputCount": 85,
|
|
1444
1522
|
"secrets": [
|
|
1445
1523
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_DOWNLOAD_ROLE_ARN",
|
|
1446
1524
|
"BUILDCHAIN_ARTIFACT_RELAY_S3_ROLE_ARN",
|
|
@@ -1498,9 +1576,10 @@
|
|
|
1498
1576
|
"release-candidate-passport-json",
|
|
1499
1577
|
"release-manifest-json",
|
|
1500
1578
|
"runner-preset",
|
|
1579
|
+
"runner-routing-json",
|
|
1501
1580
|
"trusted-event"
|
|
1502
1581
|
],
|
|
1503
|
-
"outputCount":
|
|
1582
|
+
"outputCount": 46
|
|
1504
1583
|
},
|
|
1505
1584
|
{
|
|
1506
1585
|
"id": "buildchain-alpha-self-dogfood",
|
|
@@ -1666,11 +1745,13 @@
|
|
|
1666
1745
|
"dry-run",
|
|
1667
1746
|
"max-age-seconds",
|
|
1668
1747
|
"pull-request-body-prefix",
|
|
1748
|
+
"pull-request-body-prefix-renderer",
|
|
1749
|
+
"reactivation-authorized",
|
|
1669
1750
|
"settlement-authorized",
|
|
1670
1751
|
"source-branch",
|
|
1671
1752
|
"target-branch"
|
|
1672
1753
|
],
|
|
1673
|
-
"inputCount":
|
|
1754
|
+
"inputCount": 13,
|
|
1674
1755
|
"secrets": [
|
|
1675
1756
|
"promotion-token"
|
|
1676
1757
|
],
|
|
@@ -1680,13 +1761,14 @@
|
|
|
1680
1761
|
"controller-state",
|
|
1681
1762
|
"eligible",
|
|
1682
1763
|
"next-candidate-sha",
|
|
1764
|
+
"prior-state-root",
|
|
1683
1765
|
"promotion-pr",
|
|
1684
1766
|
"result-path",
|
|
1685
1767
|
"selected-sha",
|
|
1686
1768
|
"settlement-action",
|
|
1687
1769
|
"source-lock-ref"
|
|
1688
1770
|
],
|
|
1689
|
-
"outputCount":
|
|
1771
|
+
"outputCount": 10
|
|
1690
1772
|
},
|
|
1691
1773
|
{
|
|
1692
1774
|
"id": "dev-merge-queue-governance",
|
|
@@ -1820,9 +1902,13 @@
|
|
|
1820
1902
|
],
|
|
1821
1903
|
"inputCount": 26,
|
|
1822
1904
|
"secrets": [
|
|
1823
|
-
"
|
|
1905
|
+
"BUILDCHAIN_GENERATED_WRITE_APP_CLIENT_ID",
|
|
1906
|
+
"BUILDCHAIN_GENERATED_WRITE_APP_PRIVATE_KEY",
|
|
1907
|
+
"BUILDCHAIN_GENERATED_WRITE_TOKEN",
|
|
1908
|
+
"BUILDCHAIN_PROMOTION_TOKEN",
|
|
1909
|
+
"KUNGFU_GOVERNANCE_AUDITOR_APP_PRIVATE_KEY"
|
|
1824
1910
|
],
|
|
1825
|
-
"secretCount":
|
|
1911
|
+
"secretCount": 5,
|
|
1826
1912
|
"outputs": [
|
|
1827
1913
|
"github-release-url",
|
|
1828
1914
|
"package-name",
|
|
@@ -2111,11 +2197,17 @@
|
|
|
2111
2197
|
"publish-transaction-override",
|
|
2112
2198
|
"release-activation-command",
|
|
2113
2199
|
"release-activation-receipt-set-path",
|
|
2200
|
+
"release-candidate-family-assignment-id",
|
|
2201
|
+
"release-candidate-family-evidence-required",
|
|
2202
|
+
"release-candidate-family-evidence-root",
|
|
2203
|
+
"release-candidate-family-initiative-id",
|
|
2114
2204
|
"release-candidate-workflow-file",
|
|
2115
2205
|
"release-candidate-workflow-name",
|
|
2116
2206
|
"release-passport",
|
|
2207
|
+
"release-passport-attachment-command",
|
|
2117
2208
|
"release-passport-buildchain-self-kfd",
|
|
2118
2209
|
"release-passport-evidence-command",
|
|
2210
|
+
"release-passport-evidence-jsons",
|
|
2119
2211
|
"release-passport-evidence-path",
|
|
2120
2212
|
"release-passport-impact-json",
|
|
2121
2213
|
"release-passport-invariant-passport-command",
|
|
@@ -2138,7 +2230,7 @@
|
|
|
2138
2230
|
"target-sha",
|
|
2139
2231
|
"trusted-publishing"
|
|
2140
2232
|
],
|
|
2141
|
-
"inputCount":
|
|
2233
|
+
"inputCount": 86,
|
|
2142
2234
|
"secrets": [
|
|
2143
2235
|
"BUILDCHAIN_ISSUE_APP_ID",
|
|
2144
2236
|
"BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
|
|
@@ -2240,6 +2332,7 @@
|
|
|
2240
2332
|
"downstream-prepare-command",
|
|
2241
2333
|
"downstream-repository",
|
|
2242
2334
|
"downstream-target",
|
|
2335
|
+
"downstream-update-command",
|
|
2243
2336
|
"downstream-verify-command",
|
|
2244
2337
|
"dry-run",
|
|
2245
2338
|
"graph-json",
|
|
@@ -2250,7 +2343,7 @@
|
|
|
2250
2343
|
"source-node",
|
|
2251
2344
|
"upstream-release-json"
|
|
2252
2345
|
],
|
|
2253
|
-
"inputCount":
|
|
2346
|
+
"inputCount": 17,
|
|
2254
2347
|
"secrets": [
|
|
2255
2348
|
"propagation-token"
|
|
2256
2349
|
],
|
|
@@ -2262,9 +2355,11 @@
|
|
|
2262
2355
|
"controller-receipt-artifact",
|
|
2263
2356
|
"controller-receipt-digest",
|
|
2264
2357
|
"controller-receipt-json",
|
|
2265
|
-
"controller-receipt-status"
|
|
2358
|
+
"controller-receipt-status",
|
|
2359
|
+
"propagation-receipt-digest",
|
|
2360
|
+
"propagation-receipt-json"
|
|
2266
2361
|
],
|
|
2267
|
-
"outputCount":
|
|
2362
|
+
"outputCount": 9
|
|
2268
2363
|
},
|
|
2269
2364
|
{
|
|
2270
2365
|
"id": "release-verify",
|
|
@@ -2373,6 +2468,7 @@
|
|
|
2373
2468
|
"id": "macos-credential-island",
|
|
2374
2469
|
"path": "actions/macos-credential-island/action.yml",
|
|
2375
2470
|
"inputs": [
|
|
2471
|
+
"artifact-id",
|
|
2376
2472
|
"artifact-name",
|
|
2377
2473
|
"artifact-relative-output",
|
|
2378
2474
|
"artifact-stem",
|
|
@@ -2394,7 +2490,7 @@
|
|
|
2394
2490
|
"source-sha",
|
|
2395
2491
|
"source-tree-sha"
|
|
2396
2492
|
],
|
|
2397
|
-
"inputCount":
|
|
2493
|
+
"inputCount": 21
|
|
2398
2494
|
},
|
|
2399
2495
|
{
|
|
2400
2496
|
"id": "promote-buildchain-ref",
|
|
@@ -2427,6 +2523,8 @@
|
|
|
2427
2523
|
"publish-package-set-order",
|
|
2428
2524
|
"publish-rematerialize-on-resume",
|
|
2429
2525
|
"publish-required-artifacts-json",
|
|
2526
|
+
"publish-sealed-bundle-manifest",
|
|
2527
|
+
"publish-sealed-bundle-root",
|
|
2430
2528
|
"publish-source-locked",
|
|
2431
2529
|
"publish-source-ref",
|
|
2432
2530
|
"publish-source-sha",
|
|
@@ -2435,12 +2533,19 @@
|
|
|
2435
2533
|
"publish-transaction-override",
|
|
2436
2534
|
"reconciliation-workspace",
|
|
2437
2535
|
"release-candidate-build-summary-path",
|
|
2536
|
+
"release-candidate-family-assignment-id",
|
|
2537
|
+
"release-candidate-family-evidence-required",
|
|
2538
|
+
"release-candidate-family-evidence-root",
|
|
2539
|
+
"release-candidate-family-initiative-id",
|
|
2438
2540
|
"release-candidate-passport-path",
|
|
2439
2541
|
"release-candidate-version",
|
|
2440
2542
|
"release-material-sha",
|
|
2441
2543
|
"release-passport",
|
|
2544
|
+
"release-passport-attachment-command",
|
|
2442
2545
|
"release-passport-build-summary-path",
|
|
2443
2546
|
"release-passport-buildchain-self-kfd",
|
|
2547
|
+
"release-passport-evidence-command",
|
|
2548
|
+
"release-passport-evidence-jsons",
|
|
2444
2549
|
"release-passport-github-artifact-attestation-policy-jsons",
|
|
2445
2550
|
"release-passport-impact-json",
|
|
2446
2551
|
"release-passport-invariant-passport-command",
|
|
@@ -2468,7 +2573,7 @@
|
|
|
2468
2573
|
"transaction-state-path",
|
|
2469
2574
|
"verification-command"
|
|
2470
2575
|
],
|
|
2471
|
-
"inputCount":
|
|
2576
|
+
"inputCount": 76
|
|
2472
2577
|
},
|
|
2473
2578
|
{
|
|
2474
2579
|
"id": "report-buildchain-issue",
|
|
@@ -2644,6 +2749,10 @@
|
|
|
2644
2749
|
"id": "manual:auditable-demo",
|
|
2645
2750
|
"category": "manual"
|
|
2646
2751
|
},
|
|
2752
|
+
{
|
|
2753
|
+
"id": "manual:aws-us-elastic-runner-burst-plane",
|
|
2754
|
+
"category": "manual"
|
|
2755
|
+
},
|
|
2647
2756
|
{
|
|
2648
2757
|
"id": "manual:binary-distribution",
|
|
2649
2758
|
"category": "manual"
|
|
@@ -3878,6 +3987,91 @@
|
|
|
3878
3987
|
"path": "docs/cli.md",
|
|
3879
3988
|
"command": "buildchain npm dry-run"
|
|
3880
3989
|
},
|
|
3990
|
+
{
|
|
3991
|
+
"id": "paper-alpha",
|
|
3992
|
+
"path": "docs/cli.md",
|
|
3993
|
+
"command": "buildchain paper alpha --json"
|
|
3994
|
+
},
|
|
3995
|
+
{
|
|
3996
|
+
"id": "paper-bootstrap-npm",
|
|
3997
|
+
"path": "docs/cli.md",
|
|
3998
|
+
"command": "buildchain paper bootstrap npm"
|
|
3999
|
+
},
|
|
4000
|
+
{
|
|
4001
|
+
"id": "paper-bootstrap-npm",
|
|
4002
|
+
"path": "docs/publication-artifacts.md",
|
|
4003
|
+
"command": "buildchain paper bootstrap npm"
|
|
4004
|
+
},
|
|
4005
|
+
{
|
|
4006
|
+
"id": "paper-bootstrap-npm",
|
|
4007
|
+
"path": "docs/publication-artifacts.md",
|
|
4008
|
+
"command": "buildchain paper bootstrap npm"
|
|
4009
|
+
},
|
|
4010
|
+
{
|
|
4011
|
+
"id": "paper-build",
|
|
4012
|
+
"path": "docs/cli.md",
|
|
4013
|
+
"command": "buildchain paper build --json"
|
|
4014
|
+
},
|
|
4015
|
+
{
|
|
4016
|
+
"id": "paper-migrate",
|
|
4017
|
+
"path": "docs/cli.md",
|
|
4018
|
+
"command": "buildchain paper migrate --json"
|
|
4019
|
+
},
|
|
4020
|
+
{
|
|
4021
|
+
"id": "paper-preflight",
|
|
4022
|
+
"path": "docs/cli.md",
|
|
4023
|
+
"command": "buildchain paper preflight --offline"
|
|
4024
|
+
},
|
|
4025
|
+
{
|
|
4026
|
+
"id": "paper-preflight",
|
|
4027
|
+
"path": "docs/publication-artifacts.md",
|
|
4028
|
+
"command": "buildchain paper preflight --offline"
|
|
4029
|
+
},
|
|
4030
|
+
{
|
|
4031
|
+
"id": "paper-preflight",
|
|
4032
|
+
"path": "README.md",
|
|
4033
|
+
"command": "buildchain paper preflight --offline"
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
"id": "paper-resume",
|
|
4037
|
+
"path": "docs/cli.md",
|
|
4038
|
+
"command": "buildchain paper resume --json"
|
|
4039
|
+
},
|
|
4040
|
+
{
|
|
4041
|
+
"id": "paper-scaffold",
|
|
4042
|
+
"path": "docs/cli.md",
|
|
4043
|
+
"command": "buildchain paper scaffold --package"
|
|
4044
|
+
},
|
|
4045
|
+
{
|
|
4046
|
+
"id": "paper-scaffold",
|
|
4047
|
+
"path": "README.md",
|
|
4048
|
+
"command": "buildchain paper scaffold"
|
|
4049
|
+
},
|
|
4050
|
+
{
|
|
4051
|
+
"id": "paper-status",
|
|
4052
|
+
"path": "docs/cli.md",
|
|
4053
|
+
"command": "buildchain paper status --json"
|
|
4054
|
+
},
|
|
4055
|
+
{
|
|
4056
|
+
"id": "paper-status",
|
|
4057
|
+
"path": "docs/publication-artifacts.md",
|
|
4058
|
+
"command": "buildchain paper status --json"
|
|
4059
|
+
},
|
|
4060
|
+
{
|
|
4061
|
+
"id": "paper-status",
|
|
4062
|
+
"path": "README.md",
|
|
4063
|
+
"command": "buildchain paper status"
|
|
4064
|
+
},
|
|
4065
|
+
{
|
|
4066
|
+
"id": "paper",
|
|
4067
|
+
"path": "docs/cli.md",
|
|
4068
|
+
"command": "buildchain paper"
|
|
4069
|
+
},
|
|
4070
|
+
{
|
|
4071
|
+
"id": "paper",
|
|
4072
|
+
"path": "docs/publication-artifacts.md",
|
|
4073
|
+
"command": "buildchain paper"
|
|
4074
|
+
},
|
|
3881
4075
|
{
|
|
3882
4076
|
"id": "portable-cache",
|
|
3883
4077
|
"path": "docs/cli.md",
|
|
@@ -3923,6 +4117,16 @@
|
|
|
3923
4117
|
"path": "docs/publication-artifacts.md",
|
|
3924
4118
|
"command": "buildchain publication-artifact npm-package --json"
|
|
3925
4119
|
},
|
|
4120
|
+
{
|
|
4121
|
+
"id": "publication-artifact-reproducibility",
|
|
4122
|
+
"path": "docs/cli.md",
|
|
4123
|
+
"command": "buildchain publication-artifact reproducibility"
|
|
4124
|
+
},
|
|
4125
|
+
{
|
|
4126
|
+
"id": "publication-artifact-reproducibility",
|
|
4127
|
+
"path": "docs/publication-artifacts.md",
|
|
4128
|
+
"command": "buildchain publication-artifact reproducibility"
|
|
4129
|
+
},
|
|
3926
4130
|
{
|
|
3927
4131
|
"id": "publication-artifact",
|
|
3928
4132
|
"path": "docs/cli.md",
|
|
@@ -4003,6 +4207,11 @@
|
|
|
4003
4207
|
"path": "docs/release-propagation.md",
|
|
4004
4208
|
"command": "buildchain release-propagation write-lock"
|
|
4005
4209
|
},
|
|
4210
|
+
{
|
|
4211
|
+
"id": "release-propagation",
|
|
4212
|
+
"path": "docs/release-propagation.md",
|
|
4213
|
+
"command": "buildchain release-propagation receipt"
|
|
4214
|
+
},
|
|
4006
4215
|
{
|
|
4007
4216
|
"id": "release-transaction",
|
|
4008
4217
|
"path": "docs/cli.md",
|
|
@@ -4259,9 +4468,9 @@
|
|
|
4259
4468
|
"cliRegistryPath": "dist/site/cli-registry.json",
|
|
4260
4469
|
"workflowRegistryPath": "dist/site/workflow-registry.json",
|
|
4261
4470
|
"pageRegistryPath": "dist/site/page-registry.json",
|
|
4262
|
-
"cliRegistryDigest": "
|
|
4263
|
-
"workflowRegistryDigest": "
|
|
4264
|
-
"pageRegistryDigest": "
|
|
4471
|
+
"cliRegistryDigest": "d7e8b86baa70f65617f2cafe24bb448d1ce56c3221c8b5a96217fe892b080520",
|
|
4472
|
+
"workflowRegistryDigest": "9500a8099e10c5328b6e051445dba3c18cf0eb31eec3655b6554b111417f9abd",
|
|
4473
|
+
"pageRegistryDigest": "02f8a3c24c8fbb9840e04d0d5605d662a72c174e2f355078af8d8b24d9fe5fc9"
|
|
4265
4474
|
},
|
|
4266
4475
|
"comparison": {
|
|
4267
4476
|
"missingCliRegistry": [],
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-publication-release-registry",
|
|
4
|
-
"generatedAt": "2026-07-
|
|
5
|
-
"publishedAt": "2026-07-
|
|
4
|
+
"generatedAt": "2026-07-31T13:41:52.861Z",
|
|
5
|
+
"publishedAt": "2026-07-31T13:41:52.861Z",
|
|
6
6
|
"reproducible": true,
|
|
7
7
|
"timestampPolicy": "ci-injected",
|
|
8
8
|
"deterministicInputs": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"declared Buildchain surface manifest contract"
|
|
20
20
|
],
|
|
21
21
|
"sourceDateEpoch": "0",
|
|
22
|
-
"sourceRevision": "
|
|
22
|
+
"sourceRevision": "b8e84bcb51e131207896c426fb8e79fd0f46b5ac",
|
|
23
23
|
"timestampPolicyDetails": {
|
|
24
24
|
"contract": "kungfu-buildchain-surface-timestamp-policy",
|
|
25
25
|
"timestampFields": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"package": {
|
|
34
34
|
"name": "@kungfu-tech/buildchain",
|
|
35
|
-
"version": "3.0.
|
|
35
|
+
"version": "3.0.3-alpha.1",
|
|
36
36
|
"versionSource": "package.json#version"
|
|
37
37
|
},
|
|
38
38
|
"sourceKind": "package-site-bundle",
|
|
@@ -38,6 +38,9 @@
|
|
|
38
38
|
"./portable-dev-cache": "./packages/core/portable-dev-cache.js",
|
|
39
39
|
"./publication-artifact": "./packages/core/publication-artifact.js",
|
|
40
40
|
"./publication-package": "./packages/core/publication-package.js",
|
|
41
|
+
"./publication-reproducibility": "./packages/core/publication-reproducibility.js",
|
|
42
|
+
"./publication-sealed-bundle": "./packages/core/publication-sealed-bundle.js",
|
|
43
|
+
"./paper": "./packages/core/paper.js",
|
|
41
44
|
"./publication-authority": "./packages/core/publication-authority.js",
|
|
42
45
|
"./publication-control-plane-audit": "./packages/core/publication-control-plane-audit.js",
|
|
43
46
|
"./buildchain-publication-authority": "./packages/core/buildchain-publication-authority.js",
|