@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.
Files changed (127) hide show
  1. package/AGENTS.md +1 -1
  2. package/CONTRIBUTING.md +1 -1
  3. package/README.md +27 -1
  4. package/actions/promote-buildchain-ref/README.md +90 -19
  5. package/actions/report-buildchain-issue/README.md +20 -2
  6. package/actions/run-lifecycle/README.md +5 -0
  7. package/actions/validate-config/README.md +19 -1
  8. package/bin/buildchain.mjs +56 -2
  9. package/bin/internal/command-registry.mjs +82 -0
  10. package/bin/internal/trust-release-cli.mjs +1 -0
  11. package/contracts/auditable-demo-media-profiles-v1.json +116 -1
  12. package/contracts/buildchain-v2-residuals-v1.json +146 -0
  13. package/contracts/evidence/auditable-demo-responsive-web-delivery-v1.json +143 -0
  14. package/contracts/evidence/auditable-demo-web-delivery-v1.json +7 -3
  15. package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/complete-transcript.txt +2 -0
  16. package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/public-projection.json +16 -0
  17. package/contracts/fixtures/auditable-demo-responsive-web-delivery-v1/scene.json +12 -0
  18. package/dist/site/buildchain-contract.json +188 -46
  19. package/dist/site/buildchain-site.json +181 -90
  20. package/dist/site/capability-registry.json +5 -5
  21. package/dist/site/cli-registry.json +860 -98
  22. package/dist/site/controller-registry.json +118 -5
  23. package/dist/site/kfd-claims.json +233 -19
  24. package/dist/site/kfd-upstream-aggregate.json +1 -1
  25. package/dist/site/manual-registry.json +20 -20
  26. package/dist/site/node-api-registry.json +374 -59
  27. package/dist/site/page-registry.json +156 -65
  28. package/dist/site/public-surface-audit.json +231 -22
  29. package/dist/site/publication-registry.json +4 -4
  30. package/dist/site/release-provenance.json +3 -0
  31. package/dist/site/site-manifest.json +24 -24
  32. package/dist/site/workflow-registry.json +575 -79
  33. package/docs/MAP.md +22 -4
  34. package/docs/auditable-demo.md +54 -13
  35. package/docs/aws-us-elastic-runner-burst-plane.md +381 -0
  36. package/docs/cli.md +119 -12
  37. package/docs/consumer-issue-reporting.md +20 -2
  38. package/docs/dev-alpha-candidate-patrol.md +24 -10
  39. package/docs/github-governance-authority.md +24 -31
  40. package/docs/lifecycle-protocol.md +20 -2
  41. package/docs/migration-inventory.md +24 -5
  42. package/docs/observed-evidence-patrol.md +28 -12
  43. package/docs/ownership.md +19 -1
  44. package/docs/publication-artifacts.md +158 -18
  45. package/docs/publication-authority.md +4 -4
  46. package/docs/publish-transaction.md +78 -31
  47. package/docs/release-candidate.md +24 -0
  48. package/docs/release-flow.md +50 -32
  49. package/docs/release-governance.md +39 -32
  50. package/docs/release-passport.md +4 -0
  51. package/docs/release-propagation.md +57 -12
  52. package/docs/reusable-build-surface.md +218 -90
  53. package/docs/runtime-train-validation.md +20 -2
  54. package/docs/shifu-gate-profiles.md +7 -1
  55. package/docs/stable-candidate-patrol.md +6 -6
  56. package/docs/toolkit-observability.md +22 -0
  57. package/docs/versioning.md +46 -24
  58. package/docs/web-surface-deployments.md +82 -1
  59. package/package.json +7 -5
  60. package/packages/core/README.md +60 -4
  61. package/packages/core/artifact-signing.js +1 -0
  62. package/packages/core/buildchain-contract.js +9 -4
  63. package/packages/core/cache-evidence.js +1 -0
  64. package/packages/core/controller-evidence.js +2 -0
  65. package/packages/core/diagnostics.js +105 -30
  66. package/packages/core/github-governance-authority.js +25 -17
  67. package/packages/core/index.js +40 -0
  68. package/packages/core/paper.js +3226 -0
  69. package/packages/core/public-surface-audit.js +3 -0
  70. package/packages/core/publication-artifact.js +1 -6
  71. package/packages/core/publication-authority.js +1 -0
  72. package/packages/core/publication-control-plane-audit.js +28 -0
  73. package/packages/core/publication-reproducibility.js +947 -0
  74. package/packages/core/publication-sealed-bundle.js +190 -0
  75. package/packages/core/publish-transaction.js +147 -17
  76. package/packages/core/release-candidate.js +234 -0
  77. package/packages/core/release-passport.js +519 -228
  78. package/packages/core/release-propagation.js +175 -1
  79. package/packages/core/stable-release-gate.js +4 -1
  80. package/scripts/artifact-signing-delegation.mjs +268 -0
  81. package/scripts/audit-github-governance.mjs +32 -13
  82. package/scripts/audit-publication-control-plane.mjs +17 -8
  83. package/scripts/auditable-demo.mjs +266 -7
  84. package/scripts/aws-codebuild-toolchain.mjs +285 -0
  85. package/scripts/aws-macos-jit-core.mjs +378 -0
  86. package/scripts/aws-macos-jit.mjs +123 -0
  87. package/scripts/aws-runner-burst-core.mjs +248 -0
  88. package/scripts/aws-runner-burst.mjs +79 -0
  89. package/scripts/aws-windows-jit-core.mjs +374 -0
  90. package/scripts/aws-windows-jit.mjs +121 -0
  91. package/scripts/build-contract-core.mjs +69 -6
  92. package/scripts/build-standalone-binary.mjs +23 -0
  93. package/scripts/buildchain-contract-lock.mjs +1 -1
  94. package/scripts/buildchain-patrol.mjs +1 -1
  95. package/scripts/check-internal-architecture.mjs +69 -2
  96. package/scripts/check-inventory.mjs +70 -2
  97. package/scripts/check-javascript-syntax.mjs +31 -0
  98. package/scripts/check-maintainability.mjs +371 -0
  99. package/scripts/compiler-cache-evidence.mjs +221 -0
  100. package/scripts/dev-alpha-candidate-patrol.mjs +288 -43
  101. package/scripts/dispatch-artifact-signing-authority.mjs +7 -1
  102. package/scripts/finalize-native-artifact-signing-result.mjs +185 -31
  103. package/scripts/gate-profile-core.mjs +6 -1
  104. package/scripts/generate-channel-promotion-workflow.mjs +3 -12
  105. package/scripts/generate-release-candidate-passport.mjs +4 -0
  106. package/scripts/generate-site-bundle.mjs +84 -18
  107. package/scripts/import-artifact-signing-results.mjs +64 -5
  108. package/scripts/inspect-artifact-signing-requests.mjs +52 -14
  109. package/scripts/maintainability-metrics.mjs +339 -0
  110. package/scripts/npm-publish-transaction.mjs +57 -6
  111. package/scripts/observed-evidence.mjs +151 -33
  112. package/scripts/paper.mjs +645 -0
  113. package/scripts/promotion-channel-router.mjs +16 -4
  114. package/scripts/publication-reproducibility.mjs +62 -0
  115. package/scripts/reconcile-github-governance.mjs +8 -1
  116. package/scripts/release-propagation.mjs +39 -0
  117. package/scripts/resolve-artifact-signing-upload-route.mjs +55 -0
  118. package/scripts/resolve-build-contract.mjs +6 -0
  119. package/scripts/route-offline-runners.mjs +236 -0
  120. package/scripts/run-candidate-body-prefix-renderer.mjs +187 -0
  121. package/scripts/run-lifecycle-core.mjs +62 -1
  122. package/scripts/runtime-ref-core.mjs +36 -4
  123. package/scripts/seal-artifact-signing-requests.mjs +64 -12
  124. package/scripts/stable-candidate-qualification.mjs +50 -0
  125. package/scripts/verify-artifact-signing-results.mjs +26 -1
  126. package/scripts/web-surface-core.mjs +272 -86
  127. package/scripts/web-surface-production-decision.mjs +19 -3
