@kungfu-tech/buildchain 4.0.0 → 4.0.1-alpha.10
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/AGENTS.md +13 -5
- package/actions/promote-buildchain-ref/README.md +11 -6
- 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 +219 -7
- package/architecture/maintainability-policy.json +246 -29
- 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 +81 -0
- package/architecture/v4-floating-consumer-policy.md +32 -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-runtime-ref-resume-authority.json +64 -0
- package/architecture/v4-stage-capsule-qualification.json +2 -2
- 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/bin/internal/trust-release-release-handlers.mjs +5 -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 +59 -0
- 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-runtime-ref-resume-authority-v1/scenario.json +15 -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 +107 -0
- package/contracts/v4-publication-rehearsal-capsule-v1.schema.json +233 -0
- package/contracts/v4-runtime-ref-resume-authority-v1.schema.json +235 -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 +1562 -44
- package/dist/site/buildchain-site.json +684 -42
- package/dist/site/capability-registry.json +17 -14
- package/dist/site/cli-registry.json +205 -3
- package/dist/site/controller-registry.json +62 -6
- package/dist/site/kfd-claims.json +551 -22
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +55 -9
- package/dist/site/node-api-registry.json +15247 -8690
- package/dist/site/page-registry.json +647 -29
- package/dist/site/public-surface-audit.json +876 -55
- package/dist/site/publication-authority-registry.json +44 -8
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +26 -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 +37 -13
- package/dist/site/workflow-registry.json +200 -22
- package/docs/MAP.md +10 -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 +361 -30
- package/docs/lifecycle-protocol.md +41 -0
- package/docs/next-development-transition.md +118 -0
- package/docs/node-api-reference.md +748 -322
- package/docs/release-tail-provider-plane.md +30 -0
- package/docs/reusable-build-surface.md +41 -0
- package/docs/runtime-train-validation.md +10 -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-runtime-ref-resume-authority.md +69 -0
- package/docs/v4-tail-reseal.md +73 -0
- package/docs/versioning.md +4 -2
- package/package.json +36 -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/artifact-signing.js +61 -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 +150 -1
- 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-proof.js +37 -3
- 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 +7 -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/publication-authority.js +5 -5
- package/packages/core/published-delivery-authority.js +266 -0
- package/packages/core/release-candidate-recovery.js +66 -11
- package/packages/core/release-candidate.js +79 -19
- package/packages/core/release-passport.js +271 -38
- 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 +338 -0
- package/packages/core/v4-floating-consumer-policy.js +569 -0
- package/packages/core/v4-floating-consumer-release-passport.js +153 -0
- 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-runtime-ref-resume-authority.js +625 -0
- package/packages/core/v4-runtime-selector-persistence.js +228 -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 +72 -2
- package/scripts/audit-publication-control-plane.mjs +31 -31
- 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 +217 -0
- package/scripts/check-v4-public-dogfood-contract.mjs +6 -11
- 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 +547 -0
- 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 +37 -48
- package/scripts/dev-pr-delivery-warrant.mjs +216 -2
- package/scripts/dev-pr-prequeue-guard.mjs +399 -0
- package/scripts/dev-qualification-patrol.mjs +9 -9
- package/scripts/dispatch-artifact-signing-authority.mjs +1 -1
- package/scripts/ensure-github-release.mjs +3 -3
- package/scripts/generate-channel-build-workflow.mjs +3 -0
- package/scripts/generate-channel-promotion-workflow.mjs +114 -14
- package/scripts/generate-next-development-guidance.mjs +49 -0
- package/scripts/generate-release-candidate-passport.mjs +192 -32
- package/scripts/generate-site-bundle.mjs +69 -4
- package/scripts/init-repo.mjs +26 -4
- package/scripts/inspect-artifact-signing-requests.mjs +6 -0
- 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 +103 -91
- 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 +565 -41
- package/scripts/seal-artifact-signing-requests.mjs +6 -0
- package/scripts/site-capability-metadata.mjs +43 -0
- package/scripts/stable-candidate-qualification.mjs +9 -10
- package/scripts/v4-consumer-policy.mjs +231 -0
- 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
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://buildchain.kungfu.ai/contracts/v4-publication-rehearsal-capsule-v1.schema.json",
|
|
4
|
+
"title": "Buildchain v4 Publication Rehearsal Capsule",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"schema",
|
|
9
|
+
"coreVersion",
|
|
10
|
+
"source",
|
|
11
|
+
"candidate",
|
|
12
|
+
"manifest",
|
|
13
|
+
"config",
|
|
14
|
+
"providerBindings",
|
|
15
|
+
"providerBindingsRoot",
|
|
16
|
+
"providerPolicy",
|
|
17
|
+
"expectedObservations",
|
|
18
|
+
"declaration",
|
|
19
|
+
"transaction",
|
|
20
|
+
"files",
|
|
21
|
+
"capsuleRoot"
|
|
22
|
+
],
|
|
23
|
+
"properties": {
|
|
24
|
+
"schema": { "const": "buildchain-v4-publication-rehearsal-capsule/v1" },
|
|
25
|
+
"coreVersion": { "const": "buildchain.release-tail/v1" },
|
|
26
|
+
"source": {
|
|
27
|
+
"type": "object",
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"required": ["repository", "revision", "root"],
|
|
30
|
+
"properties": {
|
|
31
|
+
"repository": { "type": "string", "minLength": 1 },
|
|
32
|
+
"revision": { "type": "string", "pattern": "^[0-9a-f]{40}$" },
|
|
33
|
+
"root": { "$ref": "#/$defs/root" }
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"candidate": {
|
|
37
|
+
"type": "object",
|
|
38
|
+
"additionalProperties": false,
|
|
39
|
+
"required": ["root"],
|
|
40
|
+
"properties": { "root": { "$ref": "#/$defs/root" } }
|
|
41
|
+
},
|
|
42
|
+
"manifest": { "$ref": "#/$defs/fileBinding" },
|
|
43
|
+
"config": { "$ref": "#/$defs/fileBinding" },
|
|
44
|
+
"providerBindings": { "$ref": "#/$defs/providerBindings" },
|
|
45
|
+
"providerBindingsRoot": { "$ref": "#/$defs/root" },
|
|
46
|
+
"providerPolicy": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"additionalProperties": false,
|
|
49
|
+
"required": [
|
|
50
|
+
"schema",
|
|
51
|
+
"effectDefault",
|
|
52
|
+
"allowedCapabilityIds",
|
|
53
|
+
"allowedAdapters",
|
|
54
|
+
"root"
|
|
55
|
+
],
|
|
56
|
+
"properties": {
|
|
57
|
+
"schema": {
|
|
58
|
+
"const": "buildchain-v4-publication-rehearsal-provider-policy/v1"
|
|
59
|
+
},
|
|
60
|
+
"effectDefault": { "const": "disabled" },
|
|
61
|
+
"allowedCapabilityIds": {
|
|
62
|
+
"type": "array",
|
|
63
|
+
"minItems": 1,
|
|
64
|
+
"uniqueItems": true,
|
|
65
|
+
"items": { "type": "string", "minLength": 1 }
|
|
66
|
+
},
|
|
67
|
+
"allowedAdapters": {
|
|
68
|
+
"type": "array",
|
|
69
|
+
"minItems": 1,
|
|
70
|
+
"uniqueItems": true,
|
|
71
|
+
"items": {
|
|
72
|
+
"type": "string",
|
|
73
|
+
"pattern": "^[a-z][a-z0-9]*(?:[.-][a-z0-9]+)*$"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"root": { "$ref": "#/$defs/root" }
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"expectedObservations": {
|
|
80
|
+
"type": "object",
|
|
81
|
+
"additionalProperties": false,
|
|
82
|
+
"required": ["entries", "root"],
|
|
83
|
+
"properties": {
|
|
84
|
+
"entries": {
|
|
85
|
+
"type": "array",
|
|
86
|
+
"items": { "$ref": "#/$defs/observationSequence" }
|
|
87
|
+
},
|
|
88
|
+
"root": { "$ref": "#/$defs/root" }
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"declaration": { "$ref": "release-tail-capabilities-v1.schema.json" },
|
|
92
|
+
"transaction": { "type": "object" },
|
|
93
|
+
"files": {
|
|
94
|
+
"type": "array",
|
|
95
|
+
"minItems": 1,
|
|
96
|
+
"items": {
|
|
97
|
+
"type": "object",
|
|
98
|
+
"additionalProperties": false,
|
|
99
|
+
"required": ["role", "path", "size", "root"],
|
|
100
|
+
"properties": {
|
|
101
|
+
"role": {
|
|
102
|
+
"type": "string",
|
|
103
|
+
"pattern": "^[a-z][a-z0-9]*(?:[.-][a-z0-9]+)*$"
|
|
104
|
+
},
|
|
105
|
+
"path": { "$ref": "#/$defs/path" },
|
|
106
|
+
"size": { "type": "integer", "minimum": 0 },
|
|
107
|
+
"root": { "$ref": "#/$defs/root" }
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"capsuleRoot": { "$ref": "#/$defs/root" }
|
|
112
|
+
},
|
|
113
|
+
"$defs": {
|
|
114
|
+
"root": { "type": "string", "pattern": "^sha256:[0-9a-f]{64}$" },
|
|
115
|
+
"path": {
|
|
116
|
+
"type": "string",
|
|
117
|
+
"minLength": 1,
|
|
118
|
+
"pattern": "^(?!/)(?!.*(?:^|/)\\.(?:/|$))(?!.*(?:^|/)\\.\\.(?:/|$))(?!.*//)(?!.*\\\\)(?!.*\/$).+$"
|
|
119
|
+
},
|
|
120
|
+
"providerBindings": {
|
|
121
|
+
"type": "object",
|
|
122
|
+
"additionalProperties": false,
|
|
123
|
+
"required": ["schema", "artifacts", "documents", "evidence"],
|
|
124
|
+
"properties": {
|
|
125
|
+
"schema": {
|
|
126
|
+
"const": "kungfu.buildchain.release-tail.provider-bindings/v1"
|
|
127
|
+
},
|
|
128
|
+
"artifacts": {
|
|
129
|
+
"type": "object",
|
|
130
|
+
"propertyNames": {
|
|
131
|
+
"pattern": "^[a-z][a-z0-9]*(?:[.-][a-z0-9]+)*$"
|
|
132
|
+
},
|
|
133
|
+
"additionalProperties": {
|
|
134
|
+
"type": "object",
|
|
135
|
+
"additionalProperties": false,
|
|
136
|
+
"required": ["path", "name"],
|
|
137
|
+
"properties": {
|
|
138
|
+
"path": { "$ref": "#/$defs/path" },
|
|
139
|
+
"name": { "type": "string", "minLength": 1 }
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"documents": {
|
|
144
|
+
"type": "object",
|
|
145
|
+
"propertyNames": {
|
|
146
|
+
"pattern": "^[a-z][a-z0-9]*(?:[.-][a-z0-9]+)*$"
|
|
147
|
+
},
|
|
148
|
+
"additionalProperties": { "$ref": "#/$defs/providerDocument" }
|
|
149
|
+
},
|
|
150
|
+
"evidence": {
|
|
151
|
+
"type": "object",
|
|
152
|
+
"additionalProperties": false,
|
|
153
|
+
"required": ["inputs", "output"],
|
|
154
|
+
"properties": {
|
|
155
|
+
"inputs": {
|
|
156
|
+
"type": "array",
|
|
157
|
+
"uniqueItems": true,
|
|
158
|
+
"items": { "$ref": "#/$defs/path" }
|
|
159
|
+
},
|
|
160
|
+
"output": { "$ref": "#/$defs/path" }
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"providerDocument": {
|
|
166
|
+
"type": "object",
|
|
167
|
+
"additionalProperties": false,
|
|
168
|
+
"required": ["path", "method"],
|
|
169
|
+
"properties": {
|
|
170
|
+
"path": { "$ref": "#/$defs/path" },
|
|
171
|
+
"method": { "enum": ["PUT", "POST"] }
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"fileBinding": {
|
|
175
|
+
"type": "object",
|
|
176
|
+
"additionalProperties": false,
|
|
177
|
+
"required": ["path", "root"],
|
|
178
|
+
"properties": {
|
|
179
|
+
"path": { "$ref": "#/$defs/path" },
|
|
180
|
+
"root": { "$ref": "#/$defs/root" }
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"readback": {
|
|
184
|
+
"type": "object",
|
|
185
|
+
"additionalProperties": false,
|
|
186
|
+
"required": [
|
|
187
|
+
"outcome",
|
|
188
|
+
"subjectRoot",
|
|
189
|
+
"targetRoot",
|
|
190
|
+
"evidenceRoots",
|
|
191
|
+
"providerCode"
|
|
192
|
+
],
|
|
193
|
+
"properties": {
|
|
194
|
+
"outcome": { "enum": ["observed", "absent", "transient", "conflict"] },
|
|
195
|
+
"subjectRoot": {
|
|
196
|
+
"oneOf": [{ "$ref": "#/$defs/root" }, { "const": "" }]
|
|
197
|
+
},
|
|
198
|
+
"targetRoot": {
|
|
199
|
+
"oneOf": [{ "$ref": "#/$defs/root" }, { "const": "" }]
|
|
200
|
+
},
|
|
201
|
+
"evidenceRoots": {
|
|
202
|
+
"type": "array",
|
|
203
|
+
"uniqueItems": true,
|
|
204
|
+
"items": { "$ref": "#/$defs/root" }
|
|
205
|
+
},
|
|
206
|
+
"providerCode": { "type": "string", "minLength": 1 }
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"observationSequence": {
|
|
210
|
+
"type": "object",
|
|
211
|
+
"additionalProperties": false,
|
|
212
|
+
"required": ["operationId", "readbacks", "apply"],
|
|
213
|
+
"properties": {
|
|
214
|
+
"operationId": { "$ref": "#/$defs/root" },
|
|
215
|
+
"readbacks": {
|
|
216
|
+
"type": "array",
|
|
217
|
+
"minItems": 1,
|
|
218
|
+
"items": { "$ref": "#/$defs/readback" }
|
|
219
|
+
},
|
|
220
|
+
"apply": {
|
|
221
|
+
"type": "object",
|
|
222
|
+
"additionalProperties": false,
|
|
223
|
+
"required": ["outcome", "code", "classification"],
|
|
224
|
+
"properties": {
|
|
225
|
+
"outcome": { "enum": ["applied", "transient", "conflict"] },
|
|
226
|
+
"code": { "type": "string", "minLength": 1 },
|
|
227
|
+
"classification": { "type": "string", "minLength": 1 }
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"contract": "kungfu-buildchain-site-manifest",
|
|
4
|
-
"generatedAt": "2026-08-
|
|
5
|
-
"publishedAt": "2026-08-
|
|
4
|
+
"generatedAt": "2026-08-22T11:35:38.790Z",
|
|
5
|
+
"publishedAt": "2026-08-22T11:35:38.790Z",
|
|
6
6
|
"reproducible": true,
|
|
7
7
|
"timestampPolicy": "ci-injected",
|
|
8
8
|
"deterministicInputs": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"declared Buildchain surface manifest contract"
|
|
20
20
|
],
|
|
21
21
|
"sourceDateEpoch": "0",
|
|
22
|
-
"sourceRevision": "
|
|
22
|
+
"sourceRevision": "cd2e0972c4836db2e99b61a18be88b13b1cc605c",
|
|
23
23
|
"timestampPolicyDetails": {
|
|
24
24
|
"contract": "kungfu-buildchain-surface-timestamp-policy",
|
|
25
25
|
"timestampFields": [
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"package": {
|
|
39
39
|
"name": "@kungfu-tech/buildchain",
|
|
40
|
-
"version": "4.0.
|
|
40
|
+
"version": "4.0.1-alpha.10",
|
|
41
41
|
"versionSource": "package.json#version"
|
|
42
42
|
},
|
|
43
43
|
"entrypoint": "buildchain-site.json",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"path": "docs/MAP.md",
|
|
54
54
|
"plane": "use",
|
|
55
55
|
"exists": true,
|
|
56
|
-
"digest": "sha256:
|
|
56
|
+
"digest": "sha256:a04d321dbec562807cb29b748039839d097a97d2c9d2f0e76d6d22f2845055ba"
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
"id": "getting-started",
|
|
@@ -135,6 +135,14 @@
|
|
|
135
135
|
"exists": true,
|
|
136
136
|
"digest": "sha256:6989ada03d381e68fdec55b26b76b2070fb37969826eadc0a989844a732ba557"
|
|
137
137
|
},
|
|
138
|
+
{
|
|
139
|
+
"id": "next-development-transition",
|
|
140
|
+
"title": "Next-development transition",
|
|
141
|
+
"path": "docs/next-development-transition.md",
|
|
142
|
+
"plane": "verify",
|
|
143
|
+
"exists": true,
|
|
144
|
+
"digest": "sha256:c33c017ae163650b422f7ec294a05f3db8b8e99b87c55ab2d8ac3cce1726448f"
|
|
145
|
+
},
|
|
138
146
|
{
|
|
139
147
|
"id": "release-propagation",
|
|
140
148
|
"title": "Release propagation",
|
|
@@ -229,7 +237,7 @@
|
|
|
229
237
|
"path": "docs/cli.md",
|
|
230
238
|
"plane": "use",
|
|
231
239
|
"exists": true,
|
|
232
|
-
"digest": "sha256:
|
|
240
|
+
"digest": "sha256:60208f0862195df44b27ada15e474ff1808dee6d492cd6303402b92fd72f06bc"
|
|
233
241
|
},
|
|
234
242
|
{
|
|
235
243
|
"id": "cli-reference",
|
|
@@ -237,7 +245,7 @@
|
|
|
237
245
|
"path": "docs/cli-reference.md",
|
|
238
246
|
"plane": "use",
|
|
239
247
|
"exists": true,
|
|
240
|
-
"digest": "sha256:
|
|
248
|
+
"digest": "sha256:ec16f350596692989cf5eade945e7bbeee157a661c6d8faa55c8249b14ef5632"
|
|
241
249
|
},
|
|
242
250
|
{
|
|
243
251
|
"id": "node-api-reference",
|
|
@@ -245,7 +253,7 @@
|
|
|
245
253
|
"path": "docs/node-api-reference.md",
|
|
246
254
|
"plane": "use",
|
|
247
255
|
"exists": true,
|
|
248
|
-
"digest": "sha256:
|
|
256
|
+
"digest": "sha256:da744d2071ab7871eccbf6b3049a4d8a44b21daa477598fa9327a28b7d89ae67"
|
|
249
257
|
},
|
|
250
258
|
{
|
|
251
259
|
"id": "build-facts",
|
|
@@ -277,7 +285,7 @@
|
|
|
277
285
|
"path": "docs/lifecycle-protocol.md",
|
|
278
286
|
"plane": "use",
|
|
279
287
|
"exists": true,
|
|
280
|
-
"digest": "sha256:
|
|
288
|
+
"digest": "sha256:edff8787985801d060efe9c924d80ac1689f5f2305d853f645fe877bab34c207"
|
|
281
289
|
},
|
|
282
290
|
{
|
|
283
291
|
"id": "reusable-build-surface",
|
|
@@ -285,7 +293,15 @@
|
|
|
285
293
|
"path": "docs/reusable-build-surface.md",
|
|
286
294
|
"plane": "use",
|
|
287
295
|
"exists": true,
|
|
288
|
-
"digest": "sha256:
|
|
296
|
+
"digest": "sha256:fc2649d0ae4dc6a08275bc1f2509efd3e9730227eaa8157ef64daf4b9c850264"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"id": "v4-adopter-delivery",
|
|
300
|
+
"title": "V4 public adopter delivery",
|
|
301
|
+
"path": "docs/v4-adopter-delivery.md",
|
|
302
|
+
"plane": "verify",
|
|
303
|
+
"exists": true,
|
|
304
|
+
"digest": "sha256:c74a004657f64d29ba2a47f599223e5ab132daf2881cf0564c85c04b22a69e6e"
|
|
289
305
|
},
|
|
290
306
|
{
|
|
291
307
|
"id": "publish-transaction",
|
|
@@ -309,7 +325,7 @@
|
|
|
309
325
|
"path": "docs/release-tail-provider-plane.md",
|
|
310
326
|
"plane": "use",
|
|
311
327
|
"exists": true,
|
|
312
|
-
"digest": "sha256:
|
|
328
|
+
"digest": "sha256:72dd8231f51003c8a0d6532991b908b39de02deb11300e8c63113cd3a9e5cd8e"
|
|
313
329
|
},
|
|
314
330
|
{
|
|
315
331
|
"id": "release-governance",
|
|
@@ -319,6 +335,14 @@
|
|
|
319
335
|
"exists": true,
|
|
320
336
|
"digest": "sha256:6dfe8a9b974040fc1465b0da696519b4e97b0b901e30d852ffacda0d193810af"
|
|
321
337
|
},
|
|
338
|
+
{
|
|
339
|
+
"id": "v4-compatibility-facts",
|
|
340
|
+
"title": "Buildchain v4 compatibility Facts",
|
|
341
|
+
"path": "docs/v4-compatibility-facts.md",
|
|
342
|
+
"plane": "verify",
|
|
343
|
+
"exists": true,
|
|
344
|
+
"digest": "sha256:d29c904a17aca0ca3ad4f48a826f530610d77ffca8bde76ef7e5b4c245c2ca47"
|
|
345
|
+
},
|
|
322
346
|
{
|
|
323
347
|
"id": "release-flow",
|
|
324
348
|
"title": "Release flow",
|
|
@@ -333,7 +357,7 @@
|
|
|
333
357
|
"path": "docs/runtime-train-validation.md",
|
|
334
358
|
"plane": "verify",
|
|
335
359
|
"exists": true,
|
|
336
|
-
"digest": "sha256:
|
|
360
|
+
"digest": "sha256:7df1e85785a1bd8d87c22359d63bcd1caf3fc6c4924d04b6802584b189f75a08"
|
|
337
361
|
},
|
|
338
362
|
{
|
|
339
363
|
"id": "versioning",
|
|
@@ -341,7 +365,7 @@
|
|
|
341
365
|
"path": "docs/versioning.md",
|
|
342
366
|
"plane": "why",
|
|
343
367
|
"exists": true,
|
|
344
|
-
"digest": "sha256:
|
|
368
|
+
"digest": "sha256:a2fc36e62ac3adfa0dd499972f22cad22131ccc526e11e890e2cbdc4d3a31341"
|
|
345
369
|
},
|
|
346
370
|
{
|
|
347
371
|
"id": "web-surface-deployments",
|