@kungfu-tech/buildchain 2.12.6 → 2.12.7-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/actions/promote-buildchain-ref/README.md +7 -3
  2. package/bin/buildchain.mjs +78 -0
  3. package/dist/site/agent-index.json +1 -0
  4. package/dist/site/artifact-schemas.json +1 -0
  5. package/dist/site/buildchain-contract.json +137 -37
  6. package/dist/site/buildchain-site.json +68 -12
  7. package/dist/site/capability-registry.json +6 -5
  8. package/dist/site/cli-registry.json +36 -0
  9. package/dist/site/controller-registry.json +104 -13
  10. package/dist/site/kfd-claims.json +251 -15
  11. package/dist/site/kfd-upstream-aggregate.json +1 -1
  12. package/dist/site/manual-registry.json +15 -1
  13. package/dist/site/node-api-registry.json +43 -4
  14. package/dist/site/page-registry.json +54 -7
  15. package/dist/site/public-surface-audit.json +150 -17
  16. package/dist/site/publication-authority-registry.json +754 -0
  17. package/dist/site/publication-registry.json +4 -4
  18. package/dist/site/release-provenance.json +4 -0
  19. package/dist/site/site-manifest.json +14 -5
  20. package/dist/site/workflow-registry.json +108 -10
  21. package/docs/MAP.md +2 -1
  22. package/docs/publication-artifacts.md +12 -10
  23. package/docs/publication-authority.md +204 -0
  24. package/package.json +5 -1
  25. package/packages/core/buildchain-kfd-claims.js +5 -0
  26. package/packages/core/buildchain-publication-authority.js +79 -0
  27. package/packages/core/controller-evidence.js +7 -7
  28. package/packages/core/index.js +28 -0
  29. package/packages/core/publication-authority.js +725 -0
  30. package/packages/core/publication-control-plane-audit.js +133 -0
  31. package/scripts/assemble-self-publication-admission.mjs +182 -0
  32. package/scripts/audit-publication-control-plane.mjs +406 -0
  33. package/scripts/check-inventory.mjs +20 -2
  34. package/scripts/generate-site-bundle.mjs +16 -0
@@ -897,6 +897,26 @@
897
897
  "classification": "redacted",
898
898
  "source": "workflow-call-input"
899
899
  },
900
+ "publication-admission-json": {
901
+ "classification": "digest-only",
902
+ "source": "workflow-call-input"
903
+ },
904
+ "publication-control-plane-audit-json": {
905
+ "classification": "digest-only",
906
+ "source": "workflow-call-input"
907
+ },
908
+ "publication-expected-json": {
909
+ "classification": "digest-only",
910
+ "source": "workflow-call-input"
911
+ },
912
+ "publication-runner-provenance-json": {
913
+ "classification": "digest-only",
914
+ "source": "workflow-call-input"
915
+ },
916
+ "publication-used-nonces-json": {
917
+ "classification": "digest-only",
918
+ "source": "workflow-call-input"
919
+ },
900
920
  "release-feedback-actor-privacy": {
901
921
  "classification": "included",
902
922
  "source": "workflow-call-input"
@@ -940,6 +960,10 @@
940
960
  "id": "verify",
941
961
  "required": false
942
962
  },
963
+ {
964
+ "id": "publication-authority",
965
+ "required": false
966
+ },
943
967
  {
944
968
  "id": "apply",
945
969
  "required": false
@@ -953,14 +977,15 @@
953
977
  "web-build",
954
978
  "web-verify",
955
979
  "deployment-plan",
956
- "deployment-apply"
980
+ "deployment-apply",
981
+ "publication-authority"
957
982
  ],
958
983
  "evidence": [
959
984
  "web-surface-plan",
960
985
  "controller-receipt"
961
986
  ]
962
987
  },
963
- "digest": "sha256:09b4d98c400fb12a87b701eedaaefbf4af2fd0c1fb19b8b44c6219c596430e80"
988
+ "digest": "sha256:f08c4970f33c059f8e0b43110f0063172fb1015ac914bdb0c8e9646692fb9f06"
964
989
  },
965
990
  {
966
991
  "schemaVersion": 1,
@@ -1087,10 +1112,6 @@
1087
1112
  "path": ".github/workflows/paper-release.yml"
1088
1113
  },