@@ -3,7 +3,7 @@
3
3
  "contract": "kungfu-buildchain-cli-registry",
4
4
  "binary": "buildchain",
5
5
  "npmPackage": "@kungfu-tech/buildchain",
6
- "commandSource": "bin/buildchain.mjs reverse enumeration",
6
+ "commandSource": "bin/internal/command-registry.mjs plus bin/buildchain.mjs help enumeration",
7
7
  "commands": [
8
8
  {
9
9
  "id": "audit",
@@ -15,7 +15,13 @@
15
15
  "agent",
16
16
  "operator"
17
17
  ],
18
- "maturity": "stable"
18
+ "owner": "buildchain-cli",
19
+ "maturity": "stable",
20
+ "introducedVersion": "pre-3.0.2-alpha.4",
21
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
22
+ "deprecationReplacement": "",
23
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
24
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
19
25
  },
20
26
  {
21
27
  "id": "badges",
@@ -27,7 +33,13 @@
27
33
  "agent",
28
34
  "operator"
29
35
  ],
30
- "maturity": "stable"
36
+ "owner": "buildchain-cli",
37
+ "maturity": "stable",
38
+ "introducedVersion": "pre-3.0.2-alpha.4",
39
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
40
+ "deprecationReplacement": "",
41
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
42
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
31
43
  },
32
44
  {
33
45
  "id": "badges-bundle",
@@ -39,7 +51,13 @@
39
51
  "agent",
40
52
  "operator"
41
53
  ],
42
- "maturity": "stable"
54
+ "owner": "buildchain-cli",
55
+ "maturity": "stable",
56
+ "introducedVersion": "pre-3.0.2-alpha.4",
57
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
58
+ "deprecationReplacement": "",
59
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
60
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
43
61
  },
44
62
  {
45
63
  "id": "badges-readme",
@@ -51,7 +69,13 @@
51
69
  "agent",
52
70
  "operator"
53
71
  ],
54
- "maturity": "stable"
72
+ "owner": "buildchain-cli",
73
+ "maturity": "stable",
74
+ "introducedVersion": "pre-3.0.2-alpha.4",
75
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
76
+ "deprecationReplacement": "",
77
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
78
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
55
79
  },
56
80
  {
57
81
  "id": "build-contract",
@@ -63,7 +87,13 @@
63
87
  "agent",
64
88
  "operator"
65
89
  ],
66
- "maturity": "stable"
90
+ "owner": "buildchain-cli",
91
+ "maturity": "stable",
92
+ "introducedVersion": "pre-3.0.2-alpha.4",
93
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
94
+ "deprecationReplacement": "",
95
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
96
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
67
97
  },
68
98
  {
69
99
  "id": "build-facts",
@@ -75,7 +105,13 @@
75
105
  "agent",
76
106
  "operator"
77
107
  ],
78
- "maturity": "stable"
108
+ "owner": "buildchain-cli",
109
+ "maturity": "stable",
110
+ "introducedVersion": "pre-3.0.2-alpha.4",
111
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
112
+ "deprecationReplacement": "",
113
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
114
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
79
115
  },
80
116
  {
81
117
  "id": "candidate",
@@ -87,7 +123,13 @@
87
123
  "agent",
88
124
  "operator"
89
125
  ],
90
- "maturity": "stable"
126
+ "owner": "buildchain-cli",
127
+ "maturity": "stable",
128
+ "introducedVersion": "pre-3.0.2-alpha.4",
129
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
130
+ "deprecationReplacement": "",
131
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
132
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
91
133
  },
92
134
  {
93
135
  "id": "collect",
@@ -99,7 +141,13 @@
99
141
  "agent",
100
142
  "operator"
101
143
  ],
102
- "maturity": "stable"
144
+ "owner": "buildchain-cli",
145
+ "maturity": "stable",
146
+ "introducedVersion": "pre-3.0.2-alpha.4",
147
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
148
+ "deprecationReplacement": "",
149
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
150
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
103
151
  },
104
152
  {
105
153
  "id": "collect-github-release",
@@ -111,7 +159,13 @@
111
159
  "agent",
112
160
  "operator"
113
161
  ],
114
- "maturity": "stable"
162
+ "owner": "buildchain-cli",
163
+ "maturity": "stable",
164
+ "introducedVersion": "pre-3.0.2-alpha.4",
165
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
166
+ "deprecationReplacement": "",
167
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
168
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
115
169
  },
116
170
  {
117
171
  "id": "create",
@@ -123,7 +177,13 @@
123
177
  "agent",
124
178
  "operator"
125
179
  ],
126
- "maturity": "stable"
180
+ "owner": "buildchain-cli",
181
+ "maturity": "stable",
182
+ "introducedVersion": "pre-3.0.2-alpha.4",
183
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
184
+ "deprecationReplacement": "",
185
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
186
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
127
187
  },
128
188
  {
129
189
  "id": "dev",
@@ -135,7 +195,13 @@
135
195
  "agent",
136
196
  "operator"
137
197
  ],
138
- "maturity": "stable"
198
+ "owner": "buildchain-cli",
199
+ "maturity": "stable",
200
+ "introducedVersion": "pre-3.0.2-alpha.4",
201
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
202
+ "deprecationReplacement": "",
203
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
204
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
139
205
  },
140
206
  {
141
207
  "id": "diagnostics",
@@ -147,7 +213,13 @@
147
213
  "agent",
148
214
  "operator"
149
215
  ],
150
- "maturity": "stable"
216
+ "owner": "buildchain-cli",
217
+ "maturity": "stable",
218
+ "introducedVersion": "pre-3.0.2-alpha.4",
219
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
220
+ "deprecationReplacement": "",
221
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
222
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
151
223
  },
152
224
  {
153
225
  "id": "diagnostics-summary",
@@ -159,7 +231,13 @@
159
231
  "agent",
160
232
  "operator"
161
233
  ],
162
- "maturity": "stable"
234
+ "owner": "buildchain-cli",
235
+ "maturity": "stable",
236
+ "introducedVersion": "pre-3.0.2-alpha.4",
237
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
238
+ "deprecationReplacement": "",
239
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
240
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
163
241
  },
164
242
  {
165
243
  "id": "doctor",
@@ -171,7 +249,13 @@
171
249
  "agent",
172
250
  "operator"
173
251
  ],
174
- "maturity": "stable"
252
+ "owner": "buildchain-cli",
253
+ "maturity": "stable",
254
+ "introducedVersion": "pre-3.0.2-alpha.4",
255
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
256
+ "deprecationReplacement": "",
257
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
258
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
175
259
  },
176
260
  {
177
261
  "id": "explain",
@@ -183,7 +267,13 @@
183
267
  "agent",
184
268
  "operator"
185
269
  ],
186
- "maturity": "stable"
270
+ "owner": "buildchain-cli",
271
+ "maturity": "stable",
272
+ "introducedVersion": "pre-3.0.2-alpha.4",
273
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
274
+ "deprecationReplacement": "",
275
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
276
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
187
277
  },
