@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
|
@@ -4,13 +4,14 @@
|
|
|
4
4
|
"baseline": "architecture/maintainability-baseline.json",
|
|
5
5
|
"enforcementRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
6
6
|
"repositoryBudgets": {
|
|
7
|
-
"baselineRevision": "
|
|
8
|
-
"maxHandMaintainedSourceFiles":
|
|
9
|
-
"maxHandMaintainedSourceLines":
|
|
10
|
-
"maxWorkflowFiles":
|
|
11
|
-
"maxWorkflowLines":
|
|
12
|
-
"latestTransition": "
|
|
13
|
-
"
|
|
7
|
+
"baselineRevision": "858dbe00b6206a8f356b4a12d2659bee7a72e71b",
|
|
8
|
+
"maxHandMaintainedSourceFiles": 427,
|
|
9
|
+
"maxHandMaintainedSourceLines": 159839,
|
|
10
|
+
"maxWorkflowFiles": 76,
|
|
11
|
+
"maxWorkflowLines": 26309,
|
|
12
|
+
"latestTransition": "Promotion certifies a floating v4 release candidate with the exact runtime sealed into its Passport instead of the independently selected workflow shell.",
|
|
13
|
+
"latestTransitionRationale": "The certifier now defaults to the checked-out candidate runtime and keeps the existing separate candidate-policy checkout only when the Passport runtime differs. This closes the same-runtime bootstrap mismatch without relaxing receipt, policy, scanner, caller, source, dual-lock, or runtime-root checks. The six source lines are one contract marker plus canonical formatting of already merged assertions; workflow size does not grow. These exact 427-file, 159839-source-line, 76-workflow-file and 26309-workflow-line ceilings add no unrelated headroom and grant no publication authority.",
|
|
14
|
+
"rationale": "Bounded modules separate candidate, evidence, native proof and execution, canonical failure verification, closed-set execution transfer, process-boundary verification, Warrant state and qualification, authority state, qualification, Landing acquisition, verified-attempt admission, Landing settlement and fence validation, provider attempt and heartbeat readback, sealed terminal evidence, hosted heartbeat, resume, store, options, command-specific adapters, and CLI orchestration responsibilities. The protected delivery workflow gives candidate and seal jobs no provider write credential, recursively rejects transfer drift, scopes every transfer artifact to the exact provider run attempt, chains every durable heartbeat state and receipt root on a distinct hosted runner domain, and permits qualification or exact failure settlement only after the finalizer verifies live jobs and the latest durable authority state. Public Landing admission and heartbeat always perform non-injectable fresh exact-attempt provider readback, tolerate only a not-yet-materialized seal job while retaining exact native and duplicate-job rejection, and heartbeat-loss coordination never invokes GitHub's run-scoped cancellation API where a successor rerun could race. The hosted process boundary anchors trust in the kernel-resolved versioned Runner.Worker path while accepting an equivalent argv-zero spelling with the same basename; its public boundary marker is allowed only at the one exact non-secret value, so a forged value under the same credential-like name still fails closed. The credentialless transfer seal validates the rooted native reuse decision against the Warrant-bound source, closure, dependency, toolchain, environment and command inputs; qualifiedBase stays in the proof and decision where it is rooted and later independently rechecked, rather than being assumed on the Warrant schema. V2 mutation cannot initialize a second empty authority beside a legacy ref: migration reads and roots the canonical live v1 ref, rechecks it, applies the explicit configured v2 policy, and atomically replaces its bytes through one expected-old non-force update, so old v1 controllers fail closed while the prior commit remains immutable history. Candidate ancestry classifies the GitHub artifact runtime token as credential authority. Every Landing settlement, including an unexpired fence, requires product-owned terminal readback. Terminal cleanup reads the immutable historical attempt, derives workflow and hosted Landing job identity from live run data, reads the exact protected ref head and compares containment against that immutable SHA, and seals merged only when the admitted merge-group head is contained by that protected base; a later different-head merge settles the old attempt as dequeued. Terminal normalization preserves transfer, finalizer boundary, native and seal job, admitted provider attempt, protected-base head, containment result, and terminal readback coordinates. The public reusable workflow truthfully retains its single-flight v1 authority without advertising v2 migration, while bounded v2 remains a separate opt-in CLI, Node API, and schema contract; the tracked self-caller stays on public v4-alpha with matching stable and alpha locks, and transient train selection is dispatch-only. Next-development parity adds one versioned transition authority, one durable controller, one bounded reservation adapter, and pure public-contract recovery evidence while retaining the existing thin floating-channel callers byte-for-byte. The floating-consumer gate reuses the existing contract-world evaluator so SHA drift passes only under the selected lock's compatibility policy, breaking surface drift still fails closed, and external certification reconstructs the receipt from the observed workflow SHA rather than the lock's historical evidence SHA. Tail reseal adds no Stage Capsule effect or general rebuild authority: it verifies the exact retained four-platform bytes, admits one known macOS tail failure through live provider readback, fences signing and finalization to explicit credentials and Warrant identity, and requires standard candidate Passport plus provider and protected readback. Compatibility Facts parity isolates canonical encoding, temporal verification, lifecycle validation, fixture projection, public authority projection, and CLI adaptation into bounded modules; legacy digest and proof arrays are derived only from exact current Fact lineage. Publication Rehearsal adds no production release authority: the content-addressed capsule contract binds source, candidate, manifest, config, canonical data-only provider bindings, provider policy, observations and core version separately from filesystem, runtime and rehearsal-only provider authority; simulate, replay and explicitly authorized provider rehearsal all reuse the release-tail planner, while same-commit local dogfood resolves the new reusable contract and exact current runtime before external callers remain on floating v4-alpha. Cross-runtime candidate recovery preserves original runtime and provider roots and creates resume lineage only after exact public ref, tag, ancestry, npm version and integrity readback. Adopter Delivery restores the reviewed public v3 gate, drivers, Passport binding, N-1 bootstrap and exact archive loader through one public v4 surface while keeping provider and release authority explicit non-claims. Floating Alpha bootstrap uses only the existing exact resolver and protected Alpha private shell to move an otherwise stale floating shell, retains public v4 stable promotion, and removes itself after protected readback. CI lane change-budget enforcement adds a bounded parser, evaluator, guard, and tests without creating another merge authority."
|
|
14
15
|
},
|
|
15
16
|
"sourceBudgets": {
|
|
16
17
|
"newFileLines": 600,
|
|
@@ -19,6 +20,30 @@
|
|
|
19
20
|
"existingDebtPolicy": "no-widening"
|
|
20
21
|
},
|
|
21
22
|
"approvedNewFileTransitions": {
|
|
23
|
+
"packages/core/next-development-transition.js": {
|
|
24
|
+
"maxLines": 738,
|
|
25
|
+
"rationale": "The single versioned authority keeps completed-Alpha identity, legal successor models, role-separated adapter bounds, materialization roots, compare-and-swap transitions and deterministic replay validation together. Anchored and manual initial state persists as waiting-anchor after reviewed input and exposes rooted anchor binding plus controller materialization recording; this exact reviewed ceiling cannot grow implicitly."
|
|
26
|
+
},
|
|
27
|
+
"packages/core/next-development-controller.js": {
|
|
28
|
+
"maxLines": 728,
|
|
29
|
+
"rationale": "The durable controller keeps atomic child identity, rooted checkpoints, idempotent materialization operations, latest protected Dev revalidation, PR settlement and exact source and derived root readback in one provider-neutral authority. It exposes no Alpha publication effect and resumes only through injected atomic store and executor boundaries; this exact reviewed ceiling cannot grow implicitly."
|
|
30
|
+
},
|
|
31
|
+
"actions/promote-buildchain-ref/internal/promote-alpha-channel.js": {
|
|
32
|
+
"maxLines": 599,
|
|
33
|
+
"rationale": "The extracted Alpha promotion stage replaces the former non-fast-forward skip with the existing exact-current-Dev regeneration contract, protected PR fallback, and fail-closed workspace binding; this exact reviewed ceiling cannot grow implicitly."
|
|
34
|
+
},
|
|
35
|
+
"scripts/dev-delivery-source-proof-reuse.mjs": {
|
|
36
|
+
"maxLines": 631,
|
|
37
|
+
"rationale": "The bounded source-proof driver seals one exact PR qualification and delegates merge-group graph verification to the isolated exact-patch replay module. Unknown, nonlinear, extra-commit, patch-drift or base-divergent compositions still fail closed to the full lifecycle, and this exact file ceiling cannot grow implicitly."
|
|
38
|
+
},
|
|
39
|
+
"scripts/dev-pr-prequeue-guard.mjs": {
|
|
40
|
+
"maxLines": 399,
|
|
41
|
+
"rationale": "The bounded guard keeps latest-base delta attribution, rooted source-proof reuse classification, synthetic merge composition readback, stable pre-enqueue failures, and the final base, head, queue, and Warrant compare-and-swap outside the legacy Dev PR controller; it cannot mutate the frozen source head or authorize landing by itself, and this exact file ceiling cannot grow implicitly."
|
|
42
|
+
},
|
|
43
|
+
"scripts/dev-delivery-authority.mjs": {
|
|
44
|
+
"maxLines": 635,
|
|
45
|
+
"rationale": "The explicit authority CLI keeps plan-only and execute transitions, provider-attempt coordinates, expected-old durable state writes, terminal provider readback, and machine-readable output in one compatibility entrypoint while the state-machine implementations remain extracted; this exact file ceiling cannot grow implicitly."
|
|
46
|
+
},
|
|
22
47
|
"scripts/v4-architecture.mjs": {
|
|
23
48
|
"maxLines": 610,
|
|
24
49
|
"rationale": "The v4 architecture validator adds only the bounded production-authority, fallback, rollback, writer-runtime, and legacy-retirement checks required for the final release cutover. This exact reviewed ceiling cannot grow implicitly."
|
|
@@ -35,6 +60,14 @@
|
|
|
35
60
|
"maxLines": 605,
|
|
36
61
|
"rationale": "The v4 parity port preserves the reviewed v3 release-blocker claim handoff, root-preserving candidate refresh, deterministic queued ranking and receipt propagation while retaining all prior fencing, lease and terminal semantics; this exact reviewed ceiling cannot grow implicitly."
|
|
37
62
|
},
|
|
63
|
+
"packages/core/dev-delivery-authority-landing.js": {
|
|
64
|
+
"maxLines": 615,
|
|
65
|
+
"rationale": "The bounded Landing authority module keeps exclusive acquisition, fenced heartbeat, exact merge-group provider-attempt admission, independent expired-provider readback, terminal settlement, and deterministic wake transitions in one audited state-machine seam; this exact file ceiling cannot grow implicitly."
|
|
66
|
+
},
|
|
67
|
+
"packages/core/dev-delivery-landing-admission-core.js": {
|
|
68
|
+
"maxLines": 119,
|
|
69
|
+
"rationale": "The internal transition persists only a provider attempt already derived by the public live GitHub readback boundary, keeping caller-supplied evidence outside the package export graph while preserving deterministic duplicate admission; this exact file ceiling cannot grow implicitly."
|
|
70
|
+
},
|
|
38
71
|
"packages/core/release-blocker-priority.js": {
|
|
39
72
|
"maxLines": 193,
|
|
40
73
|
"rationale": "The v4 parity adapter preserves the reviewed v3 exact dual-landing priority claim, repair-contract parsing and unrelated-work rejection outside the durable Warrant state machine; this exact reviewed ceiling cannot grow implicitly."
|
|
@@ -56,12 +89,28 @@
|
|
|
56
89
|
"maxFunctionLines": 255,
|
|
57
90
|
"maxFunctionComplexity": 33,
|
|
58
91
|
"rationale": "The one versioned transaction authority keeps strict declaration normalization, deterministic effect planning, atomic checkpoints, rooted observations and receipts, and bounded recovery in one independently tested audit surface; this exact preview ceiling cannot grow implicitly."
|
|
92
|
+
},
|
|
93
|
+
"packages/core/v4-runtime-ref-resume-authority.js": {
|
|
94
|
+
"maxLines": 625,
|
|
95
|
+
"rationale": "The reviewed v4 authority keeps exact-runtime authorization, source and lock binding, fresh-attempt Stage Capsule reuse, floating-ref movement, final readback, and Passport lineage verification in one bounded public module; persistence scanning is separately owned and this exact ceiling cannot grow implicitly."
|
|
96
|
+
},
|
|
97
|
+
"packages/core/v4-runtime-selector-persistence.js": {
|
|
98
|
+
"maxLines": 228,
|
|
99
|
+
"rationale": "The isolated source scanner rejects persisted exact, train, authority, variable, secret, and environment selector authority while inventorying OIDC, IAM, and external authority metadata without reading credentials; this exact ceiling cannot grow implicitly."
|
|
100
|
+
},
|
|
101
|
+
"scripts/resume-from-candidate-run.mjs": {
|
|
102
|
+
"maxLines": 1125,
|
|
103
|
+
"rationale": "The candidate recovery adapter retains the existing artifact normalization and immutable recovery receipt boundary while adding fresh authorized cross-runtime Stage Capsule resume material, post-publication ref, tag, ancestry, and npm readback, and rooted Release Passport lineage. Its main orchestration remains below the default function length and complexity limits, and this exact file ceiling cannot grow implicitly."
|
|
59
104
|
}
|
|
60
105
|
},
|
|
61
106
|
"approvedExistingDebtTransitions": {
|
|
62
107
|
"packages/core/index.js": {
|
|
63
|
-
"maxLines":
|
|
64
|
-
"rationale": "The public facade
|
|
108
|
+
"maxLines": 704,
|
|
109
|
+
"rationale": "The public facade exposes the bounded CI lane change-budget contract beside the existing v4 governance APIs without adding a second implementation or merge authority; this exact post-integration ceiling cannot grow implicitly."
|
|
110
|
+
},
|
|
111
|
+
"actions/promote-buildchain-ref/index.js": {
|
|
112
|
+
"maxFunctionLines": 280,
|
|
113
|
+
"rationale": "The existing action entrypoint forwards the optional rooted v4 runtime-resume material and its trusted post-publication finalizer into the audited durable Passport operation. The exact readable four-line input widening cannot grow implicitly."
|
|
65
114
|
},
|
|
66
115
|
"actions/promote-buildchain-ref/lib.js": {
|
|
67
116
|
"maxLines": 6952,
|
|
@@ -72,18 +121,23 @@
|
|
|
72
121
|
"rationale": "The runtime entrypoint now binds every compatibility command and alias, including the upstream paper command, through the tested command registry; this exact post-integration wiring ceiling cannot grow implicitly."
|
|
73
122
|
},
|
|
74
123
|
"packages/core/release-passport.js": {
|
|
75
|
-
"maxLines":
|
|
76
|
-
"
|
|
124
|
+
"maxLines": 2985,
|
|
125
|
+
"maxFunctionLines": 304,
|
|
126
|
+
"rationale": "Responsibility-owned validators preserve issue ordering, byte-stable reports, upstream release evidence, consumer-policy certification, and rooted runtime A+B resume lineage. Tree-equivalent promotion keeps the original built source identity while the optional attachment is normalized and independently reverified before inclusion; these exact post-integration ceilings cannot grow implicitly."
|
|
77
127
|
},
|
|
78
128
|
"packages/core/buildchain-contract.js": {
|
|
79
|
-
"maxLines":
|
|
129
|
+
"maxLines": 1096,
|
|
80
130
|
"maxFunctionLines": 681,
|
|
81
131
|
"maxFunctionComplexity": 30,
|
|
82
|
-
"rationale": "The existing v4 contract evaluator invokes the shared shell-runtime-lock binding before every compatibility or early-success path while preserving the prior contract-world, Release Train, and drift behavior. Its public
|
|
132
|
+
"rationale": "The existing v4 contract evaluator invokes the shared shell-runtime-lock binding before every compatibility or early-success path while preserving the prior contract-world, Release Train, and drift behavior. Its public projection now includes the bounded dev-delivery workflow surface and declares the optional expected lane inputs consumed by the unchanged evaluator. This exact public-contract wiring ceiling cannot grow implicitly."
|
|
83
133
|
},
|
|
84
134
|
"packages/core/github-governance-authority.js": {
|
|
85
|
-
"maxLines":
|
|
86
|
-
"rationale": "The publication authority
|
|
135
|
+
"maxLines": 1369,
|
|
136
|
+
"rationale": "The publication authority declares the alpha/v4/v4.0 and release/v4/v4.0 protected channels and the dispatch-only Alpha recovery workflow as protected authority. This exact reviewed ceiling cannot grow implicitly."
|
|
137
|
+
},
|
|
138
|
+
"packages/core/buildchain-config.js": {
|
|
139
|
+
"maxLines": 1885,
|
|
140
|
+
"rationale": "Artifact signing configuration admits only the Buildchain-owned JIT profile with exact safe archive-relative target paths while rejecting credentials, entitlement files, wildcard paths, incompatible artifact kinds, and incomplete declarations. Publication rehearsal remains effect-disabled. Adopter delivery adds only a closed public contract, exact selectors and repository-relative input, readback, bootstrap, archive and result paths; this exact wiring ceiling cannot grow implicitly."
|
|
87
141
|
},
|
|
88
142
|
"scripts/check-internal-architecture.mjs": {
|
|
89
143
|
"maxFunctionComplexity": 37,
|
|
@@ -94,8 +148,8 @@
|
|
|
94
148
|
"rationale": "The new-file budget evaluator recognizes only explicit path-scoped transitions with exact ceilings and mandatory rationales; the default budget and every existing no-widening check remain unchanged."
|
|
95
149
|
},
|
|
96
150
|
"scripts/check-inventory.mjs": {
|
|
97
|
-
"maxLines":
|
|
98
|
-
"rationale": "Inventory retains the recovery
|
|
151
|
+
"maxLines": 1497,
|
|
152
|
+
"rationale": "Inventory retains the complete recovery and publication authority set and additionally requires both bounded next-development self-dogfood command and harness files beside the contract, controller, schemas, fixtures, adapter, generated guidance and public documentation; this exact post-integration ceiling cannot grow implicitly."
|
|
99
153
|
},
|
|
100
154
|
"scripts/generate-channel-promotion-workflow.mjs": {
|
|
101
155
|
"maxFunctionLines": 290,
|
|
@@ -112,8 +166,8 @@
|
|
|
112
166
|
"rationale": "The existing Gate validator admits an explicit bounded long-form duration class while preserving the standard 60-second default and exact capture-to-scene binding; this exact post-integration ceiling cannot grow implicitly."
|
|
113
167
|
},
|
|
114
168
|
"scripts/dev-alpha-candidate-patrol.mjs": {
|
|
115
|
-
"maxLines":
|
|
116
|
-
"rationale": "The existing single-flight exact-source Alpha controller
|
|
169
|
+
"maxLines": 1197,
|
|
170
|
+
"rationale": "The existing single-flight exact-source Alpha controller delegates next-development reservation validation to the bounded core reader, carries the rooted result into selection, and retains the no-publication boundary; this exact ceiling cannot grow implicitly."
|
|
117
171
|
},
|
|
118
172
|
"scripts/build-contract-core.mjs": {
|
|
119
173
|
"maxLines": 1229,
|
|
@@ -136,6 +190,44 @@
|
|
|
136
190
|
}
|
|
137
191
|
},
|
|
138
192
|
"approvedPublicSurfaceTransitions": {
|
|
193
|
+
"workflow:check": {
|
|
194
|
+
"fromRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
195
|
+
"contract": {
|
|
196
|
+
"id": "check",
|
|
197
|
+
"path": ".github/workflows/check.yml",
|
|
198
|
+
"reusable": true,
|
|
199
|
+
"inputs": [
|
|
200
|
+
"buildchain-ref",
|
|
201
|
+
"buildchain-repository",
|
|
202
|
+
"mode",
|
|
203
|
+
"node-version",
|
|
204
|
+
"require-version-state",
|
|
205
|
+
"source-proof-closure-paths-json",
|
|
206
|
+
"source-proof-dependency-paths-json",
|
|
207
|
+
"source-proof-policy-paths-json",
|
|
208
|
+
"source-proof-required-contexts-json",
|
|
209
|
+
"source-proof-reuse",
|
|
210
|
+
"upload-artifacts",
|
|
211
|
+
"working-directory"
|
|
212
|
+
],
|
|
213
|
+
"secrets": [],
|
|
214
|
+
"outputs": [
|
|
215
|
+
"controller-plan-artifact",
|
|
216
|
+
"controller-plan-digest",
|
|
217
|
+
"controller-plan-json",
|
|
218
|
+
"controller-receipt-artifact",
|
|
219
|
+
"controller-receipt-digest",
|
|
220
|
+
"controller-receipt-json",
|
|
221
|
+
"controller-receipt-status",
|
|
222
|
+
"source-proof-decision-root",
|
|
223
|
+
"source-proof-producer-run-id",
|
|
224
|
+
"source-proof-reuse-reason",
|
|
225
|
+
"source-proof-reused",
|
|
226
|
+
"source-proof-root"
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
"rationale": "Add an opt-in merge-group fast path that accepts only an unexpired artifact from a successful same-workflow pull-request run and recomputes exact source, base, patch, runtime, plan, policy, closure, dependency, required-context, controller-receipt, and two-parent merge-group bindings. Existing callers remain on the full lifecycle by default, while any missing evidence, API failure, mismatch, grouped composition, or malformed proof also runs the full lifecycle."
|
|
230
|
+
},
|
|
139
231
|
"action:promote-buildchain-ref": {
|
|
140
232
|
"fromRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
141
233
|
"contract": {
|
|
@@ -210,6 +302,10 @@
|
|
|
210
302
|
"release-passport-platform-manifest-paths",
|
|
211
303
|
"release-passport-product-name",
|
|
212
304
|
"release-passport-promotion-routing-json",
|
|
305
|
+
"release-passport-v4-consumer-policy-certification-json",
|
|
306
|
+
"release-passport-v4-consumer-policy-certification-root",
|
|
307
|
+
"release-passport-v4-runtime-resume-evidence-command",
|
|
308
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
213
309
|
"release-tail-state-path",
|
|
214
310
|
"require-governance",
|
|
215
311
|
"require-publication-qualification",
|
|
@@ -226,7 +322,7 @@
|
|
|
226
322
|
"secrets": [],
|
|
227
323
|
"outputs": []
|
|
228
324
|
},
|
|
229
|
-
"rationale": "The promote action
|
|
325
|
+
"rationale": "The promote action preserves the independently rooted v4 consumer-policy certification and accepts one optional verified runtime-resume evidence document plus one trusted post-publication finalizer command. The command runs only inside the existing durable Passport finalization boundary after provider effects and public readback; v3 behavior remains unchanged."
|
|
230
326
|
},
|
|
231
327
|
"cli:architecture": {
|
|
232
328
|
"fromRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
@@ -339,6 +435,7 @@
|
|
|
339
435
|
"path": ".github/workflows/dev-pr-auto-merge.yml",
|
|
340
436
|
"reusable": true,
|
|
341
437
|
"inputs": [
|
|
438
|
+
"active-lease-context",
|
|
342
439
|
"affected-paths-json",
|
|
343
440
|
"allowed-head-prefixes",
|
|
344
441
|
"assignment-root",
|
|
@@ -352,22 +449,32 @@
|
|
|
352
449
|
"dependency-root",
|
|
353
450
|
"diagnostic-context",
|
|
354
451
|
"dry-run",
|
|
452
|
+
"environment-root",
|
|
355
453
|
"expected-head-sha",
|
|
356
454
|
"expected-pr-number",
|
|
455
|
+
"handoff-workflow-id",
|
|
357
456
|
"initiative-root",
|
|
358
457
|
"landing-mode",
|
|
458
|
+
"legacy-active-owner-binding-json",
|
|
359
459
|
"max-merges",
|
|
360
460
|
"merge-method",
|
|
461
|
+
"native-command",
|
|
462
|
+
"native-command-root",
|
|
463
|
+
"native-heartbeat-seconds",
|
|
464
|
+
"native-proof-json",
|
|
361
465
|
"plan-root",
|
|
362
466
|
"project-cut-proof-json",
|
|
363
467
|
"queue-admission-context",
|
|
364
468
|
"ready-label",
|
|
469
|
+
"release-blocker-priority-json",
|
|
365
470
|
"require-approval",
|
|
366
471
|
"required-status-checks",
|
|
367
472
|
"same-repository-only",
|
|
368
473
|
"shard-evidence-roots-json",
|
|
369
474
|
"source-identity-root",
|
|
370
475
|
"source-patch-root",
|
|
476
|
+
"source-workflow-id",
|
|
477
|
+
"source-workflow-run-id",
|
|
371
478
|
"target-branch",
|
|
372
479
|
"toolchain-root",
|
|
373
480
|
"warrant-lease-seconds"
|
|
@@ -381,7 +488,13 @@
|
|
|
381
488
|
"evaluated-count",
|
|
382
489
|
"final-base-sha",
|
|
383
490
|
"merged-count",
|
|
491
|
+
"native-execution-transfer-root",
|
|
492
|
+
"native-proof-root",
|
|
493
|
+
"native-reuse-decision-root",
|
|
384
494
|
"project-cut-proof-root",
|
|
495
|
+
"provider-finalizer-boundary-root",
|
|
496
|
+
"provider-heartbeat-receipt-root",
|
|
497
|
+
"qualified-warrant-receipt-root",
|
|
385
498
|
"skipped-count",
|
|
386
499
|
"source-proof-root",
|
|
387
500
|
"warrant-receipt-root",
|
|
@@ -389,7 +502,7 @@
|
|
|
389
502
|
"warrant-state-root"
|
|
390
503
|
]
|
|
391
504
|
},
|
|
392
|
-
"rationale": "
|
|
505
|
+
"rationale": "Add required-mode two-phase native qualification under one provisional fence, exact environment and heartbeat receipt binding, deterministic proof reuse, qualified-Warrant readback, and bounded successor handoff. The execution-transfer and provider-finalizer boundary outputs expose the exact content root and live distinct-job runner readback without exposing credential bytes. The additive legacy-active-owner binding carries exact phase-less state, fence, and generation without requiring a native command contract. Existing off and shadow modes remain explicit, and GitHub merge_group plus the exact Project Cut remain final landing authority."
|
|
393
506
|
},
|
|
394
507
|
"workflow:stable-candidate-patrol": {
|
|
395
508
|
"fromRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
@@ -435,6 +548,59 @@
|
|
|
435
548
|
},
|
|
436
549
|
"rationale": "The existing release-propagation command adds one policy-reporting Site upstream entry and exact non-force Work branch executor while preserving plan, lock, pickup, and Work Control compatibility."
|
|
437
550
|
},
|
|
551
|
+
"workflow:publication-artifact": {
|
|
552
|
+
"fromRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
553
|
+
"contract": {
|
|
554
|
+
"id": "publication-artifact",
|
|
555
|
+
"path": ".github/workflows/publication-artifact.yml",
|
|
556
|
+
"reusable": true,
|
|
557
|
+
"inputs": [
|
|
558
|
+
"artifact-name",
|
|
559
|
+
"artifact-paths",
|
|
560
|
+
"artifact-retention-days",
|
|
561
|
+
"build-command",
|
|
562
|
+
"buildchain-alpha-contract-lock-path",
|
|
563
|
+
"buildchain-contract-compatibility-policy",
|
|
564
|
+
"buildchain-contract-drift-issue-mode",
|
|
565
|
+
"buildchain-contract-lock-path",
|
|
566
|
+
"buildchain-ref",
|
|
567
|
+
"buildchain-repository",
|
|
568
|
+
"buildchain-stable-contract-lock-path",
|
|
569
|
+
"node-version",
|
|
570
|
+
"package-name",
|
|
571
|
+
"prepare-paper-package",
|
|
572
|
+
"publish-dist-tag",
|
|
573
|
+
"setup-node",
|
|
574
|
+
"target-ref",
|
|
575
|
+
"toolchain-command",
|
|
576
|
+
"toolchain-digest",
|
|
577
|
+
"toolchain-image",
|
|
578
|
+
"toolchain-type",
|
|
579
|
+
"verify-command",
|
|
580
|
+
"working-directory"
|
|
581
|
+
],
|
|
582
|
+
"secrets": [],
|
|
583
|
+
"outputs": [
|
|
584
|
+
"controller-plan-artifact",
|
|
585
|
+
"controller-plan-digest",
|
|
586
|
+
"controller-plan-json",
|
|
587
|
+
"controller-receipt-artifact",
|
|
588
|
+
"controller-receipt-digest",
|
|
589
|
+
"controller-receipt-json",
|
|
590
|
+
"controller-receipt-status",
|
|
591
|
+
"package-name",
|
|
592
|
+
"package-version",
|
|
593
|
+
"publication-artifact-name",
|
|
594
|
+
"publication-manifest-json",
|
|
595
|
+
"publication-manifest-path",
|
|
596
|
+
"publication-passport-path",
|
|
597
|
+
"publication-registry-path",
|
|
598
|
+
"publish-dist-tag",
|
|
599
|
+
"runtime-sha"
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
"rationale": "The publication workflow adds consumer-owned stable and alpha lock inputs so its earliest semantic v4 admission gate can bind the persisted floating selector before controller or package execution; its outputs and v3 behavior remain unchanged."
|
|
603
|
+
},
|
|
438
604
|
"workflow:.build": {
|
|
439
605
|
"fromRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
440
606
|
"contract": {
|
|
@@ -469,6 +635,7 @@
|
|
|
469
635
|
"buildchain-expected-major",
|
|
470
636
|
"buildchain-ref",
|
|
471
637
|
"buildchain-repository",
|
|
638
|
+
"buildchain-visible-workflow",
|
|
472
639
|
"cache-dependency-lock-root",
|
|
473
640
|
"cache-policy-root",
|
|
474
641
|
"cache-toolchain-root",
|
|
@@ -587,10 +754,12 @@
|
|
|
587
754
|
"release-manifest-json",
|
|
588
755
|
"runner-preset",
|
|
589
756
|
"runner-routing-json",
|
|
590
|
-
"trusted-event"
|
|
757
|
+
"trusted-event",
|
|
758
|
+
"v4-consumer-policy-receipt-json",
|
|
759
|
+
"v4-consumer-policy-receipt-root"
|
|
591
760
|
]
|
|
592
761
|
},
|
|
593
|
-
"rationale": "The reusable build surface
|
|
762
|
+
"rationale": "The reusable build surface carries one internal visible-workflow coordinate into the earliest semantic v4 consumer admission gate and emits the source/runtime/dual-lock-bound receipt; build, install, and release authority remain downstream of that gate."
|
|
594
763
|
},
|
|
595
764
|
"workflow:build": {
|
|
596
765
|
"fromRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
@@ -629,6 +798,7 @@
|
|
|
629
798
|
"buildchain-ref",
|
|
630
799
|
"buildchain-repository",
|
|
631
800
|
"buildchain-stable-contract-lock-path",
|
|
801
|
+
"buildchain-visible-workflow",
|
|
632
802
|
"cache-dependency-lock-root",
|
|
633
803
|
"cache-policy-root",
|
|
634
804
|
"cache-toolchain-root",
|
|
@@ -750,10 +920,12 @@
|
|
|
750
920
|
"release-manifest-json",
|
|
751
921
|
"runner-preset",
|
|
752
922
|
"runner-routing-json",
|
|
753
|
-
"trusted-event"
|
|
923
|
+
"trusted-event",
|
|
924
|
+
"v4-consumer-policy-receipt-json",
|
|
925
|
+
"v4-consumer-policy-receipt-root"
|
|
754
926
|
]
|
|
755
927
|
},
|
|
756
|
-
"rationale": "The generated channel router forwards the
|
|
928
|
+
"rationale": "The generated channel router forwards the visible-workflow coordinate and semantic v4 policy receipt while retaining floating v4 or v4-alpha selectors, dual consumer locks, and trusted nonpersistent runtime override routing."
|
|
757
929
|
},
|
|
758
930
|
|
|
759
931
|
"workflow:paper-release-sealed": {
|
|
@@ -927,6 +1099,7 @@
|
|
|
927
1099
|
"branch-protection-bypass-apps",
|
|
928
1100
|
"branch-protection-bypass-teams",
|
|
929
1101
|
"branch-protection-bypass-users",
|
|
1102
|
+
"buildchain-alpha-contract-lock-path",
|
|
930
1103
|
"buildchain-contract-compatibility-policy",
|
|
931
1104
|
"buildchain-contract-drift-issue-mode",
|
|
932
1105
|
"buildchain-contract-lock-path",
|
|
@@ -934,6 +1107,7 @@
|
|
|
934
1107
|
"buildchain-expected-major",
|
|
935
1108
|
"buildchain-ref",
|
|
936
1109
|
"buildchain-repository",
|
|
1110
|
+
"buildchain-stable-contract-lock-path",
|
|
937
1111
|
"channel",
|
|
938
1112
|
"declarative-release-tail",
|
|
939
1113
|
"dry-run",
|
|
@@ -952,6 +1126,8 @@
|
|
|
952
1126
|
"promotion-publication-channel",
|
|
953
1127
|
"promotion-router-ref",
|
|
954
1128
|
"promotion-router-sha",
|
|
1129
|
+
"promotion-runtime-authorization-json",
|
|
1130
|
+
"promotion-runtime-authorization-root",
|
|
955
1131
|
"promotion-runtime-ref",
|
|
956
1132
|
"promotion-runtime-sha",
|
|
957
1133
|
"promotion-shell-ref",
|
|
@@ -1017,6 +1193,7 @@
|
|
|
1017
1193
|
"release-passport-output-dir",
|
|
1018
1194
|
"release-passport-platform-manifest-paths",
|
|
1019
1195
|
"release-passport-product-name",
|
|
1196
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
1020
1197
|
"release-propagation-config-path",
|
|
1021
1198
|
"required-artifact-count",
|
|
1022
1199
|
"required-status-check",
|
|
@@ -1078,7 +1255,7 @@
|
|
|
1078
1255
|
"release-tail-transaction-state"
|
|
1079
1256
|
]
|
|
1080
1257
|
},
|
|
1081
|
-
"rationale": "The advanced promotion workflow preserves
|
|
1258
|
+
"rationale": "The advanced promotion workflow preserves exact contract-lock and channel bindings while adding a trusted transient runtime authorization plus expected root and an optional final Passport resume attachment. Candidate, target tree, policy, scanner, dual-lock, provider and fresh-attempt lineage remain independently bound, and incomplete or mismatched evidence fails closed before heavy work."
|
|
1082
1259
|
},
|
|
1083
1260
|
"workflow:release-candidate-promote": {
|
|
1084
1261
|
"fromRevision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
@@ -1172,6 +1349,7 @@
|
|
|
1172
1349
|
"release-passport-output-dir",
|
|
1173
1350
|
"release-passport-platform-manifest-paths",
|
|
1174
1351
|
"release-passport-product-name",
|
|
1352
|
+
"release-passport-v4-runtime-resume-evidence-json",
|
|
1175
1353
|
"release-propagation-config-path",
|
|
1176
1354
|
"required-artifact-count",
|
|
1177
1355
|
"required-status-check",
|
|
@@ -1245,10 +1423,49 @@
|
|
|
1245
1423
|
"release-tail-transaction-state"
|
|
1246
1424
|
]
|
|
1247
1425
|
},
|
|
1248
|
-
"rationale": "The generated v4 promotion router
|
|
1426
|
+
"rationale": "The generated v4 promotion router preserves the opt-in declarative release-tail contract and exact contract-lock routing while forwarding one optional verified runtime-resume attachment through both existing channel jobs without changing default legacy publication behavior."
|
|
1249
1427
|
}
|
|
1250
1428
|
},
|
|
1251
1429
|
"approvedExtractedDebt": {
|
|
1430
|
+
"packages/core/dev-delivery-authority-candidate.js#normalizeDevDeliveryAuthorityCandidate": {
|
|
1431
|
+
"maxLines": 150,
|
|
1432
|
+
"maxComplexity": 26,
|
|
1433
|
+
"rationale": "The extracted candidate normalizer keeps exact identity, source, proof, Warrant, lease, native-command, priority, and terminal-state validation in one fail-closed audit surface; this exact bounded complexity cannot grow implicitly."
|
|
1434
|
+
},
|
|
1435
|
+
"packages/core/dev-delivery-native-proof.js#validateActiveDevDeliveryWarrant": {
|
|
1436
|
+
"maxLines": 95,
|
|
1437
|
+
"maxComplexity": 29,
|
|
1438
|
+
"rationale": "The extracted active-Warrant validator preserves exact repository, branch, candidate, source, environment, fence, generation, lease, command, and qualification invariants in one auditable proof boundary; this exact bounded complexity cannot grow implicitly."
|
|
1439
|
+
},
|
|
1440
|
+
"packages/core/dev-delivery-execution-transfer.js#verifyNativeExecutionTransfer": {
|
|
1441
|
+
"maxComplexity": 36,
|
|
1442
|
+
"rationale": "The transfer verifier keeps the closed success and failure manifests, normalized job and Warrant bindings, byte digests, proof declarations, and failed-settlement fence in one exact artifact boundary; this reviewed complexity ceiling cannot grow implicitly."
|
|
1443
|
+
},
|
|
1444
|
+
"packages/core/dev-delivery-process-boundary.js#createProviderFinalizerBoundary": {
|
|
1445
|
+
"maxLines": 191,
|
|
1446
|
+
"maxComplexity": 33,
|
|
1447
|
+
"rationale": "The provider boundary verifier keeps distinct job and runner identity, hosted labels, strict timestamps, live PR and protected-ref readback, and the rooted finalizer receipt in one fail-closed audit surface; this reviewed complexity ceiling cannot grow implicitly."
|
|
1448
|
+
},
|
|
1449
|
+
"scripts/dev-delivery-authority.mjs#runDevDeliveryAuthorityCommand": {
|
|
1450
|
+
"maxLines": 151,
|
|
1451
|
+
"maxComplexity": 26,
|
|
1452
|
+
"rationale": "The authority command dispatcher keeps each explicit plan or execute mutation, exact expected-old state write, schema-safe output, and provider terminal-readback verifier injection in one audited command boundary; this exact complexity cannot grow implicitly."
|
|
1453
|
+
},
|
|
1454
|
+
"scripts/dev-delivery-authority.mjs#devDeliveryAuthorityCliOptions": {
|
|
1455
|
+
"maxLines": 220,
|
|
1456
|
+
"maxComplexity": 11,
|
|
1457
|
+
"rationale": "The authority CLI parser keeps the complete explicit flag-to-environment compatibility mapping, including exact provider run and job coordinates for independent expired-Landing readback, in one declarative function while execution remains separately owned; this exact extracted mapping ceiling cannot grow implicitly."
|
|
1458
|
+
},
|
|
1459
|
+
"scripts/dev-delivery-two-phase.mjs#runTwoPhaseDelivery": {
|
|
1460
|
+
"maxLines": 204,
|
|
1461
|
+
"maxComplexity": 35,
|
|
1462
|
+
"rationale": "The two-phase coordinator keeps provisional selection, credentialless native-only execution, post-exit credentialed proof reuse and qualification, heartbeat, landing handoff, and fail-closed cleanup under one fenced transaction; this exact bounded orchestration ceiling cannot grow implicitly."
|
|
1463
|
+
},
|
|
1464
|
+
"scripts/dev-delivery-warrant-options.mjs#devDeliveryCliOptions": {
|
|
1465
|
+
"maxLines": 257,
|
|
1466
|
+
"maxComplexity": 11,
|
|
1467
|
+
"rationale": "The extracted compatibility parser preserves the complete Warrant flag and environment mapping byte-for-byte while storage and command execution remain separately owned; this exact mapping ceiling cannot grow implicitly."
|
|
1468
|
+
},
|
|
1252
1469
|
"scripts/v4-warrant-shadow-plan.mjs#validatePlan": {
|
|
1253
1470
|
"maxLines": 182,
|
|
1254
1471
|
"maxComplexity": 26,
|
|
@@ -1295,9 +1512,9 @@
|
|
|
1295
1512
|
"rationale": "The existing version-state commit transaction remains nested under its extracted operation factory and is independently regression-tested; this exact inherited ceiling cannot grow."
|
|
1296
1513
|
},
|
|
1297
1514
|
"actions/promote-buildchain-ref/internal/durable-transaction-operations.js#createDurableTransactionOperations": {
|
|
1298
|
-
"maxLines":
|
|
1515
|
+
"maxLines": 378,
|
|
1299
1516
|
"maxComplexity": 1,
|
|
1300
|
-
"rationale": "Transplanted legacy durable transaction and Passport operations
|
|
1517
|
+
"rationale": "Transplanted legacy durable transaction and Passport operations remain in one independently owned module. The exact two-line readable widening forwards rooted runtime-resume material and its post-publication finalizer without accepting a transient rebuilt candidate or inconsistent per-field overrides; this ceiling cannot grow implicitly."
|
|
1301
1518
|
},
|
|
1302
1519
|
"packages/core/paper-npm-bootstrap.js#executePaperNpmBootstrap": {
|
|
1303
1520
|
"maxLines": 490,
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"release-passport-evidence-command",
|
|
42
42
|
"release-passport-invariant-passport-command",
|
|
43
43
|
"release-passport-kfd-3-artifact-verify-command",
|
|
44
|
+
"release-passport-v4-runtime-resume-evidence-command",
|
|
44
45
|
"verification-command"
|
|
45
46
|
],
|
|
46
47
|
"configAndCliAliases": [
|
|
@@ -286,7 +287,8 @@
|
|
|
286
287
|
"publicNames": [
|
|
287
288
|
"release-passport-kfd-3-artifact-verify-command",
|
|
288
289
|
"release-passport-invariant-passport-command",
|
|
289
|
-
"release-passport-attachment-command"
|
|
290
|
+
"release-passport-attachment-command",
|
|
291
|
+
"release-passport-v4-runtime-resume-evidence-command"
|
|
290
292
|
],
|
|
291
293
|
"aliases": [
|
|
292
294
|
{
|
|
@@ -306,7 +308,8 @@
|
|
|
306
308
|
"action:actions/promote-buildchain-ref/action.yml#release-passport-kfd-3-artifact-verify-command",
|
|
307
309
|
"action:actions/promote-buildchain-ref/action.yml#release-passport-invariant-passport-command",
|
|
308
310
|
"action:actions/promote-buildchain-ref/action.yml#release-passport-attachment-command",
|
|
309
|
-
"action:actions/promote-buildchain-ref/action.yml#release-passport-evidence-command"
|
|
311
|
+
"action:actions/promote-buildchain-ref/action.yml#release-passport-evidence-command",
|
|
312
|
+
"action:actions/promote-buildchain-ref/action.yml#release-passport-v4-runtime-resume-evidence-command"
|
|
310
313
|
],
|
|
311
314
|
"executionSites": [
|
|
312
315
|
{
|