1089
1114
  "inputs": {
1090
- "BUILDCHAIN_PROMOTION_TOKEN": {
1091
- "classification": "redacted",
1092
- "source": "workflow-call-secret"
1093
- },
1094
1115
  "artifact-name": {
1095
1116
  "classification": "included",
1096
1117
  "source": "workflow-call-input"
@@ -1159,6 +1180,26 @@
1159
1180
  "classification": "included",
1160
1181
  "source": "workflow-call-input"
1161
1182
  },
1183
+ "publication-admission-json": {
1184
+ "classification": "digest-only",
1185
+ "source": "workflow-call-input"
1186
+ },
1187
+ "publication-control-plane-audit-json": {
1188
+ "classification": "digest-only",
1189
+ "source": "workflow-call-input"
1190
+ },
1191
+ "publication-expected-json": {
1192
+ "classification": "digest-only",
1193
+ "source": "workflow-call-input"
1194
+ },
1195
+ "publication-runner-provenance-json": {
1196
+ "classification": "digest-only",
1197
+ "source": "workflow-call-input"
1198
+ },
1199
+ "publication-used-nonces-json": {
1200
+ "classification": "digest-only",
1201
+ "source": "workflow-call-input"
1202
+ },
1162
1203
  "publish-dist-tag": {
1163
1204
  "classification": "included",
1164
1205
  "source": "workflow-call-input"
@@ -1238,6 +1279,10 @@
1238
1279
  "id": "collect",
1239
1280
  "required": true
1240
1281
  },
1282
+ {
1283
+ "id": "publication-authority",
1284
+ "required": true
1285
+ },
1241
1286
  {
1242
1287
  "id": "publish",
1243
1288
  "required": true
@@ -1254,6 +1299,7 @@
1254
1299
  "capabilities": [
1255
1300
  "publication-build",
1256
1301
  "artifact-admission",
1302
+ "publication-authority",
1257
1303
  "release-publish",
1258
1304
  "release-passport"
1259
1305
  ],
@@ -1263,7 +1309,7 @@
1263
1309
  "controller-receipt"
1264
1310
  ]
1265
1311
  },
1266
- "digest": "sha256:726e94ed5353240289700df7f436e9aa4041783738757dfbdef1a6825acb6bfb"
1312
+ "digest": "sha256:0613ea545fe2d630f34e665c8e6fe99df3f5333d75051a7176e9cf991e494f59"
1267
1313
  },
1268
1314
  {
1269
1315
  "schemaVersion": 1,
@@ -1287,10 +1333,6 @@
1287
1333
  "classification": "redacted",
1288
1334
  "source": "workflow-call-secret"
1289
1335
  },
1290
- "BUILDCHAIN_PROMOTION_TOKEN": {
1291
- "classification": "redacted",
1292
- "source": "workflow-call-secret"
1293
- },
1294
1336
  "allow-repository": {
1295
1337
  "classification": "included",
1296
1338
  "source": "workflow-call-input"
@@ -1371,6 +1413,50 @@
1371
1413
  "classification": "included",
1372
1414
  "source": "workflow-call-input"
1373
1415
  },
1416
+ "publication-admission-json": {
1417
+ "classification": "digest-only",
1418
+ "source": "workflow-call-input"
1419
+ },
1420
+ "publication-auto-admission": {
1421
+ "classification": "included",
1422
+ "source": "workflow-call-input"
1423
+ },
1424
+ "publication-control-plane-audit-json": {
1425
+ "classification": "digest-only",
1426
+ "source": "workflow-call-input"
1427
+ },
1428
+ "publication-expected-json": {
1429
+ "classification": "digest-only",
1430
+ "source": "workflow-call-input"
1431
+ },
1432
+ "publication-gate-aggregate-json": {
1433
+ "classification": "digest-only",
1434
+ "source": "workflow-call-input"
1435
+ },
1436
+ "publication-package-name": {
1437
+ "classification": "included",
1438
+ "source": "workflow-call-input"
1439
+ },
1440
+ "publication-product": {
1441
+ "classification": "included",
1442
+ "source": "workflow-call-input"
1443
+ },
1444
+ "publication-publisher-workflow-path": {
1445
+ "classification": "digest-only",
1446
+ "source": "workflow-call-input"
1447
+ },
1448
+ "publication-runner-provenance-json": {
1449
+ "classification": "digest-only",
1450
+ "source": "workflow-call-input"
1451
+ },
1452
+ "publication-target": {
1453
+ "classification": "included",
1454
+ "source": "workflow-call-input"
1455
+ },
1456
+ "publication-used-nonces-json": {
1457
+ "classification": "digest-only",
1458
+ "source": "workflow-call-input"
1459
+ },
1374
1460
  "publish-artifact-kind": {
1375
1461
  "classification": "included",
1376
1462
  "source": "workflow-call-input"
@@ -1490,6 +1576,10 @@
1490
1576
  "id": "admit-release-candidate",
1491
1577
  "required": true
1492
1578
  },