188
278
  {
189
279
  "id": "explain-artifact",
@@ -195,7 +285,13 @@
195
285
  "agent",
196
286
  "operator"
197
287
  ],
198
- "maturity": "stable"
288
+ "owner": "buildchain-cli",
289
+ "maturity": "stable",
290
+ "introducedVersion": "pre-3.0.2-alpha.4",
291
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
292
+ "deprecationReplacement": "",
293
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
294
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
199
295
  },
200
296
  {
201
297
  "id": "explain-release",
@@ -207,7 +303,13 @@
207
303
  "agent",
208
304
  "operator"
209
305
  ],
210
- "maturity": "stable"
306
+ "owner": "buildchain-cli",
307
+ "maturity": "stable",
308
+ "introducedVersion": "pre-3.0.2-alpha.4",
309
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
310
+ "deprecationReplacement": "",
311
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
312
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
211
313
  },
212
314
  {
213
315
  "id": "facts",
@@ -219,7 +321,13 @@
219
321
  "agent",
220
322
  "operator"
221
323
  ],
222
- "maturity": "stable"
324
+ "owner": "buildchain-cli",
325
+ "maturity": "stable",
326
+ "introducedVersion": "pre-3.0.2-alpha.4",
327
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
328
+ "deprecationReplacement": "",
329
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
330
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
223
331
  },
224
332
  {
225
333
  "id": "github-governance",
@@ -231,7 +339,13 @@
231
339
  "agent",
232
340
  "operator"
233
341
  ],
234
- "maturity": "stable"
342
+ "owner": "buildchain-cli",
343
+ "maturity": "stable",
344
+ "introducedVersion": "pre-3.0.2-alpha.4",
345
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
346
+ "deprecationReplacement": "",
347
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
348
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
235
349
  },
236
350
  {
237
351
  "id": "help",
@@ -243,7 +357,13 @@
243
357
  "agent",
244
358
  "operator"
245
359
  ],
246
- "maturity": "stable"
360
+ "owner": "buildchain-cli",
361
+ "maturity": "stable",
362
+ "introducedVersion": "pre-3.0.2-alpha.4",
363
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
364
+ "deprecationReplacement": "",
365
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
366
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
247
367
  },
248
368
  {
249
369
  "id": "homebrew",
@@ -255,7 +375,13 @@
255
375
  "agent",
256
376
  "operator"
257
377
  ],
258
- "maturity": "stable"
378
+ "owner": "buildchain-cli",
379
+ "maturity": "stable",
380
+ "introducedVersion": "pre-3.0.2-alpha.4",
381
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
382
+ "deprecationReplacement": "",
383
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
384
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
259
385
  },
260
386
  {
261
387
  "id": "homebrew-check",
@@ -267,7 +393,13 @@
267
393
  "agent",
268
394
  "operator"
269
395
  ],
270
- "maturity": "stable"
396
+ "owner": "buildchain-cli",
397
+ "maturity": "stable",
398
+ "introducedVersion": "pre-3.0.2-alpha.4",
399
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
400
+ "deprecationReplacement": "",
401
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
402
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
271
403
  },
272
404
  {
273
405
  "id": "homebrew-update-formula",
@@ -279,7 +411,13 @@
279
411
  "agent",
280
412
  "operator"
281
413
  ],
282
- "maturity": "stable"
414
+ "owner": "buildchain-cli",
415
+ "maturity": "stable",
416
+ "introducedVersion": "pre-3.0.2-alpha.4",
417
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
418
+ "deprecationReplacement": "",
419
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
420
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
283
421
  },
284
422
  {
285
423
  "id": "infra-contract",
@@ -291,7 +429,13 @@
291
429
  "agent",
292
430
  "operator"
293
431
  ],
294
- "maturity": "stable"
432
+ "owner": "buildchain-cli",
433
+ "maturity": "stable",
434
+ "introducedVersion": "pre-3.0.2-alpha.4",
435
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
436
+ "deprecationReplacement": "",
437
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
438
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
295
439
  },
296
440
  {
297
441
  "id": "init",
@@ -303,7 +447,13 @@
303
447
  "agent",
304
448
  "operator"
305
449
  ],
306
- "maturity": "stable"
450
+ "owner": "buildchain-cli",
451
+ "maturity": "stable",
452
+ "introducedVersion": "pre-3.0.2-alpha.4",
453
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
454
+ "deprecationReplacement": "",
455
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
456
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
307
457
  },
308
458
  {
309
459
  "id": "inspect",
@@ -315,7 +465,13 @@
315
465
  "agent",
316
466
  "operator"
317
467
  ],
318
- "maturity": "stable"
468
+ "owner": "buildchain-cli",
469
+ "maturity": "stable",
470
+ "introducedVersion": "pre-3.0.2-alpha.4",
471
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
472
+ "deprecationReplacement": "",
473
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
474
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
319
475
  },
320
476
  {
321
477
  "id": "inspect-artifact",
@@ -327,7 +483,13 @@
327
483
  "agent",
328
484
  "operator"
329
485
  ],
330
- "maturity": "stable"
486
+ "owner": "buildchain-cli",
487
+ "maturity": "stable",
488
+ "introducedVersion": "pre-3.0.2-alpha.4",
489
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
490
+ "deprecationReplacement": "",
491
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
492
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
331
493
  },
332
494
  {
333
495
  "id": "inspect-release",
@@ -339,7 +501,13 @@
339
501
  "agent",
340
502
  "operator"
341
503
  ],
342
- "maturity": "stable"
504
+ "owner": "buildchain-cli",
505
+ "maturity": "stable",
506
+ "introducedVersion": "pre-3.0.2-alpha.4",
507
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
508
+ "deprecationReplacement": "",
509
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
510
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
343
511
  },
344
512
  {
345
513
  "id": "kfd",
@@ -351,7 +519,13 @@
351
519
  "agent",
352
520
  "operator"
353
521
  ],
354
- "maturity": "stable"
522
+ "owner": "buildchain-cli",
523
+ "maturity": "stable",
524
+ "introducedVersion": "pre-3.0.2-alpha.4",
525
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
526
+ "deprecationReplacement": "",
527
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
528
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
355
529
  },
356
530
  {
357
531
  "id": "kfd-1-gate",
@@ -363,7 +537,13 @@
363
537
  "agent",
364
538
  "operator"
365
539
  ],
366
- "maturity": "stable"
540
+ "owner": "buildchain-cli",
541
+ "maturity": "stable",
542
+ "introducedVersion": "pre-3.0.2-alpha.4",
543
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
544
+ "deprecationReplacement": "",
545
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
546
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
367
547
  },
368
548
  {
369
549
  "id": "kfd-1-schema",
@@ -375,7 +555,13 @@
375
555
  "agent",
376
556
  "operator"
377
557
  ],
378
- "maturity": "stable"
558
+ "owner": "buildchain-cli",
559
+ "maturity": "stable",
560
+ "introducedVersion": "pre-3.0.2-alpha.4",
561
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
562
+ "deprecationReplacement": "",
563
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
564
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
379
565
  },
380
566
  {
381
567
  "id": "kfd-1-verify",
@@ -387,7 +573,13 @@
387
573
  "agent",
388
574
  "operator"
389
575
  ],
390
- "maturity": "stable"
576
+ "owner": "buildchain-cli",
577
+ "maturity": "stable",
578
+ "introducedVersion": "pre-3.0.2-alpha.4",
579
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
580
+ "deprecationReplacement": "",
581
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
582
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
391
583
  },
