@kungfu-tech/buildchain 3.0.4-alpha.3 → 3.0.4-alpha.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.
- package/README.md +18 -0
- package/bin/buildchain.mjs +10 -1
- package/dist/site/buildchain-contract.json +5 -5
- package/dist/site/buildchain-site.json +1459 -58
- package/dist/site/capability-registry.json +8 -5
- package/dist/site/cli-registry.json +1869 -0
- package/dist/site/kfd-claims.json +79 -7
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +47 -4
- package/dist/site/node-api-registry.json +17760 -5
- package/dist/site/page-registry.json +1435 -58
- package/dist/site/public-surface-audit.json +2809 -352
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +32 -8
- package/docs/MAP.md +20 -5
- package/docs/cli-reference.md +1936 -0
- package/docs/cli.md +13 -0
- package/docs/getting-started.md +167 -0
- package/docs/node-api-reference.md +1949 -0
- package/docs/site-bundle-contract.md +10 -4
- package/docs/versioning.md +5 -4
- package/package.json +8 -5
- package/packages/core/buildchain-agent-manuals.js +37 -0
- package/packages/core/buildchain-kfd-claims.js +3 -36
- package/packages/core/paper-agent-entry.js +10 -11
- package/packages/core/publication-package.js +7 -0
- package/scripts/check-inventory.mjs +2 -2
- package/scripts/generate-public-reference.mjs +68 -0
- package/scripts/generate-site-bundle.mjs +19 -34
- package/scripts/public-reference.mjs +557 -0
- package/scripts/site-reference-registry.mjs +174 -0
- package/scripts/verify-golden-path.mjs +169 -0
|
@@ -9,6 +9,41 @@
|
|
|
9
9
|
"id": "audit",
|
|
10
10
|
"source": "bin/buildchain.mjs",
|
|
11
11
|
"usage": "buildchain audit publication-control-plane --repository <owner/repo> --branch <protected-branch>",
|
|
12
|
+
"paths": [
|
|
13
|
+
"audit",
|
|
14
|
+
"audit github-governance",
|
|
15
|
+
"audit publication-control-plane"
|
|
16
|
+
],
|
|
17
|
+
"syntaxes": [
|
|
18
|
+
"buildchain audit",
|
|
19
|
+
"buildchain audit github-governance [--organization <owner>] [--repository <owner/repo>] [--output <file>] [--require-qualifying] [--json] [--source-sha <merged-branch-sha>] [--workflow-repository <owner/repo>] [--workflow <path>] [--workflow-ref <sha-or-ref>] [--job <id>] [--environment <name>] [--package <name>] [--publisher-mode npm-trusted-publisher|github-token|oidc-role] [--npm-trust-json <file-or-json>] [--provider-audit-json <file>] [--output <file>] [--allow-nonqualifying]",
|
|
20
|
+
"buildchain audit publication-control-plane --repository <owner/repo> --branch <protected-branch>"
|
|
21
|
+
],
|
|
22
|
+
"options": [
|
|
23
|
+
"--allow-nonqualifying",
|
|
24
|
+
"--branch",
|
|
25
|
+
"--environment",
|
|
26
|
+
"--job",
|
|
27
|
+
"--json",
|
|
28
|
+
"--npm-trust-json",
|
|
29
|
+
"--organization",
|
|
30
|
+
"--output",
|
|
31
|
+
"--package",
|
|
32
|
+
"--provider-audit-json",
|
|
33
|
+
"--publisher-mode",
|
|
34
|
+
"--repository",
|
|
35
|
+
"--require-qualifying",
|
|
36
|
+
"--source-sha",
|
|
37
|
+
"--workflow",
|
|
38
|
+
"--workflow-ref",
|
|
39
|
+
"--workflow-repository"
|
|
40
|
+
],
|
|
41
|
+
"aliases": [],
|
|
42
|
+
"helpCommands": [
|
|
43
|
+
"buildchain audit --help",
|
|
44
|
+
"buildchain audit github-governance --help",
|
|
45
|
+
"buildchain audit publication-control-plane --help"
|
|
46
|
+
],
|
|
12
47
|
"purpose": "Inspect read-only publication authority audit commands.",
|
|
13
48
|
"capabilityGroup": "release-passport-trust",
|
|
14
49
|
"audience": [
|
|
@@ -27,6 +62,17 @@
|
|
|
27
62
|
"id": "badges",
|
|
28
63
|
"source": "bin/buildchain.mjs",
|
|
29
64
|
"usage": "buildchain badges",
|
|
65
|
+
"paths": [
|
|
66
|
+
"badges"
|
|
67
|
+
],
|
|
68
|
+
"syntaxes": [
|
|
69
|
+
"buildchain badges"
|
|
70
|
+
],
|
|
71
|
+
"options": [],
|
|
72
|
+
"aliases": [],
|
|
73
|
+
"helpCommands": [
|
|
74
|
+
"buildchain badges --help"
|
|
75
|
+
],
|
|
30
76
|
"purpose": "Inspect README badge command families.",
|
|
31
77
|
"capabilityGroup": "distribution-indexes",
|
|
32
78
|
"audience": [
|
|
@@ -45,6 +91,24 @@
|
|
|
45
91
|
"id": "badges-bundle",
|
|
46
92
|
"source": "bin/buildchain.mjs",
|
|
47
93
|
"usage": "buildchain badges bundle [--cwd <dir>] [--readme <path>] [--claims <csv>] [--check] [--write] [--json]",
|
|
94
|
+
"paths": [
|
|
95
|
+
"badges bundle"
|
|
96
|
+
],
|
|
97
|
+
"syntaxes": [
|
|
98
|
+
"buildchain badges bundle [--cwd <dir>] [--readme <path>] [--claims <csv>] [--check] [--write] [--json]"
|
|
99
|
+
],
|
|
100
|
+
"options": [
|
|
101
|
+
"--check",
|
|
102
|
+
"--claims",
|
|
103
|
+
"--cwd",
|
|
104
|
+
"--json",
|
|
105
|
+
"--readme",
|
|
106
|
+
"--write"
|
|
107
|
+
],
|
|
108
|
+
"aliases": [],
|
|
109
|
+
"helpCommands": [
|
|
110
|
+
"buildchain badges bundle --help"
|
|
111
|
+
],
|
|
48
112
|
"purpose": "Generate or verify the combined KFD and Release Passport badge bundle.",
|
|
49
113
|
"capabilityGroup": "distribution-indexes",
|
|
50
114
|
"audience": [
|
|
@@ -63,6 +127,23 @@
|
|
|
63
127
|
"id": "badges-readme",
|
|
64
128
|
"source": "bin/buildchain.mjs",
|
|
65
129
|
"usage": "buildchain badges readme [--cwd <dir>] [--readme <path>] [--check] [--write] [--json]",
|
|
130
|
+
"paths": [
|
|
131
|
+
"badges readme"
|
|
132
|
+
],
|
|
133
|
+
"syntaxes": [
|
|
134
|
+
"buildchain badges readme [--cwd <dir>] [--readme <path>] [--check] [--write] [--json]"
|
|
135
|
+
],
|
|
136
|
+
"options": [
|
|
137
|
+
"--check",
|
|
138
|
+
"--cwd",
|
|
139
|
+
"--json",
|
|
140
|
+
"--readme",
|
|
141
|
+
"--write"
|
|
142
|
+
],
|
|
143
|
+
"aliases": [],
|
|
144
|
+
"helpCommands": [
|
|
145
|
+
"buildchain badges readme --help"
|
|
146
|
+
],
|
|
66
147
|
"purpose": "Generate or verify managed README badge blocks.",
|
|
67
148
|
"capabilityGroup": "distribution-indexes",
|
|
68
149
|
"audience": [
|
|
@@ -81,6 +162,17 @@
|
|
|
81
162
|
"id": "build-contract",
|
|
82
163
|
"source": "bin/buildchain.mjs",
|
|
83
164
|
"usage": "buildchain build-contract ...",
|
|
165
|
+
"paths": [
|
|
166
|
+
"build-contract"
|
|
167
|
+
],
|
|
168
|
+
"syntaxes": [
|
|
169
|
+
"buildchain build-contract ..."
|
|
170
|
+
],
|
|
171
|
+
"options": [],
|
|
172
|
+
"aliases": [],
|
|
173
|
+
"helpCommands": [
|
|
174
|
+
"buildchain build-contract --help"
|
|
175
|
+
],
|
|
84
176
|
"purpose": "Resolve Buildchain runtime contract metadata for floating-ref drift checks.",
|
|
85
177
|
"capabilityGroup": "governance-versioning",
|
|
86
178
|
"audience": [
|
|
@@ -99,6 +191,36 @@
|
|
|
99
191
|
"id": "build-facts",
|
|
100
192
|
"source": "bin/buildchain.mjs",
|
|
101
193
|
"usage": "buildchain facts module [--cwd <dir>] [--module <id>] [--module-root <path>]",
|
|
194
|
+
"paths": [
|
|
195
|
+
"facts aggregate",
|
|
196
|
+
"facts module",
|
|
197
|
+
"facts verify"
|
|
198
|
+
],
|
|
199
|
+
"syntaxes": [
|
|
200
|
+
"buildchain facts aggregate [--cwd <dir>] [--product <id>] [--module-fact <file>]... [--artifact <path>]... [--output <file>] [--json]",
|
|
201
|
+
"buildchain facts module [--cwd <dir>] [--module <id>] [--module-root <path>] [--version-source <id>] [--output <file>] [--output-path <path>]... [--legacy-kungfu-buildinfo <file>] [--json]",
|
|
202
|
+
"buildchain facts verify [--cwd <dir>] --fact <file> [--json]"
|
|
203
|
+
],
|
|
204
|
+
"options": [
|
|
205
|
+
"--artifact",
|
|
206
|
+
"--cwd",
|
|
207
|
+
"--fact",
|
|
208
|
+
"--json",
|
|
209
|
+
"--legacy-kungfu-buildinfo",
|
|
210
|
+
"--module",
|
|
211
|
+
"--module-fact",
|
|
212
|
+
"--module-root",
|
|
213
|
+
"--output",
|
|
214
|
+
"--output-path",
|
|
215
|
+
"--product",
|
|
216
|
+
"--version-source"
|
|
217
|
+
],
|
|
218
|
+
"aliases": [],
|
|
219
|
+
"helpCommands": [
|
|
220
|
+
"buildchain facts aggregate --help",
|
|
221
|
+
"buildchain facts module --help",
|
|
222
|
+
"buildchain facts verify --help"
|
|
223
|
+
],
|
|
102
224
|
"purpose": "Collect and verify Git source, version, module output, product artifact, and legacy Kungfu buildinfo facts.",
|
|
103
225
|
"capabilityGroup": "observability-diagnostics",
|
|
104
226
|
"audience": [
|
|
@@ -117,6 +239,24 @@
|
|
|
117
239
|
"id": "candidate",
|
|
118
240
|
"source": "bin/buildchain.mjs",
|
|
119
241
|
"usage": "buildchain candidate timeline --input <file-or-json> [--output <file>] [--json]",
|
|
242
|
+
"paths": [
|
|
243
|
+
"candidate",
|
|
244
|
+
"candidate timeline"
|
|
245
|
+
],
|
|
246
|
+
"syntaxes": [
|
|
247
|
+
"buildchain candidate",
|
|
248
|
+
"buildchain candidate timeline --input <file-or-json> [--output <file>] [--json]"
|
|
249
|
+
],
|
|
250
|
+
"options": [
|
|
251
|
+
"--input",
|
|
252
|
+
"--json",
|
|
253
|
+
"--output"
|
|
254
|
+
],
|
|
255
|
+
"aliases": [],
|
|
256
|
+
"helpCommands": [
|
|
257
|
+
"buildchain candidate --help",
|
|
258
|
+
"buildchain candidate timeline --help"
|
|
259
|
+
],
|
|
120
260
|
"purpose": "Inspect source-bound candidate evidence command families.",
|
|
121
261
|
"capabilityGroup": "observability-diagnostics",
|
|
122
262
|
"audience": [
|
|
@@ -135,6 +275,17 @@
|
|
|
135
275
|
"id": "collect",
|
|
136
276
|
"source": "bin/buildchain.mjs",
|
|
137
277
|
"usage": "buildchain collect",
|
|
278
|
+
"paths": [
|
|
279
|
+
"collect"
|
|
280
|
+
],
|
|
281
|
+
"syntaxes": [
|
|
282
|
+
"buildchain collect"
|
|
283
|
+
],
|
|
284
|
+
"options": [],
|
|
285
|
+
"aliases": [],
|
|
286
|
+
"helpCommands": [
|
|
287
|
+
"buildchain collect --help"
|
|
288
|
+
],
|
|
138
289
|
"purpose": "Inspect release evidence collection command families.",
|
|
139
290
|
"capabilityGroup": "release-passport-trust",
|
|
140
291
|
"audience": [
|
|
@@ -153,6 +304,52 @@
|
|
|
153
304
|
"id": "collect-github-release",
|
|
154
305
|
"source": "bin/buildchain.mjs",
|
|
155
306
|
"usage": "buildchain collect github-release --tag <tag> [--repository <owner/repo>]",
|
|
307
|
+
"paths": [
|
|
308
|
+
"collect github-release"
|
|
309
|
+
],
|
|
310
|
+
"syntaxes": [
|
|
311
|
+
"buildchain collect github-release --tag <tag> [--repository <owner/repo>] [--assets-dir <dir>] [--assets-json <json-or-path>] [--release-json <json-or-path>] [--package-set-json <json-or-path>] [--product-name <name>] [--publish-evidence-json <json-or-path>] [--trusted-publishing-json <json-or-path>] [--transaction-json <json-or-path>] [--anchor-manifest-json <json-or-path>] [--impact-json <json-or-path>] [--build-summary-json <json-or-path>] [--build-facts-json <json-or-path>]... [--platform-manifest-json <json-or-path>]... [--dist-tag-evidence-json <json-or-path>] [--kfd-1-witness-json <json-or-path>]... [--kfd-2-claim-json <json-or-path>]... [--kfd-3-prebuild-witness-json <json-or-path>]... [--kfd-3-artifact-witness-json <json-or-path>]... [--kfd-3-artifact-verify-cmd <command>] [--kfd-support-matrix-json <json-or-path>] [--kfd-product-gate-json <json-or-path>]... [--invariant-passport-json <json-or-path>]... [--invariant-passport-cmd <command>] [--release-evidence-json <json-or-path>]... [--github-artifact-attestation-policy-json <json-or-path>]... [--kfd-agent-hub-evidence-json <json-or-path>] [--base-passport-json <json-or-path>] [--require-base-kfd] [--release-extra-json <json-or-path>] [--publish-json <json-or-path>] [--output-dir <dir>] [--json]"
|
|
312
|
+
],
|
|
313
|
+
"options": [
|
|
314
|
+
"--anchor-manifest-json",
|
|
315
|
+
"--assets-dir",
|
|
316
|
+
"--assets-json",
|
|
317
|
+
"--base-passport-json",
|
|
318
|
+
"--build-facts-json",
|
|
319
|
+
"--build-summary-json",
|
|
320
|
+
"--dist-tag-evidence-json",
|
|
321
|
+
"--github-artifact-attestation-policy-json",
|
|
322
|
+
"--impact-json",
|
|
323
|
+
"--invariant-passport-cmd",
|
|
324
|
+
"--invariant-passport-json",
|
|
325
|
+
"--json",
|
|
326
|
+
"--kfd-1-witness-json",
|
|
327
|
+
"--kfd-2-claim-json",
|
|
328
|
+
"--kfd-3-artifact-verify-cmd",
|
|
329
|
+
"--kfd-3-artifact-witness-json",
|
|
330
|
+
"--kfd-3-prebuild-witness-json",
|
|
331
|
+
"--kfd-agent-hub-evidence-json",
|
|
332
|
+
"--kfd-product-gate-json",
|
|
333
|
+
"--kfd-support-matrix-json",
|
|
334
|
+
"--output-dir",
|
|
335
|
+
"--package-set-json",
|
|
336
|
+
"--platform-manifest-json",
|
|
337
|
+
"--product-name",
|
|
338
|
+
"--publish-evidence-json",
|
|
339
|
+
"--publish-json",
|
|
340
|
+
"--release-evidence-json",
|
|
341
|
+
"--release-extra-json",
|
|
342
|
+
"--release-json",
|
|
343
|
+
"--repository",
|
|
344
|
+
"--require-base-kfd",
|
|
345
|
+
"--tag",
|
|
346
|
+
"--transaction-json",
|
|
347
|
+
"--trusted-publishing-json"
|
|
348
|
+
],
|
|
349
|
+
"aliases": [],
|
|
350
|
+
"helpCommands": [
|
|
351
|
+
"buildchain collect github-release --help"
|
|
352
|
+
],
|
|
156
353
|
"purpose": "Collect GitHub Release assets into a release passport.",
|
|
157
354
|
"capabilityGroup": "release-passport-trust",
|
|
158
355
|
"audience": [
|
|
@@ -171,6 +368,30 @@
|
|
|
171
368
|
"id": "create",
|
|
172
369
|
"source": "bin/buildchain.mjs",
|
|
173
370
|
"usage": "buildchain create publication-admission --input-json <file-or-json> [--output <file>] [--json]",
|
|
371
|
+
"paths": [
|
|
372
|
+
"create",
|
|
373
|
+
"create github-artifact-attestation-policy",
|
|
374
|
+
"create publication-admission",
|
|
375
|
+
"create runner-provenance"
|
|
376
|
+
],
|
|
377
|
+
"syntaxes": [
|
|
378
|
+
"buildchain create",
|
|
379
|
+
"buildchain create github-artifact-attestation-policy --input-json <file-or-json> [--output <file>] [--json]",
|
|
380
|
+
"buildchain create publication-admission --input-json <file-or-json> [--output <file>] [--json]",
|
|
381
|
+
"buildchain create runner-provenance --input-json <file-or-json> [--output <file>] [--json]"
|
|
382
|
+
],
|
|
383
|
+
"options": [
|
|
384
|
+
"--input-json",
|
|
385
|
+
"--json",
|
|
386
|
+
"--output"
|
|
387
|
+
],
|
|
388
|
+
"aliases": [],
|
|
389
|
+
"helpCommands": [
|
|
390
|
+
"buildchain create --help",
|
|
391
|
+
"buildchain create github-artifact-attestation-policy --help",
|
|
392
|
+
"buildchain create publication-admission --help",
|
|
393
|
+
"buildchain create runner-provenance --help"
|
|
394
|
+
],
|
|
174
395
|
"purpose": "Create canonical sealed publication evidence documents.",
|
|
175
396
|
"capabilityGroup": "release-passport-trust",
|
|
176
397
|
"audience": [
|
|
@@ -189,6 +410,29 @@
|
|
|
189
410
|
"id": "dev",
|
|
190
411
|
"source": "bin/buildchain.mjs",
|
|
191
412
|
"usage": "buildchain dev merge-queue --repository <owner/repo> --branch <dev/vN/vN.M>",
|
|
413
|
+
"paths": [
|
|
414
|
+
"dev",
|
|
415
|
+
"dev merge-queue"
|
|
416
|
+
],
|
|
417
|
+
"syntaxes": [
|
|
418
|
+
"buildchain dev",
|
|
419
|
+
"buildchain dev merge-queue --repository <owner/repo> --branch <dev/vN/vN.M> [--from-config | --workflow <required-workflow.yml>...] [--cwd <dir>] [--check-response-timeout-minutes <n>] [--max-entries-to-build <n>] [--apply]"
|
|
420
|
+
],
|
|
421
|
+
"options": [
|
|
422
|
+
"--apply",
|
|
423
|
+
"--branch",
|
|
424
|
+
"--check-response-timeout-minutes",
|
|
425
|
+
"--cwd",
|
|
426
|
+
"--from-config",
|
|
427
|
+
"--max-entries-to-build",
|
|
428
|
+
"--repository",
|
|
429
|
+
"--workflow"
|
|
430
|
+
],
|
|
431
|
+
"aliases": [],
|
|
432
|
+
"helpCommands": [
|
|
433
|
+
"buildchain dev --help",
|
|
434
|
+
"buildchain dev merge-queue --help"
|
|
435
|
+
],
|
|
192
436
|
"purpose": "Inspect protected development-channel governance command families.",
|
|
193
437
|
"capabilityGroup": "governance-versioning",
|
|
194
438
|
"audience": [
|
|
@@ -207,6 +451,17 @@
|
|
|
207
451
|
"id": "diagnostics",
|
|
208
452
|
"source": "bin/buildchain.mjs",
|
|
209
453
|
"usage": "buildchain diagnostics",
|
|
454
|
+
"paths": [
|
|
455
|
+
"diagnostics"
|
|
456
|
+
],
|
|
457
|
+
"syntaxes": [
|
|
458
|
+
"buildchain diagnostics"
|
|
459
|
+
],
|
|
460
|
+
"options": [],
|
|
461
|
+
"aliases": [],
|
|
462
|
+
"helpCommands": [
|
|
463
|
+
"buildchain diagnostics --help"
|
|
464
|
+
],
|
|
210
465
|
"purpose": "Inspect diagnostics command families.",
|
|
211
466
|
"capabilityGroup": "observability-diagnostics",
|
|
212
467
|
"audience": [
|
|
@@ -225,6 +480,21 @@
|
|
|
225
480
|
"id": "diagnostics-summary",
|
|
226
481
|
"source": "bin/buildchain.mjs",
|
|
227
482
|
"usage": "buildchain diagnostics summary <diagnostics.json>... [--artifact <file>]...",
|
|
483
|
+
"paths": [
|
|
484
|
+
"diagnostics summary"
|
|
485
|
+
],
|
|
486
|
+
"syntaxes": [
|
|
487
|
+
"buildchain diagnostics summary <diagnostics.json>... [--artifact <file>]... [--output <file>] [--json]"
|
|
488
|
+
],
|
|
489
|
+
"options": [
|
|
490
|
+
"--artifact",
|
|
491
|
+
"--json",
|
|
492
|
+
"--output"
|
|
493
|
+
],
|
|
494
|
+
"aliases": [],
|
|
495
|
+
"helpCommands": [
|
|
496
|
+
"buildchain diagnostics summary --help"
|
|
497
|
+
],
|
|
228
498
|
"purpose": "Summarize diagnostics artifacts into JSON and cross-platform lifecycle timing tables.",
|
|
229
499
|
"capabilityGroup": "observability-diagnostics",
|
|
230
500
|
"audience": [
|
|
@@ -243,6 +513,21 @@
|
|
|
243
513
|
"id": "doctor",
|
|
244
514
|
"source": "bin/buildchain.mjs",
|
|
245
515
|
"usage": "buildchain doctor [--cwd <dir>] [--require-publish-source-lock] [--json]",
|
|
516
|
+
"paths": [
|
|
517
|
+
"doctor"
|
|
518
|
+
],
|
|
519
|
+
"syntaxes": [
|
|
520
|
+
"buildchain doctor [--cwd <dir>] [--require-publish-source-lock] [--json]"
|
|
521
|
+
],
|
|
522
|
+
"options": [
|
|
523
|
+
"--cwd",
|
|
524
|
+
"--json",
|
|
525
|
+
"--require-publish-source-lock"
|
|
526
|
+
],
|
|
527
|
+
"aliases": [],
|
|
528
|
+
"helpCommands": [
|
|
529
|
+
"buildchain doctor --help"
|
|
530
|
+
],
|
|
246
531
|
"purpose": "Report local integration readiness.",
|
|
247
532
|
"capabilityGroup": "getting-started",
|
|
248
533
|
"audience": [
|
|
@@ -261,6 +546,17 @@
|
|
|
261
546
|
"id": "explain",
|
|
262
547
|
"source": "bin/buildchain.mjs",
|
|
263
548
|
"usage": "buildchain explain",
|
|
549
|
+
"paths": [
|
|
550
|
+
"explain"
|
|
551
|
+
],
|
|
552
|
+
"syntaxes": [
|
|
553
|
+
"buildchain explain"
|
|
554
|
+
],
|
|
555
|
+
"options": [],
|
|
556
|
+
"aliases": [],
|
|
557
|
+
"helpCommands": [
|
|
558
|
+
"buildchain explain --help"
|
|
559
|
+
],
|
|
264
560
|
"purpose": "Inspect release and artifact explanation command families.",
|
|
265
561
|
"capabilityGroup": "release-passport-trust",
|
|
266
562
|
"audience": [
|
|
@@ -279,6 +575,22 @@
|
|
|
279
575
|
"id": "explain-artifact",
|
|
280
576
|
"source": "bin/buildchain.mjs",
|
|
281
577
|
"usage": "buildchain explain artifact <subject> [--passport <file-or-url>] [--npm-registry <url>] [--for human|agent] [--json]",
|
|
578
|
+
"paths": [
|
|
579
|
+
"explain artifact"
|
|
580
|
+
],
|
|
581
|
+
"syntaxes": [
|
|
582
|
+
"buildchain explain artifact <subject> [--passport <file-or-url>] [--npm-registry <url>] [--for human|agent] [--json]"
|
|
583
|
+
],
|
|
584
|
+
"options": [
|
|
585
|
+
"--for",
|
|
586
|
+
"--json",
|
|
587
|
+
"--npm-registry",
|
|
588
|
+
"--passport"
|
|
589
|
+
],
|
|
590
|
+
"aliases": [],
|
|
591
|
+
"helpCommands": [
|
|
592
|
+
"buildchain explain artifact --help"
|
|
593
|
+
],
|
|
282
594
|
"purpose": "Explain artifact evidence for humans or agents.",
|
|
283
595
|
"capabilityGroup": "release-passport-trust",
|
|
284
596
|
"audience": [
|
|
@@ -297,6 +609,21 @@
|
|
|
297
609
|
"id": "explain-release",
|
|
298
610
|
"source": "bin/buildchain.mjs",
|
|
299
611
|
"usage": "buildchain explain release --passport <file-or-url> [--for human|agent] [--json]",
|
|
612
|
+
"paths": [
|
|
613
|
+
"explain release"
|
|
614
|
+
],
|
|
615
|
+
"syntaxes": [
|
|
616
|
+
"buildchain explain release --passport <file-or-url> [--for human|agent] [--json]"
|
|
617
|
+
],
|
|
618
|
+
"options": [
|
|
619
|
+
"--for",
|
|
620
|
+
"--json",
|
|
621
|
+
"--passport"
|
|
622
|
+
],
|
|
623
|
+
"aliases": [],
|
|
624
|
+
"helpCommands": [
|
|
625
|
+
"buildchain explain release --help"
|
|
626
|
+
],
|
|
300
627
|
"purpose": "Explain a release passport for humans or agents.",
|
|
301
628
|
"capabilityGroup": "release-passport-trust",
|
|
302
629
|
"audience": [
|
|
@@ -315,6 +642,17 @@
|
|
|
315
642
|
"id": "facts",
|
|
316
643
|
"source": "bin/buildchain.mjs",
|
|
317
644
|
"usage": "buildchain facts",
|
|
645
|
+
"paths": [
|
|
646
|
+
"facts"
|
|
647
|
+
],
|
|
648
|
+
"syntaxes": [
|
|
649
|
+
"buildchain facts"
|
|
650
|
+
],
|
|
651
|
+
"options": [],
|
|
652
|
+
"aliases": [],
|
|
653
|
+
"helpCommands": [
|
|
654
|
+
"buildchain facts --help"
|
|
655
|
+
],
|
|
318
656
|
"purpose": "Inspect build facts command families.",
|
|
319
657
|
"capabilityGroup": "observability-diagnostics",
|
|
320
658
|
"audience": [
|
|
@@ -333,6 +671,28 @@
|
|
|
333
671
|
"id": "github-governance",
|
|
334
672
|
"source": "bin/buildchain.mjs",
|
|
335
673
|
"usage": "buildchain github-governance <plan|apply|rollback|protection-policy-plan|ruleset-policy-plan> ...",
|
|
674
|
+
"paths": [
|
|
675
|
+
"github-governance",
|
|
676
|
+
"github-governance apply",
|
|
677
|
+
"github-governance plan",
|
|
678
|
+
"github-governance protection-policy-plan",
|
|
679
|
+
"github-governance rollback",
|
|
680
|
+
"github-governance ruleset-policy-plan"
|
|
681
|
+
],
|
|
682
|
+
"syntaxes": [
|
|
683
|
+
"buildchain github-governance",
|
|
684
|
+
"buildchain github-governance <plan|apply|rollback|protection-policy-plan|ruleset-policy-plan> ..."
|
|
685
|
+
],
|
|
686
|
+
"options": [],
|
|
687
|
+
"aliases": [],
|
|
688
|
+
"helpCommands": [
|
|
689
|
+
"buildchain github-governance --help",
|
|
690
|
+
"buildchain github-governance apply --help",
|
|
691
|
+
"buildchain github-governance plan --help",
|
|
692
|
+
"buildchain github-governance protection-policy-plan --help",
|
|
693
|
+
"buildchain github-governance rollback --help",
|
|
694
|
+
"buildchain github-governance ruleset-policy-plan --help"
|
|
695
|
+
],
|
|
336
696
|
"purpose": "Plan, apply, or roll back one root-bound GitHub branch-protection rollout after a frozen read-only inventory.",
|
|
337
697
|
"capabilityGroup": "governance-versioning",
|
|
338
698
|
"audience": [
|
|
@@ -351,6 +711,20 @@
|
|
|
351
711
|
"id": "help",
|
|
352
712
|
"source": "bin/buildchain.mjs",
|
|
353
713
|
"usage": "buildchain --help",
|
|
714
|
+
"paths": [
|
|
715
|
+
"help"
|
|
716
|
+
],
|
|
717
|
+
"syntaxes": [
|
|
718
|
+
"buildchain help"
|
|
719
|
+
],
|
|
720
|
+
"options": [],
|
|
721
|
+
"aliases": [
|
|
722
|
+
"--help",
|
|
723
|
+
"-h"
|
|
724
|
+
],
|
|
725
|
+
"helpCommands": [
|
|
726
|
+
"buildchain help --help"
|
|
727
|
+
],
|
|
354
728
|
"purpose": "Print Buildchain CLI help.",
|
|
355
729
|
"capabilityGroup": "getting-started",
|
|
356
730
|
"audience": [
|
|
@@ -369,6 +743,17 @@
|
|
|
369
743
|
"id": "homebrew",
|
|
370
744
|
"source": "bin/buildchain.mjs",
|
|
371
745
|
"usage": "buildchain homebrew",
|
|
746
|
+
"paths": [
|
|
747
|
+
"homebrew"
|
|
748
|
+
],
|
|
749
|
+
"syntaxes": [
|
|
750
|
+
"buildchain homebrew"
|
|
751
|
+
],
|
|
752
|
+
"options": [],
|
|
753
|
+
"aliases": [],
|
|
754
|
+
"helpCommands": [
|
|
755
|
+
"buildchain homebrew --help"
|
|
756
|
+
],
|
|
372
757
|
"purpose": "Inspect Homebrew distribution-index command families.",
|
|
373
758
|
"capabilityGroup": "distribution-indexes",
|
|
374
759
|
"audience": [
|
|
@@ -387,6 +772,22 @@
|
|
|
387
772
|
"id": "homebrew-check",
|
|
388
773
|
"source": "bin/buildchain.mjs",
|
|
389
774
|
"usage": "buildchain homebrew check [--cwd <dir>] [--package <name>] [--release-passport <file-or-url>] [--json]",
|
|
775
|
+
"paths": [
|
|
776
|
+
"homebrew check"
|
|
777
|
+
],
|
|
778
|
+
"syntaxes": [
|
|
779
|
+
"buildchain homebrew check [--cwd <dir>] [--package <name>] [--release-passport <file-or-url>] [--json]"
|
|
780
|
+
],
|
|
781
|
+
"options": [
|
|
782
|
+
"--cwd",
|
|
783
|
+
"--json",
|
|
784
|
+
"--package",
|
|
785
|
+
"--release-passport"
|
|
786
|
+
],
|
|
787
|
+
"aliases": [],
|
|
788
|
+
"helpCommands": [
|
|
789
|
+
"buildchain homebrew check --help"
|
|
790
|
+
],
|
|
390
791
|
"purpose": "Verify Homebrew tap metadata against upstream release passport evidence.",
|
|
391
792
|
"capabilityGroup": "distribution-indexes",
|
|
392
793
|
"audience": [
|
|
@@ -405,6 +806,22 @@
|
|
|
405
806
|
"id": "homebrew-update-formula",
|
|
406
807
|
"source": "bin/buildchain.mjs",
|
|
407
808
|
"usage": "buildchain homebrew update-formula --package <name> --release-passport <file-or-url> [--write] [--json]",
|
|
809
|
+
"paths": [
|
|
810
|
+
"homebrew update-formula"
|
|
811
|
+
],
|
|
812
|
+
"syntaxes": [
|
|
813
|
+
"buildchain homebrew update-formula --package <name> --release-passport <file-or-url> [--write] [--json]"
|
|
814
|
+
],
|
|
815
|
+
"options": [
|
|
816
|
+
"--json",
|
|
817
|
+
"--package",
|
|
818
|
+
"--release-passport",
|
|
819
|
+
"--write"
|
|
820
|
+
],
|
|
821
|
+
"aliases": [],
|
|
822
|
+
"helpCommands": [
|
|
823
|
+
"buildchain homebrew update-formula --help"
|
|
824
|
+
],
|
|
408
825
|
"purpose": "Generate Homebrew Formula metadata from upstream release passport evidence.",
|
|
409
826
|
"capabilityGroup": "distribution-indexes",
|
|
410
827
|
"audience": [
|
|
@@ -423,6 +840,17 @@
|
|
|
423
840
|
"id": "infra-contract",
|
|
424
841
|
"source": "bin/buildchain.mjs",
|
|
425
842
|
"usage": "buildchain infra-contract ...",
|
|
843
|
+
"paths": [
|
|
844
|
+
"infra-contract"
|
|
845
|
+
],
|
|
846
|
+
"syntaxes": [
|
|
847
|
+
"buildchain infra-contract ..."
|
|
848
|
+
],
|
|
849
|
+
"options": [],
|
|
850
|
+
"aliases": [],
|
|
851
|
+
"helpCommands": [
|
|
852
|
+
"buildchain infra-contract --help"
|
|
853
|
+
],
|
|
426
854
|
"purpose": "Validate and publish provider-neutral infrastructure contract evidence.",
|
|
427
855
|
"capabilityGroup": "governance-versioning",
|
|
428
856
|
"audience": [
|
|
@@ -441,6 +869,24 @@
|
|
|
441
869
|
"id": "init",
|
|
442
870
|
"source": "bin/buildchain.mjs",
|
|
443
871
|
"usage": "buildchain init [--cwd <dir>] [--type package|native|web-surface|infra-contract|publication-artifact|anchored-package] [--force]",
|
|
872
|
+
"paths": [
|
|
873
|
+
"init"
|
|
874
|
+
],
|
|
875
|
+
"syntaxes": [
|
|
876
|
+
"buildchain init [--cwd <dir>] [--type package|native|web-surface|infra-contract|publication-artifact|anchored-package] [--force] [--package-manager pnpm|npm|yarn] [--runner-preset <preset>] [--artifact-name <template>]"
|
|
877
|
+
],
|
|
878
|
+
"options": [
|
|
879
|
+
"--artifact-name",
|
|
880
|
+
"--cwd",
|
|
881
|
+
"--force",
|
|
882
|
+
"--package-manager",
|
|
883
|
+
"--runner-preset",
|
|
884
|
+
"--type"
|
|
885
|
+
],
|
|
886
|
+
"aliases": [],
|
|
887
|
+
"helpCommands": [
|
|
888
|
+
"buildchain init --help"
|
|
889
|
+
],
|
|
444
890
|
"purpose": "Bootstrap a repository with Buildchain configuration and caller workflow files.",
|
|
445
891
|
"capabilityGroup": "getting-started",
|
|
446
892
|
"audience": [
|
|
@@ -459,6 +905,17 @@
|
|
|
459
905
|
"id": "inspect",
|
|
460
906
|
"source": "bin/buildchain.mjs",
|
|
461
907
|
"usage": "buildchain inspect",
|
|
908
|
+
"paths": [
|
|
909
|
+
"inspect"
|
|
910
|
+
],
|
|
911
|
+
"syntaxes": [
|
|
912
|
+
"buildchain inspect"
|
|
913
|
+
],
|
|
914
|
+
"options": [],
|
|
915
|
+
"aliases": [],
|
|
916
|
+
"helpCommands": [
|
|
917
|
+
"buildchain inspect --help"
|
|
918
|
+
],
|
|
462
919
|
"purpose": "Inspect release and artifact evidence command families.",
|
|
463
920
|
"capabilityGroup": "release-passport-trust",
|
|
464
921
|
"audience": [
|
|
@@ -477,6 +934,21 @@
|
|
|
477
934
|
"id": "inspect-artifact",
|
|
478
935
|
"source": "bin/buildchain.mjs",
|
|
479
936
|
"usage": "buildchain inspect artifact <subject> [--passport <file-or-url>] [--npm-registry <url>] [--json]",
|
|
937
|
+
"paths": [
|
|
938
|
+
"inspect artifact"
|
|
939
|
+
],
|
|
940
|
+
"syntaxes": [
|
|
941
|
+
"buildchain inspect artifact <subject> [--passport <file-or-url>] [--npm-registry <url>] [--json]"
|
|
942
|
+
],
|
|
943
|
+
"options": [
|
|
944
|
+
"--json",
|
|
945
|
+
"--npm-registry",
|
|
946
|
+
"--passport"
|
|
947
|
+
],
|
|
948
|
+
"aliases": [],
|
|
949
|
+
"helpCommands": [
|
|
950
|
+
"buildchain inspect artifact --help"
|
|
951
|
+
],
|
|
480
952
|
"purpose": "Inspect artifact evidence.",
|
|
481
953
|
"capabilityGroup": "release-passport-trust",
|
|
482
954
|
"audience": [
|
|
@@ -495,6 +967,20 @@
|
|
|
495
967
|
"id": "inspect-release",
|
|
496
968
|
"source": "bin/buildchain.mjs",
|
|
497
969
|
"usage": "buildchain inspect release --passport <file-or-url> [--json]",
|
|
970
|
+
"paths": [
|
|
971
|
+
"inspect release"
|
|
972
|
+
],
|
|
973
|
+
"syntaxes": [
|
|
974
|
+
"buildchain inspect release --passport <file-or-url> [--json]"
|
|
975
|
+
],
|
|
976
|
+
"options": [
|
|
977
|
+
"--json",
|
|
978
|
+
"--passport"
|
|
979
|
+
],
|
|
980
|
+
"aliases": [],
|
|
981
|
+
"helpCommands": [
|
|
982
|
+
"buildchain inspect release --help"
|
|
983
|
+
],
|
|
498
984
|
"purpose": "Inspect release passport evidence.",
|
|
499
985
|
"capabilityGroup": "release-passport-trust",
|
|
500
986
|
"audience": [
|
|
@@ -513,6 +999,17 @@
|
|
|
513
999
|
"id": "kfd",
|
|
514
1000
|
"source": "bin/buildchain.mjs",
|
|
515
1001
|
"usage": "buildchain kfd ...",
|
|
1002
|
+
"paths": [
|
|
1003
|
+
"kfd"
|
|
1004
|
+
],
|
|
1005
|
+
"syntaxes": [
|
|
1006
|
+
"buildchain kfd ..."
|
|
1007
|
+
],
|
|
1008
|
+
"options": [],
|
|
1009
|
+
"aliases": [],
|
|
1010
|
+
"helpCommands": [
|
|
1011
|
+
"buildchain kfd --help"
|
|
1012
|
+
],
|
|
516
1013
|
"purpose": "Inspect KFD standards, schemas, and versioned KFD command families.",
|
|
517
1014
|
"capabilityGroup": "kfd-trust",
|
|
518
1015
|
"audience": [
|
|
@@ -531,6 +1028,23 @@
|
|
|
531
1028
|
"id": "kfd-1-gate",
|
|
532
1029
|
"source": "bin/buildchain.mjs",
|
|
533
1030
|
"usage": "buildchain kfd 1 gate --witness-json <file-or-json>... [--cwd <dir>] [--artifact-root <dir>]",
|
|
1031
|
+
"paths": [
|
|
1032
|
+
"kfd 1 gate"
|
|
1033
|
+
],
|
|
1034
|
+
"syntaxes": [
|
|
1035
|
+
"buildchain kfd 1 gate --witness-json <file-or-json>... [--cwd <dir>] [--artifact-root <dir>] [--output <file>] [--json]"
|
|
1036
|
+
],
|
|
1037
|
+
"options": [
|
|
1038
|
+
"--artifact-root",
|
|
1039
|
+
"--cwd",
|
|
1040
|
+
"--json",
|
|
1041
|
+
"--output",
|
|
1042
|
+
"--witness-json"
|
|
1043
|
+
],
|
|
1044
|
+
"aliases": [],
|
|
1045
|
+
"helpCommands": [
|
|
1046
|
+
"buildchain kfd 1 gate --help"
|
|
1047
|
+
],
|
|
534
1048
|
"purpose": "Generate KFD-1 release gate evidence from declared contract-world witnesses.",
|
|
535
1049
|
"capabilityGroup": "kfd-trust",
|
|
536
1050
|
"audience": [
|
|
@@ -549,6 +1063,20 @@
|
|
|
549
1063
|
"id": "kfd-1-schema",
|
|
550
1064
|
"source": "bin/buildchain.mjs",
|
|
551
1065
|
"usage": "buildchain kfd 1 schema [--schema <name>] [--json]",
|
|
1066
|
+
"paths": [
|
|
1067
|
+
"kfd 1 schema"
|
|
1068
|
+
],
|
|
1069
|
+
"syntaxes": [
|
|
1070
|
+
"buildchain kfd 1 schema [--schema <name>] [--json]"
|
|
1071
|
+
],
|
|
1072
|
+
"options": [
|
|
1073
|
+
"--json",
|
|
1074
|
+
"--schema"
|
|
1075
|
+
],
|
|
1076
|
+
"aliases": [],
|
|
1077
|
+
"helpCommands": [
|
|
1078
|
+
"buildchain kfd 1 schema --help"
|
|
1079
|
+
],
|
|
552
1080
|
"purpose": "Print the default KFD-1 schema exposed by the KFD package standards metadata.",
|
|
553
1081
|
"capabilityGroup": "kfd-trust",
|
|
554
1082
|
"audience": [
|
|
@@ -567,6 +1095,20 @@
|
|
|
567
1095
|
"id": "kfd-1-verify",
|
|
568
1096
|
"source": "bin/buildchain.mjs",
|
|
569
1097
|
"usage": "buildchain kfd 1 verify --gate-json <file-or-json> [--json]",
|
|
1098
|
+
"paths": [
|
|
1099
|
+
"kfd 1 verify"
|
|
1100
|
+
],
|
|
1101
|
+
"syntaxes": [
|
|
1102
|
+
"buildchain kfd 1 verify --gate-json <file-or-json> [--json]"
|
|
1103
|
+
],
|
|
1104
|
+
"options": [
|
|
1105
|
+
"--gate-json",
|
|
1106
|
+
"--json"
|
|
1107
|
+
],
|
|
1108
|
+
"aliases": [],
|
|
1109
|
+
"helpCommands": [
|
|
1110
|
+
"buildchain kfd 1 verify --help"
|
|
1111
|
+
],
|
|
570
1112
|
"purpose": "Validate KFD-1 release gate evidence.",
|
|
571
1113
|
"capabilityGroup": "kfd-trust",
|
|
572
1114
|
"audience": [
|
|
@@ -585,6 +1127,22 @@
|
|
|
585
1127
|
"id": "kfd-1-witness",
|
|
586
1128
|
"source": "bin/buildchain.mjs",
|
|
587
1129
|
"usage": "buildchain kfd 1 witness [--cwd <dir>] [--source-sha <sha>] [--output <file>] [--json]",
|
|
1130
|
+
"paths": [
|
|
1131
|
+
"kfd 1 witness"
|
|
1132
|
+
],
|
|
1133
|
+
"syntaxes": [
|
|
1134
|
+
"buildchain kfd 1 witness [--cwd <dir>] [--source-sha <sha>] [--output <file>] [--json]"
|
|
1135
|
+
],
|
|
1136
|
+
"options": [
|
|
1137
|
+
"--cwd",
|
|
1138
|
+
"--json",
|
|
1139
|
+
"--output",
|
|
1140
|
+
"--source-sha"
|
|
1141
|
+
],
|
|
1142
|
+
"aliases": [],
|
|
1143
|
+
"helpCommands": [
|
|
1144
|
+
"buildchain kfd 1 witness --help"
|
|
1145
|
+
],
|
|
588
1146
|
"purpose": "Generate Buildchain's KFD-1 self contract-world witness.",
|
|
589
1147
|
"capabilityGroup": "kfd-trust",
|
|
590
1148
|
"audience": [
|
|
@@ -603,6 +1161,21 @@
|
|
|
603
1161
|
"id": "kfd-2-claims",
|
|
604
1162
|
"source": "bin/buildchain.mjs",
|
|
605
1163
|
"usage": "buildchain kfd 2 claims [--cwd <dir>] [--output-dir <dir>] [--json]",
|
|
1164
|
+
"paths": [
|
|
1165
|
+
"kfd 2 claims"
|
|
1166
|
+
],
|
|
1167
|
+
"syntaxes": [
|
|
1168
|
+
"buildchain kfd 2 claims [--cwd <dir>] [--output-dir <dir>] [--json]"
|
|
1169
|
+
],
|
|
1170
|
+
"options": [
|
|
1171
|
+
"--cwd",
|
|
1172
|
+
"--json",
|
|
1173
|
+
"--output-dir"
|
|
1174
|
+
],
|
|
1175
|
+
"aliases": [],
|
|
1176
|
+
"helpCommands": [
|
|
1177
|
+
"buildchain kfd 2 claims --help"
|
|
1178
|
+
],
|
|
606
1179
|
"purpose": "Generate Buildchain's KFD-2 public trust claim evidence.",
|
|
607
1180
|
"capabilityGroup": "kfd-trust",
|
|
608
1181
|
"audience": [
|
|
@@ -621,6 +1194,30 @@
|
|
|
621
1194
|
"id": "kfd-2-product-claims",
|
|
622
1195
|
"source": "bin/buildchain.mjs",
|
|
623
1196
|
"usage": "buildchain kfd 2 product-claims <check|write|render> [--cwd <dir>] [--registry <path>]",
|
|
1197
|
+
"paths": [
|
|
1198
|
+
"kfd 2 product-claims check",
|
|
1199
|
+
"kfd 2 product-claims render",
|
|
1200
|
+
"kfd 2 product-claims write"
|
|
1201
|
+
],
|
|
1202
|
+
"syntaxes": [
|
|
1203
|
+
"buildchain kfd 2 product-claims <check|write|render> [--cwd <dir>] [--registry <path>] [--output-dir <dir>] [--version <version>] [--channel <channel>] [--tag <tag>] [--source-sha <sha>] [--json]"
|
|
1204
|
+
],
|
|
1205
|
+
"options": [
|
|
1206
|
+
"--channel",
|
|
1207
|
+
"--cwd",
|
|
1208
|
+
"--json",
|
|
1209
|
+
"--output-dir",
|
|
1210
|
+
"--registry",
|
|
1211
|
+
"--source-sha",
|
|
1212
|
+
"--tag",
|
|
1213
|
+
"--version"
|
|
1214
|
+
],
|
|
1215
|
+
"aliases": [],
|
|
1216
|
+
"helpCommands": [
|
|
1217
|
+
"buildchain kfd 2 product-claims check --help",
|
|
1218
|
+
"buildchain kfd 2 product-claims render --help",
|
|
1219
|
+
"buildchain kfd 2 product-claims write --help"
|
|
1220
|
+
],
|
|
624
1221
|
"purpose": "Validate and render product-owned KFD-2 claims in the canonical .buildchain/kfd layout.",
|
|
625
1222
|
"capabilityGroup": "kfd-trust",
|
|
626
1223
|
"audience": [
|
|
@@ -639,6 +1236,20 @@
|
|
|
639
1236
|
"id": "kfd-2-schema",
|
|
640
1237
|
"source": "bin/buildchain.mjs",
|
|
641
1238
|
"usage": "buildchain kfd 2 schema [--schema <name>] [--json]",
|
|
1239
|
+
"paths": [
|
|
1240
|
+
"kfd 2 schema"
|
|
1241
|
+
],
|
|
1242
|
+
"syntaxes": [
|
|
1243
|
+
"buildchain kfd 2 schema [--schema <name>] [--json]"
|
|
1244
|
+
],
|
|
1245
|
+
"options": [
|
|
1246
|
+
"--json",
|
|
1247
|
+
"--schema"
|
|
1248
|
+
],
|
|
1249
|
+
"aliases": [],
|
|
1250
|
+
"helpCommands": [
|
|
1251
|
+
"buildchain kfd 2 schema --help"
|
|
1252
|
+
],
|
|
642
1253
|
"purpose": "Print the default KFD-2 schema exposed by the KFD package standards metadata.",
|
|
643
1254
|
"capabilityGroup": "kfd-trust",
|
|
644
1255
|
"audience": [
|
|
@@ -657,6 +1268,21 @@
|
|
|
657
1268
|
"id": "kfd-2-taxonomy",
|
|
658
1269
|
"source": "bin/buildchain.mjs",
|
|
659
1270
|
"usage": "buildchain kfd 2 taxonomy --entry-json <file-or-json>... [--kind residualRisk|downgradeReason] [--json]",
|
|
1271
|
+
"paths": [
|
|
1272
|
+
"kfd 2 taxonomy"
|
|
1273
|
+
],
|
|
1274
|
+
"syntaxes": [
|
|
1275
|
+
"buildchain kfd 2 taxonomy --entry-json <file-or-json>... [--kind residualRisk|downgradeReason] [--json]"
|
|
1276
|
+
],
|
|
1277
|
+
"options": [
|
|
1278
|
+
"--entry-json",
|
|
1279
|
+
"--json",
|
|
1280
|
+
"--kind"
|
|
1281
|
+
],
|
|
1282
|
+
"aliases": [],
|
|
1283
|
+
"helpCommands": [
|
|
1284
|
+
"buildchain kfd 2 taxonomy --help"
|
|
1285
|
+
],
|
|
660
1286
|
"purpose": "Validate KFD-2 trust taxonomy entries from the KFD package standards metadata.",
|
|
661
1287
|
"capabilityGroup": "kfd-trust",
|
|
662
1288
|
"audience": [
|
|
@@ -675,6 +1301,20 @@
|
|
|
675
1301
|
"id": "kfd-2-trust-assessment",
|
|
676
1302
|
"source": "bin/buildchain.mjs",
|
|
677
1303
|
"usage": "buildchain kfd 2 trust-assessment [--assessment-json <file-or-json>] [--json]",
|
|
1304
|
+
"paths": [
|
|
1305
|
+
"kfd 2 trust-assessment"
|
|
1306
|
+
],
|
|
1307
|
+
"syntaxes": [
|
|
1308
|
+
"buildchain kfd 2 trust-assessment [--assessment-json <file-or-json>] [--json]"
|
|
1309
|
+
],
|
|
1310
|
+
"options": [
|
|
1311
|
+
"--assessment-json",
|
|
1312
|
+
"--json"
|
|
1313
|
+
],
|
|
1314
|
+
"aliases": [],
|
|
1315
|
+
"helpCommands": [
|
|
1316
|
+
"buildchain kfd 2 trust-assessment --help"
|
|
1317
|
+
],
|
|
678
1318
|
"purpose": "Expose and validate the KFD package foundation KFD-2 trust assessment.",
|
|
679
1319
|
"capabilityGroup": "kfd-trust",
|
|
680
1320
|
"audience": [
|
|
@@ -693,6 +1333,20 @@
|
|
|
693
1333
|
"id": "kfd-2-trust-claims",
|
|
694
1334
|
"source": "bin/buildchain.mjs",
|
|
695
1335
|
"usage": "buildchain kfd 2 trust-claims [--claims-json <file-or-json>] [--json]",
|
|
1336
|
+
"paths": [
|
|
1337
|
+
"kfd 2 trust-claims"
|
|
1338
|
+
],
|
|
1339
|
+
"syntaxes": [
|
|
1340
|
+
"buildchain kfd 2 trust-claims [--claims-json <file-or-json>] [--json]"
|
|
1341
|
+
],
|
|
1342
|
+
"options": [
|
|
1343
|
+
"--claims-json",
|
|
1344
|
+
"--json"
|
|
1345
|
+
],
|
|
1346
|
+
"aliases": [],
|
|
1347
|
+
"helpCommands": [
|
|
1348
|
+
"buildchain kfd 2 trust-claims --help"
|
|
1349
|
+
],
|
|
696
1350
|
"purpose": "Expose and validate the KFD package foundation KFD-2 trust claims.",
|
|
697
1351
|
"capabilityGroup": "kfd-trust",
|
|
698
1352
|
"audience": [
|
|
@@ -711,6 +1365,17 @@
|
|
|
711
1365
|
"id": "kfd-3",
|
|
712
1366
|
"source": "bin/buildchain.mjs",
|
|
713
1367
|
"usage": "buildchain kfd 3 ...",
|
|
1368
|
+
"paths": [
|
|
1369
|
+
"kfd 3"
|
|
1370
|
+
],
|
|
1371
|
+
"syntaxes": [
|
|
1372
|
+
"buildchain kfd 3 ..."
|
|
1373
|
+
],
|
|
1374
|
+
"options": [],
|
|
1375
|
+
"aliases": [],
|
|
1376
|
+
"helpCommands": [
|
|
1377
|
+
"buildchain kfd 3 --help"
|
|
1378
|
+
],
|
|
714
1379
|
"purpose": "Inspect KFD-3 surface detection, registry, witness, audit, and query command families under the unified KFD namespace.",
|
|
715
1380
|
"capabilityGroup": "kfd-trust",
|
|
716
1381
|
"audience": [
|
|
@@ -729,6 +1394,22 @@
|
|
|
729
1394
|
"id": "kfd-3-audit",
|
|
730
1395
|
"source": "bin/buildchain.mjs",
|
|
731
1396
|
"usage": "buildchain kfd 3 audit [--cwd <dir>] [--registry <path>] [--artifact <path>] [--json]",
|
|
1397
|
+
"paths": [
|
|
1398
|
+
"kfd 3 audit"
|
|
1399
|
+
],
|
|
1400
|
+
"syntaxes": [
|
|
1401
|
+
"buildchain kfd 3 audit [--cwd <dir>] [--registry <path>] [--artifact <path>] [--json]"
|
|
1402
|
+
],
|
|
1403
|
+
"options": [
|
|
1404
|
+
"--artifact",
|
|
1405
|
+
"--cwd",
|
|
1406
|
+
"--json",
|
|
1407
|
+
"--registry"
|
|
1408
|
+
],
|
|
1409
|
+
"aliases": [],
|
|
1410
|
+
"helpCommands": [
|
|
1411
|
+
"buildchain kfd 3 audit --help"
|
|
1412
|
+
],
|
|
732
1413
|
"purpose": "Compare detected, declared, and enforced KFD-3 public surfaces.",
|
|
733
1414
|
"capabilityGroup": "kfd-trust",
|
|
734
1415
|
"audience": [
|
|
@@ -747,6 +1428,22 @@
|
|
|
747
1428
|
"id": "kfd-3-detect",
|
|
748
1429
|
"source": "bin/buildchain.mjs",
|
|
749
1430
|
"usage": "buildchain kfd 3 detect [--cwd <dir>] [--kind <kind>]... [--artifact <path>] [--json]",
|
|
1431
|
+
"paths": [
|
|
1432
|
+
"kfd 3 detect"
|
|
1433
|
+
],
|
|
1434
|
+
"syntaxes": [
|
|
1435
|
+
"buildchain kfd 3 detect [--cwd <dir>] [--kind <kind>]... [--artifact <path>] [--json]"
|
|
1436
|
+
],
|
|
1437
|
+
"options": [
|
|
1438
|
+
"--artifact",
|
|
1439
|
+
"--cwd",
|
|
1440
|
+
"--json",
|
|
1441
|
+
"--kind"
|
|
1442
|
+
],
|
|
1443
|
+
"aliases": [],
|
|
1444
|
+
"helpCommands": [
|
|
1445
|
+
"buildchain kfd 3 detect --help"
|
|
1446
|
+
],
|
|
750
1447
|
"purpose": "Detect standard KFD-3 public surface candidates from source and artifact metadata.",
|
|
751
1448
|
"capabilityGroup": "kfd-trust",
|
|
752
1449
|
"audience": [
|
|
@@ -765,6 +1462,23 @@
|
|
|
765
1462
|
"id": "kfd-3-query",
|
|
766
1463
|
"source": "bin/buildchain.mjs",
|
|
767
1464
|
"usage": "buildchain kfd 3 query [<product>] [--cwd <dir>] [--registry <path>]",
|
|
1465
|
+
"paths": [
|
|
1466
|
+
"kfd 3 query"
|
|
1467
|
+
],
|
|
1468
|
+
"syntaxes": [
|
|
1469
|
+
"buildchain kfd 3 query [<product>] [--cwd <dir>] [--registry <path>] [--passport <file-or-url>] [--artifact <path>] [--json]"
|
|
1470
|
+
],
|
|
1471
|
+
"options": [
|
|
1472
|
+
"--artifact",
|
|
1473
|
+
"--cwd",
|
|
1474
|
+
"--json",
|
|
1475
|
+
"--passport",
|
|
1476
|
+
"--registry"
|
|
1477
|
+
],
|
|
1478
|
+
"aliases": [],
|
|
1479
|
+
"helpCommands": [
|
|
1480
|
+
"buildchain kfd 3 query --help"
|
|
1481
|
+
],
|
|
768
1482
|
"purpose": "Return an agent-readable KFD-3 capability map for a product, registry, or release passport.",
|
|
769
1483
|
"capabilityGroup": "kfd-trust",
|
|
770
1484
|
"audience": [
|
|
@@ -783,6 +1497,33 @@
|
|
|
783
1497
|
"id": "kfd-3-register",
|
|
784
1498
|
"source": "bin/buildchain.mjs",
|
|
785
1499
|
"usage": "buildchain kfd 3 register <node-api|python-api|cli|binary|documentation|site-bundle>",
|
|
1500
|
+
"paths": [
|
|
1501
|
+
"kfd 3 register binary",
|
|
1502
|
+
"kfd 3 register cli",
|
|
1503
|
+
"kfd 3 register documentation",
|
|
1504
|
+
"kfd 3 register node-api",
|
|
1505
|
+
"kfd 3 register python-api",
|
|
1506
|
+
"kfd 3 register site-bundle"
|
|
1507
|
+
],
|
|
1508
|
+
"syntaxes": [
|
|
1509
|
+
"buildchain kfd 3 register <node-api|python-api|cli|binary|documentation|site-bundle> [--cwd <dir>] [--registry <path>] [--artifact <path>] [--product <name>] [--json]"
|
|
1510
|
+
],
|
|
1511
|
+
"options": [
|
|
1512
|
+
"--artifact",
|
|
1513
|
+
"--cwd",
|
|
1514
|
+
"--json",
|
|
1515
|
+
"--product",
|
|
1516
|
+
"--registry"
|
|
1517
|
+
],
|
|
1518
|
+
"aliases": [],
|
|
1519
|
+
"helpCommands": [
|
|
1520
|
+
"buildchain kfd 3 register binary --help",
|
|
1521
|
+
"buildchain kfd 3 register cli --help",
|
|
1522
|
+
"buildchain kfd 3 register documentation --help",
|
|
1523
|
+
"buildchain kfd 3 register node-api --help",
|
|
1524
|
+
"buildchain kfd 3 register python-api --help",
|
|
1525
|
+
"buildchain kfd 3 register site-bundle --help"
|
|
1526
|
+
],
|
|
786
1527
|
"purpose": "Declare detected KFD-3 public surfaces into a product-owned surface registry.",
|
|
787
1528
|
"capabilityGroup": "kfd-trust",
|
|
788
1529
|
"audience": [
|
|
@@ -801,6 +1542,25 @@
|
|
|
801
1542
|
"id": "kfd-3-witness",
|
|
802
1543
|
"source": "bin/buildchain.mjs",
|
|
803
1544
|
"usage": "buildchain kfd 3 witness [--cwd <dir>] [--registry <path>] [--kind prebuild|artifact]",
|
|
1545
|
+
"paths": [
|
|
1546
|
+
"kfd 3 witness"
|
|
1547
|
+
],
|
|
1548
|
+
"syntaxes": [
|
|
1549
|
+
"buildchain kfd 3 witness [--cwd <dir>] [--registry <path>] [--kind prebuild|artifact] [--source-sha <sha>] [--artifact <path>] [--output <file>] [--json]"
|
|
1550
|
+
],
|
|
1551
|
+
"options": [
|
|
1552
|
+
"--artifact",
|
|
1553
|
+
"--cwd",
|
|
1554
|
+
"--json",
|
|
1555
|
+
"--kind",
|
|
1556
|
+
"--output",
|
|
1557
|
+
"--registry",
|
|
1558
|
+
"--source-sha"
|
|
1559
|
+
],
|
|
1560
|
+
"aliases": [],
|
|
1561
|
+
"helpCommands": [
|
|
1562
|
+
"buildchain kfd 3 witness --help"
|
|
1563
|
+
],
|
|
804
1564
|
"purpose": "Generate release-passport-compatible KFD-3 surface witnesses from a product registry.",
|
|
805
1565
|
"capabilityGroup": "kfd-trust",
|
|
806
1566
|
"audience": [
|
|
@@ -819,6 +1579,22 @@
|
|
|
819
1579
|
"id": "kfd-4-gate",
|
|
820
1580
|
"source": "bin/buildchain.mjs",
|
|
821
1581
|
"usage": "buildchain kfd 4 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]",
|
|
1582
|
+
"paths": [
|
|
1583
|
+
"kfd 4 gate"
|
|
1584
|
+
],
|
|
1585
|
+
"syntaxes": [
|
|
1586
|
+
"buildchain kfd 4 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]"
|
|
1587
|
+
],
|
|
1588
|
+
"options": [
|
|
1589
|
+
"--cwd",
|
|
1590
|
+
"--input-json",
|
|
1591
|
+
"--json",
|
|
1592
|
+
"--output"
|
|
1593
|
+
],
|
|
1594
|
+
"aliases": [],
|
|
1595
|
+
"helpCommands": [
|
|
1596
|
+
"buildchain kfd 4 gate --help"
|
|
1597
|
+
],
|
|
822
1598
|
"purpose": "Evaluate source-bound KFD-4 observer-perspective and contrastive-replay product evidence.",
|
|
823
1599
|
"capabilityGroup": "kfd-trust",
|
|
824
1600
|
"audience": [
|
|
@@ -837,6 +1613,20 @@
|
|
|
837
1613
|
"id": "kfd-4-schema",
|
|
838
1614
|
"source": "bin/buildchain.mjs",
|
|
839
1615
|
"usage": "buildchain kfd 4 schema [--schema <name>] [--json]",
|
|
1616
|
+
"paths": [
|
|
1617
|
+
"kfd 4 schema"
|
|
1618
|
+
],
|
|
1619
|
+
"syntaxes": [
|
|
1620
|
+
"buildchain kfd 4 schema [--schema <name>] [--json]"
|
|
1621
|
+
],
|
|
1622
|
+
"options": [
|
|
1623
|
+
"--json",
|
|
1624
|
+
"--schema"
|
|
1625
|
+
],
|
|
1626
|
+
"aliases": [],
|
|
1627
|
+
"helpCommands": [
|
|
1628
|
+
"buildchain kfd 4 schema --help"
|
|
1629
|
+
],
|
|
840
1630
|
"purpose": "Print the default KFD-4 schema exposed by the KFD package standards metadata.",
|
|
841
1631
|
"capabilityGroup": "kfd-trust",
|
|
842
1632
|
"audience": [
|
|
@@ -855,6 +1645,21 @@
|
|
|
855
1645
|
"id": "kfd-4-verify",
|
|
856
1646
|
"source": "bin/buildchain.mjs",
|
|
857
1647
|
"usage": "buildchain kfd 4 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]",
|
|
1648
|
+
"paths": [
|
|
1649
|
+
"kfd 4 verify"
|
|
1650
|
+
],
|
|
1651
|
+
"syntaxes": [
|
|
1652
|
+
"buildchain kfd 4 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]"
|
|
1653
|
+
],
|
|
1654
|
+
"options": [
|
|
1655
|
+
"--expected-source-sha",
|
|
1656
|
+
"--gate-json",
|
|
1657
|
+
"--json"
|
|
1658
|
+
],
|
|
1659
|
+
"aliases": [],
|
|
1660
|
+
"helpCommands": [
|
|
1661
|
+
"buildchain kfd 4 verify --help"
|
|
1662
|
+
],
|
|
858
1663
|
"purpose": "Verify a retained KFD-4 product-gate result without widening product support.",
|
|
859
1664
|
"capabilityGroup": "kfd-trust",
|
|
860
1665
|
"audience": [
|
|
@@ -873,6 +1678,22 @@
|
|
|
873
1678
|
"id": "kfd-5-gate",
|
|
874
1679
|
"source": "bin/buildchain.mjs",
|
|
875
1680
|
"usage": "buildchain kfd 5 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]",
|
|
1681
|
+
"paths": [
|
|
1682
|
+
"kfd 5 gate"
|
|
1683
|
+
],
|
|
1684
|
+
"syntaxes": [
|
|
1685
|
+
"buildchain kfd 5 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]"
|
|
1686
|
+
],
|
|
1687
|
+
"options": [
|
|
1688
|
+
"--cwd",
|
|
1689
|
+
"--input-json",
|
|
1690
|
+
"--json",
|
|
1691
|
+
"--output"
|
|
1692
|
+
],
|
|
1693
|
+
"aliases": [],
|
|
1694
|
+
"helpCommands": [
|
|
1695
|
+
"buildchain kfd 5 gate --help"
|
|
1696
|
+
],
|
|
876
1697
|
"purpose": "Evaluate source-bound KFD-5 Primitive discovery qualification evidence.",
|
|
877
1698
|
"capabilityGroup": "kfd-trust",
|
|
878
1699
|
"audience": [
|
|
@@ -891,6 +1712,20 @@
|
|
|
891
1712
|
"id": "kfd-5-schema",
|
|
892
1713
|
"source": "bin/buildchain.mjs",
|
|
893
1714
|
"usage": "buildchain kfd 5 schema [--schema <name>] [--json]",
|
|
1715
|
+
"paths": [
|
|
1716
|
+
"kfd 5 schema"
|
|
1717
|
+
],
|
|
1718
|
+
"syntaxes": [
|
|
1719
|
+
"buildchain kfd 5 schema [--schema <name>] [--json]"
|
|
1720
|
+
],
|
|
1721
|
+
"options": [
|
|
1722
|
+
"--json",
|
|
1723
|
+
"--schema"
|
|
1724
|
+
],
|
|
1725
|
+
"aliases": [],
|
|
1726
|
+
"helpCommands": [
|
|
1727
|
+
"buildchain kfd 5 schema --help"
|
|
1728
|
+
],
|
|
894
1729
|
"purpose": "Print the default KFD-5 schema exposed by the KFD package standards metadata.",
|
|
895
1730
|
"capabilityGroup": "kfd-trust",
|
|
896
1731
|
"audience": [
|
|
@@ -909,6 +1744,21 @@
|
|
|
909
1744
|
"id": "kfd-5-verify",
|
|
910
1745
|
"source": "bin/buildchain.mjs",
|
|
911
1746
|
"usage": "buildchain kfd 5 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]",
|
|
1747
|
+
"paths": [
|
|
1748
|
+
"kfd 5 verify"
|
|
1749
|
+
],
|
|
1750
|
+
"syntaxes": [
|
|
1751
|
+
"buildchain kfd 5 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]"
|
|
1752
|
+
],
|
|
1753
|
+
"options": [
|
|
1754
|
+
"--expected-source-sha",
|
|
1755
|
+
"--gate-json",
|
|
1756
|
+
"--json"
|
|
1757
|
+
],
|
|
1758
|
+
"aliases": [],
|
|
1759
|
+
"helpCommands": [
|
|
1760
|
+
"buildchain kfd 5 verify --help"
|
|
1761
|
+
],
|
|
912
1762
|
"purpose": "Verify a retained KFD-5 product-gate result without widening product support.",
|
|
913
1763
|
"capabilityGroup": "kfd-trust",
|
|
914
1764
|
"audience": [
|
|
@@ -927,6 +1777,22 @@
|
|
|
927
1777
|
"id": "kfd-7-gate",
|
|
928
1778
|
"source": "bin/buildchain.mjs",
|
|
929
1779
|
"usage": "buildchain kfd 7 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]",
|
|
1780
|
+
"paths": [
|
|
1781
|
+
"kfd 7 gate"
|
|
1782
|
+
],
|
|
1783
|
+
"syntaxes": [
|
|
1784
|
+
"buildchain kfd 7 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]"
|
|
1785
|
+
],
|
|
1786
|
+
"options": [
|
|
1787
|
+
"--cwd",
|
|
1788
|
+
"--input-json",
|
|
1789
|
+
"--json",
|
|
1790
|
+
"--output"
|
|
1791
|
+
],
|
|
1792
|
+
"aliases": [],
|
|
1793
|
+
"helpCommands": [
|
|
1794
|
+
"buildchain kfd 7 gate --help"
|
|
1795
|
+
],
|
|
930
1796
|
"purpose": "Evaluate a source-bound KFD-7 Domain Profile, evidence obligations, and independent review.",
|
|
931
1797
|
"capabilityGroup": "kfd-trust",
|
|
932
1798
|
"audience": [
|
|
@@ -945,6 +1811,20 @@
|
|
|
945
1811
|
"id": "kfd-7-schema",
|
|
946
1812
|
"source": "bin/buildchain.mjs",
|
|
947
1813
|
"usage": "buildchain kfd 7 schema [--schema <name>] [--json]",
|
|
1814
|
+
"paths": [
|
|
1815
|
+
"kfd 7 schema"
|
|
1816
|
+
],
|
|
1817
|
+
"syntaxes": [
|
|
1818
|
+
"buildchain kfd 7 schema [--schema <name>] [--json]"
|
|
1819
|
+
],
|
|
1820
|
+
"options": [
|
|
1821
|
+
"--json",
|
|
1822
|
+
"--schema"
|
|
1823
|
+
],
|
|
1824
|
+
"aliases": [],
|
|
1825
|
+
"helpCommands": [
|
|
1826
|
+
"buildchain kfd 7 schema --help"
|
|
1827
|
+
],
|
|
948
1828
|
"purpose": "Print the default KFD-7 schema exposed by the KFD package standards metadata.",
|
|
949
1829
|
"capabilityGroup": "kfd-trust",
|
|
950
1830
|
"audience": [
|
|
@@ -963,6 +1843,21 @@
|
|
|
963
1843
|
"id": "kfd-7-verify",
|
|
964
1844
|
"source": "bin/buildchain.mjs",
|
|
965
1845
|
"usage": "buildchain kfd 7 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]",
|
|
1846
|
+
"paths": [
|
|
1847
|
+
"kfd 7 verify"
|
|
1848
|
+
],
|
|
1849
|
+
"syntaxes": [
|
|
1850
|
+
"buildchain kfd 7 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]"
|
|
1851
|
+
],
|
|
1852
|
+
"options": [
|
|
1853
|
+
"--expected-source-sha",
|
|
1854
|
+
"--gate-json",
|
|
1855
|
+
"--json"
|
|
1856
|
+
],
|
|
1857
|
+
"aliases": [],
|
|
1858
|
+
"helpCommands": [
|
|
1859
|
+
"buildchain kfd 7 verify --help"
|
|
1860
|
+
],
|
|
966
1861
|
"purpose": "Verify a retained KFD-7 product-gate result without widening product support.",
|
|
967
1862
|
"capabilityGroup": "kfd-trust",
|
|
968
1863
|
"audience": [
|
|
@@ -981,6 +1876,20 @@
|
|
|
981
1876
|
"id": "kfd-aggregate",
|
|
982
1877
|
"source": "bin/buildchain.mjs",
|
|
983
1878
|
"usage": "buildchain kfd aggregate [--cwd <dir>] [--json]",
|
|
1879
|
+
"paths": [
|
|
1880
|
+
"kfd aggregate"
|
|
1881
|
+
],
|
|
1882
|
+
"syntaxes": [
|
|
1883
|
+
"buildchain kfd aggregate [--cwd <dir>] [--json]"
|
|
1884
|
+
],
|
|
1885
|
+
"options": [
|
|
1886
|
+
"--cwd",
|
|
1887
|
+
"--json"
|
|
1888
|
+
],
|
|
1889
|
+
"aliases": [],
|
|
1890
|
+
"helpCommands": [
|
|
1891
|
+
"buildchain kfd aggregate --help"
|
|
1892
|
+
],
|
|
984
1893
|
"purpose": "Return a product KFD view that combines own KFD status with upstream KFD aggregate facts.",
|
|
985
1894
|
"capabilityGroup": "kfd-trust",
|
|
986
1895
|
"audience": [
|
|
@@ -999,6 +1908,31 @@
|
|
|
999
1908
|
"id": "kfd-hub",
|
|
1000
1909
|
"source": "bin/buildchain.mjs",
|
|
1001
1910
|
"usage": "buildchain kfd hub <init|inspect|test|explain> [--cwd <dir>]",
|
|
1911
|
+
"paths": [
|
|
1912
|
+
"kfd hub explain",
|
|
1913
|
+
"kfd hub init",
|
|
1914
|
+
"kfd hub inspect",
|
|
1915
|
+
"kfd hub test"
|
|
1916
|
+
],
|
|
1917
|
+
"syntaxes": [
|
|
1918
|
+
"buildchain kfd hub <init|inspect|test|explain> [--cwd <dir>] [--declaration <path>] [--output-dir <path>] [--write] [--force] [--for agent] [--json]"
|
|
1919
|
+
],
|
|
1920
|
+
"options": [
|
|
1921
|
+
"--cwd",
|
|
1922
|
+
"--declaration",
|
|
1923
|
+
"--for",
|
|
1924
|
+
"--force",
|
|
1925
|
+
"--json",
|
|
1926
|
+
"--output-dir",
|
|
1927
|
+
"--write"
|
|
1928
|
+
],
|
|
1929
|
+
"aliases": [],
|
|
1930
|
+
"helpCommands": [
|
|
1931
|
+
"buildchain kfd hub explain --help",
|
|
1932
|
+
"buildchain kfd hub init --help",
|
|
1933
|
+
"buildchain kfd hub inspect --help",
|
|
1934
|
+
"buildchain kfd hub test --help"
|
|
1935
|
+
],
|
|
1002
1936
|
"purpose": "Initialize, inspect, test, and explain one declarative KFD Agent Hub adapter adoption.",
|
|
1003
1937
|
"capabilityGroup": "kfd-trust",
|
|
1004
1938
|
"audience": [
|
|
@@ -1017,6 +1951,22 @@
|
|
|
1017
1951
|
"id": "kfd-migrate-layout",
|
|
1018
1952
|
"source": "bin/buildchain.mjs",
|
|
1019
1953
|
"usage": "buildchain kfd migrate-layout [--cwd <dir>] [--write] [--force] [--json]",
|
|
1954
|
+
"paths": [
|
|
1955
|
+
"kfd migrate-layout"
|
|
1956
|
+
],
|
|
1957
|
+
"syntaxes": [
|
|
1958
|
+
"buildchain kfd migrate-layout [--cwd <dir>] [--write] [--force] [--json]"
|
|
1959
|
+
],
|
|
1960
|
+
"options": [
|
|
1961
|
+
"--cwd",
|
|
1962
|
+
"--force",
|
|
1963
|
+
"--json",
|
|
1964
|
+
"--write"
|
|
1965
|
+
],
|
|
1966
|
+
"aliases": [],
|
|
1967
|
+
"helpCommands": [
|
|
1968
|
+
"buildchain kfd migrate-layout --help"
|
|
1969
|
+
],
|
|
1020
1970
|
"purpose": "Plan or apply migration of legacy root Buildchain files into .buildchain/.",
|
|
1021
1971
|
"capabilityGroup": "kfd-trust",
|
|
1022
1972
|
"audience": [
|
|
@@ -1035,6 +1985,20 @@
|
|
|
1035
1985
|
"id": "kfd-schema-list",
|
|
1036
1986
|
"source": "bin/buildchain.mjs",
|
|
1037
1987
|
"usage": "buildchain kfd schema list [--standard kfd-1|kfd-2|kfd-3|kfd-4] [--json]",
|
|
1988
|
+
"paths": [
|
|
1989
|
+
"kfd schema list"
|
|
1990
|
+
],
|
|
1991
|
+
"syntaxes": [
|
|
1992
|
+
"buildchain kfd schema list [--standard kfd-1|kfd-2|kfd-3|kfd-4] [--json]"
|
|
1993
|
+
],
|
|
1994
|
+
"options": [
|
|
1995
|
+
"--json",
|
|
1996
|
+
"--standard"
|
|
1997
|
+
],
|
|
1998
|
+
"aliases": [],
|
|
1999
|
+
"helpCommands": [
|
|
2000
|
+
"buildchain kfd schema list --help"
|
|
2001
|
+
],
|
|
1038
2002
|
"purpose": "List machine-readable schemas exposed by the KFD package standards metadata.",
|
|
1039
2003
|
"capabilityGroup": "kfd-trust",
|
|
1040
2004
|
"audience": [
|
|
@@ -1053,6 +2017,26 @@
|
|
|
1053
2017
|
"id": "kfd-schema-show",
|
|
1054
2018
|
"source": "bin/buildchain.mjs",
|
|
1055
2019
|
"usage": "buildchain kfd schema show <kfd-1|kfd-2|kfd-3|kfd-4> [--schema <name>] [--json]",
|
|
2020
|
+
"paths": [
|
|
2021
|
+
"kfd schema show kfd-1",
|
|
2022
|
+
"kfd schema show kfd-2",
|
|
2023
|
+
"kfd schema show kfd-3",
|
|
2024
|
+
"kfd schema show kfd-4"
|
|
2025
|
+
],
|
|
2026
|
+
"syntaxes": [
|
|
2027
|
+
"buildchain kfd schema show <kfd-1|kfd-2|kfd-3|kfd-4> [--schema <name>] [--json]"
|
|
2028
|
+
],
|
|
2029
|
+
"options": [
|
|
2030
|
+
"--json",
|
|
2031
|
+
"--schema"
|
|
2032
|
+
],
|
|
2033
|
+
"aliases": [],
|
|
2034
|
+
"helpCommands": [
|
|
2035
|
+
"buildchain kfd schema show kfd-1 --help",
|
|
2036
|
+
"buildchain kfd schema show kfd-2 --help",
|
|
2037
|
+
"buildchain kfd schema show kfd-3 --help",
|
|
2038
|
+
"buildchain kfd schema show kfd-4 --help"
|
|
2039
|
+
],
|
|
1056
2040
|
"purpose": "Print a machine-readable KFD schema from the KFD package standards metadata.",
|
|
1057
2041
|
"capabilityGroup": "kfd-trust",
|
|
1058
2042
|
"audience": [
|
|
@@ -1071,6 +2055,20 @@
|
|
|
1071
2055
|
"id": "kfd-status",
|
|
1072
2056
|
"source": "bin/buildchain.mjs",
|
|
1073
2057
|
"usage": "buildchain kfd status [--cwd <dir>] [--json]",
|
|
2058
|
+
"paths": [
|
|
2059
|
+
"kfd status"
|
|
2060
|
+
],
|
|
2061
|
+
"syntaxes": [
|
|
2062
|
+
"buildchain kfd status [--cwd <dir>] [--json]"
|
|
2063
|
+
],
|
|
2064
|
+
"options": [
|
|
2065
|
+
"--cwd",
|
|
2066
|
+
"--json"
|
|
2067
|
+
],
|
|
2068
|
+
"aliases": [],
|
|
2069
|
+
"helpCommands": [
|
|
2070
|
+
"buildchain kfd status --help"
|
|
2071
|
+
],
|
|
1074
2072
|
"purpose": "Report implemented KFD support and the active .buildchain repository layout.",
|
|
1075
2073
|
"capabilityGroup": "kfd-trust",
|
|
1076
2074
|
"audience": [
|
|
@@ -1089,6 +2087,28 @@
|
|
|
1089
2087
|
"id": "kfd-support",
|
|
1090
2088
|
"source": "bin/buildchain.mjs",
|
|
1091
2089
|
"usage": "buildchain kfd support project --matrix-json <file-or-json> --gate-json <file-or-json>...",
|
|
2090
|
+
"paths": [
|
|
2091
|
+
"kfd support project",
|
|
2092
|
+
"kfd support verify"
|
|
2093
|
+
],
|
|
2094
|
+
"syntaxes": [
|
|
2095
|
+
"buildchain kfd support project --matrix-json <file-or-json> --gate-json <file-or-json>... [--expected-source-sha <sha>] [--checked-at <date-time>] [--output <file>] [--json]",
|
|
2096
|
+
"buildchain kfd support verify --projection-json <file-or-json> [--expected-source-sha <sha>] [--checked-at <date-time>] [--json]"
|
|
2097
|
+
],
|
|
2098
|
+
"options": [
|
|
2099
|
+
"--checked-at",
|
|
2100
|
+
"--expected-source-sha",
|
|
2101
|
+
"--gate-json",
|
|
2102
|
+
"--json",
|
|
2103
|
+
"--matrix-json",
|
|
2104
|
+
"--output",
|
|
2105
|
+
"--projection-json"
|
|
2106
|
+
],
|
|
2107
|
+
"aliases": [],
|
|
2108
|
+
"helpCommands": [
|
|
2109
|
+
"buildchain kfd support project --help",
|
|
2110
|
+
"buildchain kfd support verify --help"
|
|
2111
|
+
],
|
|
1092
2112
|
"purpose": "Project and verify a product-owned KFD-1 through KFD-13 support matrix against KFD-4/5/7 gates.",
|
|
1093
2113
|
"capabilityGroup": "kfd-trust",
|
|
1094
2114
|
"audience": [
|
|
@@ -1107,6 +2127,21 @@
|
|
|
1107
2127
|
"id": "kfd-upstream-check",
|
|
1108
2128
|
"source": "bin/buildchain.mjs",
|
|
1109
2129
|
"usage": "buildchain kfd upstream check [--cwd <dir>] [--aggregate-json <file-or-json>] [--json]",
|
|
2130
|
+
"paths": [
|
|
2131
|
+
"kfd upstream check"
|
|
2132
|
+
],
|
|
2133
|
+
"syntaxes": [
|
|
2134
|
+
"buildchain kfd upstream check [--cwd <dir>] [--aggregate-json <file-or-json>] [--json]"
|
|
2135
|
+
],
|
|
2136
|
+
"options": [
|
|
2137
|
+
"--aggregate-json",
|
|
2138
|
+
"--cwd",
|
|
2139
|
+
"--json"
|
|
2140
|
+
],
|
|
2141
|
+
"aliases": [],
|
|
2142
|
+
"helpCommands": [
|
|
2143
|
+
"buildchain kfd upstream check --help"
|
|
2144
|
+
],
|
|
1110
2145
|
"purpose": "Validate a KFD upstream aggregate document and fail closed on missing evidence.",
|
|
1111
2146
|
"capabilityGroup": "kfd-trust",
|
|
1112
2147
|
"audience": [
|
|
@@ -1125,6 +2160,21 @@
|
|
|
1125
2160
|
"id": "kfd-upstream-collect",
|
|
1126
2161
|
"source": "bin/buildchain.mjs",
|
|
1127
2162
|
"usage": "buildchain kfd upstream collect [--cwd <dir>] [--output <file>] [--json]",
|
|
2163
|
+
"paths": [
|
|
2164
|
+
"kfd upstream collect"
|
|
2165
|
+
],
|
|
2166
|
+
"syntaxes": [
|
|
2167
|
+
"buildchain kfd upstream collect [--cwd <dir>] [--output <file>] [--json]"
|
|
2168
|
+
],
|
|
2169
|
+
"options": [
|
|
2170
|
+
"--cwd",
|
|
2171
|
+
"--json",
|
|
2172
|
+
"--output"
|
|
2173
|
+
],
|
|
2174
|
+
"aliases": [],
|
|
2175
|
+
"helpCommands": [
|
|
2176
|
+
"buildchain kfd upstream collect --help"
|
|
2177
|
+
],
|
|
1128
2178
|
"purpose": "Collect declared KFD-aware upstream package evidence and hashes from Buildchain config.",
|
|
1129
2179
|
"capabilityGroup": "kfd-trust",
|
|
1130
2180
|
"audience": [
|
|
@@ -1143,6 +2193,19 @@
|
|
|
1143
2193
|
"id": "kfd-upstream-roles",
|
|
1144
2194
|
"source": "bin/buildchain.mjs",
|
|
1145
2195
|
"usage": "buildchain kfd upstream roles [--json]",
|
|
2196
|
+
"paths": [
|
|
2197
|
+
"kfd upstream roles"
|
|
2198
|
+
],
|
|
2199
|
+
"syntaxes": [
|
|
2200
|
+
"buildchain kfd upstream roles [--json]"
|
|
2201
|
+
],
|
|
2202
|
+
"options": [
|
|
2203
|
+
"--json"
|
|
2204
|
+
],
|
|
2205
|
+
"aliases": [],
|
|
2206
|
+
"helpCommands": [
|
|
2207
|
+
"buildchain kfd upstream roles --help"
|
|
2208
|
+
],
|
|
1146
2209
|
"purpose": "List Buildchain-managed KFD upstream role values and inference policy.",
|
|
1147
2210
|
"capabilityGroup": "kfd-trust",
|
|
1148
2211
|
"audience": [
|
|
@@ -1161,6 +2224,20 @@
|
|
|
1161
2224
|
"id": "layout",
|
|
1162
2225
|
"source": "bin/buildchain.mjs",
|
|
1163
2226
|
"usage": "buildchain layout [--cwd <dir>] [--json]",
|
|
2227
|
+
"paths": [
|
|
2228
|
+
"layout"
|
|
2229
|
+
],
|
|
2230
|
+
"syntaxes": [
|
|
2231
|
+
"buildchain layout [--cwd <dir>] [--json]"
|
|
2232
|
+
],
|
|
2233
|
+
"options": [
|
|
2234
|
+
"--cwd",
|
|
2235
|
+
"--json"
|
|
2236
|
+
],
|
|
2237
|
+
"aliases": [],
|
|
2238
|
+
"helpCommands": [
|
|
2239
|
+
"buildchain layout --help"
|
|
2240
|
+
],
|
|
1164
2241
|
"purpose": "Return the versioned repository-layout and KFD registry discovery contract for tools such as Shifu.",
|
|
1165
2242
|
"capabilityGroup": "kfd-trust",
|
|
1166
2243
|
"audience": [
|
|
@@ -1179,6 +2256,28 @@
|
|
|
1179
2256
|
"id": "lifecycle",
|
|
1180
2257
|
"source": "bin/buildchain.mjs",
|
|
1181
2258
|
"usage": "buildchain lifecycle run <stage> [--cwd <dir>] [--required]",
|
|
2259
|
+
"paths": [
|
|
2260
|
+
"lifecycle",
|
|
2261
|
+
"lifecycle run"
|
|
2262
|
+
],
|
|
2263
|
+
"syntaxes": [
|
|
2264
|
+
"buildchain lifecycle",
|
|
2265
|
+
"buildchain lifecycle run <stage> [--cwd <dir>] [--required] [--artifact-name <name>] [--artifact-path <path>]... [--manifest-path <path>] [--summary-path <path>] [--process-summary <json>]"
|
|
2266
|
+
],
|
|
2267
|
+
"options": [
|
|
2268
|
+
"--artifact-name",
|
|
2269
|
+
"--artifact-path",
|
|
2270
|
+
"--cwd",
|
|
2271
|
+
"--manifest-path",
|
|
2272
|
+
"--process-summary",
|
|
2273
|
+
"--required",
|
|
2274
|
+
"--summary-path"
|
|
2275
|
+
],
|
|
2276
|
+
"aliases": [],
|
|
2277
|
+
"helpCommands": [
|
|
2278
|
+
"buildchain lifecycle --help",
|
|
2279
|
+
"buildchain lifecycle run --help"
|
|
2280
|
+
],
|
|
1182
2281
|
"purpose": "Run configured lifecycle commands and write deterministic artifact manifests.",
|
|
1183
2282
|
"capabilityGroup": "reusable-build",
|
|
1184
2283
|
"audience": [
|
|
@@ -1197,6 +2296,17 @@
|
|
|
1197
2296
|
"id": "log",
|
|
1198
2297
|
"source": "bin/buildchain.mjs",
|
|
1199
2298
|
"usage": "buildchain log",
|
|
2299
|
+
"paths": [
|
|
2300
|
+
"log"
|
|
2301
|
+
],
|
|
2302
|
+
"syntaxes": [
|
|
2303
|
+
"buildchain log"
|
|
2304
|
+
],
|
|
2305
|
+
"options": [],
|
|
2306
|
+
"aliases": [],
|
|
2307
|
+
"helpCommands": [
|
|
2308
|
+
"buildchain log --help"
|
|
2309
|
+
],
|
|
1200
2310
|
"purpose": "Inspect Buildchain logging command families.",
|
|
1201
2311
|
"capabilityGroup": "observability-diagnostics",
|
|
1202
2312
|
"audience": [
|
|
@@ -1215,6 +2325,32 @@
|
|
|
1215
2325
|
"id": "logging",
|
|
1216
2326
|
"source": "bin/buildchain.mjs",
|
|
1217
2327
|
"usage": "buildchain log <info|warn|error> --event <name> [--phase <phase>]",
|
|
2328
|
+
"paths": [
|
|
2329
|
+
"log error",
|
|
2330
|
+
"log info",
|
|
2331
|
+
"log summary",
|
|
2332
|
+
"log warn"
|
|
2333
|
+
],
|
|
2334
|
+
"syntaxes": [
|
|
2335
|
+
"buildchain log <info|warn|error> --event <name> [--phase <phase>] [--component <name>] [--source <name>] [--attribute key=value]... [--path <jsonl>] [--json]",
|
|
2336
|
+
"buildchain log summary [--path <jsonl>] [--json]"
|
|
2337
|
+
],
|
|
2338
|
+
"options": [
|
|
2339
|
+
"--attribute",
|
|
2340
|
+
"--component",
|
|
2341
|
+
"--event",
|
|
2342
|
+
"--json",
|
|
2343
|
+
"--path",
|
|
2344
|
+
"--phase",
|
|
2345
|
+
"--source"
|
|
2346
|
+
],
|
|
2347
|
+
"aliases": [],
|
|
2348
|
+
"helpCommands": [
|
|
2349
|
+
"buildchain log error --help",
|
|
2350
|
+
"buildchain log info --help",
|
|
2351
|
+
"buildchain log summary --help",
|
|
2352
|
+
"buildchain log warn --help"
|
|
2353
|
+
],
|
|
1218
2354
|
"purpose": "Emit timestamped build events, summarize logs, and enforce required phases.",
|
|
1219
2355
|
"capabilityGroup": "observability-diagnostics",
|
|
1220
2356
|
"audience": [
|
|
@@ -1233,6 +2369,24 @@
|
|
|
1233
2369
|
"id": "mark",
|
|
1234
2370
|
"source": "bin/buildchain.mjs",
|
|
1235
2371
|
"usage": "buildchain mark --event <name> [--phase <phase>] [--component <name>]",
|
|
2372
|
+
"paths": [
|
|
2373
|
+
"mark"
|
|
2374
|
+
],
|
|
2375
|
+
"syntaxes": [
|
|
2376
|
+
"buildchain mark --event <name> [--phase <phase>] [--component <name>] [--attribute key=value]... [--path <jsonl>] [--json]"
|
|
2377
|
+
],
|
|
2378
|
+
"options": [
|
|
2379
|
+
"--attribute",
|
|
2380
|
+
"--component",
|
|
2381
|
+
"--event",
|
|
2382
|
+
"--json",
|
|
2383
|
+
"--path",
|
|
2384
|
+
"--phase"
|
|
2385
|
+
],
|
|
2386
|
+
"aliases": [],
|
|
2387
|
+
"helpCommands": [
|
|
2388
|
+
"buildchain mark --help"
|
|
2389
|
+
],
|
|
1236
2390
|
"purpose": "Emit a single Buildchain log event.",
|
|
1237
2391
|
"capabilityGroup": "observability-diagnostics",
|
|
1238
2392
|
"audience": [
|
|
@@ -1251,6 +2405,17 @@
|
|
|
1251
2405
|
"id": "npm",
|
|
1252
2406
|
"source": "bin/buildchain.mjs",
|
|
1253
2407
|
"usage": "buildchain npm",
|
|
2408
|
+
"paths": [
|
|
2409
|
+
"npm"
|
|
2410
|
+
],
|
|
2411
|
+
"syntaxes": [
|
|
2412
|
+
"buildchain npm"
|
|
2413
|
+
],
|
|
2414
|
+
"options": [],
|
|
2415
|
+
"aliases": [],
|
|
2416
|
+
"helpCommands": [
|
|
2417
|
+
"buildchain npm --help"
|
|
2418
|
+
],
|
|
1254
2419
|
"purpose": "Inspect npm publishing command families.",
|
|
1255
2420
|
"capabilityGroup": "release-passport-trust",
|
|
1256
2421
|
"audience": [
|
|
@@ -1269,6 +2434,24 @@
|
|
|
1269
2434
|
"id": "npm-dry-run",
|
|
1270
2435
|
"source": "bin/buildchain.mjs",
|
|
1271
2436
|
"usage": "buildchain npm dry-run [--cwd <dir>] [--expected-tag <tag>] [--registry <url>]",
|
|
2437
|
+
"paths": [
|
|
2438
|
+
"npm dry-run"
|
|
2439
|
+
],
|
|
2440
|
+
"syntaxes": [
|
|
2441
|
+
"buildchain npm dry-run [--cwd <dir>] [--expected-tag <tag>] [--registry <url>] [--dist-tag <tag>] [--skip-npm-publish-dry-run] [--json]"
|
|
2442
|
+
],
|
|
2443
|
+
"options": [
|
|
2444
|
+
"--cwd",
|
|
2445
|
+
"--dist-tag",
|
|
2446
|
+
"--expected-tag",
|
|
2447
|
+
"--json",
|
|
2448
|
+
"--registry",
|
|
2449
|
+
"--skip-npm-publish-dry-run"
|
|
2450
|
+
],
|
|
2451
|
+
"aliases": [],
|
|
2452
|
+
"helpCommands": [
|
|
2453
|
+
"buildchain npm dry-run --help"
|
|
2454
|
+
],
|
|
1272
2455
|
"purpose": "Verify npm publish shape before a release transaction.",
|
|
1273
2456
|
"capabilityGroup": "release-passport-trust",
|
|
1274
2457
|
"audience": [
|
|
@@ -1287,6 +2470,17 @@
|
|
|
1287
2470
|
"id": "paper",
|
|
1288
2471
|
"source": "bin/buildchain.mjs",
|
|
1289
2472
|
"usage": "buildchain paper",
|
|
2473
|
+
"paths": [
|
|
2474
|
+
"paper"
|
|
2475
|
+
],
|
|
2476
|
+
"syntaxes": [
|
|
2477
|
+
"buildchain paper"
|
|
2478
|
+
],
|
|
2479
|
+
"options": [],
|
|
2480
|
+
"aliases": [],
|
|
2481
|
+
"helpCommands": [
|
|
2482
|
+
"buildchain paper --help"
|
|
2483
|
+
],
|
|
1290
2484
|
"purpose": "Inspect the unified paper repository and publication command families.",
|
|
1291
2485
|
"capabilityGroup": "reusable-build",
|
|
1292
2486
|
"audience": [
|
|
@@ -1305,6 +2499,21 @@
|
|
|
1305
2499
|
"id": "paper-agent",
|
|
1306
2500
|
"source": "bin/buildchain.mjs",
|
|
1307
2501
|
"usage": "buildchain paper agent verify [--cwd <dir>] [--offline] [--json]",
|
|
2502
|
+
"paths": [
|
|
2503
|
+
"paper agent verify"
|
|
2504
|
+
],
|
|
2505
|
+
"syntaxes": [
|
|
2506
|
+
"buildchain paper agent verify [--cwd <dir>] [--offline] [--json]"
|
|
2507
|
+
],
|
|
2508
|
+
"options": [
|
|
2509
|
+
"--cwd",
|
|
2510
|
+
"--json",
|
|
2511
|
+
"--offline"
|
|
2512
|
+
],
|
|
2513
|
+
"aliases": [],
|
|
2514
|
+
"helpCommands": [
|
|
2515
|
+
"buildchain paper agent verify --help"
|
|
2516
|
+
],
|
|
1308
2517
|
"purpose": "Verify the mandatory managed Paper agent entry contract on an existing work branch.",
|
|
1309
2518
|
"capabilityGroup": "getting-started",
|
|
1310
2519
|
"audience": [
|
|
@@ -1323,6 +2532,23 @@
|
|
|
1323
2532
|
"id": "paper-alpha",
|
|
1324
2533
|
"source": "bin/buildchain.mjs",
|
|
1325
2534
|
"usage": "buildchain paper alpha [--cwd <dir>] [--source-ref <ref>] [--target-ref <ref>]",
|
|
2535
|
+
"paths": [
|
|
2536
|
+
"paper alpha"
|
|
2537
|
+
],
|
|
2538
|
+
"syntaxes": [
|
|
2539
|
+
"buildchain paper alpha [--cwd <dir>] [--source-ref <ref>] [--target-ref <ref>] [--execute] [--json]"
|
|
2540
|
+
],
|
|
2541
|
+
"options": [
|
|
2542
|
+
"--cwd",
|
|
2543
|
+
"--execute",
|
|
2544
|
+
"--json",
|
|
2545
|
+
"--source-ref",
|
|
2546
|
+
"--target-ref"
|
|
2547
|
+
],
|
|
2548
|
+
"aliases": [],
|
|
2549
|
+
"helpCommands": [
|
|
2550
|
+
"buildchain paper alpha --help"
|
|
2551
|
+
],
|
|
1326
2552
|
"purpose": "Plan or open the protected dev-to-alpha paper publication PR without direct publication.",
|
|
1327
2553
|
"capabilityGroup": "release-passport-trust",
|
|
1328
2554
|
"audience": [
|
|
@@ -1341,6 +2567,22 @@
|
|
|
1341
2567
|
"id": "paper-bootstrap-npm",
|
|
1342
2568
|
"source": "bin/buildchain.mjs",
|
|
1343
2569
|
"usage": "buildchain paper bootstrap npm [--cwd <dir>] [--execute]",
|
|
2570
|
+
"paths": [
|
|
2571
|
+
"paper bootstrap npm"
|
|
2572
|
+
],
|
|
2573
|
+
"syntaxes": [
|
|
2574
|
+
"buildchain paper bootstrap npm [--cwd <dir>] [--execute] [--confirm-public-package <name>] [--json]"
|
|
2575
|
+
],
|
|
2576
|
+
"options": [
|
|
2577
|
+
"--confirm-public-package",
|
|
2578
|
+
"--cwd",
|
|
2579
|
+
"--execute",
|
|
2580
|
+
"--json"
|
|
2581
|
+
],
|
|
2582
|
+
"aliases": [],
|
|
2583
|
+
"helpCommands": [
|
|
2584
|
+
"buildchain paper bootstrap npm --help"
|
|
2585
|
+
],
|
|
1344
2586
|
"purpose": "Dry-run or explicitly bootstrap the public npm package and bind GitHub Trusted Publishing.",
|
|
1345
2587
|
"capabilityGroup": "release-passport-trust",
|
|
1346
2588
|
"audience": [
|
|
@@ -1359,6 +2601,21 @@
|
|
|
1359
2601
|
"id": "paper-build",
|
|
1360
2602
|
"source": "bin/buildchain.mjs",
|
|
1361
2603
|
"usage": "buildchain paper build [--cwd <dir>] [--execute] [--json]",
|
|
2604
|
+
"paths": [
|
|
2605
|
+
"paper build"
|
|
2606
|
+
],
|
|
2607
|
+
"syntaxes": [
|
|
2608
|
+
"buildchain paper build [--cwd <dir>] [--execute] [--json]"
|
|
2609
|
+
],
|
|
2610
|
+
"options": [
|
|
2611
|
+
"--cwd",
|
|
2612
|
+
"--execute",
|
|
2613
|
+
"--json"
|
|
2614
|
+
],
|
|
2615
|
+
"aliases": [],
|
|
2616
|
+
"helpCommands": [
|
|
2617
|
+
"buildchain paper build --help"
|
|
2618
|
+
],
|
|
1362
2619
|
"purpose": "Plan or execute the existing two-clean-build reproducibility gate for a paper.",
|
|
1363
2620
|
"capabilityGroup": "reusable-build",
|
|
1364
2621
|
"audience": [
|
|
@@ -1377,6 +2634,21 @@
|
|
|
1377
2634
|
"id": "paper-fleet-audit",
|
|
1378
2635
|
"source": "bin/buildchain.mjs",
|
|
1379
2636
|
"usage": "buildchain paper fleet audit [--root <dir>] [--offline] [--json]",
|
|
2637
|
+
"paths": [
|
|
2638
|
+
"paper fleet audit"
|
|
2639
|
+
],
|
|
2640
|
+
"syntaxes": [
|
|
2641
|
+
"buildchain paper fleet audit [--root <dir>] [--offline] [--json]"
|
|
2642
|
+
],
|
|
2643
|
+
"options": [
|
|
2644
|
+
"--json",
|
|
2645
|
+
"--offline",
|
|
2646
|
+
"--root"
|
|
2647
|
+
],
|
|
2648
|
+
"aliases": [],
|
|
2649
|
+
"helpCommands": [
|
|
2650
|
+
"buildchain paper fleet audit --help"
|
|
2651
|
+
],
|
|
1380
2652
|
"purpose": "Discover Paper repositories and emit one deterministic v3 dependency, control-surface, and governance audit.",
|
|
1381
2653
|
"capabilityGroup": "governance-versioning",
|
|
1382
2654
|
"audience": [
|
|
@@ -1395,6 +2667,21 @@
|
|
|
1395
2667
|
"id": "paper-fleet-update",
|
|
1396
2668
|
"source": "bin/buildchain.mjs",
|
|
1397
2669
|
"usage": "buildchain paper fleet update [--root <dir>] [--write] [--json]",
|
|
2670
|
+
"paths": [
|
|
2671
|
+
"paper fleet update"
|
|
2672
|
+
],
|
|
2673
|
+
"syntaxes": [
|
|
2674
|
+
"buildchain paper fleet update [--root <dir>] [--write] [--json]"
|
|
2675
|
+
],
|
|
2676
|
+
"options": [
|
|
2677
|
+
"--json",
|
|
2678
|
+
"--root",
|
|
2679
|
+
"--write"
|
|
2680
|
+
],
|
|
2681
|
+
"aliases": [],
|
|
2682
|
+
"helpCommands": [
|
|
2683
|
+
"buildchain paper fleet update --help"
|
|
2684
|
+
],
|
|
1398
2685
|
"purpose": "Plan or write a bounded v3 migration across isolated Paper work branches.",
|
|
1399
2686
|
"capabilityGroup": "governance-versioning",
|
|
1400
2687
|
"audience": [
|
|
@@ -1413,6 +2700,21 @@
|
|
|
1413
2700
|
"id": "paper-migrate",
|
|
1414
2701
|
"source": "bin/buildchain.mjs",
|
|
1415
2702
|
"usage": "buildchain paper migrate [--cwd <dir>] [--write] [--json]",
|
|
2703
|
+
"paths": [
|
|
2704
|
+
"paper migrate"
|
|
2705
|
+
],
|
|
2706
|
+
"syntaxes": [
|
|
2707
|
+
"buildchain paper migrate [--cwd <dir>] [--write] [--json]"
|
|
2708
|
+
],
|
|
2709
|
+
"options": [
|
|
2710
|
+
"--cwd",
|
|
2711
|
+
"--json",
|
|
2712
|
+
"--write"
|
|
2713
|
+
],
|
|
2714
|
+
"aliases": [],
|
|
2715
|
+
"helpCommands": [
|
|
2716
|
+
"buildchain paper migrate --help"
|
|
2717
|
+
],
|
|
1416
2718
|
"purpose": "Plan or write the bounded Buildchain-owned control-file migration for an existing paper repository.",
|
|
1417
2719
|
"capabilityGroup": "getting-started",
|
|
1418
2720
|
"audience": [
|
|
@@ -1431,6 +2733,21 @@
|
|
|
1431
2733
|
"id": "paper-preflight",
|
|
1432
2734
|
"source": "bin/buildchain.mjs",
|
|
1433
2735
|
"usage": "buildchain paper preflight [--cwd <dir>] [--offline] [--json]",
|
|
2736
|
+
"paths": [
|
|
2737
|
+
"paper preflight"
|
|
2738
|
+
],
|
|
2739
|
+
"syntaxes": [
|
|
2740
|
+
"buildchain paper preflight [--cwd <dir>] [--offline] [--json]"
|
|
2741
|
+
],
|
|
2742
|
+
"options": [
|
|
2743
|
+
"--cwd",
|
|
2744
|
+
"--json",
|
|
2745
|
+
"--offline"
|
|
2746
|
+
],
|
|
2747
|
+
"aliases": [],
|
|
2748
|
+
"helpCommands": [
|
|
2749
|
+
"buildchain paper preflight --help"
|
|
2750
|
+
],
|
|
1434
2751
|
"purpose": "Report exact source, runtime, permission, npm trust, deterministic build, and release-state readiness.",
|
|
1435
2752
|
"capabilityGroup": "reusable-build",
|
|
1436
2753
|
"audience": [
|
|
@@ -1449,6 +2766,22 @@
|
|
|
1449
2766
|
"id": "paper-resume",
|
|
1450
2767
|
"source": "bin/buildchain.mjs",
|
|
1451
2768
|
"usage": "buildchain paper resume [--cwd <dir>] [--buildchain-ref <ref>] [--execute] [--json]",
|
|
2769
|
+
"paths": [
|
|
2770
|
+
"paper resume"
|
|
2771
|
+
],
|
|
2772
|
+
"syntaxes": [
|
|
2773
|
+
"buildchain paper resume [--cwd <dir>] [--buildchain-ref <ref>] [--execute] [--json]"
|
|
2774
|
+
],
|
|
2775
|
+
"options": [
|
|
2776
|
+
"--buildchain-ref",
|
|
2777
|
+
"--cwd",
|
|
2778
|
+
"--execute",
|
|
2779
|
+
"--json"
|
|
2780
|
+
],
|
|
2781
|
+
"aliases": [],
|
|
2782
|
+
"helpCommands": [
|
|
2783
|
+
"buildchain paper resume --help"
|
|
2784
|
+
],
|
|
1452
2785
|
"purpose": "Plan or dispatch recovery of the exact existing sealed paper release transaction.",
|
|
1453
2786
|
"capabilityGroup": "release-passport-trust",
|
|
1454
2787
|
"audience": [
|
|
@@ -1467,6 +2800,22 @@
|
|
|
1467
2800
|
"id": "paper-scaffold",
|
|
1468
2801
|
"source": "bin/buildchain.mjs",
|
|
1469
2802
|
"usage": "buildchain paper scaffold --package <name> --repository <owner/repo> [--write] [--json]",
|
|
2803
|
+
"paths": [
|
|
2804
|
+
"paper scaffold"
|
|
2805
|
+
],
|
|
2806
|
+
"syntaxes": [
|
|
2807
|
+
"buildchain paper scaffold --package <name> --repository <owner/repo> [--write] [--json]"
|
|
2808
|
+
],
|
|
2809
|
+
"options": [
|
|
2810
|
+
"--json",
|
|
2811
|
+
"--package",
|
|
2812
|
+
"--repository",
|
|
2813
|
+
"--write"
|
|
2814
|
+
],
|
|
2815
|
+
"aliases": [],
|
|
2816
|
+
"helpCommands": [
|
|
2817
|
+
"buildchain paper scaffold --help"
|
|
2818
|
+
],
|
|
1470
2819
|
"purpose": "Plan or write an idempotent, no-overwrite, release-ready paper repository scaffold.",
|
|
1471
2820
|
"capabilityGroup": "getting-started",
|
|
1472
2821
|
"audience": [
|
|
@@ -1485,6 +2834,20 @@
|
|
|
1485
2834
|
"id": "paper-status",
|
|
1486
2835
|
"source": "bin/buildchain.mjs",
|
|
1487
2836
|
"usage": "buildchain paper status [--cwd <dir>] [--json]",
|
|
2837
|
+
"paths": [
|
|
2838
|
+
"paper status"
|
|
2839
|
+
],
|
|
2840
|
+
"syntaxes": [
|
|
2841
|
+
"buildchain paper status [--cwd <dir>] [--json]"
|
|
2842
|
+
],
|
|
2843
|
+
"options": [
|
|
2844
|
+
"--cwd",
|
|
2845
|
+
"--json"
|
|
2846
|
+
],
|
|
2847
|
+
"aliases": [],
|
|
2848
|
+
"helpCommands": [
|
|
2849
|
+
"buildchain paper status --help"
|
|
2850
|
+
],
|
|
1488
2851
|
"purpose": "Report explicit evidence for every paper lifecycle state without unsupported inference.",
|
|
1489
2852
|
"capabilityGroup": "reusable-build",
|
|
1490
2853
|
"audience": [
|
|
@@ -1503,6 +2866,22 @@
|
|
|
1503
2866
|
"id": "paper-work-start",
|
|
1504
2867
|
"source": "bin/buildchain.mjs",
|
|
1505
2868
|
"usage": "buildchain paper work start <topic> [--cwd <dir>] [--branch <branch>] [--execute] [--json]",
|
|
2869
|
+
"paths": [
|
|
2870
|
+
"paper work start"
|
|
2871
|
+
],
|
|
2872
|
+
"syntaxes": [
|
|
2873
|
+
"buildchain paper work start <topic> [--cwd <dir>] [--branch <branch>] [--execute] [--json]"
|
|
2874
|
+
],
|
|
2875
|
+
"options": [
|
|
2876
|
+
"--branch",
|
|
2877
|
+
"--cwd",
|
|
2878
|
+
"--execute",
|
|
2879
|
+
"--json"
|
|
2880
|
+
],
|
|
2881
|
+
"aliases": [],
|
|
2882
|
+
"helpCommands": [
|
|
2883
|
+
"buildchain paper work start --help"
|
|
2884
|
+
],
|
|
1506
2885
|
"purpose": "Create a safe Paper work branch from the exact canonical remote development SHA.",
|
|
1507
2886
|
"capabilityGroup": "getting-started",
|
|
1508
2887
|
"audience": [
|
|
@@ -1521,6 +2900,23 @@
|
|
|
1521
2900
|
"id": "paper-work-submit",
|
|
1522
2901
|
"source": "bin/buildchain.mjs",
|
|
1523
2902
|
"usage": "buildchain paper work submit [--cwd <dir>] [--title <title>] [--body <body>] [--execute] [--json]",
|
|
2903
|
+
"paths": [
|
|
2904
|
+
"paper work submit"
|
|
2905
|
+
],
|
|
2906
|
+
"syntaxes": [
|
|
2907
|
+
"buildchain paper work submit [--cwd <dir>] [--title <title>] [--body <body>] [--execute] [--json]"
|
|
2908
|
+
],
|
|
2909
|
+
"options": [
|
|
2910
|
+
"--body",
|
|
2911
|
+
"--cwd",
|
|
2912
|
+
"--execute",
|
|
2913
|
+
"--json",
|
|
2914
|
+
"--title"
|
|
2915
|
+
],
|
|
2916
|
+
"aliases": [],
|
|
2917
|
+
"helpCommands": [
|
|
2918
|
+
"buildchain paper work submit --help"
|
|
2919
|
+
],
|
|
1524
2920
|
"purpose": "Push a Paper work branch without force and open or reuse the correctly targeted development PR.",
|
|
1525
2921
|
"capabilityGroup": "governance-versioning",
|
|
1526
2922
|
"audience": [
|
|
@@ -1539,6 +2935,34 @@
|
|
|
1539
2935
|
"id": "portable-cache",
|
|
1540
2936
|
"source": "bin/buildchain.mjs",
|
|
1541
2937
|
"usage": "buildchain portable-cache plan --manifest <file-or-json> [--output <file>]",
|
|
2938
|
+
"paths": [
|
|
2939
|
+
"portable-cache",
|
|
2940
|
+
"portable-cache plan",
|
|
2941
|
+
"portable-cache receipt"
|
|
2942
|
+
],
|
|
2943
|
+
"syntaxes": [
|
|
2944
|
+
"buildchain portable-cache",
|
|
2945
|
+
"buildchain portable-cache plan --manifest <file-or-json> [--output <file>] [--github-output <file>] [--json]",
|
|
2946
|
+
"buildchain portable-cache receipt --plan <file-or-json> [--matched-key <key>] [--cache-hit true|false] [--validation-status pass|fail] [--validation-reason <text>] [--cold-fallback-status not-run|passed|failed] [--output <file>] [--json]"
|
|
2947
|
+
],
|
|
2948
|
+
"options": [
|
|
2949
|
+
"--cache-hit",
|
|
2950
|
+
"--cold-fallback-status",
|
|
2951
|
+
"--github-output",
|
|
2952
|
+
"--json",
|
|
2953
|
+
"--manifest",
|
|
2954
|
+
"--matched-key",
|
|
2955
|
+
"--output",
|
|
2956
|
+
"--plan",
|
|
2957
|
+
"--validation-reason",
|
|
2958
|
+
"--validation-status"
|
|
2959
|
+
],
|
|
2960
|
+
"aliases": [],
|
|
2961
|
+
"helpCommands": [
|
|
2962
|
+
"buildchain portable-cache --help",
|
|
2963
|
+
"buildchain portable-cache plan --help",
|
|
2964
|
+
"buildchain portable-cache receipt --help"
|
|
2965
|
+
],
|
|
1542
2966
|
"purpose": "Plan exact portable dependency/compiler cache inputs and seal provider outcomes.",
|
|
1543
2967
|
"capabilityGroup": "observability-diagnostics",
|
|
1544
2968
|
"audience": [
|
|
@@ -1557,6 +2981,27 @@
|
|
|
1557
2981
|
"id": "project",
|
|
1558
2982
|
"source": "bin/buildchain.mjs",
|
|
1559
2983
|
"usage": "buildchain project kfx-admission <file-or-json> [--assessment-time <epoch>]",
|
|
2984
|
+
"paths": [
|
|
2985
|
+
"project",
|
|
2986
|
+
"project kfx-admission"
|
|
2987
|
+
],
|
|
2988
|
+
"syntaxes": [
|
|
2989
|
+
"buildchain project",
|
|
2990
|
+
"buildchain project kfx-admission <file-or-json> [--assessment-time <epoch>] [--expected-root <sha256:...>] [--expected-issuer <issuer>] [--expected-publisher <publisher>] [--expected-contract <version>] [--json]"
|
|
2991
|
+
],
|
|
2992
|
+
"options": [
|
|
2993
|
+
"--assessment-time",
|
|
2994
|
+
"--expected-contract",
|
|
2995
|
+
"--expected-issuer",
|
|
2996
|
+
"--expected-publisher",
|
|
2997
|
+
"--expected-root",
|
|
2998
|
+
"--json"
|
|
2999
|
+
],
|
|
3000
|
+
"aliases": [],
|
|
3001
|
+
"helpCommands": [
|
|
3002
|
+
"buildchain project --help",
|
|
3003
|
+
"buildchain project kfx-admission --help"
|
|
3004
|
+
],
|
|
1560
3005
|
"purpose": "Inspect read-only consumer projection command families.",
|
|
1561
3006
|
"capabilityGroup": "release-passport-trust",
|
|
1562
3007
|
"audience": [
|
|
@@ -1575,6 +3020,19 @@
|
|
|
1575
3020
|
"id": "publication-artifact",
|
|
1576
3021
|
"source": "bin/buildchain.mjs",
|
|
1577
3022
|
"usage": "buildchain publication-artifact",
|
|
3023
|
+
"paths": [
|
|
3024
|
+
"publication-artifact"
|
|
3025
|
+
],
|
|
3026
|
+
"syntaxes": [
|
|
3027
|
+
"buildchain publication-artifact"
|
|
3028
|
+
],
|
|
3029
|
+
"options": [],
|
|
3030
|
+
"aliases": [
|
|
3031
|
+
"publication"
|
|
3032
|
+
],
|
|
3033
|
+
"helpCommands": [
|
|
3034
|
+
"buildchain publication-artifact --help"
|
|
3035
|
+
],
|
|
1578
3036
|
"purpose": "Generate publication artifact manifests, passports, and source bundles for paper/report repositories.",
|
|
1579
3037
|
"capabilityGroup": "reusable-build",
|
|
1580
3038
|
"audience": [
|
|
@@ -1593,6 +3051,26 @@
|
|
|
1593
3051
|
"id": "publication-artifact-manifest",
|
|
1594
3052
|
"source": "bin/buildchain.mjs",
|
|
1595
3053
|
"usage": "buildchain publication-artifact manifest [--cwd <dir>] [--source-sha <sha>]",
|
|
3054
|
+
"paths": [
|
|
3055
|
+
"publication-artifact manifest"
|
|
3056
|
+
],
|
|
3057
|
+
"syntaxes": [
|
|
3058
|
+
"buildchain publication-artifact manifest [--cwd <dir>] [--source-sha <sha>] [--output <file>] [--passport-output <file>] [--registry-output <file>] [--source-bundle <file>] [--no-source-bundle] [--json]"
|
|
3059
|
+
],
|
|
3060
|
+
"options": [
|
|
3061
|
+
"--cwd",
|
|
3062
|
+
"--json",
|
|
3063
|
+
"--no-source-bundle",
|
|
3064
|
+
"--output",
|
|
3065
|
+
"--passport-output",
|
|
3066
|
+
"--registry-output",
|
|
3067
|
+
"--source-bundle",
|
|
3068
|
+
"--source-sha"
|
|
3069
|
+
],
|
|
3070
|
+
"aliases": [],
|
|
3071
|
+
"helpCommands": [
|
|
3072
|
+
"buildchain publication-artifact manifest --help"
|
|
3073
|
+
],
|
|
1596
3074
|
"purpose": "Write a site-consumable publication artifact manifest, publication passport, and source bundle.",
|
|
1597
3075
|
"capabilityGroup": "reusable-build",
|
|
1598
3076
|
"audience": [
|
|
@@ -1611,6 +3089,22 @@
|
|
|
1611
3089
|
"id": "publication-artifact-npm-package",
|
|
1612
3090
|
"source": "bin/buildchain.mjs",
|
|
1613
3091
|
"usage": "buildchain publication-artifact npm-package [--cwd <dir>] [--output-dir <dir>] [--package-name <name>] [--json]",
|
|
3092
|
+
"paths": [
|
|
3093
|
+
"publication-artifact npm-package"
|
|
3094
|
+
],
|
|
3095
|
+
"syntaxes": [
|
|
3096
|
+
"buildchain publication-artifact npm-package [--cwd <dir>] [--output-dir <dir>] [--package-name <name>] [--json]"
|
|
3097
|
+
],
|
|
3098
|
+
"options": [
|
|
3099
|
+
"--cwd",
|
|
3100
|
+
"--json",
|
|
3101
|
+
"--output-dir",
|
|
3102
|
+
"--package-name"
|
|
3103
|
+
],
|
|
3104
|
+
"aliases": [],
|
|
3105
|
+
"helpCommands": [
|
|
3106
|
+
"buildchain publication-artifact npm-package --help"
|
|
3107
|
+
],
|
|
1614
3108
|
"purpose": "Synthesize the declared npm paper package from a publication artifact manifest, passport, registry, source bundle, and primary artifact.",
|
|
1615
3109
|
"capabilityGroup": "reusable-build",
|
|
1616
3110
|
"audience": [
|
|
@@ -1629,6 +3123,25 @@
|
|
|
1629
3123
|
"id": "publication-artifact-reproducibility",
|
|
1630
3124
|
"source": "bin/buildchain.mjs",
|
|
1631
3125
|
"usage": "buildchain publication-artifact reproducibility [--cwd <dir>] [--source-sha <sha>]",
|
|
3126
|
+
"paths": [
|
|
3127
|
+
"publication-artifact reproducibility"
|
|
3128
|
+
],
|
|
3129
|
+
"syntaxes": [
|
|
3130
|
+
"buildchain publication-artifact reproducibility [--cwd <dir>] [--source-sha <sha>] [--output <file>] [--promote] [--no-toolchain-pull] [--allow-unpinned-toolchain] [--json]"
|
|
3131
|
+
],
|
|
3132
|
+
"options": [
|
|
3133
|
+
"--allow-unpinned-toolchain",
|
|
3134
|
+
"--cwd",
|
|
3135
|
+
"--json",
|
|
3136
|
+
"--no-toolchain-pull",
|
|
3137
|
+
"--output",
|
|
3138
|
+
"--promote",
|
|
3139
|
+
"--source-sha"
|
|
3140
|
+
],
|
|
3141
|
+
"aliases": [],
|
|
3142
|
+
"helpCommands": [
|
|
3143
|
+
"buildchain publication-artifact reproducibility --help"
|
|
3144
|
+
],
|
|
1632
3145
|
"purpose": "Prove exact PDF, source bundle, publication evidence, and npm tarball bytes across two independent clean builds.",
|
|
1633
3146
|
"capabilityGroup": "reusable-build",
|
|
1634
3147
|
"audience": [
|
|
@@ -1647,6 +3160,28 @@
|
|
|
1647
3160
|
"id": "publish-source",
|
|
1648
3161
|
"source": "bin/buildchain.mjs",
|
|
1649
3162
|
"usage": "buildchain publish-source <lock|manifest|verify-lock|verify-channel-ref|validate-anchored-release> ...",
|
|
3163
|
+
"paths": [
|
|
3164
|
+
"publish-source",
|
|
3165
|
+
"publish-source lock",
|
|
3166
|
+
"publish-source manifest",
|
|
3167
|
+
"publish-source validate-anchored-release",
|
|
3168
|
+
"publish-source verify-channel-ref",
|
|
3169
|
+
"publish-source verify-lock"
|
|
3170
|
+
],
|
|
3171
|
+
"syntaxes": [
|
|
3172
|
+
"buildchain publish-source",
|
|
3173
|
+
"buildchain publish-source <lock|manifest|verify-lock|verify-channel-ref|validate-anchored-release> ..."
|
|
3174
|
+
],
|
|
3175
|
+
"options": [],
|
|
3176
|
+
"aliases": [],
|
|
3177
|
+
"helpCommands": [
|
|
3178
|
+
"buildchain publish-source --help",
|
|
3179
|
+
"buildchain publish-source lock --help",
|
|
3180
|
+
"buildchain publish-source manifest --help",
|
|
3181
|
+
"buildchain publish-source validate-anchored-release --help",
|
|
3182
|
+
"buildchain publish-source verify-channel-ref --help",
|
|
3183
|
+
"buildchain publish-source verify-lock --help"
|
|
3184
|
+
],
|
|
1650
3185
|
"purpose": "Create, inspect, or verify publish-gate source-lock refs.",
|
|
1651
3186
|
"capabilityGroup": "release-passport-trust",
|
|
1652
3187
|
"audience": [
|
|
@@ -1665,6 +3200,30 @@
|
|
|
1665
3200
|
"id": "release-dry-run",
|
|
1666
3201
|
"source": "bin/buildchain.mjs",
|
|
1667
3202
|
"usage": "buildchain release --dry-run --target-ref <ref> [--sha <sha>] [--source-ref <ref>]",
|
|
3203
|
+
"paths": [
|
|
3204
|
+
"release --dry-run",
|
|
3205
|
+
"release dry-run",
|
|
3206
|
+
"release explain"
|
|
3207
|
+
],
|
|
3208
|
+
"syntaxes": [
|
|
3209
|
+
"buildchain release --dry-run --target-ref <ref> [--sha <sha>] [--source-ref <ref>] [--tags <comma-list>] [--json]",
|
|
3210
|
+
"buildchain release dry-run --target-ref <ref> [--sha <sha>] [--source-ref <ref>] [--tags <comma-list>] [--json]",
|
|
3211
|
+
"buildchain release explain --target-ref <ref> [--sha <sha>] [--source-ref <ref>] [--tags <comma-list>] [--json]"
|
|
3212
|
+
],
|
|
3213
|
+
"options": [
|
|
3214
|
+
"--dry-run",
|
|
3215
|
+
"--json",
|
|
3216
|
+
"--sha",
|
|
3217
|
+
"--source-ref",
|
|
3218
|
+
"--tags",
|
|
3219
|
+
"--target-ref"
|
|
3220
|
+
],
|
|
3221
|
+
"aliases": [],
|
|
3222
|
+
"helpCommands": [
|
|
3223
|
+
"buildchain release --dry-run --help",
|
|
3224
|
+
"buildchain release dry-run --help",
|
|
3225
|
+
"buildchain release explain --help"
|
|
3226
|
+
],
|
|
1668
3227
|
"purpose": "Explain what a channel merge would publish before the PR is merged.",
|
|
1669
3228
|
"capabilityGroup": "governance-versioning",
|
|
1670
3229
|
"audience": [
|
|
@@ -1683,6 +3242,26 @@
|
|
|
1683
3242
|
"id": "release-governance",
|
|
1684
3243
|
"source": "bin/buildchain.mjs",
|
|
1685
3244
|
"usage": "buildchain release-governance reconcile --repository <owner/repo>",
|
|
3245
|
+
"paths": [
|
|
3246
|
+
"release-governance",
|
|
3247
|
+
"release-governance reconcile"
|
|
3248
|
+
],
|
|
3249
|
+
"syntaxes": [
|
|
3250
|
+
"buildchain release-governance",
|
|
3251
|
+
"buildchain release-governance reconcile --repository <owner/repo> --branch <dev|alpha|release/vN/vN.N> --candidate-sha <sha> [--apply] [--json]"
|
|
3252
|
+
],
|
|
3253
|
+
"options": [
|
|
3254
|
+
"--apply",
|
|
3255
|
+
"--branch",
|
|
3256
|
+
"--candidate-sha",
|
|
3257
|
+
"--json",
|
|
3258
|
+
"--repository"
|
|
3259
|
+
],
|
|
3260
|
+
"aliases": [],
|
|
3261
|
+
"helpCommands": [
|
|
3262
|
+
"buildchain release-governance --help",
|
|
3263
|
+
"buildchain release-governance reconcile --help"
|
|
3264
|
+
],
|
|
1686
3265
|
"purpose": "Reconcile a managed branch's Buildchain aggregate check to an already-tested pull request SHA.",
|
|
1687
3266
|
"capabilityGroup": "governance-versioning",
|
|
1688
3267
|
"audience": [
|
|
@@ -1701,6 +3280,24 @@
|
|
|
1701
3280
|
"id": "release-line-open",
|
|
1702
3281
|
"source": "bin/buildchain.mjs",
|
|
1703
3282
|
"usage": "buildchain release line open --major <n> --minor <n> [--source-ref <ref>]",
|
|
3283
|
+
"paths": [
|
|
3284
|
+
"release line open"
|
|
3285
|
+
],
|
|
3286
|
+
"syntaxes": [
|
|
3287
|
+
"buildchain release line open --major <n> --minor <n> [--source-ref <ref>] [--initial-version <version>] [--write] [--json]"
|
|
3288
|
+
],
|
|
3289
|
+
"options": [
|
|
3290
|
+
"--initial-version",
|
|
3291
|
+
"--json",
|
|
3292
|
+
"--major",
|
|
3293
|
+
"--minor",
|
|
3294
|
+
"--source-ref",
|
|
3295
|
+
"--write"
|
|
3296
|
+
],
|
|
3297
|
+
"aliases": [],
|
|
3298
|
+
"helpCommands": [
|
|
3299
|
+
"buildchain release line open --help"
|
|
3300
|
+
],
|
|
1704
3301
|
"purpose": "Plan or write the initial version-state commit for a new minor release line.",
|
|
1705
3302
|
"capabilityGroup": "governance-versioning",
|
|
1706
3303
|
"audience": [
|
|
@@ -1719,6 +3316,22 @@
|
|
|
1719
3316
|
"id": "release-propagation",
|
|
1720
3317
|
"source": "bin/buildchain.mjs",
|
|
1721
3318
|
"usage": "buildchain release-propagation <plan|write-lock> ...",
|
|
3319
|
+
"paths": [
|
|
3320
|
+
"release-propagation",
|
|
3321
|
+
"release-propagation plan",
|
|
3322
|
+
"release-propagation write-lock"
|
|
3323
|
+
],
|
|
3324
|
+
"syntaxes": [
|
|
3325
|
+
"buildchain release-propagation",
|
|
3326
|
+
"buildchain release-propagation <plan|write-lock> ..."
|
|
3327
|
+
],
|
|
3328
|
+
"options": [],
|
|
3329
|
+
"aliases": [],
|
|
3330
|
+
"helpCommands": [
|
|
3331
|
+
"buildchain release-propagation --help",
|
|
3332
|
+
"buildchain release-propagation plan --help",
|
|
3333
|
+
"buildchain release-propagation write-lock --help"
|
|
3334
|
+
],
|
|
1722
3335
|
"purpose": "Plan channel-preserving downstream release PRs and write exact upstream release locks.",
|
|
1723
3336
|
"capabilityGroup": "site-and-propagation",
|
|
1724
3337
|
"audience": [
|
|
@@ -1737,6 +3350,26 @@
|
|
|
1737
3350
|
"id": "release-transaction",
|
|
1738
3351
|
"source": "bin/buildchain.mjs",
|
|
1739
3352
|
"usage": "buildchain release <inspect|recover|finalize|abort> ...",
|
|
3353
|
+
"paths": [
|
|
3354
|
+
"release",
|
|
3355
|
+
"release abort",
|
|
3356
|
+
"release finalize",
|
|
3357
|
+
"release inspect",
|
|
3358
|
+
"release recover"
|
|
3359
|
+
],
|
|
3360
|
+
"syntaxes": [
|
|
3361
|
+
"buildchain release",
|
|
3362
|
+
"buildchain release <inspect|recover|finalize|abort> ..."
|
|
3363
|
+
],
|
|
3364
|
+
"options": [],
|
|
3365
|
+
"aliases": [],
|
|
3366
|
+
"helpCommands": [
|
|
3367
|
+
"buildchain release --help",
|
|
3368
|
+
"buildchain release abort --help",
|
|
3369
|
+
"buildchain release finalize --help",
|
|
3370
|
+
"buildchain release inspect --help",
|
|
3371
|
+
"buildchain release recover --help"
|
|
3372
|
+
],
|
|
1740
3373
|
"purpose": "Inspect, recover, finalize, or abort durable release transactions.",
|
|
1741
3374
|
"capabilityGroup": "release-passport-trust",
|
|
1742
3375
|
"audience": [
|
|
@@ -1755,6 +3388,17 @@
|
|
|
1755
3388
|
"id": "sample",
|
|
1756
3389
|
"source": "bin/buildchain.mjs",
|
|
1757
3390
|
"usage": "buildchain sample",
|
|
3391
|
+
"paths": [
|
|
3392
|
+
"sample"
|
|
3393
|
+
],
|
|
3394
|
+
"syntaxes": [
|
|
3395
|
+
"buildchain sample"
|
|
3396
|
+
],
|
|
3397
|
+
"options": [],
|
|
3398
|
+
"aliases": [],
|
|
3399
|
+
"helpCommands": [
|
|
3400
|
+
"buildchain sample --help"
|
|
3401
|
+
],
|
|
1758
3402
|
"purpose": "Inspect sampler command families.",
|
|
1759
3403
|
"capabilityGroup": "observability-diagnostics",
|
|
1760
3404
|
"audience": [
|
|
@@ -1773,6 +3417,24 @@
|
|
|
1773
3417
|
"id": "sample-process-tree",
|
|
1774
3418
|
"source": "bin/buildchain.mjs",
|
|
1775
3419
|
"usage": "buildchain sample process-tree [--interval-ms <n>] [--label <name>]",
|
|
3420
|
+
"paths": [
|
|
3421
|
+
"sample process-tree"
|
|
3422
|
+
],
|
|
3423
|
+
"syntaxes": [
|
|
3424
|
+
"buildchain sample process-tree [--interval-ms <n>] [--label <name>] [--output <jsonl>] [--summary-output <json>] [--requested-parallelism <n>] [--json] -- <command> [args...]"
|
|
3425
|
+
],
|
|
3426
|
+
"options": [
|
|
3427
|
+
"--interval-ms",
|
|
3428
|
+
"--json",
|
|
3429
|
+
"--label",
|
|
3430
|
+
"--output",
|
|
3431
|
+
"--requested-parallelism",
|
|
3432
|
+
"--summary-output"
|
|
3433
|
+
],
|
|
3434
|
+
"aliases": [],
|
|
3435
|
+
"helpCommands": [
|
|
3436
|
+
"buildchain sample process-tree --help"
|
|
3437
|
+
],
|
|
1776
3438
|
"purpose": "Sample process-tree diagnostics for a wrapped command.",
|
|
1777
3439
|
"capabilityGroup": "observability-diagnostics",
|
|
1778
3440
|
"audience": [
|
|
@@ -1791,6 +3453,22 @@
|
|
|
1791
3453
|
"id": "span",
|
|
1792
3454
|
"source": "bin/buildchain.mjs",
|
|
1793
3455
|
"usage": "buildchain span --event <name> [--phase <phase>] [--component <name>]",
|
|
3456
|
+
"paths": [
|
|
3457
|
+
"span"
|
|
3458
|
+
],
|
|
3459
|
+
"syntaxes": [
|
|
3460
|
+
"buildchain span --event <name> [--phase <phase>] [--component <name>] [--path <jsonl>] -- <command> [args...]"
|
|
3461
|
+
],
|
|
3462
|
+
"options": [
|
|
3463
|
+
"--component",
|
|
3464
|
+
"--event",
|
|
3465
|
+
"--path",
|
|
3466
|
+
"--phase"
|
|
3467
|
+
],
|
|
3468
|
+
"aliases": [],
|
|
3469
|
+
"helpCommands": [
|
|
3470
|
+
"buildchain span --help"
|
|
3471
|
+
],
|
|
1794
3472
|
"purpose": "Run a command inside a Buildchain log span.",
|
|
1795
3473
|
"capabilityGroup": "observability-diagnostics",
|
|
1796
3474
|
"audience": [
|
|
@@ -1809,6 +3487,20 @@
|
|
|
1809
3487
|
"id": "transaction-inspect",
|
|
1810
3488
|
"source": "bin/buildchain.mjs",
|
|
1811
3489
|
"usage": "buildchain transaction inspect ...",
|
|
3490
|
+
"paths": [
|
|
3491
|
+
"transaction",
|
|
3492
|
+
"transaction inspect"
|
|
3493
|
+
],
|
|
3494
|
+
"syntaxes": [
|
|
3495
|
+
"buildchain transaction",
|
|
3496
|
+
"buildchain transaction inspect ..."
|
|
3497
|
+
],
|
|
3498
|
+
"options": [],
|
|
3499
|
+
"aliases": [],
|
|
3500
|
+
"helpCommands": [
|
|
3501
|
+
"buildchain transaction --help",
|
|
3502
|
+
"buildchain transaction inspect --help"
|
|
3503
|
+
],
|
|
1812
3504
|
"purpose": "Inspect durable release transaction state.",
|
|
1813
3505
|
"capabilityGroup": "release-passport-trust",
|
|
1814
3506
|
"audience": [
|
|
@@ -1827,6 +3519,21 @@
|
|
|
1827
3519
|
"id": "validate",
|
|
1828
3520
|
"source": "bin/buildchain.mjs",
|
|
1829
3521
|
"usage": "buildchain validate [--cwd <dir>] [--require-version-state]",
|
|
3522
|
+
"paths": [
|
|
3523
|
+
"validate"
|
|
3524
|
+
],
|
|
3525
|
+
"syntaxes": [
|
|
3526
|
+
"buildchain validate [--cwd <dir>] [--require-version-state] [--require-lifecycle-stages <comma-list>]"
|
|
3527
|
+
],
|
|
3528
|
+
"options": [
|
|
3529
|
+
"--cwd",
|
|
3530
|
+
"--require-lifecycle-stages",
|
|
3531
|
+
"--require-version-state"
|
|
3532
|
+
],
|
|
3533
|
+
"aliases": [],
|
|
3534
|
+
"helpCommands": [
|
|
3535
|
+
"buildchain validate --help"
|
|
3536
|
+
],
|
|
1830
3537
|
"purpose": "Validate .buildchain/buildchain.toml and declared lifecycle surfaces.",
|
|
1831
3538
|
"capabilityGroup": "getting-started",
|
|
1832
3539
|
"audience": [
|
|
@@ -1845,6 +3552,17 @@
|
|
|
1845
3552
|
"id": "verify",
|
|
1846
3553
|
"source": "bin/buildchain.mjs",
|
|
1847
3554
|
"usage": "buildchain verify",
|
|
3555
|
+
"paths": [
|
|
3556
|
+
"verify"
|
|
3557
|
+
],
|
|
3558
|
+
"syntaxes": [
|
|
3559
|
+
"buildchain verify"
|
|
3560
|
+
],
|
|
3561
|
+
"options": [],
|
|
3562
|
+
"aliases": [],
|
|
3563
|
+
"helpCommands": [
|
|
3564
|
+
"buildchain verify --help"
|
|
3565
|
+
],
|
|
1848
3566
|
"purpose": "Inspect release and artifact verification command families.",
|
|
1849
3567
|
"capabilityGroup": "release-passport-trust",
|
|
1850
3568
|
"audience": [
|
|
@@ -1863,6 +3581,34 @@
|
|
|
1863
3581
|
"id": "verify-artifact",
|
|
1864
3582
|
"source": "bin/buildchain.mjs",
|
|
1865
3583
|
"usage": "buildchain verify artifact <file|dir|url|npm:...|oci:...|github-release:...>",
|
|
3584
|
+
"paths": [
|
|
3585
|
+
"verify artifact dir",
|
|
3586
|
+
"verify artifact file",
|
|
3587
|
+
"verify artifact github-release:...",
|
|
3588
|
+
"verify artifact npm:...",
|
|
3589
|
+
"verify artifact oci:...",
|
|
3590
|
+
"verify artifact url"
|
|
3591
|
+
],
|
|
3592
|
+
"syntaxes": [
|
|
3593
|
+
"buildchain verify artifact <file|dir|url|npm:...|oci:...|github-release:...> [--passport <file-or-url>] [--locator-config <json>] [--repository <owner/repo>] [--tag <tag>] [--npm-registry <url>] [--json]"
|
|
3594
|
+
],
|
|
3595
|
+
"options": [
|
|
3596
|
+
"--json",
|
|
3597
|
+
"--locator-config",
|
|
3598
|
+
"--npm-registry",
|
|
3599
|
+
"--passport",
|
|
3600
|
+
"--repository",
|
|
3601
|
+
"--tag"
|
|
3602
|
+
],
|
|
3603
|
+
"aliases": [],
|
|
3604
|
+
"helpCommands": [
|
|
3605
|
+
"buildchain verify artifact dir --help",
|
|
3606
|
+
"buildchain verify artifact file --help",
|
|
3607
|
+
"buildchain verify artifact github-release:... --help",
|
|
3608
|
+
"buildchain verify artifact npm:... --help",
|
|
3609
|
+
"buildchain verify artifact oci:... --help",
|
|
3610
|
+
"buildchain verify artifact url --help"
|
|
3611
|
+
],
|
|
1866
3612
|
"purpose": "Verify artifact subjects against release passport evidence.",
|
|
1867
3613
|
"capabilityGroup": "release-passport-trust",
|
|
1868
3614
|
"audience": [
|
|
@@ -1881,6 +3627,24 @@
|
|
|
1881
3627
|
"id": "verify-artifact-envelope",
|
|
1882
3628
|
"source": "bin/buildchain.mjs",
|
|
1883
3629
|
"usage": "buildchain verify artifact-envelope <file-or-json> [--assessment-time <epoch>]",
|
|
3630
|
+
"paths": [
|
|
3631
|
+
"verify artifact-envelope"
|
|
3632
|
+
],
|
|
3633
|
+
"syntaxes": [
|
|
3634
|
+
"buildchain verify artifact-envelope <file-or-json> [--assessment-time <epoch>] [--expected-root <sha256:...>] [--expected-issuer <issuer>] [--expected-publisher <publisher>] [--expected-contract <version>] [--json]"
|
|
3635
|
+
],
|
|
3636
|
+
"options": [
|
|
3637
|
+
"--assessment-time",
|
|
3638
|
+
"--expected-contract",
|
|
3639
|
+
"--expected-issuer",
|
|
3640
|
+
"--expected-publisher",
|
|
3641
|
+
"--expected-root",
|
|
3642
|
+
"--json"
|
|
3643
|
+
],
|
|
3644
|
+
"aliases": [],
|
|
3645
|
+
"helpCommands": [
|
|
3646
|
+
"buildchain verify artifact-envelope --help"
|
|
3647
|
+
],
|
|
1884
3648
|
"purpose": "Verify exact roots, identity, lifecycle, revocation, and an existing KFD assessment in a sealed artifact envelope.",
|
|
1885
3649
|
"capabilityGroup": "release-passport-trust",
|
|
1886
3650
|
"audience": [
|
|
@@ -1899,6 +3663,23 @@
|
|
|
1899
3663
|
"id": "verify-github-artifact-attestation",
|
|
1900
3664
|
"source": "bin/buildchain.mjs",
|
|
1901
3665
|
"usage": "buildchain verify github-artifact-attestation <artifact>",
|
|
3666
|
+
"paths": [
|
|
3667
|
+
"verify github-artifact-attestation"
|
|
3668
|
+
],
|
|
3669
|
+
"syntaxes": [
|
|
3670
|
+
"buildchain verify github-artifact-attestation <artifact> --evidence <file> --bundle <file> --platform-manifest <file> --release-passport <file> [--json]"
|
|
3671
|
+
],
|
|
3672
|
+
"options": [
|
|
3673
|
+
"--bundle",
|
|
3674
|
+
"--evidence",
|
|
3675
|
+
"--json",
|
|
3676
|
+
"--platform-manifest",
|
|
3677
|
+
"--release-passport"
|
|
3678
|
+
],
|
|
3679
|
+
"aliases": [],
|
|
3680
|
+
"helpCommands": [
|
|
3681
|
+
"buildchain verify github-artifact-attestation --help"
|
|
3682
|
+
],
|
|
1902
3683
|
"purpose": "Verify GitHub keyless attestation identity plus local artifact, manifest, Passport, predicate, bundle, and evidence bindings.",
|
|
1903
3684
|
"capabilityGroup": "release-passport-trust",
|
|
1904
3685
|
"audience": [
|
|
@@ -1917,6 +3698,19 @@
|
|
|
1917
3698
|
"id": "verify-infra-contract-evidence-bundle",
|
|
1918
3699
|
"source": "bin/buildchain.mjs",
|
|
1919
3700
|
"usage": "buildchain verify infra-contract-evidence-bundle <file> [--json]",
|
|
3701
|
+
"paths": [
|
|
3702
|
+
"verify infra-contract-evidence-bundle"
|
|
3703
|
+
],
|
|
3704
|
+
"syntaxes": [
|
|
3705
|
+
"buildchain verify infra-contract-evidence-bundle <file> [--json]"
|
|
3706
|
+
],
|
|
3707
|
+
"options": [
|
|
3708
|
+
"--json"
|
|
3709
|
+
],
|
|
3710
|
+
"aliases": [],
|
|
3711
|
+
"helpCommands": [
|
|
3712
|
+
"buildchain verify infra-contract-evidence-bundle --help"
|
|
3713
|
+
],
|
|
1920
3714
|
"purpose": "Fail closed unless an infra-contract lifecycle evidence bundle is complete, hash-bound, and validation-consistent.",
|
|
1921
3715
|
"capabilityGroup": "governance-versioning",
|
|
1922
3716
|
"audience": [
|
|
@@ -1935,6 +3729,24 @@
|
|
|
1935
3729
|
"id": "verify-observability-log",
|
|
1936
3730
|
"source": "bin/buildchain.mjs",
|
|
1937
3731
|
"usage": "buildchain verify observability-log <jsonl> [--min-events <n>]",
|
|
3732
|
+
"paths": [
|
|
3733
|
+
"verify observability-log"
|
|
3734
|
+
],
|
|
3735
|
+
"syntaxes": [
|
|
3736
|
+
"buildchain verify observability-log <jsonl> [--min-events <n>] [--require-phase <csv>] [--require-component <csv>] [--require-event <csv>] [--allow-errors] [--json]"
|
|
3737
|
+
],
|
|
3738
|
+
"options": [
|
|
3739
|
+
"--allow-errors",
|
|
3740
|
+
"--json",
|
|
3741
|
+
"--min-events",
|
|
3742
|
+
"--require-component",
|
|
3743
|
+
"--require-event",
|
|
3744
|
+
"--require-phase"
|
|
3745
|
+
],
|
|
3746
|
+
"aliases": [],
|
|
3747
|
+
"helpCommands": [
|
|
3748
|
+
"buildchain verify observability-log --help"
|
|
3749
|
+
],
|
|
1938
3750
|
"purpose": "Verify Buildchain observability log events.",
|
|
1939
3751
|
"capabilityGroup": "observability-diagnostics",
|
|
1940
3752
|
"audience": [
|
|
@@ -1953,6 +3765,25 @@
|
|
|
1953
3765
|
"id": "verify-publication-admission",
|
|
1954
3766
|
"source": "bin/buildchain.mjs",
|
|
1955
3767
|
"usage": "buildchain verify publication-admission <file-or-json>",
|
|
3768
|
+
"paths": [
|
|
3769
|
+
"verify publication-admission"
|
|
3770
|
+
],
|
|
3771
|
+
"syntaxes": [
|
|
3772
|
+
"buildchain verify publication-admission <file-or-json> --registry-json <file-or-json> --runner-json <file-or-json> --control-plane-audit-json <file-or-json> --publication-evidence-json <file-or-json> [--expected-json <file-or-json>] [--used-nonce <nonce>]... [--json]"
|
|
3773
|
+
],
|
|
3774
|
+
"options": [
|
|
3775
|
+
"--control-plane-audit-json",
|
|
3776
|
+
"--expected-json",
|
|
3777
|
+
"--json",
|
|
3778
|
+
"--publication-evidence-json",
|
|
3779
|
+
"--registry-json",
|
|
3780
|
+
"--runner-json",
|
|
3781
|
+
"--used-nonce"
|
|
3782
|
+
],
|
|
3783
|
+
"aliases": [],
|
|
3784
|
+
"helpCommands": [
|
|
3785
|
+
"buildchain verify publication-admission --help"
|
|
3786
|
+
],
|
|
1956
3787
|
"purpose": "Independently verify sealed publication admission, runner provenance, control-plane audit, nonce freshness, and exact artifact bindings.",
|
|
1957
3788
|
"capabilityGroup": "release-passport-trust",
|
|
1958
3789
|
"audience": [
|
|
@@ -1971,6 +3802,19 @@
|
|
|
1971
3802
|
"id": "verify-release-passport",
|
|
1972
3803
|
"source": "bin/buildchain.mjs",
|
|
1973
3804
|
"usage": "buildchain verify release-passport <file-or-url> [--json]",
|
|
3805
|
+
"paths": [
|
|
3806
|
+
"verify release-passport"
|
|
3807
|
+
],
|
|
3808
|
+
"syntaxes": [
|
|
3809
|
+
"buildchain verify release-passport <file-or-url> [--json]"
|
|
3810
|
+
],
|
|
3811
|
+
"options": [
|
|
3812
|
+
"--json"
|
|
3813
|
+
],
|
|
3814
|
+
"aliases": [],
|
|
3815
|
+
"helpCommands": [
|
|
3816
|
+
"buildchain verify release-passport --help"
|
|
3817
|
+
],
|
|
1974
3818
|
"purpose": "Fail closed unless a release passport and its evidence are complete.",
|
|
1975
3819
|
"capabilityGroup": "release-passport-trust",
|
|
1976
3820
|
"audience": [
|
|
@@ -1989,6 +3833,20 @@
|
|
|
1989
3833
|
"id": "version",
|
|
1990
3834
|
"source": "bin/buildchain.mjs",
|
|
1991
3835
|
"usage": "buildchain version",
|
|
3836
|
+
"paths": [
|
|
3837
|
+
"version"
|
|
3838
|
+
],
|
|
3839
|
+
"syntaxes": [
|
|
3840
|
+
"buildchain version"
|
|
3841
|
+
],
|
|
3842
|
+
"options": [],
|
|
3843
|
+
"aliases": [
|
|
3844
|
+
"--version",
|
|
3845
|
+
"-v"
|
|
3846
|
+
],
|
|
3847
|
+
"helpCommands": [
|
|
3848
|
+
"buildchain version --help"
|
|
3849
|
+
],
|
|
1992
3850
|
"purpose": "Print the package or embedded binary version.",
|
|
1993
3851
|
"capabilityGroup": "getting-started",
|
|
1994
3852
|
"audience": [
|
|
@@ -2007,6 +3865,17 @@
|
|
|
2007
3865
|
"id": "web-surface",
|
|
2008
3866
|
"source": "bin/buildchain.mjs",
|
|
2009
3867
|
"usage": "buildchain web-surface ...",
|
|
3868
|
+
"paths": [
|
|
3869
|
+
"web-surface"
|
|
3870
|
+
],
|
|
3871
|
+
"syntaxes": [
|
|
3872
|
+
"buildchain web-surface ..."
|
|
3873
|
+
],
|
|
3874
|
+
"options": [],
|
|
3875
|
+
"aliases": [],
|
|
3876
|
+
"helpCommands": [
|
|
3877
|
+
"buildchain web-surface --help"
|
|
3878
|
+
],
|
|
2010
3879
|
"purpose": "Plan, verify, and apply Buildchain web-surface deployments.",
|
|
2011
3880
|
"capabilityGroup": "site-and-propagation",
|
|
2012
3881
|
"audience": [
|