@kungfu-tech/buildchain 2.12.6 → 2.12.7-alpha.10
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/actions/promote-buildchain-ref/README.md +11 -3
- package/bin/buildchain.mjs +78 -0
- package/dist/site/agent-index.json +1 -0
- package/dist/site/artifact-schemas.json +1 -0
- package/dist/site/buildchain-contract.json +163 -38
- package/dist/site/buildchain-site.json +73 -17
- package/dist/site/capability-registry.json +6 -5
- package/dist/site/cli-registry.json +36 -0
- package/dist/site/controller-registry.json +121 -10
- package/dist/site/kfd-claims.json +305 -17
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +16 -2
- package/dist/site/node-api-registry.json +43 -4
- package/dist/site/page-registry.json +58 -11
- package/dist/site/public-surface-audit.json +212 -19
- package/dist/site/publication-authority-registry.json +778 -0
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +4 -0
- package/dist/site/site-manifest.json +15 -6
- package/dist/site/workflow-registry.json +173 -12
- package/docs/MAP.md +2 -1
- package/docs/publication-artifacts.md +25 -18
- package/docs/publication-authority.md +213 -0
- package/docs/release-governance.md +3 -1
- package/docs/shifu-gate-profiles.md +6 -0
- package/package.json +5 -1
- package/packages/core/buildchain-kfd-claims.js +5 -0
- package/packages/core/buildchain-publication-authority.js +80 -0
- package/packages/core/controller-evidence.js +8 -8
- package/packages/core/index.js +35 -0
- package/packages/core/publication-artifact-candidate.js +128 -0
- package/packages/core/publication-authority.js +764 -0
- package/packages/core/publication-control-plane-audit.js +135 -0
- package/scripts/assemble-publication-artifact-admission.mjs +190 -0
- package/scripts/assemble-self-publication-admission.mjs +183 -0
- package/scripts/audit-publication-control-plane.mjs +409 -0
- package/scripts/check-inventory.mjs +25 -2
- package/scripts/generate-site-bundle.mjs +16 -0
- package/scripts/publication-artifact-candidate.mjs +130 -0
- package/scripts/workflow-friction-report.mjs +13 -2
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
},
|
|
15
15
|
"runtimeContract": {
|
|
16
16
|
"contract": "kungfu-buildchain-runtime-contract-world",
|
|
17
|
-
"compatibilityDigest": "sha256:
|
|
17
|
+
"compatibilityDigest": "sha256:af162b86ab4506e9b5f1d3c59b41f3fd57fbad79ff4d749a7f12ff16460517f8",
|
|
18
18
|
"majorLine": "v2"
|
|
19
19
|
},
|
|
20
20
|
"publicSurfaceReverseAudit": {
|
|
21
21
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
22
22
|
"path": "dist/site/public-surface-audit.json",
|
|
23
23
|
"status": "passed",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "0201832d7d360c5549c51841e7b3f953743166369e84b53b40755db0cb2452fd",
|
|
25
25
|
"summary": {
|
|
26
|
-
"cliCommandCount":
|
|
27
|
-
"workflowCount":
|
|
26
|
+
"cliCommandCount": 79,
|
|
27
|
+
"workflowCount": 47,
|
|
28
28
|
"actionCount": 4,
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
29
|
+
"sitePageCount": 49,
|
|
30
|
+
"docCommandRefCount": 246,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -225,13 +225,13 @@
|
|
|
225
225
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
226
226
|
"path": "dist/site/public-surface-audit.json",
|
|
227
227
|
"status": "passed",
|
|
228
|
-
"sha256": "
|
|
228
|
+
"sha256": "0201832d7d360c5549c51841e7b3f953743166369e84b53b40755db0cb2452fd",
|
|
229
229
|
"summary": {
|
|
230
|
-
"cliCommandCount":
|
|
231
|
-
"workflowCount":
|
|
230
|
+
"cliCommandCount": 79,
|
|
231
|
+
"workflowCount": 47,
|
|
232
232
|
"actionCount": 4,
|
|
233
|
-
"sitePageCount":
|
|
234
|
-
"docCommandRefCount":
|
|
233
|
+
"sitePageCount": 49,
|
|
234
|
+
"docCommandRefCount": 246,
|
|
235
235
|
"failureCount": 0
|
|
236
236
|
},
|
|
237
237
|
"auditBoundary": {
|
|
@@ -473,6 +473,18 @@
|
|
|
473
473
|
"public": true,
|
|
474
474
|
"plane": "why"
|
|
475
475
|
},
|
|
476
|
+
{
|
|
477
|
+
"id": "doc:docs/publication-authority.md",
|
|
478
|
+
"name": "Sealed publication authority",
|
|
479
|
+
"kind": "documentation",
|
|
480
|
+
"sourcePath": "docs/publication-authority.md",
|
|
481
|
+
"evidencePath": "docs/publication-authority.md",
|
|
482
|
+
"availability": "shipped",
|
|
483
|
+
"visibility": "public",
|
|
484
|
+
"participantFacing": true,
|
|
485
|
+
"public": true,
|
|
486
|
+
"plane": "verify"
|
|
487
|
+
},
|
|
476
488
|
{
|
|
477
489
|
"id": "doc:docs/publish-transaction.md",
|
|
478
490
|
"name": "Publish transaction",
|
|
@@ -831,6 +843,39 @@
|
|
|
831
843
|
"participantFacing": true,
|
|
832
844
|
"public": true
|
|
833
845
|
},
|
|
846
|
+
{
|
|
847
|
+
"id": "schema:packages/core/publication-authority.js",
|
|
848
|
+
"name": "schema:packages/core/publication-authority.js",
|
|
849
|
+
"kind": "schema",
|
|
850
|
+
"sourcePath": "packages/core/publication-authority.js",
|
|
851
|
+
"evidencePath": "packages/core/publication-authority.js",
|
|
852
|
+
"availability": "shipped",
|
|
853
|
+
"visibility": "public",
|
|
854
|
+
"participantFacing": true,
|
|
855
|
+
"public": true
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"id": "schema:packages/core/publication-control-plane-audit.js",
|
|
859
|
+
"name": "schema:packages/core/publication-control-plane-audit.js",
|
|
860
|
+
"kind": "schema",
|
|
861
|
+
"sourcePath": "packages/core/publication-control-plane-audit.js",
|
|
862
|
+
"evidencePath": "packages/core/publication-control-plane-audit.js",
|
|
863
|
+
"availability": "shipped",
|
|
864
|
+
"visibility": "public",
|
|
865
|
+
"participantFacing": true,
|
|
866
|
+
"public": true
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"id": "schema:packages/core/buildchain-publication-authority.js",
|
|
870
|
+
"name": "schema:packages/core/buildchain-publication-authority.js",
|
|
871
|
+
"kind": "schema",
|
|
872
|
+
"sourcePath": "packages/core/buildchain-publication-authority.js",
|
|
873
|
+
"evidencePath": "packages/core/buildchain-publication-authority.js",
|
|
874
|
+
"availability": "shipped",
|
|
875
|
+
"visibility": "public",
|
|
876
|
+
"participantFacing": true,
|
|
877
|
+
"public": true
|
|
878
|
+
},
|
|
834
879
|
{
|
|
835
880
|
"id": "schema:packages/core/buildchain-kfd-claims.js",
|
|
836
881
|
"name": "schema:packages/core/buildchain-kfd-claims.js",
|
|
@@ -1150,6 +1195,42 @@
|
|
|
1150
1195
|
"public": true,
|
|
1151
1196
|
"packageExport": "./publication-package"
|
|
1152
1197
|
},
|
|
1198
|
+
{
|
|
1199
|
+
"id": "export:./publication-authority",
|
|
1200
|
+
"name": "@kungfu-tech/buildchain/publication-authority",
|
|
1201
|
+
"kind": "package-export",
|
|
1202
|
+
"sourcePath": "packages/core/publication-authority.js",
|
|
1203
|
+
"evidencePath": "packages/core/publication-authority.js",
|
|
1204
|
+
"availability": "shipped",
|
|
1205
|
+
"visibility": "public",
|
|
1206
|
+
"participantFacing": true,
|
|
1207
|
+
"public": true,
|
|
1208
|
+
"packageExport": "./publication-authority"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"id": "export:./publication-control-plane-audit",
|
|
1212
|
+
"name": "@kungfu-tech/buildchain/publication-control-plane-audit",
|
|
1213
|
+
"kind": "package-export",
|
|
1214
|
+
"sourcePath": "packages/core/publication-control-plane-audit.js",
|
|
1215
|
+
"evidencePath": "packages/core/publication-control-plane-audit.js",
|
|
1216
|
+
"availability": "shipped",
|
|
1217
|
+
"visibility": "public",
|
|
1218
|
+
"participantFacing": true,
|
|
1219
|
+
"public": true,
|
|
1220
|
+
"packageExport": "./publication-control-plane-audit"
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"id": "export:./buildchain-publication-authority",
|
|
1224
|
+
"name": "@kungfu-tech/buildchain/buildchain-publication-authority",
|
|
1225
|
+
"kind": "package-export",
|
|
1226
|
+
"sourcePath": "packages/core/buildchain-publication-authority.js",
|
|
1227
|
+
"evidencePath": "packages/core/buildchain-publication-authority.js",
|
|
1228
|
+
"availability": "shipped",
|
|
1229
|
+
"visibility": "public",
|
|
1230
|
+
"participantFacing": true,
|
|
1231
|
+
"public": true,
|
|
1232
|
+
"packageExport": "./buildchain-publication-authority"
|
|
1233
|
+
},
|
|
1153
1234
|
{
|
|
1154
1235
|
"id": "export:./kfd-gate",
|
|
1155
1236
|
"name": "@kungfu-tech/buildchain/kfd-gate",
|
|
@@ -1346,6 +1427,17 @@
|
|
|
1346
1427
|
"participantFacing": true,
|
|
1347
1428
|
"public": true
|
|
1348
1429
|
},
|
|
1430
|
+
{
|
|
1431
|
+
"id": "site:dist/site/publication-authority-registry.json",
|
|
1432
|
+
"name": "site:dist/site/publication-authority-registry.json",
|
|
1433
|
+
"kind": "site-consumption-contract",
|
|
1434
|
+
"sourcePath": "dist/site/publication-authority-registry.json",
|
|
1435
|
+
"evidencePath": "dist/site/publication-authority-registry.json",
|
|
1436
|
+
"availability": "shipped",
|
|
1437
|
+
"visibility": "public",
|
|
1438
|
+
"participantFacing": true,
|
|
1439
|
+
"public": true
|
|
1440
|
+
},
|
|
1349
1441
|
{
|
|
1350
1442
|
"id": "site:dist/site/public-surface-audit.json",
|
|
1351
1443
|
"name": "site:dist/site/public-surface-audit.json",
|
|
@@ -1447,6 +1539,18 @@
|
|
|
1447
1539
|
}
|
|
1448
1540
|
],
|
|
1449
1541
|
"reverseEnumeratedSurfaces": [
|
|
1542
|
+
{
|
|
1543
|
+
"id": "cli:audit",
|
|
1544
|
+
"name": "buildchain audit publication-control-plane --repository <owner/repo> --branch <protected-branch>",
|
|
1545
|
+
"kind": "cli-command",
|
|
1546
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
1547
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
1548
|
+
"availability": "shipped",
|
|
1549
|
+
"visibility": "public",
|
|
1550
|
+
"participantFacing": true,
|
|
1551
|
+
"public": true,
|
|
1552
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
1553
|
+
},
|
|
1450
1554
|
{
|
|
1451
1555
|
"id": "cli:badges",
|
|
1452
1556
|
"name": "buildchain badges",
|
|
@@ -1531,6 +1635,18 @@
|
|
|
1531
1635
|
"public": true,
|
|
1532
1636
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
1533
1637
|
},
|
|
1638
|
+
{
|
|
1639
|
+
"id": "cli:create",
|
|
1640
|
+
"name": "buildchain create publication-admission --input-json <file-or-json> [--output <file>] [--json]",
|
|
1641
|
+
"kind": "cli-command",
|
|
1642
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
1643
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
1644
|
+
"availability": "shipped",
|
|
1645
|
+
"visibility": "public",
|
|
1646
|
+
"participantFacing": true,
|
|
1647
|
+
"public": true,
|
|
1648
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
1649
|
+
},
|
|
1534
1650
|
{
|
|
1535
1651
|
"id": "cli:diagnostics",
|
|
1536
1652
|
"name": "buildchain diagnostics",
|
|
@@ -2323,6 +2439,18 @@
|
|
|
2323
2439
|
"public": true,
|
|
2324
2440
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2325
2441
|
},
|
|
2442
|
+
{
|
|
2443
|
+
"id": "cli:verify-publication-admission",
|
|
2444
|
+
"name": "buildchain verify publication-admission <file-or-json>",
|
|
2445
|
+
"kind": "cli-command",
|
|
2446
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2447
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2448
|
+
"availability": "shipped",
|
|
2449
|
+
"visibility": "public",
|
|
2450
|
+
"participantFacing": true,
|
|
2451
|
+
"public": true,
|
|
2452
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2453
|
+
},
|
|
2326
2454
|
{
|
|
2327
2455
|
"id": "cli:verify-release-passport",
|
|
2328
2456
|
"name": "buildchain verify release-passport <file-or-url> [--json]",
|
|
@@ -2359,6 +2487,30 @@
|
|
|
2359
2487
|
"public": true,
|
|
2360
2488
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2361
2489
|
},
|
|
2490
|
+
{
|
|
2491
|
+
"id": "workflow:.binary-release-assets",
|
|
2492
|
+
"name": "workflow:.binary-release-assets",
|
|
2493
|
+
"kind": "workflow",
|
|
2494
|
+
"sourcePath": ".github/workflows/.binary-release-assets.yml",
|
|
2495
|
+
"evidencePath": ".github/workflows/.binary-release-assets.yml",
|
|
2496
|
+
"availability": "shipped",
|
|
2497
|
+
"visibility": "public",
|
|
2498
|
+
"participantFacing": true,
|
|
2499
|
+
"public": true,
|
|
2500
|
+
"inputCount": 9,
|
|
2501
|
+
"inputs": [
|
|
2502
|
+
"buildchain-ref",
|
|
2503
|
+
"buildchain-repository",
|
|
2504
|
+
"evidence-run-id",
|
|
2505
|
+
"publication-admission-json",
|
|
2506
|
+
"publication-control-plane-audit-json",
|
|
2507
|
+
"publication-expected-json",
|
|
2508
|
+
"publication-runner-provenance-json",
|
|
2509
|
+
"publication-used-nonces-json",
|
|
2510
|
+
"release-tag"
|
|
2511
|
+
],
|
|
2512
|
+
"reverseAuditSource": ".github/workflows"
|
|
2513
|
+
},
|
|
2362
2514
|
{
|
|
2363
2515
|
"id": "workflow:.build",
|
|
2364
2516
|
"name": "workflow:.build",
|
|
@@ -2480,6 +2632,49 @@
|
|
|
2480
2632
|
],
|
|
2481
2633
|
"reverseAuditSource": ".github/workflows"
|
|
2482
2634
|
},
|
|
2635
|
+
{
|
|
2636
|
+
"id": "workflow:.publication-authority",
|
|
2637
|
+
"name": "workflow:.publication-authority",
|
|
2638
|
+
"kind": "workflow",
|
|
2639
|
+
"sourcePath": ".github/workflows/.publication-authority.yml",
|
|
2640
|
+
"evidencePath": ".github/workflows/.publication-authority.yml",
|
|
2641
|
+
"availability": "shipped",
|
|
2642
|
+
"visibility": "public",
|
|
2643
|
+
"participantFacing": true,
|
|
2644
|
+
"public": true,
|
|
2645
|
+
"inputCount": 28,
|
|
2646
|
+
"inputs": [
|
|
2647
|
+
"admission-json",
|
|
2648
|
+
"authority-workflow-path",
|
|
2649
|
+
"auto-admission",
|
|
2650
|
+
"auto-admission-kind",
|
|
2651
|
+
"buildchain-ref",
|
|
2652
|
+
"buildchain-repository",
|
|
2653
|
+
"control-plane-audit-json",
|
|
2654
|
+
"dry-run",
|
|
2655
|
+
"evidence-controller-artifact",
|
|
2656
|
+
"evidence-manifest-pattern",
|
|
2657
|
+
"evidence-passport-artifact",
|
|
2658
|
+
"evidence-payload-pattern",
|
|
2659
|
+
"evidence-publication-artifact",
|
|
2660
|
+
"evidence-repository",
|
|
2661
|
+
"evidence-run-id",
|
|
2662
|
+
"evidence-summary-artifact",
|
|
2663
|
+
"expected-json",
|
|
2664
|
+
"gate-aggregate-json",
|
|
2665
|
+
"package-name",
|
|
2666
|
+
"product",
|
|
2667
|
+
"publication-target",
|
|
2668
|
+
"publication-version",
|
|
2669
|
+
"publisher-workflow-path",
|
|
2670
|
+
"required-status-check",
|
|
2671
|
+
"runner-provenance-json",
|
|
2672
|
+
"source-sha",
|
|
2673
|
+
"target-ref",
|
|
2674
|
+
"used-nonces-json"
|
|
2675
|
+
],
|
|
2676
|
+
"reverseAuditSource": ".github/workflows"
|
|
2677
|
+
},
|
|
2483
2678
|
{
|
|
2484
2679
|
"id": "workflow:.release-docker",
|
|
2485
2680
|
"name": "workflow:.release-docker",
|
|
@@ -2707,7 +2902,7 @@
|
|
|
2707
2902
|
"visibility": "public",
|
|
2708
2903
|
"participantFacing": true,
|
|
2709
2904
|
"public": true,
|
|
2710
|
-
"inputCount":
|
|
2905
|
+
"inputCount": 38,
|
|
2711
2906
|
"inputs": [
|
|
2712
2907
|
"artifact-path",
|
|
2713
2908
|
"aws-region",
|
|
@@ -2736,6 +2931,11 @@
|
|
|
2736
2931
|
"production-release-on-main",
|
|
2737
2932
|
"production-release-pr-mode",
|
|
2738
2933
|
"production-release-pr-token",
|
|
2934
|
+
"publication-admission-json",
|
|
2935
|
+
"publication-control-plane-audit-json",
|
|
2936
|
+
"publication-expected-json",
|
|
2937
|
+
"publication-runner-provenance-json",
|
|
2938
|
+
"publication-used-nonces-json",
|
|
2739
2939
|
"release-feedback-actor-privacy",
|
|
2740
2940
|
"staging-apply",
|
|
2741
2941
|
"staging-aws-role-arn",
|
|
@@ -2797,6 +2997,20 @@
|
|
|
2797
2997
|
"inputs": [],
|
|
2798
2998
|
"reverseAuditSource": ".github/workflows"
|
|
2799
2999
|
},
|
|
3000
|
+
{
|
|
3001
|
+
"id": "workflow:binary-release-assets",
|
|
3002
|
+
"name": "workflow:binary-release-assets",
|
|
3003
|
+
"kind": "workflow",
|
|
3004
|
+
"sourcePath": ".github/workflows/binary-release-assets.yml",
|
|
3005
|
+
"evidencePath": ".github/workflows/binary-release-assets.yml",
|
|
3006
|
+
"availability": "shipped",
|
|
3007
|
+
"visibility": "public",
|
|
3008
|
+
"participantFacing": true,
|
|
3009
|
+
"public": true,
|
|
3010
|
+
"inputCount": 0,
|
|
3011
|
+
"inputs": [],
|
|
3012
|
+
"reverseAuditSource": ".github/workflows"
|
|
3013
|
+
},
|
|
2800
3014
|
{
|
|
2801
3015
|
"id": "workflow:build-surface-fixture",
|
|
2802
3016
|
"name": "workflow:build-surface-fixture",
|
|
@@ -3092,6 +3306,46 @@
|
|
|
3092
3306
|
"inputs": [],
|
|
3093
3307
|
"reverseAuditSource": ".github/workflows"
|
|
3094
3308
|
},
|
|
3309
|
+
{
|
|
3310
|
+
"id": "workflow:paper-release-sealed",
|
|
3311
|
+
"name": "workflow:paper-release-sealed",
|
|
3312
|
+
"kind": "workflow",
|
|
3313
|
+
"sourcePath": ".github/workflows/paper-release-sealed.yml",
|
|
3314
|
+
"evidencePath": ".github/workflows/paper-release-sealed.yml",
|
|
3315
|
+
"availability": "shipped",
|
|
3316
|
+
"visibility": "public",
|
|
3317
|
+
"participantFacing": true,
|
|
3318
|
+
"public": true,
|
|
3319
|
+
"inputCount": 25,
|
|
3320
|
+
"inputs": [
|
|
3321
|
+
"artifact-name",
|
|
3322
|
+
"artifact-paths",
|
|
3323
|
+
"artifact-retention-days",
|
|
3324
|
+
"branch-protection-bypass-apps",
|
|
3325
|
+
"branch-protection-bypass-teams",
|
|
3326
|
+
"branch-protection-bypass-users",
|
|
3327
|
+
"buildchain-contract-lock-path",
|
|
3328
|
+
"buildchain-ref",
|
|
3329
|
+
"buildchain-repository",
|
|
3330
|
+
"dry-run",
|
|
3331
|
+
"github-release",
|
|
3332
|
+
"github-release-notes",
|
|
3333
|
+
"github-release-title",
|
|
3334
|
+
"package-name",
|
|
3335
|
+
"publish-dist-tag",
|
|
3336
|
+
"publisher-workflow-path",
|
|
3337
|
+
"release-passport-impact-json",
|
|
3338
|
+
"release-passport-output-dir",
|
|
3339
|
+
"release-passport-product-name",
|
|
3340
|
+
"required-status-check",
|
|
3341
|
+
"target-ref",
|
|
3342
|
+
"target-sha",
|
|
3343
|
+
"toolchain-type",
|
|
3344
|
+
"verify-command",
|
|
3345
|
+
"working-directory"
|
|
3346
|
+
],
|
|
3347
|
+
"reverseAuditSource": ".github/workflows"
|
|
3348
|
+
},
|
|
3095
3349
|
{
|
|
3096
3350
|
"id": "workflow:paper-release",
|
|
3097
3351
|
"name": "workflow:paper-release",
|
|
@@ -3102,7 +3356,7 @@
|
|
|
3102
3356
|
"visibility": "public",
|
|
3103
3357
|
"participantFacing": true,
|
|
3104
3358
|
"public": true,
|
|
3105
|
-
"inputCount":
|
|
3359
|
+
"inputCount": 37,
|
|
3106
3360
|
"inputs": [
|
|
3107
3361
|
"artifact-name",
|
|
3108
3362
|
"artifact-retention-days",
|
|
@@ -3121,6 +3375,11 @@
|
|
|
3121
3375
|
"github-release-title",
|
|
3122
3376
|
"node-version",
|
|
3123
3377
|
"package-name",
|
|
3378
|
+
"publication-admission-json",
|
|
3379
|
+
"publication-control-plane-audit-json",
|
|
3380
|
+
"publication-expected-json",
|
|
3381
|
+
"publication-runner-provenance-json",
|
|
3382
|
+
"publication-used-nonces-json",
|
|
3124
3383
|
"publish-dist-tag",
|
|
3125
3384
|
"publish-package-set-order",
|
|
3126
3385
|
"release-passport-impact-json",
|
|
@@ -3214,7 +3473,7 @@
|
|
|
3214
3473
|
"visibility": "public",
|
|
3215
3474
|
"participantFacing": true,
|
|
3216
3475
|
"public": true,
|
|
3217
|
-
"inputCount":
|
|
3476
|
+
"inputCount": 21,
|
|
3218
3477
|
"inputs": [
|
|
3219
3478
|
"artifact-name",
|
|
3220
3479
|
"artifact-paths",
|
|
@@ -3226,7 +3485,11 @@
|
|
|
3226
3485
|
"buildchain-ref",
|
|
3227
3486
|
"buildchain-repository",
|
|
3228
3487
|
"node-version",
|
|
3488
|
+
"package-name",
|
|
3489
|
+
"prepare-paper-package",
|
|
3490
|
+
"publish-dist-tag",
|
|
3229
3491
|
"setup-node",
|
|
3492
|
+
"target-ref",
|
|
3230
3493
|
"toolchain-command",
|
|
3231
3494
|
"toolchain-digest",
|
|
3232
3495
|
"toolchain-image",
|
|
@@ -3246,7 +3509,7 @@
|
|
|
3246
3509
|
"visibility": "public",
|
|
3247
3510
|
"participantFacing": true,
|
|
3248
3511
|
"public": true,
|
|
3249
|
-
"inputCount":
|
|
3512
|
+
"inputCount": 55,
|
|
3250
3513
|
"inputs": [
|
|
3251
3514
|
"allow-repository",
|
|
3252
3515
|
"artifact-name",
|
|
@@ -3265,6 +3528,17 @@
|
|
|
3265
3528
|
"github-release-notes",
|
|
3266
3529
|
"github-release-title",
|
|
3267
3530
|
"package-manager",
|
|
3531
|
+
"publication-admission-json",
|
|
3532
|
+
"publication-auto-admission",
|
|
3533
|
+
"publication-control-plane-audit-json",
|
|
3534
|
+
"publication-expected-json",
|
|
3535
|
+
"publication-gate-aggregate-json",
|
|
3536
|
+
"publication-package-name",
|
|
3537
|
+
"publication-product",
|
|
3538
|
+
"publication-publisher-workflow-path",
|
|
3539
|
+
"publication-runner-provenance-json",
|
|
3540
|
+
"publication-target",
|
|
3541
|
+
"publication-used-nonces-json",
|
|
3268
3542
|
"publish-artifact-kind",
|
|
3269
3543
|
"publish-command",
|
|
3270
3544
|
"publish-dist-tag",
|
|
@@ -3447,16 +3721,18 @@
|
|
|
3447
3721
|
"visibility": "public",
|
|
3448
3722
|
"participantFacing": true,
|
|
3449
3723
|
"public": true,
|
|
3450
|
-
"inputCount":
|
|
3724
|
+
"inputCount": 54,
|
|
3451
3725
|
"inputs": [
|
|
3452
3726
|
"allow-repository",
|
|
3453
3727
|
"branch-protection-bypass-apps",
|
|
3454
3728
|
"branch-protection-bypass-teams",
|
|
3455
3729
|
"branch-protection-bypass-users",
|
|
3456
3730
|
"dry-run",
|
|
3731
|
+
"expected-publication-version",
|
|
3457
3732
|
"generated-ref-update-token",
|
|
3458
3733
|
"generated-status-check-token",
|
|
3459
3734
|
"github-release",
|
|
3735
|
+
"github-release-artifact-paths",
|
|
3460
3736
|
"github-release-notes",
|
|
3461
3737
|
"github-release-title",
|
|
3462
3738
|
"promote-only-release-candidate",
|
|
@@ -3999,6 +4275,18 @@
|
|
|
3999
4275
|
"public": true,
|
|
4000
4276
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
4001
4277
|
},
|
|
4278
|
+
{
|
|
4279
|
+
"id": "site-page:manual:publication-authority",
|
|
4280
|
+
"name": "site-page:manual:publication-authority",
|
|
4281
|
+
"kind": "site-page",
|
|
4282
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
4283
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
4284
|
+
"availability": "shipped",
|
|
4285
|
+
"visibility": "public",
|
|
4286
|
+
"participantFacing": true,
|
|
4287
|
+
"public": true,
|
|
4288
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
4289
|
+
},
|
|
4002
4290
|
{
|
|
4003
4291
|
"id": "site-page:manual:publish-transaction",
|
|
4004
4292
|
"name": "site-page:manual:publish-transaction",
|
|
@@ -4296,6 +4584,6 @@
|
|
|
4296
4584
|
}
|
|
4297
4585
|
}
|
|
4298
4586
|
],
|
|
4299
|
-
"publicSurfaceCount":
|
|
4587
|
+
"publicSurfaceCount": 296
|
|
4300
4588
|
}
|
|
4301
4589
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"title": "Buildchain documentation map",
|
|
10
10
|
"path": "docs/MAP.md",
|
|
11
11
|
"plane": "use",
|
|
12
|
-
"digest": "sha256:
|
|
12
|
+
"digest": "sha256:91dc800bafc31bc149680c86272827936c94e0f025d547bbabc10d58fe5f128e",
|
|
13
13
|
"capabilityGroup": "getting-started",
|
|
14
14
|
"audience": [
|
|
15
15
|
"agent",
|
|
@@ -60,6 +60,20 @@
|
|
|
60
60
|
"maturity": "draft",
|
|
61
61
|
"order": 205
|
|
62
62
|
},
|
|
63
|
+
{
|
|
64
|
+
"id": "publication-authority",
|
|
65
|
+
"title": "Sealed publication authority",
|
|
66
|
+
"path": "docs/publication-authority.md",
|
|
67
|
+
"plane": "verify",
|
|
68
|
+
"digest": "sha256:06ba05f9d8a2685a0896334b6013a97c45b7d71163cf6898e5a6274baf7f0296",
|
|
69
|
+
"capabilityGroup": "release-passport-trust",
|
|
70
|
+
"audience": [
|
|
71
|
+
"release-operator",
|
|
72
|
+
"agent"
|
|
73
|
+
],
|
|
74
|
+
"maturity": "preview",
|
|
75
|
+
"order": 105
|
|
76
|
+
},
|
|
63
77
|
{
|
|
64
78
|
"id": "release-candidate",
|
|
65
79
|
"title": "Release Candidate Passport",
|
|
@@ -315,7 +329,7 @@
|
|
|
315
329
|
"title": "Release governance",
|
|
316
330
|
"path": "docs/release-governance.md",
|
|
317
331
|
"plane": "why",
|
|
318
|
-
"digest": "sha256:
|
|
332
|
+
"digest": "sha256:cce9f80add3c746fe28d8ebf5afb809348694741cb75d19154ed3057a9374c0d",
|
|
319
333
|
"capabilityGroup": "governance-versioning",
|
|
320
334
|
"audience": [
|
|
321
335
|
"maintainer",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"specifier": "@kungfu-tech/buildchain",
|
|
9
9
|
"export": ".",
|
|
10
10
|
"target": "./packages/core/index.js",
|
|
11
|
-
"digest": "sha256:
|
|
11
|
+
"digest": "sha256:07013ab68f7947772ec5bee502f97bae4b2c2f87235188f2f28f6fbb2dc5cb23",
|
|
12
12
|
"summary": "Root toolkit export for Buildchain's public Node API.",
|
|
13
13
|
"capabilityGroup": "api-cli-reference",
|
|
14
14
|
"audience": [
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"specifier": "@kungfu-tech/buildchain/core",
|
|
48
48
|
"export": "./core",
|
|
49
49
|
"target": "./packages/core/index.js",
|
|
50
|
-
"digest": "sha256:
|
|
50
|
+
"digest": "sha256:07013ab68f7947772ec5bee502f97bae4b2c2f87235188f2f28f6fbb2dc5cb23",
|
|
51
51
|
"summary": "Alias for the root public toolkit export.",
|
|
52
52
|
"capabilityGroup": "api-cli-reference",
|
|
53
53
|
"audience": [
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"specifier": "@kungfu-tech/buildchain/controller-evidence",
|
|
87
87
|
"export": "./controller-evidence",
|
|
88
88
|
"target": "./packages/core/controller-evidence.js",
|
|
89
|
-
"digest": "sha256:
|
|
89
|
+
"digest": "sha256:3c9cf557ee0e2e4376335bb7d0e61b6e8c9a1d8699962dd8a1e7adc529e13f89",
|
|
90
90
|
"summary": "Project-independent controller descriptors, source/runtime-bound plans, receipts, aggregates, and validation APIs.",
|
|
91
91
|
"capabilityGroup": "reusable-build",
|
|
92
92
|
"audience": [
|
|
@@ -238,6 +238,45 @@
|
|
|
238
238
|
],
|
|
239
239
|
"maturity": "stable"
|
|
240
240
|
},
|
|
241
|
+
{
|
|
242
|
+
"specifier": "@kungfu-tech/buildchain/publication-authority",
|
|
243
|
+
"export": "./publication-authority",
|
|
244
|
+
"target": "./packages/core/publication-authority.js",
|
|
245
|
+
"digest": "sha256:3c95bd9d7abc5048fb7b456e411c08f2875fe1cf65940fa3e50689acb6781a0c",
|
|
246
|
+
"summary": "Sealed publication authority registry, runner provenance, control-plane audit, admission, and independent verification APIs.",
|
|
247
|
+
"capabilityGroup": "release-passport-trust",
|
|
248
|
+
"audience": [
|
|
249
|
+
"developer",
|
|
250
|
+
"agent"
|
|
251
|
+
],
|
|
252
|
+
"maturity": "stable"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"specifier": "@kungfu-tech/buildchain/publication-control-plane-audit",
|
|
256
|
+
"export": "./publication-control-plane-audit",
|
|
257
|
+
"target": "./packages/core/publication-control-plane-audit.js",
|
|
258
|
+
"digest": "sha256:58baa05440b86259812f370aa9645ba26a4df8e986dd57598412b479589286dc",
|
|
259
|
+
"summary": "Read-only publication control-plane snapshot evaluation APIs.",
|
|
260
|
+
"capabilityGroup": "release-passport-trust",
|
|
261
|
+
"audience": [
|
|
262
|
+
"developer",
|
|
263
|
+
"agent"
|
|
264
|
+
],
|
|
265
|
+
"maturity": "stable"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"specifier": "@kungfu-tech/buildchain/buildchain-publication-authority",
|
|
269
|
+
"export": "./buildchain-publication-authority",
|
|
270
|
+
"target": "./packages/core/buildchain-publication-authority.js",
|
|
271
|
+
"digest": "sha256:48c5f4cb70cacb75e85b579db686a09f56d1372b8bdfeba112a3ade01524d3f5",
|
|
272
|
+
"summary": "Buildchain-owned closed-world publication authority descriptor registry.",
|
|
273
|
+
"capabilityGroup": "release-passport-trust",
|
|
274
|
+
"audience": [
|
|
275
|
+
"developer",
|
|
276
|
+
"agent"
|
|
277
|
+
],
|
|
278
|
+
"maturity": "stable"
|
|
279
|
+
},
|
|
241
280
|
{
|
|
242
281
|
"specifier": "@kungfu-tech/buildchain/kfd-gate",
|
|
243
282
|
"export": "./kfd-gate",
|
|
@@ -320,7 +359,7 @@
|
|
|
320
359
|
"specifier": "@kungfu-tech/buildchain/buildchain-kfd-claims",
|
|
321
360
|
"export": "./buildchain-kfd-claims",
|
|
322
361
|
"target": "./packages/core/buildchain-kfd-claims.js",
|
|
323
|
-
"digest": "sha256:
|
|
362
|
+
"digest": "sha256:e9178d4fa1d5aba1063aacf3f0b4fa0d9523c2379824386ac65a21c8262ac0b4",
|
|
324
363
|
"summary": "Buildchain self KFD claim registry, witnesses, and public claim APIs.",
|
|
325
364
|
"capabilityGroup": "kfd-trust",
|
|
326
365
|
"audience": [
|