392
584
  {
393
585
  "id": "kfd-1-witness",
@@ -399,7 +591,13 @@
399
591
  "agent",
400
592
  "operator"
401
593
  ],
402
- "maturity": "stable"
594
+ "owner": "buildchain-cli",
595
+ "maturity": "stable",
596
+ "introducedVersion": "pre-3.0.2-alpha.4",
597
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
598
+ "deprecationReplacement": "",
599
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
600
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
403
601
  },
404
602
  {
405
603
  "id": "kfd-2-claims",
@@ -411,7 +609,13 @@
411
609
  "agent",
412
610
  "operator"
413
611
  ],
414
- "maturity": "stable"
612
+ "owner": "buildchain-cli",
613
+ "maturity": "stable",
614
+ "introducedVersion": "pre-3.0.2-alpha.4",
615
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
616
+ "deprecationReplacement": "",
617
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
618
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
415
619
  },
416
620
  {
417
621
  "id": "kfd-2-product-claims",
@@ -423,7 +627,13 @@
423
627
  "agent",
424
628
  "operator"
425
629
  ],
426
- "maturity": "stable"
630
+ "owner": "buildchain-cli",
631
+ "maturity": "stable",
632
+ "introducedVersion": "pre-3.0.2-alpha.4",
633
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
634
+ "deprecationReplacement": "",
635
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
636
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
427
637
  },
428
638
  {
429
639
  "id": "kfd-2-schema",
@@ -435,7 +645,13 @@
435
645
  "agent",
436
646
  "operator"
437
647
  ],
438
- "maturity": "stable"
648
+ "owner": "buildchain-cli",
649
+ "maturity": "stable",
650
+ "introducedVersion": "pre-3.0.2-alpha.4",
651
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
652
+ "deprecationReplacement": "",
653
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
654
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
439
655
  },
440
656
  {
441
657
  "id": "kfd-2-taxonomy",
@@ -447,7 +663,13 @@
447
663
  "agent",
448
664
  "operator"
449
665
  ],
450
- "maturity": "stable"
666
+ "owner": "buildchain-cli",
667
+ "maturity": "stable",
668
+ "introducedVersion": "pre-3.0.2-alpha.4",
669
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
670
+ "deprecationReplacement": "",
671
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
672
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
451
673
  },
452
674
  {
453
675
  "id": "kfd-2-trust-assessment",
@@ -459,7 +681,13 @@
459
681
  "agent",
460
682
  "operator"
461
683
  ],
462
- "maturity": "stable"
684
+ "owner": "buildchain-cli",
685
+ "maturity": "stable",
686
+ "introducedVersion": "pre-3.0.2-alpha.4",
687
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
688
+ "deprecationReplacement": "",
689
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
690
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
463
691
  },
464
692
  {
465
693
  "id": "kfd-2-trust-claims",
@@ -471,7 +699,13 @@
471
699
  "agent",
472
700
  "operator"
473
701
  ],
474
- "maturity": "stable"
702
+ "owner": "buildchain-cli",
703
+ "maturity": "stable",
704
+ "introducedVersion": "pre-3.0.2-alpha.4",
705
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
706
+ "deprecationReplacement": "",
707
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
708
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
475
709
  },
476
710
  {
477
711
  "id": "kfd-3",
@@ -483,7 +717,13 @@
483
717
  "agent",
484
718
  "operator"
485
719
  ],
486
- "maturity": "stable"
720
+ "owner": "buildchain-cli",
721
+ "maturity": "stable",
722
+ "introducedVersion": "pre-3.0.2-alpha.4",
723
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
724
+ "deprecationReplacement": "",
725
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
726
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
487
727
  },
488
728
  {
489
729
  "id": "kfd-3-audit",
@@ -495,7 +735,13 @@
495
735
  "agent",
496
736
  "operator"
497
737
  ],
498
- "maturity": "stable"
738
+ "owner": "buildchain-cli",
739
+ "maturity": "stable",
740
+ "introducedVersion": "pre-3.0.2-alpha.4",
741
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
742
+ "deprecationReplacement": "",
743
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
744
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
499
745
  },
500
746
  {
501
747
  "id": "kfd-3-detect",
@@ -507,7 +753,13 @@
507
753
  "agent",
508
754
  "operator"
509
755
  ],
510
- "maturity": "stable"
756
+ "owner": "buildchain-cli",
757
+ "maturity": "stable",
758
+ "introducedVersion": "pre-3.0.2-alpha.4",
759
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
760
+ "deprecationReplacement": "",
761
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
762
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
511
763
  },
512
764
  {
513
765
  "id": "kfd-3-query",
@@ -519,7 +771,13 @@
519
771
  "agent",
520
772
  "operator"
521
773
  ],
522
- "maturity": "stable"
774
+ "owner": "buildchain-cli",
775
+ "maturity": "stable",
776
+ "introducedVersion": "pre-3.0.2-alpha.4",
777
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
778
+ "deprecationReplacement": "",
779
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
780
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
523
781
  },
524
782
  {
525
783
  "id": "kfd-3-register",
@@ -531,7 +789,13 @@
531
789
  "agent",
532
790
  "operator"
533
791
  ],
534
- "maturity": "stable"
792
+ "owner": "buildchain-cli",
793
+ "maturity": "stable",
794
+ "introducedVersion": "pre-3.0.2-alpha.4",
795
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
796
+ "deprecationReplacement": "",
797
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
798
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
535
799
  },
536
800
  {
537
801
  "id": "kfd-3-witness",
@@ -543,7 +807,13 @@
543
807
  "agent",
544
808
  "operator"
545
809
  ],
546
- "maturity": "stable"
810
+ "owner": "buildchain-cli",
811
+ "maturity": "stable",
812
+ "introducedVersion": "pre-3.0.2-alpha.4",
813
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
814
+ "deprecationReplacement": "",
815
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
816
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
547
817
  },
548
818
  {
549
819
  "id": "kfd-4-gate",
@@ -555,7 +825,13 @@
555
825
  "agent",
556
826
  "operator"
557
827
  ],
558
- "maturity": "stable"
828
+ "owner": "buildchain-cli",
829
+ "maturity": "stable",
830
+ "introducedVersion": "pre-3.0.2-alpha.4",
831
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
832
+ "deprecationReplacement": "",
833
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
834
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
559
835
  },
560
836
  {
561
837
  "id": "kfd-4-schema",
@@ -567,7 +843,13 @@
567
843
  "agent",
568
844
  "operator"
569
845
  ],
570
- "maturity": "stable"
846
+ "owner": "buildchain-cli",
847
+ "maturity": "stable",
848
+ "introducedVersion": "pre-3.0.2-alpha.4",
849
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
850
+ "deprecationReplacement": "",
851
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
852
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
571
853
  },
572
854
  {
573
855
  "id": "kfd-4-verify",
@@ -579,7 +861,13 @@
579
861
  "agent",
580
862
  "operator"
581
863
  ],
582
- "maturity": "stable"
864
+ "owner": "buildchain-cli",
865
+ "maturity": "stable",
866
+ "introducedVersion": "pre-3.0.2-alpha.4",
867
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
868
+ "deprecationReplacement": "",
869
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
870
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
583
871
  },
584
872
  {
585
873
  "id": "kfd-5-gate",
@@ -591,7 +879,13 @@
591
879
  "agent",
592
880
  "operator"
593
881
  ],
594
- "maturity": "stable"
882
+ "owner": "buildchain-cli",
883
+ "maturity": "stable",
884
+ "introducedVersion": "pre-3.0.2-alpha.4",
885
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
886
+ "deprecationReplacement": "",
887
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
888
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
595
889
  },