1579
+ {
1580
+ "id": "publication-authority",
1581
+ "required": true
1582
+ },
1493
1583
  {
1494
1584
  "id": "publish",
1495
1585
  "required": true
@@ -1506,6 +1596,7 @@
1506
1596
  "capabilities": [
1507
1597
  "promotion-preflight",
1508
1598
  "artifact-admission",
1599
+ "publication-authority",
1509
1600
  "publish-transaction",
1510
1601
  "release-passport"
1511
1602
  ],
@@ -1516,7 +1607,7 @@
1516
1607
  "controller-receipt"
1517
1608
  ]
1518
1609
  },
1519
- "digest": "sha256:f5a295b2d3e8f20ba46c611acaed71ee7ab5cd1ecaa6e7504b4344493271a803"
1610
+ "digest": "sha256:380a550c76a7a0c884d0519b5e6e605ad3e04e86f637ba846c20b546faec4a0f"
1520
1611
  },
1521
1612
  {
1522
1613
  "schemaVersion": 1,
@@ -1622,5 +1713,5 @@
1622
1713
  "digest": "sha256:9b9f9a2320c4349903d72ee46e329211b5538ed5ebebaa93559df4eafb835997"
1623
1714
  }
1624
1715
  ],
1625
- "digest": "sha256:0bd2214618cfa1fb7cdc052b3dcb64fa1ab8b815416bc00bbd27c0c666923363"
1716
+ "digest": "sha256:f4ea94c3590360ef21ade53056129f0183356de3d1997e43c49a0494d0acd34a"
1626
1717
  }
@@ -14,20 +14,20 @@
14
14
  },
