@kungfu-tech/buildchain 3.0.9-alpha.8 → 4.0.0-alpha.0
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 +39 -0
- package/README.md +17 -13
- package/actions/promote-buildchain-ref/README.md +0 -10
- package/actions/release-tail/README.md +6 -10
- package/architecture/internal-capabilities.json +502 -0
- package/architecture/maintainability-baseline.json +59 -0
- package/architecture/maintainability-policy.json +1384 -0
- package/architecture/release-tail-contract-inventory.json +587 -0
- package/architecture/v3-core-mechanism-inventory.json +1043 -0
- package/architecture/v3-core-mechanism-inventory.md +67 -0
- package/architecture/v4-adopter-delivery-parity.json +47 -0
- package/architecture/v4-architecture-constitution.md +210 -0
- package/architecture/v4-bootstrap-authority.json +56 -0
- package/architecture/v4-canonical-contract-fixtures.json +105 -0
- package/architecture/v4-capability-state-machine-manifest.json +480 -0
- package/architecture/v4-capability-state-machine-manifest.schema.json +202 -0
- package/architecture/v4-delivery-warrant-shadow-bootstrap-plan.json +830 -0
- package/architecture/v4-delivery-warrant-shadow-bootstrap-plan.md +223 -0
- package/architecture/v4-delivery-warrant-shadow-bootstrap-plan.schema.json +318 -0
- package/architecture/v4-delivery-warrant-shadow-fixtures.json +227 -0
- package/architecture/v4-delivery-warrant-shadow-fixtures.schema.json +67 -0
- package/architecture/v4-exception-ledger.json +5 -0
- package/architecture/v4-exception-ledger.schema.json +56 -0
- package/architecture/v4-partial-mutation-recovery-qualification.json +65 -0
- package/architecture/v4-platform-stage-checkpoints.json +97 -0
- package/architecture/v4-provider-operation-journal-contract.json +113 -0
- package/architecture/v4-release-activation-shadow-domain.json +61 -0
- package/architecture/v4-release-train-parity.json +68 -0
- package/architecture/v4-rust-libnode-bridge-evaluation.json +107 -0
- package/architecture/v4-rust-libnode-bridge-spike.md +85 -0
- package/architecture/v4-stable-publication-fence.json +66 -0
- package/architecture/v4-stage-capsule-contract.json +90 -0
- package/architecture/v4-stage-capsule-qualification.json +99 -0
- package/architecture/v4-stage-capsule-resume-planner.json +52 -0
- package/architecture/v4-stage-capsule-store-contract.json +72 -0
- package/bin/buildchain.mjs +15 -6
- package/contracts/auditable-demo-scenario-v1.schema.json +1 -1
- package/contracts/buildchain-v2-residuals-v1.json +2 -2
- package/contracts/fixtures/v4-delivery-warrant-trace-v1/golden.json +158 -0
- package/contracts/fixtures/v4-delivery-warrant-trace-v1/property.json +380 -0
- package/contracts/fixtures/v4-delivery-warrant-trace-v1/replay.json +163 -0
- package/contracts/fixtures/v4-partial-mutation-recovery-v1/shared.json +155 -0
- package/contracts/fixtures/v4-provider-operation-journal-v1/shared.json +457 -0
- package/contracts/fixtures/v4-provider-readback-idempotency-v1/shared.json +682 -0
- package/contracts/fixtures/v4-release-activation-shadow-v1/shared.json +53 -0
- package/contracts/fixtures/v4-stable-publication-fence-v1/shared.json +56 -0
- package/contracts/fixtures/v4-stage-capsule-resume-v1/late-platform-failure.json +176 -0
- package/contracts/fixtures/v4-stage-capsule-store-v1/shared.json +132 -0
- package/contracts/fixtures/v4-stage-capsule-v1/shared.json +111 -0
- package/contracts/v4-canonical-contracts-v1.schema.json +182 -0
- package/contracts/v4-delivery-warrant-semantic-diff-report-v1.schema.json +284 -0
- package/contracts/v4-delivery-warrant-trace-v1.schema.json +215 -0
- package/contracts/v4-host-contract-v1.schema.json +135 -0
- package/contracts/v4-partial-mutation-recovery-v1.schema.json +168 -0
- package/contracts/v4-provider-operation-journal-v1.schema.json +381 -0
- package/contracts/v4-release-activation-shadow-v1.schema.json +186 -0
- package/contracts/v4-stable-publication-fence-v1.schema.json +125 -0
- package/contracts/v4-stage-capsule-resume-v1.schema.json +225 -0
- package/contracts/v4-stage-capsule-store-v1.schema.json +154 -0
- package/contracts/v4-stage-capsule-v1.schema.json +178 -0
- package/crates/buildchain-v4-bridge/Cargo.lock +213 -0
- package/crates/buildchain-v4-bridge/Cargo.toml +12 -0
- package/crates/buildchain-v4-bridge/src/main.rs +495 -0
- package/dist/site/agent-index.json +0 -3
- package/dist/site/artifact-schemas.json +0 -6
- package/dist/site/buildchain-contract.json +103 -397
- package/dist/site/buildchain-site.json +302 -270
- package/dist/site/capability-registry.json +9 -11
- package/dist/site/cli-registry.json +8 -30
- package/dist/site/controller-registry.json +48 -8
- package/dist/site/kfd-claims.json +129 -142
- package/dist/site/kfd-upstream-aggregate.json +9 -9
- package/dist/site/manual-registry.json +18 -49
- package/dist/site/node-api-registry.json +1882 -4118
- package/dist/site/page-registry.json +278 -230
- package/dist/site/public-surface-audit.json +87 -185
- package/dist/site/publication-authority-registry.json +11 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +3 -7
- package/dist/site/schemas/kfd-support-projection-v1.schema.json +106 -0
- package/dist/site/site-manifest.json +22 -38
- package/dist/site/workflow-registry.json +80 -35
- package/docs/MAP.md +8 -4
- package/docs/auditable-demo.md +2 -2
- package/docs/aws-us-elastic-runner-burst-plane.md +7 -59
- package/docs/cli-reference.md +15 -92
- package/docs/cli.md +14 -14
- package/docs/dev-alpha-candidate-patrol.md +3 -11
- package/docs/dev-delivery-warrant.md +28 -100
- package/docs/engineering-housekeeper.md +12 -4
- package/docs/getting-started.md +1 -1
- package/docs/install.md +5 -5
- package/docs/kfd-support.md +2 -7
- package/docs/lifecycle-protocol.md +2 -4
- package/docs/node-api-reference.md +414 -523
- package/docs/release-flow.md +31 -31
- package/docs/release-governance.md +16 -28
- package/docs/release-passport.md +2 -15
- package/docs/release-tail-contract.md +13 -6
- package/docs/release-tail-provider-plane.md +13 -19
- package/docs/release-train.md +4 -4
- package/docs/reusable-build-surface.md +14 -27
- package/docs/site-bundle-contract.md +1 -5
- package/docs/stable-candidate-patrol.md +7 -7
- package/docs/v4-canonical-contracts.md +92 -0
- package/docs/v4-delivery-warrant-read-candidate.md +73 -0
- package/docs/v4-delivery-warrant-semantic-diff.md +75 -0
- package/docs/v4-production-release.md +63 -0
- package/docs/v4-stage-capsule.md +193 -0
- package/docs/versioning.md +3 -3
- package/package.json +19 -17
- package/packages/core/adopter-delivery-gate.js +576 -0
- package/packages/core/adopter-delivery-json.js +66 -0
- package/packages/core/artifact-signing.js +0 -61
- package/packages/core/artifact-verification-envelope.js +5 -5
- package/packages/core/build-facts.js +12 -4
- package/packages/core/buildchain-agent-manuals.js +0 -2
- package/packages/core/buildchain-config.js +4 -69
- package/packages/core/buildchain-contract.js +232 -46
- package/packages/core/buildchain-kfd-claims.js +1 -1
- package/packages/core/channel-candidate.js +0 -8
- package/packages/core/channel-promotion-baseline.js +0 -52
- package/packages/core/controller-evidence.js +3 -4
- package/packages/core/dev-alpha-candidate-selection.js +2 -10
- package/packages/core/dev-delivery-warrant-cancellation.js +0 -1
- package/packages/core/dev-delivery-warrant-settlement.js +1 -5
- package/packages/core/dev-delivery-warrant.js +12 -52
- package/packages/core/diagnostics.js +3 -8
- package/packages/core/github-governance-authority.js +3 -1
- package/packages/core/kfd-adopter-category-driver.js +167 -0
- package/packages/core/kfd-adopter-manifest.js +47 -46
- package/packages/core/kfd-gate.js +15 -45
- package/packages/core/paper-agent-entry.js +7 -16
- package/packages/core/paper-fleet.js +2 -2
- package/packages/core/paper-repository.js +2 -3
- package/packages/core/paper-scaffold-content.js +2 -23
- package/packages/core/paper.js +11 -43
- package/packages/core/publication-reproducibility.js +4 -4
- package/packages/core/release-line-bootstrap.js +21 -8
- package/packages/core/release-passport-contract.js +5 -5
- package/packages/core/release-passport.js +20 -131
- package/packages/core/self-dogfood-version.js +48 -35
- package/packages/core/spawn-command.js +232 -8
- package/packages/core/v4-adopter-delivery-parity.js +219 -0
- package/packages/core/v4-canonical-contracts.js +284 -0
- package/packages/core/v4-delivery-warrant-fixture-runner.js +371 -0
- package/packages/core/v4-delivery-warrant-read-candidate.js +279 -0
- package/packages/core/v4-delivery-warrant-semantic-diff-gate.js +352 -0
- package/packages/core/v4-delivery-warrant-shadow-adapter.js +447 -0
- package/packages/core/v4-partial-mutation-recovery-qualification.js +395 -0
- package/packages/core/v4-platform-stage-checkpoints.js +471 -0
- package/packages/core/v4-provider-operation-journal.js +531 -0
- package/packages/core/v4-provider-readback-idempotency.js +394 -0
- package/packages/core/v4-release-activation-shadow.js +519 -0
- package/packages/core/v4-stable-publication-fence.js +357 -0
- package/packages/core/v4-stage-capsule-local-store.js +426 -0
- package/packages/core/v4-stage-capsule-qualification-campaign.js +512 -0
- package/packages/core/v4-stage-capsule-qualification.js +456 -0
- package/packages/core/v4-stage-capsule-resume-planner.js +397 -0
- package/packages/core/v4-stage-capsule-store.js +401 -0
- package/packages/core/v4-stage-capsule.js +319 -0
- package/scripts/assemble-self-publication-admission.mjs +1 -1
- package/scripts/audit-publication-control-plane.mjs +5 -5
- package/scripts/auditable-demo-bundle-verification.mjs +3 -2
- package/scripts/auditable-demo-platform.mjs +2 -2
- package/scripts/auditable-demo-renditions.mjs +1 -1
- package/scripts/auditable-demo.mjs +2 -2
- package/scripts/aws-macos-jit-controller-core.mjs +13 -346
- package/scripts/aws-macos-jit-controller-runtime.mjs +2 -210
- package/scripts/aws-macos-jit-controller.mjs +37 -275
- package/scripts/aws-macos-jit-core.mjs +3 -41
- package/scripts/aws-macos-jit.mjs +0 -12
- package/scripts/aws-windows-jit-campaign.mjs +2 -2
- package/scripts/aws-windows-jit-controller-core.mjs +1 -1
- package/scripts/aws-windows-jit-controller.mjs +3 -3
- package/scripts/build-contract-core.mjs +3 -8
- package/scripts/build-standalone-binary.mjs +3 -14
- package/scripts/buildchain-channel-router.mjs +4 -0
- package/scripts/buildchain-cli-help.mjs +7 -13
- package/scripts/buildchain-contract-lock.mjs +0 -6
- package/scripts/check-action-bundles.mjs +3 -4
- package/scripts/check-internal-architecture.mjs +7 -6
- package/scripts/check-inventory.mjs +30 -25
- package/scripts/check-v4-public-dogfood-contract.mjs +270 -0
- package/scripts/create-release-bundle.mjs +8 -4
- package/scripts/dev-alpha-candidate-patrol.mjs +1 -22
- package/scripts/dev-delivery-proof.mjs +2 -54
- package/scripts/dev-delivery-warrant.mjs +59 -77
- package/scripts/dev-pr-auto-merge.mjs +4 -30
- package/scripts/dev-pr-delivery-warrant.mjs +0 -55
- package/scripts/dispatch-artifact-signing-authority.mjs +7 -4
- package/scripts/generate-buildchain-kfd-witnesses.mjs +94 -88
- package/scripts/generate-channel-build-workflow.mjs +54 -24
- package/scripts/generate-channel-promotion-workflow.mjs +15 -6
- package/scripts/generate-site-bundle.mjs +5 -21
- package/scripts/git-fetch-process-tree.mjs +34 -1
- package/scripts/init-repo.mjs +64 -159
- package/scripts/inspect-artifact-signing-requests.mjs +0 -6
- package/scripts/locked-source-checkout.mjs +3 -4
- package/scripts/maintainability-metrics.mjs +8 -2
- package/scripts/npm-publish-dry-run.mjs +2 -2
- package/scripts/npm-publish-transaction.mjs +2 -2
- package/scripts/publication-commit-evidence.mjs +23 -69
- package/scripts/release-candidate-resolver.mjs +11 -17
- package/scripts/release-tail.mjs +3 -49
- package/scripts/resume-from-candidate-run.mjs +9 -123
- package/scripts/run-lifecycle-core.mjs +12 -13
- package/scripts/seal-artifact-signing-requests.mjs +17 -21
- package/scripts/site-capability-metadata.mjs +2 -7
- package/scripts/stable-candidate-qualification.mjs +10 -10
- package/scripts/v4-architecture.mjs +12 -2
- package/scripts/v4-bridge-bootstrap.mjs +141 -0
- package/scripts/v4-bridge-evidence.mjs +141 -0
- package/scripts/v4-host-adapter.mjs +182 -0
- package/scripts/v4-platform-stage-checkpoint-rehearsal.mjs +207 -0
- package/scripts/v4-stage-capsule-qualification.mjs +528 -0
- package/scripts/v4-stage-capsule-resume-rehearsal.mjs +57 -0
- package/scripts/v4-warrant-shadow-plan.mjs +601 -0
- package/scripts/verify-golden-path.mjs +5 -5
- package/scripts/web-surface-cloudfront-rewrite.mjs +15 -15
- package/scripts/web-surface-core.mjs +2 -8
- package/scripts/workflow-call-contract.mjs +5 -184
- package/contracts/fixtures/kfd-adopter-release-v1/kfd-4-perspective.json +0 -16
- package/contracts/fixtures/kfd-adopter-release-v1/kfd-4-replay.json +0 -57
- package/contracts/fixtures/next-development-transition-v1/anchored-manual-waiting.json +0 -47
- package/contracts/fixtures/next-development-transition-v1/semver-auto-planned.json +0 -47
- package/contracts/fixtures/next-development-transition-v1/version-model-cases.json +0 -40
- package/contracts/next-development-request-v1.schema.json +0 -66
- package/contracts/next-development-transition-v1.schema.json +0 -292
- package/contracts/publication-rehearsal-capsule-v1.schema.json +0 -173
- package/dist/site/schemas/publication-rehearsal-capsule-v1.schema.json +0 -269
- package/dist/site/schemas/release-tail-capabilities-v1.schema.json +0 -353
- package/dist/site/schemas/release-tail-provider-bindings-v1.schema.json +0 -94
- package/docs/next-development-transition.md +0 -119
- package/docs/publication-rehearsal.md +0 -94
- package/packages/core/buildchain-compatibility-proof.js +0 -631
- package/packages/core/dev-delivery-native-proof.js +0 -333
- package/packages/core/dev-delivery-warrant-shadow.js +0 -502
- package/packages/core/next-development-candidate-reservation.js +0 -186
- package/packages/core/next-development-controller.js +0 -726
- package/packages/core/next-development-projection.js +0 -288
- package/packages/core/next-development-transition.js +0 -738
- package/packages/core/publication-rehearsal-projection.js +0 -173
- package/packages/core/publication-rehearsal-runtime.js +0 -921
- package/scripts/aws-macos-jit-instance-rehydrate.mjs +0 -260
- package/scripts/aws-macos-jit-source-rebind.mjs +0 -724
- package/scripts/dev-delivery-native-run.mjs +0 -187
- package/scripts/dev-delivery-two-phase.mjs +0 -598
- package/scripts/generate-next-development-guidance.mjs +0 -49
- package/scripts/materialize-self-release-candidate-version.mjs +0 -137
- package/scripts/next-development-self-dogfood-harness.mjs +0 -409
- package/scripts/next-development-self-dogfood.mjs +0 -532
- package/scripts/next-development-transition.mjs +0 -47
- package/scripts/release-candidate-tail-reseal.mjs +0 -426
- package/templates/native-dev-delivery.yml +0 -82
|
@@ -0,0 +1,502 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"coverageRoots": [
|
|
4
|
+
"actions/promote-buildchain-ref/internal",
|
|
5
|
+
"bin/buildchain.mjs",
|
|
6
|
+
"bin/internal",
|
|
7
|
+
"packages/core/release-passport.js",
|
|
8
|
+
"packages/core/buildchain-contract.js",
|
|
9
|
+
"packages/core/workflow-call-contract.js",
|
|
10
|
+
"packages/core/workflow-yaml-contract.js",
|
|
11
|
+
"packages/core/paper-fleet.js",
|
|
12
|
+
"packages/core/paper-agent-entry.js",
|
|
13
|
+
"packages/core/paper-npm-bootstrap.js",
|
|
14
|
+
"packages/core/paper-repository.js",
|
|
15
|
+
"packages/core/paper-scaffold-content.js",
|
|
16
|
+
"packages/core/paper-work.js",
|
|
17
|
+
"packages/core/paper.js",
|
|
18
|
+
"packages/core/public-surface-cli.js",
|
|
19
|
+
"packages/core/release-propagation-agent-entry.js",
|
|
20
|
+
"packages/core/release-propagation-push.js",
|
|
21
|
+
"packages/core/release-propagation-stage-evidence.js",
|
|
22
|
+
"packages/core/release-propagation-work.js",
|
|
23
|
+
"packages/core/engineering-housekeeper.js",
|
|
24
|
+
"packages/core/engineering-housekeeper-github-client.js",
|
|
25
|
+
"packages/core/engineering-housekeeper-github.js",
|
|
26
|
+
"packages/core/release-tail-provider-plane.js",
|
|
27
|
+
"packages/core/release-tail-provider-adapters.js",
|
|
28
|
+
"packages/core/release-tail-compatibility.js",
|
|
29
|
+
"actions/release-tail/index.js",
|
|
30
|
+
"scripts/authorize-promotion-runtime-override.cjs",
|
|
31
|
+
"scripts/build-contract-core.mjs",
|
|
32
|
+
"scripts/buildchain-cli-help.mjs",
|
|
33
|
+
"scripts/generate-channel-build-workflow.mjs",
|
|
34
|
+
"scripts/promotion-routing-evidence.mjs",
|
|
35
|
+
"scripts/paper-work-fleet-cli.mjs",
|
|
36
|
+
"scripts/run-lifecycle-core.mjs",
|
|
37
|
+
"scripts/resolve-artifact-transfer-mode.mjs",
|
|
38
|
+
"scripts/release-propagation.mjs",
|
|
39
|
+
"scripts/engineering-housekeeper-workflow.mjs",
|
|
40
|
+
"scripts/release-tail.mjs",
|
|
41
|
+
"scripts/web-surface-core.mjs",
|
|
42
|
+
"scripts/web-surface-routing.mjs",
|
|
43
|
+
"scripts/web-surface.mjs",
|
|
44
|
+
"scripts/workflow-call-contract.mjs",
|
|
45
|
+
"scripts/verify-promotion-router-binding.sh",
|
|
46
|
+
"scripts/v4-architecture.mjs",
|
|
47
|
+
"scripts/v4-bridge-bootstrap.mjs",
|
|
48
|
+
"scripts/v4-bridge-evidence.mjs",
|
|
49
|
+
"scripts/v4-host-adapter.mjs",
|
|
50
|
+
"crates/buildchain-v4-bridge/src/main.rs",
|
|
51
|
+
"packages/core/v4-provider-operation-journal.js",
|
|
52
|
+
"packages/core/v4-stage-capsule.js",
|
|
53
|
+
"packages/core/v4-stage-capsule-store.js",
|
|
54
|
+
"packages/core/v4-stage-capsule-local-store.js",
|
|
55
|
+
"packages/core/v4-platform-stage-checkpoints.js",
|
|
56
|
+
"scripts/v4-platform-stage-checkpoint-rehearsal.mjs",
|
|
57
|
+
"packages/core/v4-stage-capsule-qualification.js",
|
|
58
|
+
"packages/core/v4-stage-capsule-qualification-campaign.js",
|
|
59
|
+
"scripts/v4-stage-capsule-qualification.mjs",
|
|
60
|
+
"crates/buildchain-v4-contracts/src/stage_capsule.rs",
|
|
61
|
+
"crates/buildchain-v4-contracts/src/stage_capsule_store.rs",
|
|
62
|
+
"crates/buildchain-v4-contracts/src/provider_operation_journal.rs",
|
|
63
|
+
"crates/buildchain-v4-contracts/src/provider_operation_journal/fold.rs",
|
|
64
|
+
"packages/core/v4-provider-readback-idempotency.js",
|
|
65
|
+
"crates/buildchain-v4-contracts/src/provider_readback_idempotency.rs",
|
|
66
|
+
"packages/core/v4-release-activation-shadow.js",
|
|
67
|
+
"crates/buildchain-v4-contracts/src/release_activation_shadow.rs",
|
|
68
|
+
"crates/buildchain-v4-contracts/src/release_activation_shadow/model.rs",
|
|
69
|
+
"crates/buildchain-v4-contracts/src/release_activation_shadow/journal.rs",
|
|
70
|
+
"packages/core/v4-stable-publication-fence.js",
|
|
71
|
+
"crates/buildchain-v4-contracts/src/stable_publication_fence.rs",
|
|
72
|
+
"packages/core/v4-partial-mutation-recovery-qualification.js",
|
|
73
|
+
"crates/buildchain-v4-contracts/src/partial_mutation_recovery.rs",
|
|
74
|
+
"packages/core/v4-adopter-delivery-parity.js",
|
|
75
|
+
"crates/buildchain-v4-contracts/src/adopter_delivery.rs"
|
|
76
|
+
],
|
|
77
|
+
"ownershipRules": [
|
|
78
|
+
{
|
|
79
|
+
"id": "action-runtime-sources",
|
|
80
|
+
"owner": "Buildchain action maintainers",
|
|
81
|
+
"paths": ["actions"]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "cli-sources",
|
|
85
|
+
"owner": "Buildchain CLI maintainers",
|
|
86
|
+
"paths": ["bin"]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"id": "fixture-sources",
|
|
90
|
+
"owner": "Buildchain fixture maintainers",
|
|
91
|
+
"paths": ["fixtures"]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "core-library-sources",
|
|
95
|
+
"owner": "Buildchain core maintainers",
|
|
96
|
+
"paths": ["packages/core"]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "workflow-runtime-sources",
|
|
100
|
+
"owner": "Buildchain workflow maintainers",
|
|
101
|
+
"paths": ["scripts"]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "v4-rust-domain-sources",
|
|
105
|
+
"owner": "Buildchain architecture maintainers",
|
|
106
|
+
"paths": ["crates"]
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"ownershipExclusions": [],
|
|
110
|
+
"dependencyRules": [
|
|
111
|
+
{
|
|
112
|
+
"id": "core-does-not-depend-on-delivery-surfaces",
|
|
113
|
+
"sources": ["packages/core"],
|
|
114
|
+
"allowedRelativeTargets": ["packages/core"]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"id": "promotion-internals-do-not-depend-on-facade",
|
|
118
|
+
"sources": ["actions/promote-buildchain-ref/internal"],
|
|
119
|
+
"allowedRelativeTargets": [
|
|
120
|
+
"actions/promote-buildchain-ref/internal",
|
|
121
|
+
"packages/core"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"id": "cli-handlers-do-not-depend-on-entrypoint",
|
|
126
|
+
"sources": ["bin/internal"],
|
|
127
|
+
"allowedRelativeTargets": ["bin/internal", "packages/core", "scripts"]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"id": "workflow-helpers-stay-below-workflow-delivery",
|
|
131
|
+
"sources": [
|
|
132
|
+
"scripts/promotion-routing-evidence.mjs",
|
|
133
|
+
"scripts/authorize-promotion-runtime-override.cjs"
|
|
134
|
+
],
|
|
135
|
+
"allowedRelativeTargets": ["packages/core", "scripts"]
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"capabilities": [
|
|
139
|
+
{
|
|
140
|
+
"id": "promotion-policy",
|
|
141
|
+
"owner": "Buildchain maintainers",
|
|
142
|
+
"implementation": [
|
|
143
|
+
"actions/promote-buildchain-ref/internal/promotion-policy.js"
|
|
144
|
+
],
|
|
145
|
+
"tests": [
|
|
146
|
+
"tests/promote-buildchain-ref.test.mjs",
|
|
147
|
+
"tests/promote-buildchain-ref-governance.test.mjs",
|
|
148
|
+
"tests/promotion-responsibilities.test.mjs"
|
|
149
|
+
],
|
|
150
|
+
"contracts": [
|
|
151
|
+
"actions/promote-buildchain-ref/action.yml",
|
|
152
|
+
"actions/promote-buildchain-ref/lib.js"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "promotion-version-state",
|
|
157
|
+
"owner": "Buildchain maintainers",
|
|
158
|
+
"implementation": [
|
|
159
|
+
"actions/promote-buildchain-ref/internal/existing-version-state.js",
|
|
160
|
+
"actions/promote-buildchain-ref/internal/version-state.js",
|
|
161
|
+
"actions/promote-buildchain-ref/internal/version-state-operations.js"
|
|
162
|
+
],
|
|
163
|
+
"tests": [
|
|
164
|
+
"tests/promote-buildchain-ref.test.mjs",
|
|
165
|
+
"tests/promote-buildchain-ref-recovery.test.mjs",
|
|
166
|
+
"tests/release-impact-contract.test.mjs"
|
|
167
|
+
],
|
|
168
|
+
"contracts": [
|
|
169
|
+
".buildchain/release-impact.json",
|
|
170
|
+
"actions/promote-buildchain-ref/lib.js"
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "promotion-github-transaction-store",
|
|
175
|
+
"owner": "Buildchain maintainers",
|
|
176
|
+
"implementation": [
|
|
177
|
+
"actions/promote-buildchain-ref/internal/durable-transaction-store.js",
|
|
178
|
+
"actions/promote-buildchain-ref/internal/durable-transaction-operations.js",
|
|
179
|
+
"actions/promote-buildchain-ref/internal/github-adapter.js"
|
|
180
|
+
],
|
|
181
|
+
"tests": [
|
|
182
|
+
"tests/promote-buildchain-ref.test.mjs",
|
|
183
|
+
"tests/promote-buildchain-ref-recovery.test.mjs",
|
|
184
|
+
"tests/promotion-responsibilities.test.mjs"
|
|
185
|
+
],
|
|
186
|
+
"contracts": ["actions/promote-buildchain-ref/lib.js"]
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"id": "promotion-channel-orchestration",
|
|
190
|
+
"owner": "Buildchain action maintainers",
|
|
191
|
+
"implementation": [
|
|
192
|
+
"actions/promote-buildchain-ref/internal/promote-alpha-channel.js",
|
|
193
|
+
"actions/promote-buildchain-ref/internal/promote-major-channel.js",
|
|
194
|
+
"actions/promote-buildchain-ref/internal/promote-release-channel.js"
|
|
195
|
+
],
|
|
196
|
+
"tests": [
|
|
197
|
+
"tests/promote-buildchain-ref.test.mjs",
|
|
198
|
+
"tests/promote-buildchain-ref-recovery.test.mjs",
|
|
199
|
+
"tests/promote-buildchain-ref-governance.test.mjs",
|
|
200
|
+
"tests/promotion-responsibilities.test.mjs"
|
|
201
|
+
],
|
|
202
|
+
"contracts": [
|
|
203
|
+
"actions/promote-buildchain-ref/action.yml",
|
|
204
|
+
"actions/promote-buildchain-ref/lib.js"
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": "cli-trust-release-dispatch",
|
|
209
|
+
"owner": "Buildchain maintainers",
|
|
210
|
+
"implementation": [
|
|
211
|
+
"bin/internal/cli-options.mjs",
|
|
212
|
+
"bin/internal/trust-release-command-handlers.mjs",
|
|
213
|
+
"bin/internal/trust-release-cli.mjs",
|
|
214
|
+
"bin/internal/trust-release-inspection-handlers.mjs",
|
|
215
|
+
"bin/internal/trust-release-release-handlers.mjs",
|
|
216
|
+
"bin/internal/trust-release-verification-handlers.mjs"
|
|
217
|
+
],
|
|
218
|
+
"tests": ["tests/cli.test.mjs", "tests/public-surface-audit.test.mjs"],
|
|
219
|
+
"contracts": ["bin/buildchain.mjs", "docs/cli.md"]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": "release-workflow-promotion-routing",
|
|
223
|
+
"owner": "Buildchain maintainers",
|
|
224
|
+
"implementation": [
|
|
225
|
+
"scripts/promotion-routing-evidence.mjs",
|
|
226
|
+
"scripts/verify-promotion-router-binding.sh"
|
|
227
|
+
],
|
|
228
|
+
"tests": [
|
|
229
|
+
"tests/promotion-routing-evidence.test.mjs",
|
|
230
|
+
"tests/build-surface.test.mjs",
|
|
231
|
+
"tests/build-surface-promotion.test.mjs"
|
|
232
|
+
],
|
|
233
|
+
"contracts": [
|
|
234
|
+
".github/workflows/.release-candidate-promote.yml",
|
|
235
|
+
".github/workflows/release-candidate-promote.yml"
|
|
236
|
+
]
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"id": "release-passport-verification",
|
|
240
|
+
"owner": "Buildchain release trust maintainers",
|
|
241
|
+
"implementation": ["packages/core/release-passport.js"],
|
|
242
|
+
"tests": [
|
|
243
|
+
"tests/release-passport.test.mjs",
|
|
244
|
+
"tests/release-passport-contract.test.mjs"
|
|
245
|
+
],
|
|
246
|
+
"contracts": [
|
|
247
|
+
"docs/release-passport.md",
|
|
248
|
+
"dist/site/release-passport-check-manifest.json"
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "cli-command-registry",
|
|
253
|
+
"owner": "Buildchain CLI maintainers",
|
|
254
|
+
"implementation": [
|
|
255
|
+
"bin/buildchain.mjs",
|
|
256
|
+
"bin/internal/command-registry.mjs"
|
|
257
|
+
],
|
|
258
|
+
"tests": ["tests/command-registry.test.mjs", "tests/cli.test.mjs"],
|
|
259
|
+
"contracts": ["docs/cli.md", "dist/site/cli-registry.json"]
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "reusable-build-orchestration",
|
|
263
|
+
"owner": "Buildchain workflow maintainers",
|
|
264
|
+
"implementation": [
|
|
265
|
+
"scripts/generate-channel-build-workflow.mjs",
|
|
266
|
+
"scripts/resolve-artifact-transfer-mode.mjs",
|
|
267
|
+
"scripts/run-lifecycle-core.mjs"
|
|
268
|
+
],
|
|
269
|
+
"tests": [
|
|
270
|
+
"tests/artifact-transfer-mode.test.mjs",
|
|
271
|
+
"tests/build-surface.test.mjs",
|
|
272
|
+
"tests/build-surface-promotion.test.mjs",
|
|
273
|
+
"tests/controller-evidence.test.mjs"
|
|
274
|
+
],
|
|
275
|
+
"contracts": [
|
|
276
|
+
".github/workflows/.build.yml",
|
|
277
|
+
".github/workflows/build.yml"
|
|
278
|
+
]
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"id": "web-surface-delivery",
|
|
282
|
+
"owner": "Buildchain web-surface maintainers",
|
|
283
|
+
"implementation": [
|
|
284
|
+
"scripts/web-surface-core.mjs",
|
|
285
|
+
"scripts/web-surface-routing.mjs",
|
|
286
|
+
"scripts/web-surface.mjs"
|
|
287
|
+
],
|
|
288
|
+
"tests": [
|
|
289
|
+
"tests/web-surface.test.mjs",
|
|
290
|
+
"tests/web-surface-publication-authority.test.mjs"
|
|
291
|
+
],
|
|
292
|
+
"contracts": [".github/workflows/.web-surface.yml"]
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"id": "shared-build-contract",
|
|
296
|
+
"owner": "Buildchain contract maintainers",
|
|
297
|
+
"implementation": [
|
|
298
|
+
"packages/core/buildchain-contract.js",
|
|
299
|
+
"scripts/build-contract-core.mjs"
|
|
300
|
+
],
|
|
301
|
+
"tests": [
|
|
302
|
+
"tests/buildchain-contract.test.mjs",
|
|
303
|
+
"tests/build-surface.test.mjs",
|
|
304
|
+
"tests/build-surface-promotion.test.mjs"
|
|
305
|
+
],
|
|
306
|
+
"contracts": [
|
|
307
|
+
"dist/site/buildchain-contract.json",
|
|
308
|
+
"docs/runtime-train-validation.md"
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": "reusable-workflow-call-contract",
|
|
313
|
+
"owner": "Buildchain release governance maintainers",
|
|
314
|
+
"implementation": [
|
|
315
|
+
"packages/core/workflow-call-contract.js",
|
|
316
|
+
"packages/core/workflow-yaml-contract.js",
|
|
317
|
+
"scripts/workflow-call-contract.mjs"
|
|
318
|
+
],
|
|
319
|
+
"tests": [
|
|
320
|
+
"tests/workflow-call-contract.test.mjs",
|
|
321
|
+
"tests/public-surface-audit.test.mjs"
|
|
322
|
+
],
|
|
323
|
+
"contracts": ["docs/release-governance.md"]
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"id": "promotion-runtime-override-authorization",
|
|
327
|
+
"owner": "Buildchain release governance maintainers",
|
|
328
|
+
"implementation": ["scripts/authorize-promotion-runtime-override.cjs"],
|
|
329
|
+
"tests": ["tests/authorize-promotion-runtime-override.test.mjs"],
|
|
330
|
+
"contracts": [".github/workflows/release-candidate-promote.yml"]
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"id": "paper-fleet-golden-path",
|
|
334
|
+
"owner": "Buildchain Paper maintainers",
|
|
335
|
+
"implementation": [
|
|
336
|
+
"packages/core/paper-agent-entry.js",
|
|
337
|
+
"packages/core/paper-fleet.js",
|
|
338
|
+
"packages/core/paper-npm-bootstrap.js",
|
|
339
|
+
"packages/core/paper-repository.js",
|
|
340
|
+
"packages/core/paper-scaffold-content.js",
|
|
341
|
+
"packages/core/paper-work.js",
|
|
342
|
+
"packages/core/paper.js",
|
|
343
|
+
"packages/core/public-surface-cli.js",
|
|
344
|
+
"scripts/buildchain-cli-help.mjs",
|
|
345
|
+
"scripts/paper-work-fleet-cli.mjs"
|
|
346
|
+
],
|
|
347
|
+
"tests": [
|
|
348
|
+
"tests/cli.test.mjs",
|
|
349
|
+
"tests/paper.test.mjs",
|
|
350
|
+
"tests/public-surface-audit.test.mjs"
|
|
351
|
+
],
|
|
352
|
+
"contracts": [
|
|
353
|
+
"dist/site/cli-registry.json",
|
|
354
|
+
"dist/site/node-api-registry.json"
|
|
355
|
+
]
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"id": "site-upstream-agent-propagation",
|
|
359
|
+
"owner": "Buildchain release propagation maintainers",
|
|
360
|
+
"implementation": [
|
|
361
|
+
"packages/core/release-propagation-agent-entry.js",
|
|
362
|
+
"packages/core/release-propagation-push.js",
|
|
363
|
+
"packages/core/release-propagation-stage-evidence.js",
|
|
364
|
+
"packages/core/release-propagation-work.js",
|
|
365
|
+
"scripts/release-propagation.mjs"
|
|
366
|
+
],
|
|
367
|
+
"tests": [
|
|
368
|
+
"tests/release-propagation.test.mjs",
|
|
369
|
+
"tests/release-propagation-pickup.test.mjs"
|
|
370
|
+
],
|
|
371
|
+
"contracts": [
|
|
372
|
+
"docs/release-propagation.md",
|
|
373
|
+
"dist/site/cli-registry.json",
|
|
374
|
+
"dist/site/node-api-registry.json"
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"id": "engineering-housekeeper",
|
|
379
|
+
"owner": "Buildchain engineering hygiene maintainers",
|
|
380
|
+
"implementation": [
|
|
381
|
+
"packages/core/engineering-housekeeper.js",
|
|
382
|
+
"packages/core/engineering-housekeeper-github-client.js",
|
|
383
|
+
"packages/core/engineering-housekeeper-github.js",
|
|
384
|
+
"scripts/engineering-housekeeper-workflow.mjs"
|
|
385
|
+
],
|
|
386
|
+
"tests": [
|
|
387
|
+
"tests/engineering-housekeeper.test.mjs",
|
|
388
|
+
"tests/engineering-housekeeper-github.test.mjs",
|
|
389
|
+
"tests/engineering-housekeeper-workflow.test.mjs"
|
|
390
|
+
],
|
|
391
|
+
"contracts": [
|
|
392
|
+
"contracts/engineering-housekeeper-v1.schema.json",
|
|
393
|
+
"contracts/fixtures/engineering-housekeeper-v1/cases.json",
|
|
394
|
+
"docs/engineering-housekeeper.md"
|
|
395
|
+
]
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"id": "declarative-release-provider-plane",
|
|
399
|
+
"owner": "Buildchain release provider maintainers",
|
|
400
|
+
"implementation": [
|
|
401
|
+
"packages/core/release-tail-provider-plane.js",
|
|
402
|
+
"packages/core/release-tail-provider-adapters.js",
|
|
403
|
+
"packages/core/release-tail-compatibility.js",
|
|
404
|
+
"scripts/release-tail.mjs",
|
|
405
|
+
"actions/release-tail/index.js"
|
|
406
|
+
],
|
|
407
|
+
"tests": [
|
|
408
|
+
"tests/release-tail-provider-plane.test.mjs",
|
|
409
|
+
"tests/release-tail-contract.test.mjs"
|
|
410
|
+
],
|
|
411
|
+
"contracts": [
|
|
412
|
+
"contracts/release-tail-capabilities-v1.schema.json",
|
|
413
|
+
"contracts/release-tail-provider-bindings-v1.schema.json",
|
|
414
|
+
".github/workflows/release-tail.yml",
|
|
415
|
+
"actions/release-tail/action.yml",
|
|
416
|
+
"docs/release-tail-provider-plane.md"
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"id": "v4-architecture-governance",
|
|
421
|
+
"owner": "Buildchain architecture maintainers",
|
|
422
|
+
"implementation": [
|
|
423
|
+
"scripts/v4-architecture.mjs",
|
|
424
|
+
"scripts/v4-bridge-bootstrap.mjs",
|
|
425
|
+
"scripts/v4-bridge-evidence.mjs",
|
|
426
|
+
"scripts/v4-host-adapter.mjs",
|
|
427
|
+
"crates/buildchain-v4-bridge/src/main.rs",
|
|
428
|
+
"packages/core/v4-provider-operation-journal.js",
|
|
429
|
+
"packages/core/v4-provider-readback-idempotency.js",
|
|
430
|
+
"packages/core/v4-release-activation-shadow.js",
|
|
431
|
+
"packages/core/v4-stable-publication-fence.js",
|
|
432
|
+
"packages/core/v4-partial-mutation-recovery-qualification.js",
|
|
433
|
+
"packages/core/v4-adopter-delivery-parity.js",
|
|
434
|
+
"packages/core/v4-stage-capsule.js",
|
|
435
|
+
"packages/core/v4-stage-capsule-store.js",
|
|
436
|
+
"packages/core/v4-stage-capsule-local-store.js",
|
|
437
|
+
"packages/core/v4-platform-stage-checkpoints.js",
|
|
438
|
+
"scripts/v4-platform-stage-checkpoint-rehearsal.mjs",
|
|
439
|
+
"packages/core/v4-stage-capsule-qualification.js",
|
|
440
|
+
"packages/core/v4-stage-capsule-qualification-campaign.js",
|
|
441
|
+
"scripts/v4-stage-capsule-qualification.mjs",
|
|
442
|
+
"crates/buildchain-v4-contracts/src/stage_capsule.rs",
|
|
443
|
+
"crates/buildchain-v4-contracts/src/stage_capsule_store.rs",
|
|
444
|
+
"crates/buildchain-v4-contracts/src/provider_operation_journal.rs",
|
|
445
|
+
"crates/buildchain-v4-contracts/src/provider_operation_journal/fold.rs",
|
|
446
|
+
"crates/buildchain-v4-contracts/src/provider_readback_idempotency.rs",
|
|
447
|
+
"crates/buildchain-v4-contracts/src/release_activation_shadow.rs",
|
|
448
|
+
"crates/buildchain-v4-contracts/src/release_activation_shadow/model.rs",
|
|
449
|
+
"crates/buildchain-v4-contracts/src/release_activation_shadow/journal.rs",
|
|
450
|
+
"crates/buildchain-v4-contracts/src/stable_publication_fence.rs",
|
|
451
|
+
"crates/buildchain-v4-contracts/src/partial_mutation_recovery.rs",
|
|
452
|
+
"crates/buildchain-v4-contracts/src/adopter_delivery.rs"
|
|
453
|
+
],
|
|
454
|
+
"tests": [
|
|
455
|
+
"tests/v4-architecture.test.mjs",
|
|
456
|
+
"tests/v4-bridge.test.mjs",
|
|
457
|
+
"tests/v4-provider-operation-journal.test.mjs",
|
|
458
|
+
"tests/v4-provider-readback-idempotency.test.mjs",
|
|
459
|
+
"tests/v4-release-activation-shadow.test.mjs",
|
|
460
|
+
"tests/v4-stable-publication-fence.test.mjs",
|
|
461
|
+
"tests/v4-partial-mutation-recovery-qualification.test.mjs",
|
|
462
|
+
"tests/v4-stage-capsule.test.mjs",
|
|
463
|
+
"tests/v4-stage-capsule-store.test.mjs",
|
|
464
|
+
"tests/v4-platform-stage-checkpoints.test.mjs",
|
|
465
|
+
"tests/v4-stage-capsule-qualification.test.mjs",
|
|
466
|
+
"tests/v4-adopter-delivery-parity.test.mjs"
|
|
467
|
+
],
|
|
468
|
+
"contracts": [
|
|
469
|
+
"architecture/v4-architecture-constitution.md",
|
|
470
|
+
"architecture/v4-capability-state-machine-manifest.json",
|
|
471
|
+
"architecture/v4-bootstrap-authority.json",
|
|
472
|
+
"architecture/v4-exception-ledger.json",
|
|
473
|
+
"architecture/v4-rust-libnode-bridge-evaluation.json",
|
|
474
|
+
"architecture/v4-rust-libnode-bridge-spike.md",
|
|
475
|
+
"architecture/v4-provider-operation-journal-contract.json",
|
|
476
|
+
"architecture/v4-release-activation-shadow-domain.json",
|
|
477
|
+
"architecture/v4-stable-publication-fence.json",
|
|
478
|
+
"architecture/v4-partial-mutation-recovery-qualification.json",
|
|
479
|
+
"architecture/v4-stage-capsule-contract.json",
|
|
480
|
+
"architecture/v4-stage-capsule-store-contract.json",
|
|
481
|
+
"architecture/v4-platform-stage-checkpoints.json",
|
|
482
|
+
"architecture/v4-stage-capsule-qualification.json",
|
|
483
|
+
"architecture/v4-adopter-delivery-parity.json",
|
|
484
|
+
"contracts/v4-host-contract-v1.schema.json",
|
|
485
|
+
"contracts/v4-provider-operation-journal-v1.schema.json",
|
|
486
|
+
"contracts/v4-release-activation-shadow-v1.schema.json",
|
|
487
|
+
"contracts/v4-stable-publication-fence-v1.schema.json",
|
|
488
|
+
"contracts/v4-partial-mutation-recovery-v1.schema.json",
|
|
489
|
+
"contracts/v4-stage-capsule-v1.schema.json",
|
|
490
|
+
"contracts/v4-stage-capsule-store-v1.schema.json",
|
|
491
|
+
"contracts/fixtures/v4-stage-capsule-v1/shared.json",
|
|
492
|
+
"contracts/fixtures/v4-stage-capsule-store-v1/shared.json",
|
|
493
|
+
"contracts/fixtures/v4-provider-operation-journal-v1/shared.json",
|
|
494
|
+
"contracts/fixtures/v4-provider-readback-idempotency-v1/shared.json",
|
|
495
|
+
"contracts/fixtures/v4-release-activation-shadow-v1/shared.json",
|
|
496
|
+
"contracts/fixtures/v4-stable-publication-fence-v1/shared.json",
|
|
497
|
+
"contracts/fixtures/v4-partial-mutation-recovery-v1/shared.json",
|
|
498
|
+
"docs/v4-stage-capsule.md"
|
|
499
|
+
]
|
|
500
|
+
}
|
|
501
|
+
]
|
|
502
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"contract": "kungfu-buildchain-maintainability-baseline",
|
|
4
|
+
"revision": "5308189b09bcb5a1314195412f2807a40d678838",
|
|
5
|
+
"collectedOn": "2026-08-01",
|
|
6
|
+
"sourceEvolution": {
|
|
7
|
+
"assignmentBaselineRevision": "3e63a39cfa44ff4a923ec97baa3fe778eda212ec",
|
|
8
|
+
"reason": "The protected dev/v3/v3.0 channel advanced through reviewed Paper, signing, build aggregation, and auditable-demo work after Assignment capture. The structural line therefore starts from the later protected head instead of replaying an obsolete cut."
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"trackedFiles": 661,
|
|
12
|
+
"handMaintainedSourceFiles": 208,
|
|
13
|
+
"handMaintainedSourceLines": 87250,
|
|
14
|
+
"testFiles": 87,
|
|
15
|
+
"testLines": 50923,
|
|
16
|
+
"workflowFiles": 57,
|
|
17
|
+
"workflowLines": 19269,
|
|
18
|
+
"documentationFiles": 71,
|
|
19
|
+
"documentationLines": 15552,
|
|
20
|
+
"generatedFiles": 7,
|
|
21
|
+
"generatedBytes": 3876580
|
|
22
|
+
},
|
|
23
|
+
"publicSurface": {
|
|
24
|
+
"cliCommands": 112,
|
|
25
|
+
"nodeApiExports": 46,
|
|
26
|
+
"workflows": 57,
|
|
27
|
+
"actions": 6,
|
|
28
|
+
"reverseAuditFailures": 0
|
|
29
|
+
},
|
|
30
|
+
"architecture": {
|
|
31
|
+
"capabilities": 12,
|
|
32
|
+
"implementationMappings": 24,
|
|
33
|
+
"testMappings": 24,
|
|
34
|
+
"dependencyRules": 4,
|
|
35
|
+
"repositorySources": 208,
|
|
36
|
+
"ownedSources": 0,
|
|
37
|
+
"excludedSources": 0,
|
|
38
|
+
"dependencyEdges": 142,
|
|
39
|
+
"dependencyCycles": 0
|
|
40
|
+
},
|
|
41
|
+
"hotspots": {
|
|
42
|
+
"promoteBuildchainRefs": {
|
|
43
|
+
"file": "actions/promote-buildchain-ref/lib.js",
|
|
44
|
+
"lines": 341,
|
|
45
|
+
"complexity": 26
|
|
46
|
+
},
|
|
47
|
+
"createReleaseCheckReport": {
|
|
48
|
+
"file": "packages/core/release-passport.js",
|
|
49
|
+
"lines": 65,
|
|
50
|
+
"complexity": 5
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"doneCheck": {
|
|
54
|
+
"command": "pnpm run check",
|
|
55
|
+
"tests": 1092,
|
|
56
|
+
"skipped": 0,
|
|
57
|
+
"wallSeconds": 36.9
|
|
58
|
+
}
|
|
59
|
+
}
|