596
890
  {
597
891
  "id": "kfd-5-schema",
@@ -603,7 +897,13 @@
603
897
  "agent",
604
898
  "operator"
605
899
  ],
606
- "maturity": "stable"
900
+ "owner": "buildchain-cli",
901
+ "maturity": "stable",
902
+ "introducedVersion": "pre-3.0.2-alpha.4",
903
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
904
+ "deprecationReplacement": "",
905
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
906
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
607
907
  },
608
908
  {
609
909
  "id": "kfd-5-verify",
@@ -615,7 +915,13 @@
615
915
  "agent",
616
916
  "operator"
617
917
  ],
618
- "maturity": "stable"
918
+ "owner": "buildchain-cli",
919
+ "maturity": "stable",
920
+ "introducedVersion": "pre-3.0.2-alpha.4",
921
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
922
+ "deprecationReplacement": "",
923
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
924
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
619
925
  },
620
926
  {
621
927
  "id": "kfd-7-gate",
@@ -627,7 +933,13 @@
627
933
  "agent",
628
934
  "operator"
629
935
  ],
630
- "maturity": "stable"
936
+ "owner": "buildchain-cli",
937
+ "maturity": "stable",
938
+ "introducedVersion": "pre-3.0.2-alpha.4",
939
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
940
+ "deprecationReplacement": "",
941
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
942
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
631
943
  },
632
944
  {
633
945
  "id": "kfd-7-schema",
@@ -639,7 +951,13 @@
639
951
  "agent",
640
952
  "operator"
641
953
  ],
642
- "maturity": "stable"
954
+ "owner": "buildchain-cli",
955
+ "maturity": "stable",
956
+ "introducedVersion": "pre-3.0.2-alpha.4",
957
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
958
+ "deprecationReplacement": "",
959
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
960
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
643
961
  },
644
962
  {
645
963
  "id": "kfd-7-verify",
@@ -651,7 +969,13 @@
651
969
  "agent",
652
970
  "operator"
653
971
  ],
654
- "maturity": "stable"
972
+ "owner": "buildchain-cli",
973
+ "maturity": "stable",
974
+ "introducedVersion": "pre-3.0.2-alpha.4",
975
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
976
+ "deprecationReplacement": "",
977
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
978
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
655
979
  },
656
980
  {
657
981
  "id": "kfd-aggregate",
@@ -663,7 +987,13 @@
663
987
  "agent",
664
988
  "operator"
665
989
  ],
666
- "maturity": "stable"
990
+ "owner": "buildchain-cli",
991
+ "maturity": "stable",
992
+ "introducedVersion": "pre-3.0.2-alpha.4",
993
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
994
+ "deprecationReplacement": "",
995
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
996
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
667
997
  },
668
998
  {
669
999
  "id": "kfd-hub",
@@ -675,7 +1005,13 @@
675
1005
  "agent",
676
1006
  "operator"
677
1007
  ],
678
- "maturity": "stable"
1008
+ "owner": "buildchain-cli",
1009
+ "maturity": "stable",
1010
+ "introducedVersion": "pre-3.0.2-alpha.4",
1011
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1012
+ "deprecationReplacement": "",
1013
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1014
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
679
1015
  },
680
1016
  {
681
1017
  "id": "kfd-migrate-layout",
@@ -687,7 +1023,13 @@
687
1023
  "agent",
688
1024
  "operator"
689
1025
  ],
690
- "maturity": "stable"
1026
+ "owner": "buildchain-cli",
1027
+ "maturity": "stable",
1028
+ "introducedVersion": "pre-3.0.2-alpha.4",
1029
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1030
+ "deprecationReplacement": "",
1031
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1032
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
691
1033
  },
692
1034
  {
693
1035
  "id": "kfd-schema-list",
@@ -699,7 +1041,13 @@
699
1041
  "agent",
700
1042
  "operator"
701
1043
  ],
702
- "maturity": "stable"
1044
+ "owner": "buildchain-cli",
1045
+ "maturity": "stable",
1046
+ "introducedVersion": "pre-3.0.2-alpha.4",
1047
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1048
+ "deprecationReplacement": "",
1049
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1050
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
703
1051
  },
704
1052
  {
705
1053
  "id": "kfd-schema-show",
@@ -711,7 +1059,13 @@
711
1059
  "agent",
712
1060
  "operator"
713
1061
  ],
714
- "maturity": "stable"
1062
+ "owner": "buildchain-cli",
1063
+ "maturity": "stable",
1064
+ "introducedVersion": "pre-3.0.2-alpha.4",
1065
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1066
+ "deprecationReplacement": "",
1067
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1068
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
715
1069
  },
716
1070
  {
717
1071
  "id": "kfd-status",
@@ -723,7 +1077,13 @@
723
1077
  "agent",
724
1078
  "operator"
725
1079
  ],
726
- "maturity": "stable"
1080
+ "owner": "buildchain-cli",
1081
+ "maturity": "stable",
1082
+ "introducedVersion": "pre-3.0.2-alpha.4",
1083
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1084
+ "deprecationReplacement": "",
1085
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1086
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
727
1087
  },
728
1088
  {
729
1089
  "id": "kfd-support",
@@ -735,7 +1095,13 @@
735
1095
  "agent",
736
1096
  "operator"
737
1097
  ],
738
- "maturity": "stable"
1098
+ "owner": "buildchain-cli",
1099
+ "maturity": "stable",
1100
+ "introducedVersion": "pre-3.0.2-alpha.4",
1101
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1102
+ "deprecationReplacement": "",
1103
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1104
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
739
1105
  },
740
1106
  {
741
1107
  "id": "kfd-upstream-check",
@@ -747,7 +1113,13 @@
747
1113
  "agent",
748
1114
  "operator"
749
1115
  ],
750
- "maturity": "stable"
1116
+ "owner": "buildchain-cli",
1117
+ "maturity": "stable",
1118
+ "introducedVersion": "pre-3.0.2-alpha.4",
1119
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1120
+ "deprecationReplacement": "",
1121
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1122
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
751
1123
  },
752
1124
  {
753
1125
  "id": "kfd-upstream-collect",
@@ -759,7 +1131,13 @@
759
1131
  "agent",
760
1132
  "operator"
761
1133
  ],
762
- "maturity": "stable"
1134
+ "owner": "buildchain-cli",
1135
+ "maturity": "stable",
1136
+ "introducedVersion": "pre-3.0.2-alpha.4",
1137
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1138
+ "deprecationReplacement": "",
1139
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1140
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
763
1141
  },
764
1142
  {
765
1143
  "id": "kfd-upstream-roles",
@@ -771,7 +1149,13 @@
771
1149
  "agent",
772
1150
  "operator"
773
1151
  ],
774
- "maturity": "stable"
1152
+ "owner": "buildchain-cli",
1153
+ "maturity": "stable",
1154
+ "introducedVersion": "pre-3.0.2-alpha.4",
1155
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1156
+ "deprecationReplacement": "",
1157
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1158
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
775
1159
  },
776
1160
  {
777
1161
  "id": "layout",
@@ -783,7 +1167,13 @@
783
1167
  "agent",
784
1168
  "operator"
785
1169
  ],
786
- "maturity": "stable"
1170
+ "owner": "buildchain-cli",
1171
+ "maturity": "stable",
1172
+ "introducedVersion": "pre-3.0.2-alpha.4",
1173
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1174
+ "deprecationReplacement": "",
1175
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1176
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
787
1177
  },