15
15
  "runtimeContract": {
16
16
  "contract": "kungfu-buildchain-runtime-contract-world",
17
- "compatibilityDigest": "sha256:2520207c5d6d6a737dd32251a42be9c5299644d9aebf690a8402ead1724ed495",
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": "da49ee5526b44e5e9baa9aa846c35776aa5fcb64fd76e4b6611a4cd517555034",
24
+ "sha256": "58bc630f5a8e5cb46eab9e874b7bd9cbdc45ce49f238385c289f749244e3ac1c",
25
25
  "summary": {
26
- "cliCommandCount": 76,
27
- "workflowCount": 43,
26
+ "cliCommandCount": 79,
27
+ "workflowCount": 46,
28
28
  "actionCount": 4,
29
- "sitePageCount": 48,
30
- "docCommandRefCount": 241,
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": "da49ee5526b44e5e9baa9aa846c35776aa5fcb64fd76e4b6611a4cd517555034",
228
+ "sha256": "58bc630f5a8e5cb46eab9e874b7bd9cbdc45ce49f238385c289f749244e3ac1c",
229
229
  "summary": {
230
- "cliCommandCount": 76,
231
- "workflowCount": 43,
230
+ "cliCommandCount": 79,
231
+ "workflowCount": 46,
232
232
  "actionCount": 4,
233
- "sitePageCount": 48,
234
- "docCommandRefCount": 241,
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,43 @@
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": 22,
2646
+ "inputs": [
2647
+ "admission-json",
2648
+ "auto-admission",
2649
+ "buildchain-ref",
2650
+ "buildchain-repository",
2651
+ "control-plane-audit-json",
2652
+ "dry-run",
2653
+ "evidence-manifest-pattern",
2654
+ "evidence-passport-artifact",
2655
+ "evidence-payload-pattern",
2656
+ "evidence-repository",
2657
+ "evidence-run-id",
2658
+ "evidence-summary-artifact",
2659
+ "expected-json",
2660
+ "gate-aggregate-json",
2661
+ "package-name",
2662
+ "product",
2663
+ "publication-target",
2664
+ "publisher-workflow-path",
2665
+ "runner-provenance-json",
2666
+ "source-sha",
2667
+ "target-ref",
2668
+ "used-nonces-json"
2669
+ ],
2670
+ "reverseAuditSource": ".github/workflows"
2671
+ },
2483
2672
  {
2484
2673
  "id": "workflow:.release-docker",
2485
2674
  "name": "workflow:.release-docker",
@@ -2707,7 +2896,7 @@
2707
2896
  "visibility": "public",
2708
2897
  "participantFacing": true,
2709
2898
  "public": true,
2710
- "inputCount": 33,
2899
+ "inputCount": 38,
2711
2900
  "inputs": [
2712
2901
  "artifact-path",
2713
2902
  "aws-region",
@@ -2736,6 +2925,11 @@
2736
2925
  "production-release-on-main",
2737
2926
  "production-release-pr-mode",
2738
2927
  "production-release-pr-token",
2928
+ "publication-admission-json",
2929
+ "publication-control-plane-audit-json",
2930
+ "publication-expected-json",
2931
+ "publication-runner-provenance-json",
2932
+ "publication-used-nonces-json",
2739
2933
  "release-feedback-actor-privacy",
2740
2934
  "staging-apply",
2741
2935
  "staging-aws-role-arn",
@@ -2797,6 +2991,20 @@
2797
2991
  "inputs": [],
2798
2992
  "reverseAuditSource": ".github/workflows"
2799
2993
  },
2994
+ {
2995
+ "id": "workflow:binary-release-assets",
2996
+ "name": "workflow:binary-release-assets",
2997
+ "kind": "workflow",
2998
+ "sourcePath": ".github/workflows/binary-release-assets.yml",
2999
+ "evidencePath": ".github/workflows/binary-release-assets.yml",
3000
+ "availability": "shipped",
3001
+ "visibility": "public",
3002
+ "participantFacing": true,
3003
+ "public": true,
3004
+ "inputCount": 0,
3005
+ "inputs": [],
3006
+ "reverseAuditSource": ".github/workflows"
3007
+ },
2800
3008
  {
2801
3009
  "id": "workflow:build-surface-fixture",
2802
3010
  "name": "workflow:build-surface-fixture",
@@ -3102,7 +3310,7 @@
3102
3310
  "visibility": "public",
3103
3311
  "participantFacing": true,
3104
3312
  "public": true,
3105
- "inputCount": 32,
3313
+ "inputCount": 37,
3106
3314
  "inputs": [
3107
3315
  "artifact-name",
3108
3316
  "artifact-retention-days",
@@ -3121,6 +3329,11 @@
3121
3329
  "github-release-title",
3122
3330
  "node-version",
3123
3331
  "package-name",
3332
+ "publication-admission-json",
3333
+ "publication-control-plane-audit-json",
3334
+ "publication-expected-json",
3335
+ "publication-runner-provenance-json",
3336
+ "publication-used-nonces-json",
3124
3337
  "publish-dist-tag",
3125
3338
  "publish-package-set-order",
3126
3339
  "release-passport-impact-json",
@@ -3246,7 +3459,7 @@
3246
3459
  "visibility": "public",
3247
3460
  "participantFacing": true,
3248
3461
  "public": true,
3249
- "inputCount": 44,
3462
+ "inputCount": 55,
3250
3463
  "inputs": [
3251
3464
  "allow-repository",
3252
3465
  "artifact-name",
@@ -3265,6 +3478,17 @@
3265
3478
  "github-release-notes",
3266
3479
  "github-release-title",
3267
3480
  "package-manager",
3481
+ "publication-admission-json",
3482
+ "publication-auto-admission",
3483
+ "publication-control-plane-audit-json",
3484
+ "publication-expected-json",
3485
+ "publication-gate-aggregate-json",
3486
+ "publication-package-name",
3487
+ "publication-product",
3488
+ "publication-publisher-workflow-path",
3489
+ "publication-runner-provenance-json",
3490
+ "publication-target",
3491
+ "publication-used-nonces-json",
3268
3492
  "publish-artifact-kind",
3269
3493
  "publish-command",
3270
3494
  "publish-dist-tag",
@@ -3999,6 +4223,18 @@
3999
4223
  "public": true,
4000
4224
  "reverseAuditSource": "dist/site/page-registry.json"
4001
4225
  },
4226
+ {
4227
+ "id": "site-page:manual:publication-authority",
4228
+ "name": "site-page:manual:publication-authority",
4229
+ "kind": "site-page",
4230
+ "sourcePath": "dist/site/page-registry.json",
4231
+ "evidencePath": "dist/site/page-registry.json",
4232
+ "availability": "shipped",
4233
+ "visibility": "public",
4234
+ "participantFacing": true,
4235
+ "public": true,
4236
+ "reverseAuditSource": "dist/site/page-registry.json"
4237
+ },
4002
4238
  {
4003
4239
  "id": "site-page:manual:publish-transaction",
4004
4240
  "name": "site-page:manual:publish-transaction",
@@ -4296,6 +4532,6 @@
4296
4532
  }
4297
4533
  }
4298
4534
  ],
4299
- "publicSurfaceCount": 280
4535
+ "publicSurfaceCount": 295
4300
4536
  }
4301
4537
  }
@@ -4,7 +4,7 @@
4
4
  "product": {
5
5
  "id": "kungfu-tech-buildchain",
6
6
  "name": "@kungfu-tech/buildchain",
7
- "version": "2.12.6",
7
+ "version": "2.12.7-alpha.1",
8
8
  "repository": "https://github.com/kungfu-systems/buildchain"
9
9
  },
10
10
  "source": {
@@ -9,7 +9,7 @@
9
9
  "title": "Buildchain documentation map",
10
10
  "path": "docs/MAP.md",
11
11
  "plane": "use",
12
- "digest": "sha256:223c7e2d20680d4a10c84f6a7c7875602538607217e9dfe291a356bbd21ac4f1",
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:fc08e6657a1b586b6b8b5618ca4f49dfaa85955687f5bba8e2e69e7513fe6c71",
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",