@kungfu-tech/buildchain 4.0.1-alpha.2 → 4.0.1-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/release-tail/README.md +8 -0
- package/architecture/ci-lane-change-budget.json +187 -0
- package/architecture/decisions/0002-next-development-transition.md +101 -0
- package/architecture/decisions/0003-two-phase-delivery-warrant.md +152 -0
- package/architecture/internal-capabilities.json +211 -8
- package/architecture/maintainability-policy.json +113 -28
- package/architecture/release-tail-contract-inventory.json +5 -2
- package/architecture/v3-core-mechanism-inventory.json +91 -0
- package/architecture/v4-adopter-delivery-parity.json +32 -5
- package/architecture/v4-capability-state-machine-manifest.json +73 -0
- package/architecture/v4-compatibility-facts-parity.json +77 -0
- package/architecture/v4-delivery-authority-parity.json +250 -0
- package/architecture/v4-delivery-warrant-shadow-fixtures.json +41 -9
- package/architecture/v4-floating-consumer-policy.json +6 -0
- package/architecture/v4-next-development-parity.json +192 -0
- package/architecture/v4-publication-rehearsal-parity.json +84 -0
- package/architecture/v4-release-train-parity.json +1 -0
- package/architecture/v4-tail-reseal-parity.json +150 -0
- package/bin/buildchain.mjs +32 -3
- package/bin/internal/adopter-delivery-cli.mjs +70 -0
- package/bin/internal/command-registry.mjs +3 -0
- package/bin/internal/compatibility-facts-cli.mjs +101 -0
- package/contracts/dev-delivery-authority-v2.schema.json +662 -0
- package/contracts/fixtures/next-development-transition-v1/anchored-manual-waiting.json +47 -0
- package/contracts/fixtures/next-development-transition-v1/semver-auto-planned.json +47 -0
- package/contracts/fixtures/next-development-transition-v1/version-model-cases.json +40 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/archive-template.json +19 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/bootstrap-positive.json +93 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/gate-positive.json +29 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/gate-unknown-selector.json +26 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/offline-vectors.json +50 -0
- package/contracts/fixtures/v4-compatibility-facts-v1/shared.json +1129 -0
- package/contracts/fixtures/v4-floating-consumer-policy-v1/cases.json +7 -1
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/artifacts/product.bin +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/config/buildchain.toml +5 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/documents/release-activation.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/documents/signed-channel.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/evidence/qualification.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/manifests/candidate.json +5 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/manifests/release-passport.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/capsule.json +707 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/offline-vectors.json +27 -0
- package/contracts/fixtures/v4-tail-reseal-v1/valid.json +229 -0
- package/contracts/next-development-request-v1.schema.json +66 -0
- package/contracts/next-development-transition-v1.schema.json +292 -0
- package/contracts/v4-adopter-delivery-v1.schema.json +81 -0
- package/contracts/v4-compatibility-facts-v1.schema.json +230 -0
- package/contracts/v4-floating-consumer-policy-receipt-v1.schema.json +4 -2
- package/contracts/v4-publication-rehearsal-capsule-v1.schema.json +233 -0
- package/contracts/v4-tail-reseal-v1.schema.json +276 -0
- package/dist/site/agent-index.json +5 -0
- package/dist/site/artifact-schemas.json +10 -0
- package/dist/site/buildchain-contract.json +1475 -27
- package/dist/site/buildchain-site.json +627 -31
- package/dist/site/capability-registry.json +17 -14
- package/dist/site/cli-registry.json +205 -3
- package/dist/site/kfd-claims.json +490 -16
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +52 -6
- package/dist/site/node-api-registry.json +14736 -8851
- package/dist/site/page-registry.json +593 -21
- package/dist/site/public-surface-audit.json +837 -48
- package/dist/site/publication-authority-registry.json +44 -8
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +24 -0
- package/dist/site/schemas/dev-delivery-authority-v2.schema.json +662 -0
- package/dist/site/schemas/release-tail-capabilities-v1.schema.json +199 -0
- package/dist/site/schemas/v4-adopter-delivery-v1.schema.json +81 -0
- package/dist/site/schemas/v4-compatibility-facts-v1.schema.json +230 -0
- package/dist/site/schemas/v4-publication-rehearsal-capsule-v1.schema.json +233 -0
- package/dist/site/site-manifest.json +34 -10
- package/dist/site/workflow-registry.json +160 -10
- package/docs/MAP.md +8 -2
- package/docs/cli-reference.md +404 -13
- package/docs/cli.md +8 -0
- package/docs/dev-alpha-candidate-patrol.md +8 -0
- package/docs/dev-delivery-qualification-landing-adr.md +251 -0
- package/docs/dev-delivery-warrant.md +351 -38
- package/docs/next-development-transition.md +118 -0
- package/docs/node-api-reference.md +646 -293
- package/docs/release-tail-provider-plane.md +30 -0
- package/docs/v4-adopter-delivery.md +133 -0
- package/docs/v4-compatibility-facts.md +91 -0
- package/docs/v4-publication-rehearsal.md +130 -0
- package/docs/v4-tail-reseal.md +73 -0
- package/docs/versioning.md +4 -3
- package/package.json +34 -6
- package/packages/core/adopter-delivery-passport.js +259 -0
- package/packages/core/adopter-delivery-vectors.js +158 -0
- package/packages/core/adopter-delivery-vectors.json +77 -0
- package/packages/core/buildchain-agent-manuals.js +3 -0
- package/packages/core/buildchain-compatibility-authority.js +336 -0
- package/packages/core/buildchain-compatibility-fact.js +394 -0
- package/packages/core/buildchain-compatibility-facts.json +217 -0
- package/packages/core/buildchain-compatibility-proof.js +566 -0
- package/packages/core/buildchain-config.js +84 -0
- package/packages/core/buildchain-contract.js +96 -143
- package/packages/core/buildchain-delivery-bootstrap.js +240 -0
- package/packages/core/buildchain-delivery-infrastructure.js +164 -0
- package/packages/core/buildchain-delivery-self-dogfood.js +395 -0
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/channel-candidate.js +8 -0
- package/packages/core/channel-promotion-baseline.js +55 -0
- package/packages/core/ci-lane-change-budget.js +247 -0
- package/packages/core/dev-alpha-candidate-selection.js +10 -2
- package/packages/core/dev-delivery-authority-candidate.js +270 -0
- package/packages/core/dev-delivery-authority-evidence.js +146 -0
- package/packages/core/dev-delivery-authority-landing.js +461 -0
- package/packages/core/dev-delivery-authority-observation.js +48 -0
- package/packages/core/dev-delivery-authority-qualification.js +591 -0
- package/packages/core/dev-delivery-authority-settlement.js +213 -0
- package/packages/core/dev-delivery-authority-state.js +583 -0
- package/packages/core/dev-delivery-candidate-identity.js +13 -0
- package/packages/core/dev-delivery-contract-surface.js +76 -0
- package/packages/core/dev-delivery-execution-failure.js +133 -0
- package/packages/core/dev-delivery-execution-transfer.js +592 -0
- package/packages/core/dev-delivery-landing-admission-core.js +119 -0
- package/packages/core/dev-delivery-landing-readback.js +598 -0
- package/packages/core/dev-delivery-landing-terminal-evidence.js +271 -0
- package/packages/core/dev-delivery-landing-testing-port.js +6 -0
- package/packages/core/dev-delivery-native-execution.js +110 -0
- package/packages/core/dev-delivery-native-proof.js +562 -0
- package/packages/core/dev-delivery-process-boundary.js +563 -0
- package/packages/core/dev-delivery-provider-attempt.js +127 -0
- package/packages/core/dev-delivery-provider-heartbeat.js +382 -0
- package/packages/core/dev-delivery-warrant-cancellation.js +1 -0
- package/packages/core/dev-delivery-warrant-qualification.js +145 -0
- package/packages/core/dev-delivery-warrant-settlement.js +237 -36
- package/packages/core/dev-delivery-warrant-state.js +587 -0
- package/packages/core/dev-delivery-warrant.js +328 -370
- package/packages/core/github-governance-authority.js +1 -0
- package/packages/core/index.js +5 -0
- package/packages/core/kungfu-temporal-fact.js +557 -0
- package/packages/core/legacy-kfd-adopter-driver.js +167 -0
- package/packages/core/next-development-candidate-reservation.js +186 -0
- package/packages/core/next-development-controller.js +728 -0
- package/packages/core/next-development-projection.js +287 -0
- package/packages/core/next-development-transition.js +738 -0
- package/packages/core/paper-agent-entry.js +11 -5
- package/packages/core/paper.js +16 -5
- package/packages/core/published-delivery-authority.js +266 -0
- package/packages/core/release-candidate-recovery.js +70 -15
- package/packages/core/release-candidate.js +2 -2
- package/packages/core/release-passport.js +36 -9
- package/packages/core/v4-adopter-delivery-parity.js +3 -3
- package/packages/core/v4-adopter-delivery.js +359 -0
- package/packages/core/v4-canonical-contracts.js +5 -0
- package/packages/core/v4-delivery-warrant-read-candidate.js +10 -3
- package/packages/core/v4-floating-consumer-evidence.js +18 -4
- package/packages/core/v4-floating-consumer-policy.js +143 -20
- package/packages/core/v4-floating-consumer-release-passport.js +32 -5
- package/packages/core/v4-publication-rehearsal-capsule.js +468 -0
- package/packages/core/v4-publication-rehearsal-provider-bindings.js +212 -0
- package/packages/core/v4-publication-rehearsal.js +481 -0
- package/packages/core/v4-tail-reseal-contract.js +26 -0
- package/packages/core/v4-tail-reseal-github.js +178 -0
- package/packages/core/v4-tail-reseal-receipt.js +225 -0
- package/packages/core/v4-tail-reseal.js +594 -0
- package/packages/core/workflow-yaml-contract.js +24 -2
- package/scripts/buildchain-cli-help.mjs +41 -2
- package/scripts/check-ci-lane-change-budget.mjs +100 -0
- package/scripts/check-inventory.mjs +14 -3
- package/scripts/check-v4-floating-consumer-policy-contract.mjs +23 -4
- package/scripts/dev-alpha-candidate-patrol.mjs +22 -1
- package/scripts/dev-delivery-authority-command-adapters.mjs +206 -0
- package/scripts/dev-delivery-authority-provider.mjs +28 -0
- package/scripts/dev-delivery-authority.mjs +490 -0
- package/scripts/dev-delivery-native-run.mjs +177 -0
- package/scripts/dev-delivery-process-boundary.mjs +260 -0
- package/scripts/dev-delivery-proof.mjs +67 -2
- package/scripts/dev-delivery-provider-heartbeat.mjs +215 -0
- package/scripts/dev-delivery-source-proof-replay.mjs +153 -0
- package/scripts/dev-delivery-source-proof-reuse.mjs +13 -97
- package/scripts/dev-delivery-two-phase-resume.mjs +345 -0
- package/scripts/dev-delivery-two-phase.mjs +573 -0
- package/scripts/dev-delivery-warrant-options.mjs +266 -0
- package/scripts/dev-delivery-warrant-store.mjs +231 -0
- package/scripts/dev-delivery-warrant.mjs +232 -194
- package/scripts/dev-pr-auto-merge.mjs +1 -1
- package/scripts/dev-pr-delivery-warrant.mjs +11 -0
- package/scripts/dev-qualification-patrol.mjs +9 -9
- package/scripts/dispatch-artifact-signing-authority.mjs +1 -1
- package/scripts/generate-channel-promotion-workflow.mjs +2 -2
- package/scripts/generate-next-development-guidance.mjs +49 -0
- package/scripts/generate-release-candidate-passport.mjs +152 -0
- package/scripts/generate-site-bundle.mjs +69 -4
- package/scripts/init-repo.mjs +22 -4
- package/scripts/next-development-self-dogfood-harness.mjs +460 -0
- package/scripts/next-development-self-dogfood.mjs +597 -0
- package/scripts/next-development-transition.mjs +47 -0
- package/scripts/npm-publish-transaction.mjs +2 -2
- package/scripts/promotion-channel-router.mjs +4 -4
- package/scripts/release-candidate-anchor-provenance.mjs +99 -0
- package/scripts/release-tail.mjs +51 -3
- package/scripts/release-train-self-dogfood.mjs +94 -92
- package/scripts/resume-from-candidate-run.mjs +557 -30
- package/scripts/site-capability-metadata.mjs +41 -0
- package/scripts/stable-candidate-qualification.mjs +9 -10
- package/scripts/v4-consumer-policy.mjs +5 -5
- package/scripts/v4-publication-rehearsal-fixture.mjs +144 -0
- package/scripts/v4-tail-reseal-macos-rehearsal.mjs +134 -0
- package/scripts/v4-tail-reseal.mjs +416 -0
- package/templates/native-dev-delivery.yml +143 -0
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"maturity": "stable",
|
|
16
16
|
"counts": {
|
|
17
17
|
"manualCount": 4,
|
|
18
|
-
"pageCount":
|
|
18
|
+
"pageCount": 17,
|
|
19
19
|
"cliCommandCount": 9,
|
|
20
20
|
"nodeApiCount": 0,
|
|
21
21
|
"workflowCount": 0,
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"counts": {
|
|
51
51
|
"manualCount": 7,
|
|
52
52
|
"pageCount": 8,
|
|
53
|
-
"cliCommandCount":
|
|
54
|
-
"nodeApiCount":
|
|
53
|
+
"cliCommandCount": 27,
|
|
54
|
+
"nodeApiCount": 21,
|
|
55
55
|
"workflowCount": 4,
|
|
56
56
|
"actionCount": 3
|
|
57
57
|
},
|
|
@@ -85,10 +85,10 @@
|
|
|
85
85
|
],
|
|
86
86
|
"maturity": "stable",
|
|
87
87
|
"counts": {
|
|
88
|
-
"manualCount":
|
|
89
|
-
"pageCount":
|
|
90
|
-
"cliCommandCount":
|
|
91
|
-
"nodeApiCount":
|
|
88
|
+
"manualCount": 6,
|
|
89
|
+
"pageCount": 19,
|
|
90
|
+
"cliCommandCount": 10,
|
|
91
|
+
"nodeApiCount": 15,
|
|
92
92
|
"workflowCount": 4,
|
|
93
93
|
"actionCount": 2
|
|
94
94
|
},
|
|
@@ -97,7 +97,8 @@
|
|
|
97
97
|
"docs/controller-evidence.md",
|
|
98
98
|
"docs/release-candidate.md",
|
|
99
99
|
"docs/lifecycle-protocol.md",
|
|
100
|
-
"docs/reusable-build-surface.md"
|
|
100
|
+
"docs/reusable-build-surface.md",
|
|
101
|
+
"docs/v4-adopter-delivery.md"
|
|
101
102
|
],
|
|
102
103
|
"factSources": [
|
|
103
104
|
"page-registry.json",
|
|
@@ -123,7 +124,7 @@
|
|
|
123
124
|
"manualCount": 2,
|
|
124
125
|
"pageCount": 2,
|
|
125
126
|
"cliCommandCount": 37,
|
|
126
|
-
"nodeApiCount":
|
|
127
|
+
"nodeApiCount": 11,
|
|
127
128
|
"workflowCount": 0,
|
|
128
129
|
"actionCount": 0
|
|
129
130
|
},
|
|
@@ -252,20 +253,22 @@
|
|
|
252
253
|
],
|
|
253
254
|
"maturity": "stable",
|
|
254
255
|
"counts": {
|
|
255
|
-
"manualCount":
|
|
256
|
-
"pageCount":
|
|
257
|
-
"cliCommandCount":
|
|
258
|
-
"nodeApiCount":
|
|
256
|
+
"manualCount": 11,
|
|
257
|
+
"pageCount": 17,
|
|
258
|
+
"cliCommandCount": 13,
|
|
259
|
+
"nodeApiCount": 16,
|
|
259
260
|
"workflowCount": 20,
|
|
260
261
|
"actionCount": 0
|
|
261
262
|
},
|
|
262
263
|
"manuals": [
|
|
263
264
|
"docs/github-governance-authority.md",
|
|
264
265
|
"docs/release-train.md",
|
|
266
|
+
"docs/next-development-transition.md",
|
|
265
267
|
"docs/infra-contract.md",
|
|
266
268
|
"docs/migration-inventory.md",
|
|
267
269
|
"docs/ownership.md",
|
|
268
270
|
"docs/release-governance.md",
|
|
271
|
+
"docs/v4-compatibility-facts.md",
|
|
269
272
|
"docs/release-flow.md",
|
|
270
273
|
"docs/runtime-train-validation.md",
|
|
271
274
|
"docs/versioning.md"
|
|
@@ -295,7 +298,7 @@
|
|
|
295
298
|
"pageCount": 11,
|
|
296
299
|
"cliCommandCount": 0,
|
|
297
300
|
"nodeApiCount": 2,
|
|
298
|
-
"workflowCount":
|
|
301
|
+
"workflowCount": 47,
|
|
299
302
|
"actionCount": 1
|
|
300
303
|
},
|
|
301
304
|
"manuals": [
|
|
@@ -5,6 +5,51 @@
|
|
|
5
5
|
"npmPackage": "@kungfu-tech/buildchain",
|
|
6
6
|
"commandSource": "bin/internal/command-registry.mjs plus bin/buildchain.mjs help enumeration",
|
|
7
7
|
"commands": [
|
|
8
|
+
{
|
|
9
|
+
"id": "adopter-delivery",
|
|
10
|
+
"source": "bin/buildchain.mjs",
|
|
11
|
+
"usage": "buildchain adopter-delivery run --input <json-or-path> [--output <path>]",
|
|
12
|
+
"paths": [
|
|
13
|
+
"adopter-delivery",
|
|
14
|
+
"adopter-delivery archive",
|
|
15
|
+
"adopter-delivery bootstrap",
|
|
16
|
+
"adopter-delivery run",
|
|
17
|
+
"adopter-delivery verify"
|
|
18
|
+
],
|
|
19
|
+
"syntaxes": [
|
|
20
|
+
"buildchain adopter-delivery",
|
|
21
|
+
"buildchain adopter-delivery archive --input <json-or-path> [--output <path>]",
|
|
22
|
+
"buildchain adopter-delivery bootstrap --input <json-or-path> [--output <path>]",
|
|
23
|
+
"buildchain adopter-delivery run --input <json-or-path> [--output <path>]",
|
|
24
|
+
"buildchain adopter-delivery verify --input <json-or-path> --readback <json-or-path> [--output <path>]"
|
|
25
|
+
],
|
|
26
|
+
"options": [
|
|
27
|
+
"--input",
|
|
28
|
+
"--output",
|
|
29
|
+
"--readback"
|
|
30
|
+
],
|
|
31
|
+
"aliases": [],
|
|
32
|
+
"helpCommands": [
|
|
33
|
+
"buildchain adopter-delivery --help",
|
|
34
|
+
"buildchain adopter-delivery archive --help",
|
|
35
|
+
"buildchain adopter-delivery bootstrap --help",
|
|
36
|
+
"buildchain adopter-delivery run --help",
|
|
37
|
+
"buildchain adopter-delivery verify --help"
|
|
38
|
+
],
|
|
39
|
+
"purpose": "Run public protocol-neutral adopter delivery, exact readback, N-1 bootstrap, and published archive checks.",
|
|
40
|
+
"capabilityGroup": "reusable-build",
|
|
41
|
+
"audience": [
|
|
42
|
+
"agent",
|
|
43
|
+
"operator"
|
|
44
|
+
],
|
|
45
|
+
"owner": "buildchain-cli",
|
|
46
|
+
"maturity": "stable",
|
|
47
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
48
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
49
|
+
"deprecationReplacement": "",
|
|
50
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
51
|
+
"nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
|
|
52
|
+
},
|
|
8
53
|
{
|
|
9
54
|
"id": "architecture",
|
|
10
55
|
"source": "bin/buildchain.mjs",
|
|
@@ -239,11 +284,19 @@
|
|
|
239
284
|
"usage": "buildchain facts module [--cwd <dir>] [--module <id>] [--module-root <path>]",
|
|
240
285
|
"paths": [
|
|
241
286
|
"facts aggregate",
|
|
287
|
+
"facts compatibility project",
|
|
288
|
+
"facts compatibility query",
|
|
289
|
+
"facts compatibility query-template",
|
|
290
|
+
"facts compatibility verify",
|
|
242
291
|
"facts module",
|
|
243
292
|
"facts verify"
|
|
244
293
|
],
|
|
245
294
|
"syntaxes": [
|
|
246
295
|
"buildchain facts aggregate [--cwd <dir>] [--product <id>] [--module-fact <file>]... [--artifact <path>]... [--output <file>] [--json]",
|
|
296
|
+
"buildchain facts compatibility project [--cwd <dir>] [--registry <json-or-path>] [--output <file>] [--json]",
|
|
297
|
+
"buildchain facts compatibility query --query <json-or-path> [--registry <json-or-path>] [--cwd <dir>] [--json]",
|
|
298
|
+
"buildchain facts compatibility query-template --fact-root <sha256:...> [--query-id <id>] [--registry <json-or-path>] [--cwd <dir>] [--json]",
|
|
299
|
+
"buildchain facts compatibility verify [--cwd <dir>] [--registry <json-or-path>] [--json]",
|
|
247
300
|
"buildchain facts module [--cwd <dir>] [--module <id>] [--module-root <path>] [--version-source <id>] [--output <file>] [--output-path <path>]... [--legacy-kungfu-buildinfo <file>] [--json]",
|
|
248
301
|
"buildchain facts verify [--cwd <dir>] --fact <file> [--json]"
|
|
249
302
|
],
|
|
@@ -251,6 +304,7 @@
|
|
|
251
304
|
"--artifact",
|
|
252
305
|
"--cwd",
|
|
253
306
|
"--fact",
|
|
307
|
+
"--fact-root",
|
|
254
308
|
"--json",
|
|
255
309
|
"--legacy-kungfu-buildinfo",
|
|
256
310
|
"--module",
|
|
@@ -259,11 +313,18 @@
|
|
|
259
313
|
"--output",
|
|
260
314
|
"--output-path",
|
|
261
315
|
"--product",
|
|
316
|
+
"--query",
|
|
317
|
+
"--query-id",
|
|
318
|
+
"--registry",
|
|
262
319
|
"--version-source"
|
|
263
320
|
],
|
|
264
321
|
"aliases": [],
|
|
265
322
|
"helpCommands": [
|
|
266
323
|
"buildchain facts aggregate --help",
|
|
324
|
+
"buildchain facts compatibility project --help",
|
|
325
|
+
"buildchain facts compatibility query --help",
|
|
326
|
+
"buildchain facts compatibility query-template --help",
|
|
327
|
+
"buildchain facts compatibility verify --help",
|
|
267
328
|
"buildchain facts module --help",
|
|
268
329
|
"buildchain facts verify --help"
|
|
269
330
|
],
|
|
@@ -459,61 +520,105 @@
|
|
|
459
520
|
"usage": "buildchain dev pr-admit --repository <owner/repo> --branch <dev/vN/vN.M>",
|
|
460
521
|
"paths": [
|
|
461
522
|
"dev",
|
|
523
|
+
"dev authority admit-merge-group",
|
|
524
|
+
"dev authority complete-qualification",
|
|
525
|
+
"dev authority heartbeat-landing",
|
|
526
|
+
"dev authority heartbeat-qualification",
|
|
527
|
+
"dev authority lease-landing",
|
|
528
|
+
"dev authority lease-qualification",
|
|
529
|
+
"dev authority migrate",
|
|
530
|
+
"dev authority observe",
|
|
531
|
+
"dev authority recover",
|
|
532
|
+
"dev authority settle",
|
|
533
|
+
"dev authority submit",
|
|
462
534
|
"dev merge-queue",
|
|
463
535
|
"dev pr-admit",
|
|
464
536
|
"dev proof classify",
|
|
537
|
+
"dev proof classify-native",
|
|
465
538
|
"dev proof integration",
|
|
539
|
+
"dev proof native",
|
|
466
540
|
"dev proof replay",
|
|
467
541
|
"dev proof source",
|
|
468
542
|
"dev proof verify-integration",
|
|
543
|
+
"dev proof verify-native",
|
|
544
|
+
"dev proof verify-native-reuse",
|
|
469
545
|
"dev proof verify-source",
|
|
546
|
+
"dev two-phase",
|
|
470
547
|
"dev warrant cancel-queued",
|
|
471
548
|
"dev warrant close",
|
|
472
549
|
"dev warrant heartbeat",
|
|
473
550
|
"dev warrant observe",
|
|
551
|
+
"dev warrant qualify",
|
|
474
552
|
"dev warrant recover",
|
|
475
553
|
"dev warrant select",
|
|
554
|
+
"dev warrant settle",
|
|
476
555
|
"dev warrant submit"
|
|
477
556
|
],
|
|
478
557
|
"syntaxes": [
|
|
479
558
|
"buildchain dev",
|
|
559
|
+
"buildchain dev authority <migrate|submit|lease-qualification|heartbeat-qualification|complete-qualification|lease-landing|heartbeat-landing|recover|admit-merge-group|settle|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--environment-root <root>] [--qualification-domains <json>] [--provider-attempt <admitted-attempt.json>] [--execute] [--output <file>] [--json]",
|
|
480
560
|
"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]",
|
|
481
561
|
"buildchain dev pr-admit --repository <owner/repo> --branch <dev/vN/vN.M> --pull-request <n> --expected-head <sha> [--execute] [--output <file>] [--json]",
|
|
482
|
-
"buildchain dev proof <source|verify-source|classify|replay|integration|verify-integration> [--output <file>] [--json]",
|
|
483
|
-
"buildchain dev
|
|
562
|
+
"buildchain dev proof <source|verify-source|classify|native|verify-native|classify-native|verify-native-reuse|replay|integration|verify-integration> [--output <file>] [--json]",
|
|
563
|
+
"buildchain dev two-phase --repository <owner/repo> --branch <dev/vN/vN.M> --pull-request <n> --expected-head <sha> --warrant-result <file> --native-command <command> [--native-proof <file>] [--output <file>] [--json]",
|
|
564
|
+
"buildchain dev warrant <submit|select|heartbeat|qualify|recover|close|settle|cancel-queued|observe> --repository <owner/repo> --branch <dev/vN/vN.M> [--execute] [--output <file>] [--json]"
|
|
484
565
|
],
|
|
485
566
|
"options": [
|
|
486
567
|
"--apply",
|
|
487
568
|
"--branch",
|
|
488
569
|
"--check-response-timeout-minutes",
|
|
489
570
|
"--cwd",
|
|
571
|
+
"--environment-root",
|
|
490
572
|
"--execute",
|
|
491
573
|
"--expected-head",
|
|
492
574
|
"--from-config",
|
|
493
575
|
"--json",
|
|
494
576
|
"--max-entries-to-build",
|
|
577
|
+
"--native-command",
|
|
578
|
+
"--native-proof",
|
|
495
579
|
"--output",
|
|
580
|
+
"--provider-attempt",
|
|
496
581
|
"--pull-request",
|
|
582
|
+
"--qualification-domains",
|
|
497
583
|
"--repository",
|
|
584
|
+
"--warrant-result",
|
|
498
585
|
"--workflow"
|
|
499
586
|
],
|
|
500
587
|
"aliases": [],
|
|
501
588
|
"helpCommands": [
|
|
502
589
|
"buildchain dev --help",
|
|
590
|
+
"buildchain dev authority admit-merge-group --help",
|
|
591
|
+
"buildchain dev authority complete-qualification --help",
|
|
592
|
+
"buildchain dev authority heartbeat-landing --help",
|
|
593
|
+
"buildchain dev authority heartbeat-qualification --help",
|
|
594
|
+
"buildchain dev authority lease-landing --help",
|
|
595
|
+
"buildchain dev authority lease-qualification --help",
|
|
596
|
+
"buildchain dev authority migrate --help",
|
|
597
|
+
"buildchain dev authority observe --help",
|
|
598
|
+
"buildchain dev authority recover --help",
|
|
599
|
+
"buildchain dev authority settle --help",
|
|
600
|
+
"buildchain dev authority submit --help",
|
|
503
601
|
"buildchain dev merge-queue --help",
|
|
504
602
|
"buildchain dev pr-admit --help",
|
|
505
603
|
"buildchain dev proof classify --help",
|
|
604
|
+
"buildchain dev proof classify-native --help",
|
|
506
605
|
"buildchain dev proof integration --help",
|
|
606
|
+
"buildchain dev proof native --help",
|
|
507
607
|
"buildchain dev proof replay --help",
|
|
508
608
|
"buildchain dev proof source --help",
|
|
509
609
|
"buildchain dev proof verify-integration --help",
|
|
610
|
+
"buildchain dev proof verify-native --help",
|
|
611
|
+
"buildchain dev proof verify-native-reuse --help",
|
|
510
612
|
"buildchain dev proof verify-source --help",
|
|
613
|
+
"buildchain dev two-phase --help",
|
|
511
614
|
"buildchain dev warrant cancel-queued --help",
|
|
512
615
|
"buildchain dev warrant close --help",
|
|
513
616
|
"buildchain dev warrant heartbeat --help",
|
|
514
617
|
"buildchain dev warrant observe --help",
|
|
618
|
+
"buildchain dev warrant qualify --help",
|
|
515
619
|
"buildchain dev warrant recover --help",
|
|
516
620
|
"buildchain dev warrant select --help",
|
|
621
|
+
"buildchain dev warrant settle --help",
|
|
517
622
|
"buildchain dev warrant submit --help"
|
|
518
623
|
],
|
|
519
624
|
"purpose": "Inspect protected development-channel governance command families.",
|
|
@@ -2486,6 +2591,44 @@
|
|
|
2486
2591
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2487
2592
|
"nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
|
|
2488
2593
|
},
|
|
2594
|
+
{
|
|
2595
|
+
"id": "next-development",
|
|
2596
|
+
"source": "bin/buildchain.mjs",
|
|
2597
|
+
"usage": "buildchain next-development materialize --input <request.json> [--cwd <dir>]",
|
|
2598
|
+
"paths": [
|
|
2599
|
+
"next-development",
|
|
2600
|
+
"next-development materialize"
|
|
2601
|
+
],
|
|
2602
|
+
"syntaxes": [
|
|
2603
|
+
"buildchain next-development",
|
|
2604
|
+
"buildchain next-development materialize --input <request.json> [--cwd <dir>] [--write] [--output <path>] [--json]"
|
|
2605
|
+
],
|
|
2606
|
+
"options": [
|
|
2607
|
+
"--cwd",
|
|
2608
|
+
"--input",
|
|
2609
|
+
"--json",
|
|
2610
|
+
"--output",
|
|
2611
|
+
"--write"
|
|
2612
|
+
],
|
|
2613
|
+
"aliases": [],
|
|
2614
|
+
"helpCommands": [
|
|
2615
|
+
"buildchain next-development --help",
|
|
2616
|
+
"buildchain next-development materialize --help"
|
|
2617
|
+
],
|
|
2618
|
+
"purpose": "Plan or apply one rooted declared-path next-development version transition without release or ref authority.",
|
|
2619
|
+
"capabilityGroup": "governance-versioning",
|
|
2620
|
+
"audience": [
|
|
2621
|
+
"agent",
|
|
2622
|
+
"operator"
|
|
2623
|
+
],
|
|
2624
|
+
"owner": "buildchain-cli",
|
|
2625
|
+
"maturity": "stable",
|
|
2626
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
2627
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
2628
|
+
"deprecationReplacement": "",
|
|
2629
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
2630
|
+
"nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
|
|
2631
|
+
},
|
|
2489
2632
|
{
|
|
2490
2633
|
"id": "npm",
|
|
2491
2634
|
"source": "bin/buildchain.mjs",
|
|
@@ -3446,6 +3589,7 @@
|
|
|
3446
3589
|
"release-tail compat",
|
|
3447
3590
|
"release-tail init",
|
|
3448
3591
|
"release-tail plan",
|
|
3592
|
+
"release-tail rehearse",
|
|
3449
3593
|
"release-tail status",
|
|
3450
3594
|
"release-tail verify"
|
|
3451
3595
|
],
|
|
@@ -3454,11 +3598,16 @@
|
|
|
3454
3598
|
"buildchain release-tail <status|verify> [--state <path>] [--output <path>]",
|
|
3455
3599
|
"buildchain release-tail compat --hooks-json <json-or-path> [--output <path>]",
|
|
3456
3600
|
"buildchain release-tail init --declaration <json-or-path> [--state <path>]",
|
|
3457
|
-
"buildchain release-tail plan --declaration <json-or-path> [--output <path>]"
|
|
3601
|
+
"buildchain release-tail plan --declaration <json-or-path> [--output <path>]",
|
|
3602
|
+
"buildchain release-tail rehearse --capsule <absolute-path> --candidate-root <absolute-path> --mode <simulate|replay> --state <absolute-path> --evidence <absolute-path>"
|
|
3458
3603
|
],
|
|
3459
3604
|
"options": [
|
|
3605
|
+
"--candidate-root",
|
|
3606
|
+
"--capsule",
|
|
3460
3607
|
"--declaration",
|
|
3608
|
+
"--evidence",
|
|
3461
3609
|
"--hooks-json",
|
|
3610
|
+
"--mode",
|
|
3462
3611
|
"--output",
|
|
3463
3612
|
"--state"
|
|
3464
3613
|
],
|
|
@@ -3468,6 +3617,7 @@
|
|
|
3468
3617
|
"buildchain release-tail compat --help",
|
|
3469
3618
|
"buildchain release-tail init --help",
|
|
3470
3619
|
"buildchain release-tail plan --help",
|
|
3620
|
+
"buildchain release-tail rehearse --help",
|
|
3471
3621
|
"buildchain release-tail status --help",
|
|
3472
3622
|
"buildchain release-tail verify --help"
|
|
3473
3623
|
],
|
|
@@ -3622,6 +3772,58 @@
|
|
|
3622
3772
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
3623
3773
|
"nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
|
|
3624
3774
|
},
|
|
3775
|
+
{
|
|
3776
|
+
"id": "tail-reseal",
|
|
3777
|
+
"source": "bin/buildchain.mjs",
|
|
3778
|
+
"usage": "buildchain tail-reseal plan --request <request.json> [--output <plan.json>]",
|
|
3779
|
+
"paths": [
|
|
3780
|
+
"tail-reseal",
|
|
3781
|
+
"tail-reseal admit",
|
|
3782
|
+
"tail-reseal plan",
|
|
3783
|
+
"tail-reseal seal",
|
|
3784
|
+
"tail-reseal verify-platform"
|
|
3785
|
+
],
|
|
3786
|
+
"syntaxes": [
|
|
3787
|
+
"buildchain tail-reseal",
|
|
3788
|
+
"buildchain tail-reseal admit --request <request.json> [--output <admission.json>]",
|
|
3789
|
+
"buildchain tail-reseal plan --request <request.json> [--output <plan.json>]",
|
|
3790
|
+
"buildchain tail-reseal seal --request <request.json> --plan <plan.json> --readbacks <dir> --passport <passport.json> --protected-readback-root <sha256:...> [--output <receipt.json>]",
|
|
3791
|
+
"buildchain tail-reseal verify-platform --request <request.json> --platform <id> [--artifact-root <dir>] [--mode retained|resealed] [--provider-readback-root <sha256:...>] [--output <readback.json>]"
|
|
3792
|
+
],
|
|
3793
|
+
"options": [
|
|
3794
|
+
"--artifact-root",
|
|
3795
|
+
"--mode",
|
|
3796
|
+
"--output",
|
|
3797
|
+
"--passport",
|
|
3798
|
+
"--plan",
|
|
3799
|
+
"--platform",
|
|
3800
|
+
"--protected-readback-root",
|
|
3801
|
+
"--provider-readback-root",
|
|
3802
|
+
"--readbacks",
|
|
3803
|
+
"--request"
|
|
3804
|
+
],
|
|
3805
|
+
"aliases": [],
|
|
3806
|
+
"helpCommands": [
|
|
3807
|
+
"buildchain tail-reseal --help",
|
|
3808
|
+
"buildchain tail-reseal admit --help",
|
|
3809
|
+
"buildchain tail-reseal plan --help",
|
|
3810
|
+
"buildchain tail-reseal seal --help",
|
|
3811
|
+
"buildchain tail-reseal verify-platform --help"
|
|
3812
|
+
],
|
|
3813
|
+
"purpose": "Plan, admit, byte-verify, and seal one exact retained v4 Alpha candidate signing-finalization tail.",
|
|
3814
|
+
"capabilityGroup": "release-passport-trust",
|
|
3815
|
+
"audience": [
|
|
3816
|
+
"agent",
|
|
3817
|
+
"operator"
|
|
3818
|
+
],
|
|
3819
|
+
"owner": "buildchain-cli",
|
|
3820
|
+
"maturity": "stable",
|
|
3821
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
3822
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
3823
|
+
"deprecationReplacement": "",
|
|
3824
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
3825
|
+
"nonDuplicationRationale": "Existing command identity retained for CLI compatibility and discoverability."
|
|
3826
|
+
},
|
|
3625
3827
|
{
|
|
3626
3828
|
"id": "transaction-inspect",
|
|
3627
3829
|
"source": "bin/buildchain.mjs",
|