788
1178
  {
789
1179
  "id": "lifecycle",
@@ -795,7 +1185,13 @@
795
1185
  "agent",
796
1186
  "operator"
797
1187
  ],
798
- "maturity": "stable"
1188
+ "owner": "buildchain-cli",
1189
+ "maturity": "stable",
1190
+ "introducedVersion": "pre-3.0.2-alpha.4",
1191
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1192
+ "deprecationReplacement": "",
1193
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1194
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
799
1195
  },
800
1196
  {
801
1197
  "id": "log",
@@ -807,7 +1203,13 @@
807
1203
  "agent",
808
1204
  "operator"
809
1205
  ],
810
- "maturity": "stable"
1206
+ "owner": "buildchain-cli",
1207
+ "maturity": "stable",
1208
+ "introducedVersion": "pre-3.0.2-alpha.4",
1209
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1210
+ "deprecationReplacement": "",
1211
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1212
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
811
1213
  },
812
1214
  {
813
1215
  "id": "logging",
@@ -819,7 +1221,13 @@
819
1221
  "agent",
820
1222
  "operator"
821
1223
  ],
822
- "maturity": "stable"
1224
+ "owner": "buildchain-cli",
1225
+ "maturity": "stable",
1226
+ "introducedVersion": "pre-3.0.2-alpha.4",
1227
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1228
+ "deprecationReplacement": "",
1229
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1230
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
823
1231
  },
824
1232
  {
825
1233
  "id": "mark",
@@ -831,7 +1239,13 @@
831
1239
  "agent",
832
1240
  "operator"
833
1241
  ],
834
- "maturity": "stable"
1242
+ "owner": "buildchain-cli",
1243
+ "maturity": "stable",
1244
+ "introducedVersion": "pre-3.0.2-alpha.4",
1245
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1246
+ "deprecationReplacement": "",
1247
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1248
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
835
1249
  },
836
1250
  {
837
1251
  "id": "npm",
@@ -843,7 +1257,13 @@
843
1257
  "agent",
844
1258
  "operator"
845
1259
  ],
846
- "maturity": "stable"
1260
+ "owner": "buildchain-cli",
1261
+ "maturity": "stable",
1262
+ "introducedVersion": "pre-3.0.2-alpha.4",
1263
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1264
+ "deprecationReplacement": "",
1265
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1266
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
847
1267
  },
848
1268
  {
849
1269
  "id": "npm-dry-run",
@@ -855,7 +1275,175 @@
855
1275
  "agent",
856
1276
  "operator"
857
1277
  ],
858
- "maturity": "stable"
1278
+ "owner": "buildchain-cli",
1279
+ "maturity": "stable",
1280
+ "introducedVersion": "pre-3.0.2-alpha.4",
1281
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1282
+ "deprecationReplacement": "",
1283
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1284
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1285
+ },
1286
+ {
1287
+ "id": "paper",
1288
+ "source": "bin/buildchain.mjs",
1289
+ "usage": "buildchain paper",
1290
+ "purpose": "Inspect the unified paper repository and publication command families.",
1291
+ "capabilityGroup": "reusable-build",
1292
+ "audience": [
1293
+ "agent",
1294
+ "operator"
1295
+ ],
1296
+ "owner": "buildchain-cli",
1297
+ "maturity": "stable",
1298
+ "introducedVersion": "pre-3.0.2-alpha.4",
1299
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1300
+ "deprecationReplacement": "",
1301
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1302
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1303
+ },
1304
+ {
1305
+ "id": "paper-alpha",
1306
+ "source": "bin/buildchain.mjs",
1307
+ "usage": "buildchain paper alpha [--cwd <dir>] [--source-ref <ref>] [--target-ref <ref>]",
1308
+ "purpose": "Plan or open the protected dev-to-alpha paper publication PR without direct publication.",
1309
+ "capabilityGroup": "release-passport-trust",
1310
+ "audience": [
1311
+ "agent",
1312
+ "operator"
1313
+ ],
1314
+ "owner": "buildchain-cli",
1315
+ "maturity": "stable",
1316
+ "introducedVersion": "pre-3.0.2-alpha.4",
1317
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1318
+ "deprecationReplacement": "",
1319
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1320
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1321
+ },
1322
+ {
1323
+ "id": "paper-bootstrap-npm",
1324
+ "source": "bin/buildchain.mjs",
1325
+ "usage": "buildchain paper bootstrap npm [--cwd <dir>] [--execute]",
1326
+ "purpose": "Dry-run or explicitly bootstrap the public npm package and bind GitHub Trusted Publishing.",
1327
+ "capabilityGroup": "release-passport-trust",
1328
+ "audience": [
1329
+ "agent",
1330
+ "operator"
1331
+ ],
1332
+ "owner": "buildchain-cli",
1333
+ "maturity": "stable",
1334
+ "introducedVersion": "pre-3.0.2-alpha.4",
1335
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1336
+ "deprecationReplacement": "",
1337
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1338
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1339
+ },
1340
+ {
1341
+ "id": "paper-build",
1342
+ "source": "bin/buildchain.mjs",
1343
+ "usage": "buildchain paper build [--cwd <dir>] [--execute] [--json]",
1344
+ "purpose": "Plan or execute the existing two-clean-build reproducibility gate for a paper.",
1345
+ "capabilityGroup": "reusable-build",
1346
+ "audience": [
1347
+ "agent",
1348
+ "operator"
1349
+ ],
1350
+ "owner": "buildchain-cli",
1351
+ "maturity": "stable",
1352
+ "introducedVersion": "pre-3.0.2-alpha.4",
1353
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1354
+ "deprecationReplacement": "",
1355
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1356
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1357
+ },
1358
+ {
1359
+ "id": "paper-migrate",
1360
+ "source": "bin/buildchain.mjs",
1361
+ "usage": "buildchain paper migrate [--cwd <dir>] [--write] [--json]",
1362
+ "purpose": "Plan or write the bounded Buildchain-owned control-file migration for an existing paper repository.",
1363
+ "capabilityGroup": "getting-started",
1364
+ "audience": [
1365
+ "agent",
1366
+ "operator"
1367
+ ],
1368
+ "owner": "buildchain-cli",
1369
+ "maturity": "stable",
1370
+ "introducedVersion": "pre-3.0.2-alpha.4",
1371
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1372
+ "deprecationReplacement": "",
1373
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1374
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1375
+ },
1376
+ {
1377
+ "id": "paper-preflight",
1378
+ "source": "bin/buildchain.mjs",
1379
+ "usage": "buildchain paper preflight [--cwd <dir>] [--offline] [--json]",
1380
+ "purpose": "Report exact source, runtime, permission, npm trust, deterministic build, and release-state readiness.",
1381
+ "capabilityGroup": "reusable-build",
1382
+ "audience": [
1383
+ "agent",
1384
+ "operator"
1385
+ ],
1386
+ "owner": "buildchain-cli",
1387
+ "maturity": "stable",
1388
+ "introducedVersion": "pre-3.0.2-alpha.4",
1389
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1390
+ "deprecationReplacement": "",
1391
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1392
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1393
+ },
1394
+ {
1395
+ "id": "paper-resume",
1396
+ "source": "bin/buildchain.mjs",
1397
+ "usage": "buildchain paper resume [--cwd <dir>] [--buildchain-ref <ref>] [--execute] [--json]",
1398
+ "purpose": "Plan or dispatch recovery of the exact existing sealed paper release transaction.",
1399
+ "capabilityGroup": "release-passport-trust",
1400
+ "audience": [
1401
+ "agent",
1402
+ "operator"
1403
+ ],
1404
+ "owner": "buildchain-cli",
1405
+ "maturity": "stable",
1406
+ "introducedVersion": "pre-3.0.2-alpha.4",
1407
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1408
+ "deprecationReplacement": "",
1409
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1410
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1411
+ },
1412
+ {
1413
+ "id": "paper-scaffold",
1414
+ "source": "bin/buildchain.mjs",
1415
+ "usage": "buildchain paper scaffold --package <name> --repository <owner/repo> [--write] [--json]",
1416
+ "purpose": "Plan or write an idempotent, no-overwrite, release-ready paper repository scaffold.",
1417
+ "capabilityGroup": "getting-started",
1418
+ "audience": [
1419
+ "agent",
1420
+ "operator"
1421
+ ],
1422
+ "owner": "buildchain-cli",
1423
+ "maturity": "stable",
1424
+ "introducedVersion": "pre-3.0.2-alpha.4",
1425
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1426
+ "deprecationReplacement": "",
1427
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1428
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1429
+ },
1430
+ {
1431
+ "id": "paper-status",
1432
+ "source": "bin/buildchain.mjs",
1433
+ "usage": "buildchain paper status [--cwd <dir>] [--json]",
1434
+ "purpose": "Report explicit evidence for every paper lifecycle state without unsupported inference.",
1435
+ "capabilityGroup": "reusable-build",
1436
+ "audience": [
1437
+ "agent",
1438
+ "operator"
1439
+ ],
1440
+ "owner": "buildchain-cli",
1441
+ "maturity": "stable",
1442
+ "introducedVersion": "pre-3.0.2-alpha.4",
1443
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1444
+ "deprecationReplacement": "",
1445
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1446
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
859
1447
  },
