@kungfu-tech/buildchain 2.10.4 → 2.10.5

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 (37) hide show
  1. package/README.md +16 -1
  2. package/bin/buildchain.mjs +299 -16
  3. package/dist/site/buildchain-contract.json +7 -7
  4. package/dist/site/buildchain-site.json +42 -37
  5. package/dist/site/capability-registry.json +2 -2
  6. package/dist/site/cli-registry.json +164 -8
  7. package/dist/site/kfd-claims.json +190 -19
  8. package/dist/site/manual-registry.json +10 -10
  9. package/dist/site/node-api-registry.json +24 -11
  10. package/dist/site/page-registry.json +27 -22
  11. package/dist/site/public-surface-audit.json +334 -126
  12. package/dist/site/release-provenance.json +2 -1
  13. package/dist/site/site-manifest.json +14 -14
  14. package/dist/site/workflow-registry.json +4 -1
  15. package/docs/MAP.md +2 -2
  16. package/docs/cli.md +48 -14
  17. package/docs/install.md +1 -1
  18. package/docs/kfd-support.md +80 -21
  19. package/docs/lifecycle-protocol.md +7 -2
  20. package/docs/publish-transaction.md +1 -1
  21. package/docs/readme-badges.md +2 -2
  22. package/docs/release-passport.md +1 -1
  23. package/docs/reusable-build-surface.md +7 -7
  24. package/docs/web-surface-deployments.md +33 -4
  25. package/package.json +3 -2
  26. package/packages/core/buildchain-config.js +10 -5
  27. package/packages/core/buildchain-layout.js +157 -0
  28. package/packages/core/index.js +34 -0
  29. package/packages/core/kfd.js +273 -0
  30. package/packages/core/kfd3-surface-register.js +25 -17
  31. package/packages/core/public-surface-audit.js +14 -7
  32. package/scripts/buildchain-contract-lock.mjs +6 -2
  33. package/scripts/check-inventory.mjs +5 -4
  34. package/scripts/generate-site-bundle.mjs +20 -3
  35. package/scripts/init-repo.mjs +2 -1
  36. package/scripts/web-surface-production-release-pr.mjs +209 -36
  37. package/scripts/web-surface-release-pr-review.mjs +2 -1
@@ -109,8 +109,8 @@
109
109
  "counts": {
110
110
  "manualCount": 1,
111
111
  "pageCount": 1,
112
- "cliCommandCount": 6,
113
- "nodeApiCount": 4,
112
+ "cliCommandCount": 19,
113
+ "nodeApiCount": 5,
114
114
  "workflowCount": 0,
115
115
  "actionCount": 0
116
116
  },
@@ -281,11 +281,107 @@
281
281
  ],
282
282
  "maturity": "stable"
283
283
  },