860
1448
  {
861
1449
  "id": "portable-cache",
@@ -867,7 +1455,13 @@
867
1455
  "agent",
868
1456
  "operator"
869
1457
  ],
870
- "maturity": "stable"
1458
+ "owner": "buildchain-cli",
1459
+ "maturity": "stable",
1460
+ "introducedVersion": "pre-3.0.2-alpha.4",
1461
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1462
+ "deprecationReplacement": "",
1463
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1464
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
871
1465
  },
872
1466
  {
873
1467
  "id": "project",
@@ -879,7 +1473,13 @@
879
1473
  "agent",
880
1474
  "operator"
881
1475
  ],
882
- "maturity": "stable"
1476
+ "owner": "buildchain-cli",
1477
+ "maturity": "stable",
1478
+ "introducedVersion": "pre-3.0.2-alpha.4",
1479
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1480
+ "deprecationReplacement": "",
1481
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1482
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
883
1483
  },
884
1484
  {
885
1485
  "id": "publication-artifact",
@@ -891,7 +1491,13 @@
891
1491
  "agent",
892
1492
  "operator"
893
1493
  ],
894
- "maturity": "stable"
1494
+ "owner": "buildchain-cli",
1495
+ "maturity": "stable",
1496
+ "introducedVersion": "pre-3.0.2-alpha.4",
1497
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1498
+ "deprecationReplacement": "",
1499
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1500
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
895
1501
  },
896
1502
  {
897
1503
  "id": "publication-artifact-manifest",
@@ -903,7 +1509,13 @@
903
1509
  "agent",
904
1510
  "operator"
905
1511
  ],
906
- "maturity": "stable"
1512
+ "owner": "buildchain-cli",
1513
+ "maturity": "stable",
1514
+ "introducedVersion": "pre-3.0.2-alpha.4",
1515
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1516
+ "deprecationReplacement": "",
1517
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1518
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
907
1519
  },
908
1520
  {
909
1521
  "id": "publication-artifact-npm-package",
@@ -915,7 +1527,31 @@
915
1527
  "agent",
916
1528
  "operator"
917
1529
  ],
918
- "maturity": "stable"
1530
+ "owner": "buildchain-cli",
1531
+ "maturity": "stable",
1532
+ "introducedVersion": "pre-3.0.2-alpha.4",
1533
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1534
+ "deprecationReplacement": "",
1535
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1536
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1537
+ },
1538
+ {
1539
+ "id": "publication-artifact-reproducibility",
1540
+ "source": "bin/buildchain.mjs",
1541
+ "usage": "buildchain publication-artifact reproducibility [--cwd <dir>] [--source-sha <sha>]",
1542
+ "purpose": "Prove exact PDF, source bundle, publication evidence, and npm tarball bytes across two independent clean builds.",
1543
+ "capabilityGroup": "reusable-build",
1544
+ "audience": [
1545
+ "agent",
1546
+ "operator"
1547
+ ],
1548
+ "owner": "buildchain-cli",
1549
+ "maturity": "stable",
1550
+ "introducedVersion": "pre-3.0.2-alpha.4",
1551
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1552
+ "deprecationReplacement": "",
1553
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1554
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
919
1555
  },
920
1556
  {
921
1557
  "id": "publish-source",
@@ -927,7 +1563,13 @@
927
1563
  "agent",
928
1564
  "operator"
929
1565
  ],
930
- "maturity": "stable"
1566
+ "owner": "buildchain-cli",
1567
+ "maturity": "stable",
1568
+ "introducedVersion": "pre-3.0.2-alpha.4",
1569
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1570
+ "deprecationReplacement": "",
1571
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1572
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
931
1573
  },
932
1574
  {
933
1575
  "id": "release-dry-run",
@@ -939,7 +1581,13 @@
939
1581
  "agent",
940
1582
  "operator"
941
1583
  ],
942
- "maturity": "stable"
1584
+ "owner": "buildchain-cli",
1585
+ "maturity": "stable",
1586
+ "introducedVersion": "pre-3.0.2-alpha.4",
1587
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1588
+ "deprecationReplacement": "",
1589
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1590
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
943
1591
  },
944
1592
  {
945
1593
  "id": "release-governance",
@@ -951,7 +1599,13 @@
951
1599
  "agent",
952
1600
  "operator"
953
1601
  ],
954
- "maturity": "stable"
1602
+ "owner": "buildchain-cli",
1603
+ "maturity": "stable",
1604
+ "introducedVersion": "pre-3.0.2-alpha.4",
1605
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1606
+ "deprecationReplacement": "",
1607
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1608
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
955
1609
  },
956
1610
  {
957
1611
  "id": "release-line-open",
@@ -963,7 +1617,13 @@
963
1617
  "agent",
964
1618
  "operator"
965
1619
  ],
966
- "maturity": "stable"
1620
+ "owner": "buildchain-cli",
1621
+ "maturity": "stable",
1622
+ "introducedVersion": "pre-3.0.2-alpha.4",
1623
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1624
+ "deprecationReplacement": "",
1625
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1626
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
967
1627
  },
968
1628
  {
969
1629
  "id": "release-propagation",
@@ -975,7 +1635,13 @@
975
1635
  "agent",
976
1636
  "operator"
977
1637
  ],
978
- "maturity": "stable"
1638
+ "owner": "buildchain-cli",
1639
+ "maturity": "stable",
1640
+ "introducedVersion": "pre-3.0.2-alpha.4",
1641
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1642
+ "deprecationReplacement": "",
1643
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1644
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
979
1645
  },
980
1646
  {
981
1647
  "id": "release-transaction",
@@ -987,7 +1653,13 @@
987
1653
  "agent",
988
1654
  "operator"
989
1655
  ],
990
- "maturity": "stable"
1656
+ "owner": "buildchain-cli",
1657
+ "maturity": "stable",
1658
+ "introducedVersion": "pre-3.0.2-alpha.4",
1659
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1660
+ "deprecationReplacement": "",
1661
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1662
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
991
1663
  },