284
+ {
285
+ "id": "kfd",
286
+ "source": "bin/buildchain.mjs",
287
+ "usage": "buildchain kfd ...",
288
+ "purpose": "Inspect KFD standards, schemas, and versioned KFD command families.",
289
+ "capabilityGroup": "kfd-trust",
290
+ "audience": [
291
+ "agent",
292
+ "operator"
293
+ ],
294
+ "maturity": "stable"
295
+ },
296
+ {
297
+ "id": "kfd-1-gate",
298
+ "source": "bin/buildchain.mjs",
299
+ "usage": "buildchain kfd 1 gate --witness-json <file-or-json>... [--cwd <dir>] [--artifact-root <dir>]",
300
+ "purpose": "Generate KFD-1 release gate evidence from declared contract-world witnesses.",
301
+ "capabilityGroup": "kfd-trust",
302
+ "audience": [
303
+ "agent",
304
+ "operator"
305
+ ],
306
+ "maturity": "stable"
307
+ },
308
+ {
309
+ "id": "kfd-1-schema",
310
+ "source": "bin/buildchain.mjs",
311
+ "usage": "buildchain kfd 1 schema [--schema <name>] [--json]",
312
+ "purpose": "Print the default KFD-1 schema exposed by the KFD package standards metadata.",
313
+ "capabilityGroup": "kfd-trust",
314
+ "audience": [
315
+ "agent",
316
+ "operator"
317
+ ],
318
+ "maturity": "stable"
319
+ },
320
+ {
321
+ "id": "kfd-1-verify",
322
+ "source": "bin/buildchain.mjs",
323
+ "usage": "buildchain kfd 1 verify --gate-json <file-or-json> [--json]",
324
+ "purpose": "Validate KFD-1 release gate evidence.",
325
+ "capabilityGroup": "kfd-trust",
326
+ "audience": [
327
+ "agent",
328
+ "operator"
329
+ ],
330
+ "maturity": "stable"
331
+ },
332
+ {
333
+ "id": "kfd-1-witness",
334
+ "source": "bin/buildchain.mjs",
335
+ "usage": "buildchain kfd 1 witness [--cwd <dir>] [--source-sha <sha>] [--output <file>] [--json]",
336
+ "purpose": "Generate Buildchain's KFD-1 self contract-world witness.",
337
+ "capabilityGroup": "kfd-trust",
338
+ "audience": [
339
+ "agent",
340
+ "operator"
341
+ ],
342
+ "maturity": "stable"
343
+ },
344
+ {
345
+ "id": "kfd-2-claims",
346
+ "source": "bin/buildchain.mjs",
347
+ "usage": "buildchain kfd 2 claims [--cwd <dir>] [--output-dir <dir>] [--json]",
348
+ "purpose": "Generate Buildchain's KFD-2 public trust claim evidence.",
349
+ "capabilityGroup": "kfd-trust",
350
+ "audience": [
351
+ "agent",
352
+ "operator"
353
+ ],
354
+ "maturity": "stable"
355
+ },
356
+ {
357
+ "id": "kfd-2-schema",
358
+ "source": "bin/buildchain.mjs",
359
+ "usage": "buildchain kfd 2 schema [--schema <name>] [--json]",
360
+ "purpose": "Print the default KFD-2 schema exposed by the KFD package standards metadata.",
361
+ "capabilityGroup": "kfd-trust",
362
+ "audience": [
363
+ "agent",
364
+ "operator"
365
+ ],
366
+ "maturity": "stable"
367
+ },
368
+ {
369
+ "id": "kfd-2-taxonomy",
370
+ "source": "bin/buildchain.mjs",
371
+ "usage": "buildchain kfd 2 taxonomy --entry-json <file-or-json>... [--kind residualRisk|downgradeReason] [--json]",
372
+ "purpose": "Validate KFD-2 trust taxonomy entries from the KFD package standards metadata.",
373
+ "capabilityGroup": "kfd-trust",
374
+ "audience": [
375
+ "agent",
376
+ "operator"
377
+ ],
378
+ "maturity": "stable"
379
+ },
284
380
  {
285
381
  "id": "kfd-3",
286
382
  "source": "bin/buildchain.mjs",
287
- "usage": "buildchain kfd-3",
288
- "purpose": "Inspect KFD-3 surface detection, registry, witness, audit, and query command families.",
383
+ "usage": "buildchain kfd 3 ...",
384
+ "purpose": "Inspect KFD-3 surface detection, registry, witness, audit, and query command families under the unified KFD namespace.",
289
385
  "capabilityGroup": "kfd-trust",
290
386
  "audience": [
291
387
  "agent",
@@ -296,7 +392,7 @@
296
392
  {
297
393
  "id": "kfd-3-audit",
298
394
  "source": "bin/buildchain.mjs",
299
- "usage": "buildchain kfd-3 audit [--cwd <dir>] [--registry <path>] [--artifact <path>] [--json]",
395
+ "usage": "buildchain kfd 3 audit [--cwd <dir>] [--registry <path>] [--artifact <path>] [--json]",
300
396
  "purpose": "Compare detected, declared, and enforced KFD-3 public surfaces.",
301
397
  "capabilityGroup": "kfd-trust",
302
398
  "audience": [
@@ -308,7 +404,7 @@
308
404
  {
309
405
  "id": "kfd-3-detect",
310
406
  "source": "bin/buildchain.mjs",
311
- "usage": "buildchain kfd-3 detect [--cwd <dir>] [--kind <kind>]... [--artifact <path>] [--json]",
407
+ "usage": "buildchain kfd 3 detect [--cwd <dir>] [--kind <kind>]... [--artifact <path>] [--json]",
312
408
  "purpose": "Detect standard KFD-3 public surface candidates from source and artifact metadata.",
313
409
  "capabilityGroup": "kfd-trust",
314
410
  "audience": [
@@ -320,7 +416,7 @@
320
416
  {
321
417
  "id": "kfd-3-query",
322
418
  "source": "bin/buildchain.mjs",
323
- "usage": "buildchain kfd-3 query [<product>] [--cwd <dir>] [--registry <path>]",
419
+ "usage": "buildchain kfd 3 query [<product>] [--cwd <dir>] [--registry <path>]",
324
420
  "purpose": "Return an agent-readable KFD-3 capability map for a product, registry, or release passport.",
325
421
  "capabilityGroup": "kfd-trust",
326
422
  "audience": [
@@ -332,7 +428,7 @@
332
428
  {
333
429
  "id": "kfd-3-register",
334
430
  "source": "bin/buildchain.mjs",
335
- "usage": "buildchain kfd-3 register <node-api|python-api|cli|binary|documentation|site-bundle>",
431
+ "usage": "buildchain kfd 3 register <node-api|python-api|cli|binary|documentation|site-bundle>",
336
432
  "purpose": "Declare detected KFD-3 public surfaces into a product-owned surface registry.",
337
433
  "capabilityGroup": "kfd-trust",
338
434
  "audience": [
@@ -344,7 +440,7 @@
344
440
  {
345
441
  "id": "kfd-3-witness",
346
442
  "source": "bin/buildchain.mjs",
347
- "usage": "buildchain kfd-3 witness [--cwd <dir>] [--registry <path>] [--kind prebuild|artifact]",
443
+ "usage": "buildchain kfd 3 witness [--cwd <dir>] [--registry <path>] [--kind prebuild|artifact]",
348
444
  "purpose": "Generate release-passport-compatible KFD-3 surface witnesses from a product registry.",
349
445
  "capabilityGroup": "kfd-trust",
350
446
  "audience": [
@@ -353,6 +449,66 @@
353
449
  ],
354
450
  "maturity": "stable"
355
451
  },
452
+ {
453
+ "id": "kfd-4-schema",
454
+ "source": "bin/buildchain.mjs",
455
+ "usage": "buildchain kfd 4 schema [--schema <name>] [--json]",
456
+ "purpose": "Print the default KFD-4 schema exposed by the KFD package standards metadata.",
457
+ "capabilityGroup": "kfd-trust",
458
+ "audience": [
459
+ "agent",
460
+ "operator"
461
+ ],
462
+ "maturity": "stable"
463
+ },
464
+ {
465
+ "id": "kfd-migrate-layout",
466
+ "source": "bin/buildchain.mjs",
467
+ "usage": "buildchain kfd migrate-layout [--cwd <dir>] [--write] [--force] [--json]",
468
+ "purpose": "Plan or apply migration of legacy root Buildchain files into .buildchain/.",
469
+ "capabilityGroup": "kfd-trust",
470
+ "audience": [
471
+ "agent",
472
+ "operator"
473
+ ],
474
+ "maturity": "stable"
475
+ },
476
+ {
477
+ "id": "kfd-schema-list",
478
+ "source": "bin/buildchain.mjs",
479
+ "usage": "buildchain kfd schema list [--standard kfd-1|kfd-2|kfd-3|kfd-4] [--json]",
480
+ "purpose": "List machine-readable schemas exposed by the KFD package standards metadata.",
481
+ "capabilityGroup": "kfd-trust",
482
+ "audience": [
483
+ "agent",
484
+ "operator"
485
+ ],
486
+ "maturity": "stable"
487
+ },
488
+ {
489
+ "id": "kfd-schema-show",
490
+ "source": "bin/buildchain.mjs",
491
+ "usage": "buildchain kfd schema show <kfd-1|kfd-2|kfd-3|kfd-4> [--schema <name>] [--json]",
492
+ "purpose": "Print a machine-readable KFD schema from the KFD package standards metadata.",
493
+ "capabilityGroup": "kfd-trust",
494
+ "audience": [
495
+ "agent",
496
+ "operator"
497
+ ],
498
+ "maturity": "stable"
499
+ },
500
+ {
501
+ "id": "kfd-status",
502
+ "source": "bin/buildchain.mjs",
503
+ "usage": "buildchain kfd status [--cwd <dir>] [--json]",
504
+ "purpose": "Report implemented KFD support and the active .buildchain repository layout.",
505
+ "capabilityGroup": "kfd-trust",
506
+ "audience": [
507
+ "agent",
508
+ "operator"
509
+ ],
510
+ "maturity": "stable"
511
+ },
356
512
  {
357
513
  "id": "lifecycle",
358
514
  "source": "bin/buildchain.mjs",
@@ -537,7 +693,7 @@
537
693
  "id": "validate",
538
694
  "source": "bin/buildchain.mjs",
539
695
  "usage": "buildchain validate [--cwd <dir>] [--require-version-state]",
540
- "purpose": "Validate buildchain.toml and declared lifecycle surfaces.",
696
+ "purpose": "Validate .buildchain/buildchain.toml and declared lifecycle surfaces.",
541
697
  "capabilityGroup": "getting-started",
542
698
  "audience": [
543
699
  "agent",
@@ -21,13 +21,13 @@
21
21
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
22
22
  "path": "dist/site/public-surface-audit.json",
23
23
  "status": "passed",
24
- "sha256": "8643f99a115112c2fa97081d7ba9bb7c8d6a4be74df40a5d50410e417d4f2856",
24
+ "sha256": "f9ae0512372a5967f58aafc3eb0e28b1a35a56631caa4b59df7e200b72f4b4f0",
25
25
  "summary": {
26
- "cliCommandCount": 52,
26
+ "cliCommandCount": 65,
27
27
  "workflowCount": 35,
28
28
  "actionCount": 4,
29
29
  "sitePageCount": 43,
30
- "docCommandRefCount": 180,
30
+ "docCommandRefCount": 208,
31
31
  "failureCount": 0
32
32
  },
33
33
  "auditBoundary": {
@@ -207,13 +207,13 @@
207
207
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
208
208
  "path": "dist/site/public-surface-audit.json",
209
209
  "status": "passed",
210
- "sha256": "8643f99a115112c2fa97081d7ba9bb7c8d6a4be74df40a5d50410e417d4f2856",
210
+ "sha256": "f9ae0512372a5967f58aafc3eb0e28b1a35a56631caa4b59df7e200b72f4b4f0",
211
211
  "summary": {
212
- "cliCommandCount": 52,
212
+ "cliCommandCount": 65,
213
213
  "workflowCount": 35,
214
214
  "actionCount": 4,
215
215
  "sitePageCount": 43,
216
- "docCommandRefCount": 180,
216
+ "docCommandRefCount": 208,
217
217
  "failureCount": 0
218
218
  },
219
219
  "auditBoundary": {
@@ -990,16 +990,28 @@
990
990
  "packageExport": "./issue-reporting"
991
991
  },
992
992
  {
993
- "id": "export:./kfd-3-surfaces",
994
- "name": "@kungfu-tech/buildchain/kfd-3-surfaces",
993
+ "id": "export:./kfd",
994
+ "name": "@kungfu-tech/buildchain/kfd",
995
995
  "kind": "package-export",
996
- "sourcePath": "packages/core/kfd3-surface-register.js",
997
- "evidencePath": "packages/core/kfd3-surface-register.js",
996
+ "sourcePath": "packages/core/kfd.js",
997
+ "evidencePath": "packages/core/kfd.js",
998
+ "availability": "shipped",
999
+ "visibility": "public",
1000
+ "participantFacing": true,
1001
+ "public": true,
1002
+ "packageExport": "./kfd"
1003
+ },
1004
+ {
1005
+ "id": "export:./buildchain-layout",
1006
+ "name": "@kungfu-tech/buildchain/buildchain-layout",
1007
+ "kind": "package-export",
1008
+ "sourcePath": "packages/core/buildchain-layout.js",
1009
+ "evidencePath": "packages/core/buildchain-layout.js",
998
1010
  "availability": "shipped",
999
1011
  "visibility": "public",
1000
1012
  "participantFacing": true,
1001
1013
  "public": true,
1002
- "packageExport": "./kfd-3-surfaces"
1014
+ "packageExport": "./buildchain-layout"
1003
1015
  },
1004
1016
  {
1005
1017
  "id": "export:./release-line-bootstrap",
@@ -1577,9 +1589,105 @@
1577
1589
  "public": true,
1578
1590
  "reverseAuditSource": "bin/buildchain.mjs"
1579
1591
  },
1592
+ {
1593
+ "id": "cli:kfd",
1594
+ "name": "buildchain kfd ...",
1595
+ "kind": "cli-command",
1596
+ "sourcePath": "bin/buildchain.mjs",
1597
+ "evidencePath": "bin/buildchain.mjs",
1598
+ "availability": "shipped",
1599
+ "visibility": "public",
1600
+ "participantFacing": true,
1601
+ "public": true,
1602
+ "reverseAuditSource": "bin/buildchain.mjs"
1603
+ },
1604
+ {
1605
+ "id": "cli:kfd-1-gate",
1606
+ "name": "buildchain kfd 1 gate --witness-json <file-or-json>... [--cwd <dir>] [--artifact-root <dir>]",
1607
+ "kind": "cli-command",
1608
+ "sourcePath": "bin/buildchain.mjs",
1609
+ "evidencePath": "bin/buildchain.mjs",
1610
+ "availability": "shipped",
1611
+ "visibility": "public",
1612
+ "participantFacing": true,
1613
+ "public": true,
1614
+ "reverseAuditSource": "bin/buildchain.mjs"
1615
+ },
1616
+ {
1617
+ "id": "cli:kfd-1-schema",
1618
+ "name": "buildchain kfd 1 schema [--schema <name>] [--json]",
1619
+ "kind": "cli-command",
1620
+ "sourcePath": "bin/buildchain.mjs",
1621
+ "evidencePath": "bin/buildchain.mjs",
1622
+ "availability": "shipped",
1623
+ "visibility": "public",
1624
+ "participantFacing": true,
1625
+ "public": true,
1626
+ "reverseAuditSource": "bin/buildchain.mjs"
1627
+ },
1628
+ {
1629
+ "id": "cli:kfd-1-verify",
1630
+ "name": "buildchain kfd 1 verify --gate-json <file-or-json> [--json]",
1631
+ "kind": "cli-command",
1632
+ "sourcePath": "bin/buildchain.mjs",
1633
+ "evidencePath": "bin/buildchain.mjs",
1634
+ "availability": "shipped",
1635
+ "visibility": "public",
1636
+ "participantFacing": true,
1637
+ "public": true,
1638
+ "reverseAuditSource": "bin/buildchain.mjs"
1639
+ },
1640
+ {
1641
+ "id": "cli:kfd-1-witness",
1642
+ "name": "buildchain kfd 1 witness [--cwd <dir>] [--source-sha <sha>] [--output <file>] [--json]",
1643
+ "kind": "cli-command",
1644
+ "sourcePath": "bin/buildchain.mjs",
1645
+ "evidencePath": "bin/buildchain.mjs",
1646
+ "availability": "shipped",
1647
+ "visibility": "public",
1648
+ "participantFacing": true,
1649
+ "public": true,
1650
+ "reverseAuditSource": "bin/buildchain.mjs"
1651
+ },
1652
+ {
1653
+ "id": "cli:kfd-2-claims",
1654
+ "name": "buildchain kfd 2 claims [--cwd <dir>] [--output-dir <dir>] [--json]",
1655
+ "kind": "cli-command",
1656
+ "sourcePath": "bin/buildchain.mjs",
1657
+ "evidencePath": "bin/buildchain.mjs",
1658
+ "availability": "shipped",
1659
+ "visibility": "public",
1660
+ "participantFacing": true,
1661
+ "public": true,
1662
+ "reverseAuditSource": "bin/buildchain.mjs"
1663
+ },
1664
+ {
1665
+ "id": "cli:kfd-2-schema",
1666
+ "name": "buildchain kfd 2 schema [--schema <name>] [--json]",
1667
+ "kind": "cli-command",
1668
+ "sourcePath": "bin/buildchain.mjs",
1669
+ "evidencePath": "bin/buildchain.mjs",
1670
+ "availability": "shipped",
1671
+ "visibility": "public",
1672
+ "participantFacing": true,
1673
+ "public": true,
1674
+ "reverseAuditSource": "bin/buildchain.mjs"
1675
+ },
1676
+ {
1677
+ "id": "cli:kfd-2-taxonomy",
1678
+ "name": "buildchain kfd 2 taxonomy --entry-json <file-or-json>... [--kind residualRisk|downgradeReason] [--json]",
1679
+ "kind": "cli-command",
1680
+ "sourcePath": "bin/buildchain.mjs",
1681
+ "evidencePath": "bin/buildchain.mjs",
1682
+ "availability": "shipped",
1683
+ "visibility": "public",
1684
+ "participantFacing": true,
1685
+ "public": true,
1686
+ "reverseAuditSource": "bin/buildchain.mjs"
1687
+ },
1580
1688
  {
1581
1689
  "id": "cli:kfd-3",
1582
- "name": "buildchain kfd-3",
1690
+ "name": "buildchain kfd 3 ...",
1583
1691
  "kind": "cli-command",
1584
1692
  "sourcePath": "bin/buildchain.mjs",
1585
1693
  "evidencePath": "bin/buildchain.mjs",
@@ -1591,7 +1699,7 @@
1591
1699
  },
1592
1700
  {
1593
1701
  "id": "cli:kfd-3-audit",
1594
- "name": "buildchain kfd-3 audit [--cwd <dir>] [--registry <path>] [--artifact <path>] [--json]",
1702
+ "name": "buildchain kfd 3 audit [--cwd <dir>] [--registry <path>] [--artifact <path>] [--json]",
1595
1703
  "kind": "cli-command",
1596
1704
  "sourcePath": "bin/buildchain.mjs",
1597
1705
  "evidencePath": "bin/buildchain.mjs",
@@ -1603,7 +1711,7 @@
1603
1711
  },
1604
1712
  {
1605
1713
  "id": "cli:kfd-3-detect",
1606
- "name": "buildchain kfd-3 detect [--cwd <dir>] [--kind <kind>]... [--artifact <path>] [--json]",
1714
+ "name": "buildchain kfd 3 detect [--cwd <dir>] [--kind <kind>]... [--artifact <path>] [--json]",
1607
1715
  "kind": "cli-command",
1608
1716
  "sourcePath": "bin/buildchain.mjs",
1609
1717
  "evidencePath": "bin/buildchain.mjs",
@@ -1615,7 +1723,7 @@
1615
1723
  },
1616
1724
  {
1617
1725
  "id": "cli:kfd-3-query",
1618
- "name": "buildchain kfd-3 query [<product>] [--cwd <dir>] [--registry <path>]",
1726
+ "name": "buildchain kfd 3 query [<product>] [--cwd <dir>] [--registry <path>]",
1619
1727
  "kind": "cli-command",
1620
1728
  "sourcePath": "bin/buildchain.mjs",
1621
1729
  "evidencePath": "bin/buildchain.mjs",
@@ -1627,7 +1735,7 @@
1627
1735
  },
1628
1736
  {
1629
1737
  "id": "cli:kfd-3-register",
1630
- "name": "buildchain kfd-3 register <node-api|python-api|cli|binary|documentation|site-bundle>",
1738
+ "name": "buildchain kfd 3 register <node-api|python-api|cli|binary|documentation|site-bundle>",
1631
1739
  "kind": "cli-command",
1632
1740
  "sourcePath": "bin/buildchain.mjs",
1633
1741
  "evidencePath": "bin/buildchain.mjs",
@@ -1639,7 +1747,67 @@
1639
1747
  },
1640
1748
  {
1641
1749
  "id": "cli:kfd-3-witness",
1642
- "name": "buildchain kfd-3 witness [--cwd <dir>] [--registry <path>] [--kind prebuild|artifact]",
1750
+ "name": "buildchain kfd 3 witness [--cwd <dir>] [--registry <path>] [--kind prebuild|artifact]",
1751
+ "kind": "cli-command",
1752
+ "sourcePath": "bin/buildchain.mjs",
1753
+ "evidencePath": "bin/buildchain.mjs",
1754
+ "availability": "shipped",
1755
+ "visibility": "public",
1756
+ "participantFacing": true,
1757
+ "public": true,
1758
+ "reverseAuditSource": "bin/buildchain.mjs"
1759
+ },
1760
+ {
1761
+ "id": "cli:kfd-4-schema",
1762
+ "name": "buildchain kfd 4 schema [--schema <name>] [--json]",
1763
+ "kind": "cli-command",
1764
+ "sourcePath": "bin/buildchain.mjs",
1765
+ "evidencePath": "bin/buildchain.mjs",
1766
+ "availability": "shipped",
1767
+ "visibility": "public",
1768
+ "participantFacing": true,
1769
+ "public": true,
1770
+ "reverseAuditSource": "bin/buildchain.mjs"
1771
+ },
1772
+ {
1773
+ "id": "cli:kfd-migrate-layout",
1774
+ "name": "buildchain kfd migrate-layout [--cwd <dir>] [--write] [--force] [--json]",
1775
+ "kind": "cli-command",
1776
+ "sourcePath": "bin/buildchain.mjs",
1777
+ "evidencePath": "bin/buildchain.mjs",
1778
+ "availability": "shipped",
1779
+ "visibility": "public",
1780
+ "participantFacing": true,
1781
+ "public": true,
1782
+ "reverseAuditSource": "bin/buildchain.mjs"
1783
+ },
1784
+ {
1785
+ "id": "cli:kfd-schema-list",
1786
+ "name": "buildchain kfd schema list [--standard kfd-1|kfd-2|kfd-3|kfd-4] [--json]",
1787
+ "kind": "cli-command",
1788
+ "sourcePath": "bin/buildchain.mjs",
1789
+ "evidencePath": "bin/buildchain.mjs",
1790
+ "availability": "shipped",
1791
+ "visibility": "public",
1792
+ "participantFacing": true,
1793
+ "public": true,
1794
+ "reverseAuditSource": "bin/buildchain.mjs"
1795
+ },
1796
+ {
1797
+ "id": "cli:kfd-schema-show",
1798
+ "name": "buildchain kfd schema show <kfd-1|kfd-2|kfd-3|kfd-4> [--schema <name>] [--json]",
1799
+ "kind": "cli-command",
1800
+ "sourcePath": "bin/buildchain.mjs",
1801
+ "evidencePath": "bin/buildchain.mjs",
1802
+ "availability": "shipped",
1803
+ "visibility": "public",
1804
+ "participantFacing": true,
1805
+ "public": true,
1806
+ "reverseAuditSource": "bin/buildchain.mjs"
1807
+ },
1808
+ {
1809
+ "id": "cli:kfd-status",
1810
+ "name": "buildchain kfd status [--cwd <dir>] [--json]",
1643
1811
  "kind": "cli-command",
1644
1812
  "sourcePath": "bin/buildchain.mjs",
1645
1813
  "evidencePath": "bin/buildchain.mjs",
@@ -2229,7 +2397,7 @@
2229
2397
  "visibility": "public",
2230
2398
  "participantFacing": true,
2231
2399
  "public": true,
2232
- "inputCount": 28,
2400
+ "inputCount": 31,
2233
2401
  "inputs": [
2234
2402
  "artifact-path",
2235
2403
  "aws-region",
@@ -2239,6 +2407,7 @@
2239
2407
  "buildchain-contract-lock-path",
2240
2408
  "buildchain-ref",
2241
2409
  "buildchain-repository",
2410
+ "fail-on-release-pr-error",
2242
2411
  "node-version",
2243
2412
  "preview-apply",
2244
2413
  "preview-aws-role-arn",
@@ -2253,6 +2422,8 @@
2253
2422
  "production-release-head-prefix",
2254
2423
  "production-release-label",
2255
2424
  "production-release-on-main",
2425
+ "production-release-pr-mode",
2426
+ "production-release-pr-token",
2256
2427
  "release-feedback-actor-privacy",
2257
2428
  "staging-apply",
2258
2429
  "staging-aws-role-arn",
@@ -3526,6 +3697,6 @@
3526
3697
  "public": true
3527
3698
  }
3528
3699
  ],
3529
- "publicSurfaceCount": 231
3700
+ "publicSurfaceCount": 245
3530
3701
  }
3531
3702
  }
@@ -9,7 +9,7 @@
9
9
  "title": "Buildchain documentation map",
10
10
  "path": "docs/MAP.md",
11
11
  "plane": "use",
12
- "digest": "sha256:67a0e6b63a943904eacbf7d26227e3c9ad650d17e8aa937c40b3fdad8f389fdd",
12
+ "digest": "sha256:b12caa887a325820c591d462ae2c0a4521eda001cb71d3def72e9b55924f892f",
13
13
  "capabilityGroup": "getting-started",
14
14
  "audience": [
15
15
  "agent",
@@ -23,7 +23,7 @@
23
23
  "title": "Install and verify Buildchain",
24
24
  "path": "docs/install.md",
25
25
  "plane": "use",
26
- "digest": "sha256:34bc161a26595f95684694d341616e47bfd65b0c51a63225e68a575179636175",
26
+ "digest": "sha256:2600738a92b5853bc26d4e01211f0c07b8b36a21d4d72ca809bc6032dff5dc5f",
27
27
  "capabilityGroup": "getting-started",
28
28
  "audience": [
29
29
  "consumer"
@@ -36,7 +36,7 @@
36
36
  "title": "Release Passport protocol",
37
37
  "path": "docs/release-passport.md",
38
38
  "plane": "verify",
39
- "digest": "sha256:ca764740841b364ff7cfea79b87221d29c09df09fee6d19e78ed4b0b173bfad3",
39
+ "digest": "sha256:332f058d9a016cc31c709a3447a56dc43ffd0c5e6cdbcd15f9a62f61bb16eb15",
40
40
  "capabilityGroup": "release-passport-trust",
41
41
  "audience": [
42
42
  "release-operator",
@@ -78,7 +78,7 @@
78
78
  "title": "README badge blocks",
79
79
  "path": "docs/readme-badges.md",
80
80
  "plane": "use",
81
- "digest": "sha256:ddaf49a7d6e6c11aea8d21d1ba736159897e16207cd74af0044014425faf8a2c",
81
+ "digest": "sha256:d032ddd27db62bdb21031cbd0673d9ae61af0250c12522fe6106e7aff835fb21",
82
82
  "capabilityGroup": "distribution-indexes",
83
83
  "audience": [
84
84
  "consumer",
@@ -217,7 +217,7 @@
217
217
  "title": "CLI and npm package",
218
218
  "path": "docs/cli.md",
219
219
  "plane": "use",
220
- "digest": "sha256:2f55874feb9acecce1c471b96e07bb9a198a8da93efd0f859d69f353bf9c36a8",
220
+ "digest": "sha256:b6bc32831d202d5c542d72f6e63322f632014751e7db00862b28fb9ce5318fd3",
221
221
  "capabilityGroup": "api-cli-reference",
222
222
  "audience": [
223
223
  "agent",
@@ -245,7 +245,7 @@
245
245
  "title": "KFD support and KFD-3 surface registration",
246
246
  "path": "docs/kfd-support.md",
247
247
  "plane": "verify",
248
- "digest": "sha256:4bb33e408a2129e1534e92bea78d3cc0e4d8f986b0fbb27fe73ae6eae46b9ca3",
248
+ "digest": "sha256:704efbf7be24d641d8b119737eb33b3e98fea8c55cf434f7f475160809f4e3a4",
249
249
  "capabilityGroup": "kfd-trust",
250
250
  "audience": [
251
251
  "agent",
@@ -259,7 +259,7 @@
259
259
  "title": "Lifecycle protocol",
260
260
  "path": "docs/lifecycle-protocol.md",
261
261
  "plane": "use",
262
- "digest": "sha256:c76516894cf540da9a6722ba96c475386901ab448ab71ede5850a185f6a716c9",
262
+ "digest": "sha256:191d706801abe5cea7927042b9cd7989f19cf868e726f8ac5852dff9490aa14f",
263
263
  "capabilityGroup": "reusable-build",
264
264
  "audience": [
265
265
  "consumer",
@@ -273,7 +273,7 @@
273
273
  "title": "Reusable build surface",
274
274
  "path": "docs/reusable-build-surface.md",
275
275
  "plane": "use",
276
- "digest": "sha256:a3f979fcede4450dabe5b8d6182395993c9f28559f7176b071a6ff9db565a355",
276
+ "digest": "sha256:5f56d66ad2798bc46acde3f8091c2e5ccee80412c1b26b70c8197ff9c7f6a406",
277
277
  "capabilityGroup": "reusable-build",
278
278
  "audience": [
279
279
  "consumer",
@@ -287,7 +287,7 @@
287
287
  "title": "Publish transaction",
288
288
  "path": "docs/publish-transaction.md",
289
289
  "plane": "verify",
290
- "digest": "sha256:c3fc5c49180db9167e1cf5bc5ff403e5a21cb55d1ba750bd0cfcd2429ad825b2",
290
+ "digest": "sha256:2523dd9a81e837918afae30c203349a7b29f00fdf953962a6db360fd95e0c6cb",
291
291
  "capabilityGroup": "release-passport-trust",
292
292
  "audience": [
293
293
  "release-operator"
@@ -355,7 +355,7 @@
355
355
  "title": "Web surface deployments",
356
356
  "path": "docs/web-surface-deployments.md",
357
357
  "plane": "use",
358
- "digest": "sha256:58673b84879a219572fe39aa8b4d01cfc34fabf664b3318753d61043821edaff",
358
+ "digest": "sha256:8d60ee80b1d4af1faa092ff9d7170330b02361d1f479221f73c6dc021aac1e60",
359
359
  "capabilityGroup": "site-and-propagation",
360
360
  "audience": [
361
361
  "site",