992
1664
  {
993
1665
  "id": "sample",
@@ -999,7 +1671,13 @@
999
1671
  "agent",
1000
1672
  "operator"
1001
1673
  ],
1002
- "maturity": "stable"
1674
+ "owner": "buildchain-cli",
1675
+ "maturity": "stable",
1676
+ "introducedVersion": "pre-3.0.2-alpha.4",
1677
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1678
+ "deprecationReplacement": "",
1679
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1680
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1003
1681
  },
1004
1682
  {
1005
1683
  "id": "sample-process-tree",
@@ -1011,7 +1689,13 @@
1011
1689
  "agent",
1012
1690
  "operator"
1013
1691
  ],
1014
- "maturity": "stable"
1692
+ "owner": "buildchain-cli",
1693
+ "maturity": "stable",
1694
+ "introducedVersion": "pre-3.0.2-alpha.4",
1695
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1696
+ "deprecationReplacement": "",
1697
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1698
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1015
1699
  },
1016
1700
  {
1017
1701
  "id": "span",
@@ -1023,7 +1707,13 @@
1023
1707
  "agent",
1024
1708
  "operator"
1025
1709
  ],
1026
- "maturity": "stable"
1710
+ "owner": "buildchain-cli",
1711
+ "maturity": "stable",
1712
+ "introducedVersion": "pre-3.0.2-alpha.4",
1713
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1714
+ "deprecationReplacement": "",
1715
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1716
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1027
1717
  },
1028
1718
  {
1029
1719
  "id": "transaction-inspect",
@@ -1035,7 +1725,13 @@
1035
1725
  "agent",
1036
1726
  "operator"
1037
1727
  ],
1038
- "maturity": "stable"
1728
+ "owner": "buildchain-cli",
1729
+ "maturity": "stable",
1730
+ "introducedVersion": "pre-3.0.2-alpha.4",
1731
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1732
+ "deprecationReplacement": "",
1733
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1734
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1039
1735
  },
1040
1736
  {
1041
1737
  "id": "validate",
@@ -1047,7 +1743,13 @@
1047
1743
  "agent",
1048
1744
  "operator"
1049
1745
  ],
1050
- "maturity": "stable"
1746
+ "owner": "buildchain-cli",
1747
+ "maturity": "stable",
1748
+ "introducedVersion": "pre-3.0.2-alpha.4",
1749
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1750
+ "deprecationReplacement": "",
1751
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1752
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1051
1753
  },
1052
1754
  {
1053
1755
  "id": "verify",
@@ -1059,7 +1761,13 @@
1059
1761
  "agent",
1060
1762
  "operator"
1061
1763
  ],
1062
- "maturity": "stable"
1764
+ "owner": "buildchain-cli",
1765
+ "maturity": "stable",
1766
+ "introducedVersion": "pre-3.0.2-alpha.4",
1767
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1768
+ "deprecationReplacement": "",
1769
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1770
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1063
1771
  },
1064
1772
  {
1065
1773
  "id": "verify-artifact",
@@ -1071,7 +1779,13 @@
1071
1779
  "agent",
1072
1780
  "operator"
1073
1781
  ],
1074
- "maturity": "stable"
1782
+ "owner": "buildchain-cli",
1783
+ "maturity": "stable",
1784
+ "introducedVersion": "pre-3.0.2-alpha.4",
1785
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1786
+ "deprecationReplacement": "",
1787
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1788
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1075
1789
  },
1076
1790
  {
1077
1791
  "id": "verify-artifact-envelope",
@@ -1083,7 +1797,13 @@
1083
1797
  "agent",
1084
1798
  "operator"
1085
1799
  ],
1086
- "maturity": "stable"
1800
+ "owner": "buildchain-cli",
1801
+ "maturity": "stable",
1802
+ "introducedVersion": "pre-3.0.2-alpha.4",
1803
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1804
+ "deprecationReplacement": "",
1805
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1806
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1087
1807
  },
1088
1808
  {
1089
1809
  "id": "verify-github-artifact-attestation",
@@ -1095,7 +1815,13 @@
1095
1815
  "agent",
1096
1816
  "operator"
1097
1817
  ],
1098
- "maturity": "stable"
1818
+ "owner": "buildchain-cli",
1819
+ "maturity": "stable",
1820
+ "introducedVersion": "pre-3.0.2-alpha.4",
1821
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1822
+ "deprecationReplacement": "",
1823
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1824
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1099
1825
  },
1100
1826
  {
1101
1827
  "id": "verify-infra-contract-evidence-bundle",
@@ -1107,7 +1833,13 @@
1107
1833
  "agent",
1108
1834
  "operator"
1109
1835
  ],
1110
- "maturity": "stable"
1836
+ "owner": "buildchain-cli",
1837
+ "maturity": "stable",
1838
+ "introducedVersion": "pre-3.0.2-alpha.4",
1839
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1840
+ "deprecationReplacement": "",
1841
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1842
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1111
1843
  },
1112
1844
  {
1113
1845
  "id": "verify-observability-log",
@@ -1119,7 +1851,13 @@
1119
1851
  "agent",
1120
1852
  "operator"
1121
1853
  ],
1122
- "maturity": "stable"
1854
+ "owner": "buildchain-cli",
1855
+ "maturity": "stable",
1856
+ "introducedVersion": "pre-3.0.2-alpha.4",
1857
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1858
+ "deprecationReplacement": "",
1859
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1860
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1123
1861
  },
1124
1862
  {
1125
1863
  "id": "verify-publication-admission",
@@ -1131,7 +1869,13 @@
1131
1869
  "agent",
1132
1870
  "operator"
1133
1871
  ],
1134
- "maturity": "stable"
1872
+ "owner": "buildchain-cli",
1873
+ "maturity": "stable",
1874
+ "introducedVersion": "pre-3.0.2-alpha.4",
1875
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1876
+ "deprecationReplacement": "",
1877
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1878
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1135
1879
  },
1136
1880
  {
1137
1881
  "id": "verify-release-passport",
@@ -1143,7 +1887,13 @@
1143
1887
  "agent",
1144
1888
  "operator"
1145
1889
  ],
1146
- "maturity": "stable"
1890
+ "owner": "buildchain-cli",
1891
+ "maturity": "stable",
1892
+ "introducedVersion": "pre-3.0.2-alpha.4",
1893
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1894
+ "deprecationReplacement": "",
1895
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1896
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1147
1897
  },
1148
1898
  {
1149
1899
  "id": "version",
@@ -1155,7 +1905,13 @@
1155
1905
  "agent",
1156
1906
  "operator"
1157
1907
  ],
1158
- "maturity": "stable"
1908
+ "owner": "buildchain-cli",
1909
+ "maturity": "stable",
1910
+ "introducedVersion": "pre-3.0.2-alpha.4",
1911
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1912
+ "deprecationReplacement": "",
1913
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1914
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1159
1915
  },
1160
1916
  {
1161
1917
  "id": "web-surface",
@@ -1167,7 +1923,13 @@
1167
1923
  "agent",
1168
1924
  "operator"
1169
1925
  ],
1170
- "maturity": "stable"
1926
+ "owner": "buildchain-cli",
1927
+ "maturity": "stable",
1928
+ "introducedVersion": "pre-3.0.2-alpha.4",
1929
+ "compatibilityPromise": "preserved-through-the-v3-major-line",
1930
+ "deprecationReplacement": "",
1931
+ "sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
1932
+ "nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
1171
1933
  }
1172
1934
  ]
1173
1935
  }