@empire-builder-kit/nx 1.0.0-beta.9 → 1.0.0-rc.2
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/NOTICE +6 -0
- package/README.md +113 -3
- package/executors.json +30 -0
- package/package.json +84 -6
- package/src/api-contract/baseline-update.d.ts +82 -0
- package/src/api-contract/baseline-update.js +225 -0
- package/src/api-contract/baseline-update.js.map +1 -0
- package/src/api-contract/compatibility.d.ts +30 -0
- package/src/api-contract/compatibility.js +643 -0
- package/src/api-contract/compatibility.js.map +1 -0
- package/src/api-contract/contract-graph.d.ts +35 -0
- package/src/api-contract/contract-graph.js +141 -0
- package/src/api-contract/contract-graph.js.map +1 -0
- package/src/api-contract/evidence.d.ts +23 -0
- package/src/api-contract/evidence.js +87 -0
- package/src/api-contract/evidence.js.map +1 -0
- package/src/api-contract/index.d.ts +6 -0
- package/src/api-contract/index.js +10 -0
- package/src/api-contract/index.js.map +1 -0
- package/src/api-contract/model.d.ts +144 -0
- package/src/api-contract/model.fixtures.d.ts +2 -0
- package/src/api-contract/model.fixtures.js +81 -0
- package/src/api-contract/model.fixtures.js.map +1 -0
- package/src/api-contract/model.js +993 -0
- package/src/api-contract/model.js.map +1 -0
- package/src/api-contract/rollout.d.ts +32 -0
- package/src/api-contract/rollout.js +88 -0
- package/src/api-contract/rollout.js.map +1 -0
- package/src/authorization/compatibility.d.ts +62 -0
- package/src/authorization/compatibility.js +175 -0
- package/src/authorization/compatibility.js.map +1 -0
- package/src/authorization/index.d.ts +1 -0
- package/src/authorization/index.js +5 -0
- package/src/authorization/index.js.map +1 -0
- package/src/blueprints/execution.d.ts +25 -1
- package/src/blueprints/execution.js +246 -83
- package/src/blueprints/execution.js.map +1 -1
- package/src/blueprints/external-sandbox.d.ts +53 -0
- package/src/blueprints/external-sandbox.js +1182 -0
- package/src/blueprints/external-sandbox.js.map +1 -0
- package/src/blueprints/manifest.d.ts +42 -2
- package/src/blueprints/manifest.js +82 -27
- package/src/blueprints/manifest.js.map +1 -1
- package/src/blueprints/resolver.d.ts +14 -5
- package/src/blueprints/resolver.js +228 -68
- package/src/blueprints/resolver.js.map +1 -1
- package/src/cli/agent-command.d.ts +30 -0
- package/src/cli/agent-command.js +204 -0
- package/src/cli/agent-command.js.map +1 -0
- package/src/cli/agent-runtime.d.ts +25 -0
- package/src/cli/agent-runtime.js +488 -0
- package/src/cli/agent-runtime.js.map +1 -0
- package/src/cli/blueprint-authority.d.ts +9 -0
- package/src/cli/blueprint-authority.js +43 -0
- package/src/cli/blueprint-authority.js.map +1 -0
- package/src/cli/blueprint-command.d.ts +24 -0
- package/src/cli/blueprint-command.js +63 -0
- package/src/cli/blueprint-command.js.map +1 -0
- package/src/cli/bootstrap.d.ts +31 -0
- package/src/cli/bootstrap.js +165 -0
- package/src/cli/bootstrap.js.map +1 -0
- package/src/cli/dev-command.d.ts +92 -0
- package/src/cli/dev-command.js +561 -0
- package/src/cli/dev-command.js.map +1 -0
- package/src/cli/main.d.ts +131 -0
- package/src/cli/main.js +1199 -0
- package/src/cli/main.js.map +1 -0
- package/src/cli/output.d.ts +19 -0
- package/src/cli/output.js +51 -0
- package/src/cli/output.js.map +1 -0
- package/src/cli/personal-secret-runtime.d.ts +81 -0
- package/src/cli/personal-secret-runtime.js +567 -0
- package/src/cli/personal-secret-runtime.js.map +1 -0
- package/src/cli/secret-terminal.d.ts +12 -0
- package/src/cli/secret-terminal.js +128 -0
- package/src/cli/secret-terminal.js.map +1 -0
- package/src/container-images.d.ts +1 -0
- package/src/container-images.js +5 -0
- package/src/container-images.js.map +1 -0
- package/src/data-lifecycle/index.d.ts +3 -0
- package/src/data-lifecycle/index.js +7 -0
- package/src/data-lifecycle/index.js.map +1 -0
- package/src/data-lifecycle/model.d.ts +172 -0
- package/src/data-lifecycle/model.fixtures.d.ts +2 -0
- package/src/data-lifecycle/model.fixtures.js +244 -0
- package/src/data-lifecycle/model.fixtures.js.map +1 -0
- package/src/data-lifecycle/model.js +95 -0
- package/src/data-lifecycle/model.js.map +1 -0
- package/src/data-lifecycle/sensitive-artifacts.d.ts +28 -0
- package/src/data-lifecycle/sensitive-artifacts.js +146 -0
- package/src/data-lifecycle/sensitive-artifacts.js.map +1 -0
- package/src/data-lifecycle/validation.d.ts +32 -0
- package/src/data-lifecycle/validation.js +837 -0
- package/src/data-lifecycle/validation.js.map +1 -0
- package/src/database-retirement/contract.d.ts +68 -0
- package/src/database-retirement/contract.js +166 -0
- package/src/database-retirement/contract.js.map +1 -0
- package/src/database-retirement/index.d.ts +1 -0
- package/src/database-retirement/index.js +5 -0
- package/src/database-retirement/index.js.map +1 -0
- package/src/deterministic-order.d.ts +2 -0
- package/src/deterministic-order.js +7 -0
- package/src/deterministic-order.js.map +1 -0
- package/src/developer-agent/context.d.ts +27 -0
- package/src/developer-agent/context.js +497 -0
- package/src/developer-agent/context.js.map +1 -0
- package/src/developer-agent/generator-planning.d.ts +34 -0
- package/src/developer-agent/generator-planning.js +645 -0
- package/src/developer-agent/generator-planning.js.map +1 -0
- package/src/developer-agent/generator-preview.d.ts +8 -0
- package/src/developer-agent/generator-preview.js +650 -0
- package/src/developer-agent/generator-preview.js.map +1 -0
- package/src/developer-agent/git-inspection.d.ts +108 -0
- package/src/developer-agent/git-inspection.js +815 -0
- package/src/developer-agent/git-inspection.js.map +1 -0
- package/src/developer-agent/handoff.d.ts +43 -0
- package/src/developer-agent/handoff.js +698 -0
- package/src/developer-agent/handoff.js.map +1 -0
- package/src/developer-agent/index.d.ts +10 -0
- package/src/developer-agent/index.js +14 -0
- package/src/developer-agent/index.js.map +1 -0
- package/src/developer-agent/model.d.ts +481 -0
- package/src/developer-agent/model.js +143 -0
- package/src/developer-agent/model.js.map +1 -0
- package/src/developer-agent/operation-registry.d.ts +45 -0
- package/src/developer-agent/operation-registry.js +1255 -0
- package/src/developer-agent/operation-registry.js.map +1 -0
- package/src/developer-agent/ordering.d.ts +9 -0
- package/src/developer-agent/ordering.js +15 -0
- package/src/developer-agent/ordering.js.map +1 -0
- package/src/developer-agent/planning.d.ts +18 -0
- package/src/developer-agent/planning.js +447 -0
- package/src/developer-agent/planning.js.map +1 -0
- package/src/developer-agent/preview-changes.d.ts +26 -0
- package/src/developer-agent/preview-changes.js +203 -0
- package/src/developer-agent/preview-changes.js.map +1 -0
- package/src/developer-agent/preview-source.d.ts +2 -0
- package/src/developer-agent/preview-source.js +16 -0
- package/src/developer-agent/preview-source.js.map +1 -0
- package/src/developer-agent/validation.d.ts +18 -0
- package/src/developer-agent/validation.js +2617 -0
- package/src/developer-agent/validation.js.map +1 -0
- package/src/developer-agent/workspace-inspection.d.ts +20 -0
- package/src/developer-agent/workspace-inspection.js +1134 -0
- package/src/developer-agent/workspace-inspection.js.map +1 -0
- package/src/developer-agent/workspace-path.d.ts +6 -0
- package/src/developer-agent/workspace-path.js +22 -0
- package/src/developer-agent/workspace-path.js.map +1 -0
- package/src/executors/blueprint-trust/blueprint-trust.d.ts +29 -0
- package/src/executors/blueprint-trust/blueprint-trust.js +115 -0
- package/src/executors/blueprint-trust/blueprint-trust.js.map +1 -0
- package/src/executors/blueprint-trust/schema.json +27 -0
- package/src/executors/blueprint-verification/blueprint-verification.d.ts +13 -0
- package/src/executors/blueprint-verification/blueprint-verification.js +110 -0
- package/src/executors/blueprint-verification/blueprint-verification.js.map +1 -0
- package/src/executors/blueprint-verification/schema.json +44 -0
- package/src/executors/deployment-plan/deployment-plan.js +1 -0
- package/src/executors/deployment-plan/deployment-plan.js.map +1 -1
- package/src/executors/dev-doctor/dev-doctor.d.ts +19 -5
- package/src/executors/dev-doctor/dev-doctor.js +186 -32
- package/src/executors/dev-doctor/dev-doctor.js.map +1 -1
- package/src/executors/dev-doctor/schema.json +1 -6
- package/src/executors/dev-setup/dev-setup.d.ts +7 -1
- package/src/executors/dev-setup/dev-setup.js +14 -3
- package/src/executors/dev-setup/dev-setup.js.map +1 -1
- package/src/executors/developer-context/developer-context.d.ts +38 -0
- package/src/executors/developer-context/developer-context.js +78 -0
- package/src/executors/developer-context/developer-context.js.map +1 -0
- package/src/executors/developer-context/schema.json +87 -0
- package/src/executors/fleet/fleet.d.ts +12 -43
- package/src/executors/fleet/fleet.js +120 -500
- package/src/executors/fleet/fleet.js.map +1 -1
- package/src/executors/fleet/schema.json +64 -14
- package/src/executors/github-bootstrap/github-bootstrap.d.ts +1 -0
- package/src/executors/github-bootstrap/github-bootstrap.js +1 -0
- package/src/executors/github-bootstrap/github-bootstrap.js.map +1 -1
- package/src/executors/github-bootstrap/schema.json +5 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.d.ts +144 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.js +3320 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.js.map +1 -0
- package/src/executors/infrastructure-plan/schema.json +78 -0
- package/src/executors/secret-guardrails/schema.json +6 -0
- package/src/executors/secret-guardrails/secret-guardrails.d.ts +3 -0
- package/src/executors/secret-guardrails/secret-guardrails.js +44 -0
- package/src/executors/secret-guardrails/secret-guardrails.js.map +1 -0
- package/src/executors/secret-metadata/schema.json +31 -0
- package/src/executors/secret-metadata/secret-metadata.d.ts +32 -0
- package/src/executors/secret-metadata/secret-metadata.js +131 -0
- package/src/executors/secret-metadata/secret-metadata.js.map +1 -0
- package/src/executors/sst-lifecycle/logging-preflight.d.ts +17 -0
- package/src/executors/sst-lifecycle/logging-preflight.js +196 -0
- package/src/executors/sst-lifecycle/logging-preflight.js.map +1 -0
- package/src/executors/sst-lifecycle/run-sst-command.d.ts +23 -3
- package/src/executors/sst-lifecycle/run-sst-command.js +113 -10
- package/src/executors/sst-lifecycle/run-sst-command.js.map +1 -1
- package/src/executors/sst-lifecycle/schema.json +9 -5
- package/src/executors/sst-lifecycle/secret-preflight.d.ts +25 -0
- package/src/executors/sst-lifecycle/secret-preflight.js +119 -0
- package/src/executors/sst-lifecycle/secret-preflight.js.map +1 -0
- package/src/foundation/discovery.d.ts +17 -1
- package/src/foundation/discovery.js +16 -1
- package/src/foundation/discovery.js.map +1 -1
- package/src/foundation/index.d.ts +3 -0
- package/src/foundation/index.js +3 -0
- package/src/foundation/index.js.map +1 -1
- package/src/foundation/local-database-contract.d.ts +1 -0
- package/src/foundation/local-database-contract.js +3 -0
- package/src/foundation/local-database-contract.js.map +1 -1
- package/src/foundation/logging-preflight.d.ts +30 -0
- package/src/foundation/logging-preflight.js +138 -0
- package/src/foundation/logging-preflight.js.map +1 -0
- package/src/foundation/logging.d.ts +70 -0
- package/src/foundation/logging.js +133 -0
- package/src/foundation/logging.js.map +1 -0
- package/src/foundation/preflight.d.ts +9 -0
- package/src/foundation/preflight.js +58 -2
- package/src/foundation/preflight.js.map +1 -1
- package/src/foundation/provision-database-bindings.d.ts +9 -1
- package/src/foundation/provision-database-bindings.js +25 -5
- package/src/foundation/provision-database-bindings.js.map +1 -1
- package/src/foundation/provision-logical-database.d.ts +10 -2
- package/src/foundation/provision-logical-database.js +68 -113
- package/src/foundation/provision-logical-database.js.map +1 -1
- package/src/foundation/router-origin-proof.d.ts +2 -0
- package/src/foundation/router-origin-proof.js +25 -0
- package/src/foundation/router-origin-proof.js.map +1 -0
- package/src/foundation/stages.d.ts +1 -0
- package/src/foundation/stages.js +9 -1
- package/src/foundation/stages.js.map +1 -1
- package/src/frontend-security/index.d.ts +1 -0
- package/src/frontend-security/index.js +5 -0
- package/src/frontend-security/index.js.map +1 -0
- package/src/frontend-security/security-headers.d.ts +50 -0
- package/src/frontend-security/security-headers.js +418 -0
- package/src/frontend-security/security-headers.js.map +1 -0
- package/src/generators/feature-registry.d.ts +13 -0
- package/src/generators/feature-registry.js +73 -0
- package/src/generators/feature-registry.js.map +1 -0
- package/src/generators/function/function.d.ts +1 -1
- package/src/generators/function/function.js +51 -6
- package/src/generators/function/function.js.map +1 -1
- package/src/generators/function/schema.d.ts +1 -0
- package/src/generators/function/schema.json +6 -1
- package/src/generators/logging-registry.d.ts +13 -0
- package/src/generators/logging-registry.js +62 -0
- package/src/generators/logging-registry.js.map +1 -0
- package/src/generators/post-generation-install.d.ts +67 -0
- package/src/generators/post-generation-install.js +3308 -0
- package/src/generators/post-generation-install.js.map +1 -0
- package/src/generators/preset/generator.js +3 -0
- package/src/generators/preset/generator.js.map +1 -1
- package/src/generators/preset/tool-versions.d.ts +18 -0
- package/src/generators/preset/tool-versions.js +22 -0
- package/src/generators/preset/tool-versions.js.map +1 -0
- package/src/generators/preset/workspace-files-developer-agent.d.ts +14 -0
- package/src/generators/preset/workspace-files-developer-agent.js +511 -0
- package/src/generators/preset/workspace-files-developer-agent.js.map +1 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.d.ts +6 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.js +406 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.js.map +1 -0
- package/src/generators/preset/workspace-files-performance-cost.d.ts +66 -0
- package/src/generators/preset/workspace-files-performance-cost.js +866 -0
- package/src/generators/preset/workspace-files-performance-cost.js.map +1 -0
- package/src/generators/preset/workspace-files-performance-load.d.ts +73 -0
- package/src/generators/preset/workspace-files-performance-load.js +801 -0
- package/src/generators/preset/workspace-files-performance-load.js.map +1 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.d.ts +9 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.js +1102 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.js.map +1 -0
- package/src/generators/preset/workspace-files.d.ts +14 -1
- package/src/generators/preset/workspace-files.js +8189 -245
- package/src/generators/preset/workspace-files.js.map +1 -1
- package/src/generators/repository-policy/repository-policy.js +3 -47
- package/src/generators/repository-policy/repository-policy.js.map +1 -1
- package/src/generators/slice/built-in-plan-api-contract-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-api-contract-files.js +2656 -0
- package/src/generators/slice/built-in-plan-api-contract-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-api-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-api-files.js +1186 -0
- package/src/generators/slice/built-in-plan-api-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-async-work-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-async-work-files.js +7903 -0
- package/src/generators/slice/built-in-plan-async-work-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-authorization-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-authorization-files.js +2314 -0
- package/src/generators/slice/built-in-plan-authorization-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js +559 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.js +1101 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js +249 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-files.js +1530 -0
- package/src/generators/slice/built-in-plan-data-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.js +750 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js +828 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.js +2604 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.js +144 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-rights-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-rights-files.js +4628 -0
- package/src/generators/slice/built-in-plan-data-rights-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.js +1901 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js +485 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-foundation-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-foundation-files.js +184 -0
- package/src/generators/slice/built-in-plan-foundation-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-frontend-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-frontend-files.js +2233 -0
- package/src/generators/slice/built-in-plan-frontend-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.js +3038 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.js +312 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-metadata-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-metadata-files.js +219 -0
- package/src/generators/slice/built-in-plan-metadata-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-operations-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-operations-files.js +630 -0
- package/src/generators/slice/built-in-plan-operations-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-performance-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-performance-files.js +3293 -0
- package/src/generators/slice/built-in-plan-performance-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-project-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-project-files.js +979 -0
- package/src/generators/slice/built-in-plan-project-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-release-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-release-files.js +6387 -0
- package/src/generators/slice/built-in-plan-release-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-reliability-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-reliability-files.js +4499 -0
- package/src/generators/slice/built-in-plan-reliability-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.js +1004 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-shared.d.ts +53 -0
- package/src/generators/slice/built-in-plan-shared.js +113 -0
- package/src/generators/slice/built-in-plan-shared.js.map +1 -0
- package/src/generators/slice/built-in-plan-testing-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-testing-files.js +2356 -0
- package/src/generators/slice/built-in-plan-testing-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-verification-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-verification-files.js +358 -0
- package/src/generators/slice/built-in-plan-verification-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-web-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-web-files.js +430 -0
- package/src/generators/slice/built-in-plan-web-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-workload-role-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-workload-role-files.js +2356 -0
- package/src/generators/slice/built-in-plan-workload-role-files.js.map +1 -0
- package/src/generators/slice/built-in-plan.d.ts +8 -0
- package/src/generators/slice/built-in-plan.js +264 -0
- package/src/generators/slice/built-in-plan.js.map +1 -0
- package/src/generators/slice/schema.json +1 -1
- package/src/generators/slice/slice.d.ts +1 -22
- package/src/generators/slice/slice.js +185 -1510
- package/src/generators/slice/slice.js.map +1 -1
- package/src/generators/upgrade/schema.d.ts +2 -0
- package/src/generators/upgrade/schema.json +11 -1
- package/src/generators/upgrade/upgrade.d.ts +51 -1
- package/src/generators/upgrade/upgrade.js +820 -82
- package/src/generators/upgrade/upgrade.js.map +1 -1
- package/src/generators/workload/frozen-container.d.ts +8 -0
- package/src/generators/workload/frozen-container.js +36 -0
- package/src/generators/workload/frozen-container.js.map +1 -0
- package/src/generators/workload/performance-registration.d.ts +32 -0
- package/src/generators/workload/performance-registration.js +226 -0
- package/src/generators/workload/performance-registration.js.map +1 -0
- package/src/generators/workload/reliability-registration.d.ts +16 -0
- package/src/generators/workload/reliability-registration.js +150 -0
- package/src/generators/workload/reliability-registration.js.map +1 -0
- package/src/generators/workload/schema.d.ts +1 -0
- package/src/generators/workload/schema.json +6 -1
- package/src/generators/workload/service-performance-files.d.ts +4 -0
- package/src/generators/workload/service-performance-files.js +1846 -0
- package/src/generators/workload/service-performance-files.js.map +1 -0
- package/src/generators/workload/workload.d.ts +3 -2
- package/src/generators/workload/workload.js +1083 -18
- package/src/generators/workload/workload.js.map +1 -1
- package/src/git-policy/action-pins.d.ts +10 -0
- package/src/git-policy/action-pins.js +10 -0
- package/src/git-policy/action-pins.js.map +1 -1
- package/src/git-policy/github-bootstrap.d.ts +14 -1
- package/src/git-policy/github-bootstrap.js +274 -46
- package/src/git-policy/github-bootstrap.js.map +1 -1
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
- package/src/index.js.map +1 -1
- package/src/infrastructure-change/convergence.d.ts +13 -0
- package/src/infrastructure-change/convergence.js +85 -0
- package/src/infrastructure-change/convergence.js.map +1 -0
- package/src/infrastructure-change/drift.d.ts +13 -0
- package/src/infrastructure-change/drift.js +112 -0
- package/src/infrastructure-change/drift.js.map +1 -0
- package/src/infrastructure-change/index.d.ts +7 -0
- package/src/infrastructure-change/index.js +11 -0
- package/src/infrastructure-change/index.js.map +1 -0
- package/src/infrastructure-change/model.d.ts +253 -0
- package/src/infrastructure-change/model.js +28 -0
- package/src/infrastructure-change/model.js.map +1 -0
- package/src/infrastructure-change/normalize.d.ts +12 -0
- package/src/infrastructure-change/normalize.js +245 -0
- package/src/infrastructure-change/normalize.js.map +1 -0
- package/src/infrastructure-change/plan.d.ts +40 -0
- package/src/infrastructure-change/plan.js +361 -0
- package/src/infrastructure-change/plan.js.map +1 -0
- package/src/infrastructure-change/risk.d.ts +7 -0
- package/src/infrastructure-change/risk.js +269 -0
- package/src/infrastructure-change/risk.js.map +1 -0
- package/src/infrastructure-change/summary.d.ts +20 -0
- package/src/infrastructure-change/summary.js +130 -0
- package/src/infrastructure-change/summary.js.map +1 -0
- package/src/local-dev/context-discovery.d.ts +2 -0
- package/src/local-dev/context-discovery.js +59 -0
- package/src/local-dev/context-discovery.js.map +1 -0
- package/src/local-dev/contract-validation.d.ts +15 -0
- package/src/local-dev/contract-validation.js +84 -0
- package/src/local-dev/contract-validation.js.map +1 -0
- package/src/local-dev/contracts.d.ts +10 -1
- package/src/local-dev/contracts.js +57 -5
- package/src/local-dev/contracts.js.map +1 -1
- package/src/local-dev/control-contract.d.ts +67 -0
- package/src/local-dev/control-contract.js +180 -0
- package/src/local-dev/control-contract.js.map +1 -0
- package/src/local-dev/dev-command-core.d.ts +60 -0
- package/src/local-dev/dev-command-core.js +89 -0
- package/src/local-dev/dev-command-core.js.map +1 -0
- package/src/local-dev/effects.d.ts +16 -0
- package/src/local-dev/effects.js +63 -0
- package/src/local-dev/effects.js.map +1 -0
- package/src/local-dev/environment-inspector.d.ts +125 -0
- package/src/local-dev/environment-inspector.js +687 -0
- package/src/local-dev/environment-inspector.js.map +1 -0
- package/src/local-dev/environment-state.d.ts +113 -0
- package/src/local-dev/environment-state.js +463 -0
- package/src/local-dev/environment-state.js.map +1 -0
- package/src/local-dev/errors.d.ts +6 -0
- package/src/local-dev/errors.js +41 -0
- package/src/local-dev/errors.js.map +1 -0
- package/src/local-dev/fleet-client.d.ts +33 -0
- package/src/local-dev/fleet-client.js +156 -0
- package/src/local-dev/fleet-client.js.map +1 -0
- package/src/local-dev/fleet-configuration.d.ts +13 -0
- package/src/local-dev/fleet-configuration.js +71 -0
- package/src/local-dev/fleet-configuration.js.map +1 -0
- package/src/local-dev/fleet-inventory.d.ts +56 -0
- package/src/local-dev/fleet-inventory.js +469 -0
- package/src/local-dev/fleet-inventory.js.map +1 -0
- package/src/local-dev/fleet-ipc.d.ts +28 -0
- package/src/local-dev/fleet-ipc.js +267 -0
- package/src/local-dev/fleet-ipc.js.map +1 -0
- package/src/local-dev/fleet-launcher.d.ts +53 -0
- package/src/local-dev/fleet-launcher.js +379 -0
- package/src/local-dev/fleet-launcher.js.map +1 -0
- package/src/local-dev/fleet-lock.d.ts +41 -0
- package/src/local-dev/fleet-lock.js +135 -0
- package/src/local-dev/fleet-lock.js.map +1 -0
- package/src/local-dev/fleet-logs.d.ts +66 -0
- package/src/local-dev/fleet-logs.js +542 -0
- package/src/local-dev/fleet-logs.js.map +1 -0
- package/src/local-dev/fleet-process.d.ts +50 -0
- package/src/local-dev/fleet-process.js +289 -0
- package/src/local-dev/fleet-process.js.map +1 -0
- package/src/local-dev/fleet-runtime.d.ts +22 -0
- package/src/local-dev/fleet-runtime.js +368 -0
- package/src/local-dev/fleet-runtime.js.map +1 -0
- package/src/local-dev/fleet-session.d.ts +70 -0
- package/src/local-dev/fleet-session.js +301 -0
- package/src/local-dev/fleet-session.js.map +1 -0
- package/src/local-dev/fleet-slice-runner-daemon.d.ts +1 -0
- package/src/local-dev/fleet-slice-runner-daemon.js +21 -0
- package/src/local-dev/fleet-slice-runner-daemon.js.map +1 -0
- package/src/local-dev/fleet-startup.d.ts +22 -0
- package/src/local-dev/fleet-startup.js +114 -0
- package/src/local-dev/fleet-startup.js.map +1 -0
- package/src/local-dev/fleet-state.d.ts +62 -0
- package/src/local-dev/fleet-state.js +297 -0
- package/src/local-dev/fleet-state.js.map +1 -0
- package/src/local-dev/fleet-supervisor-daemon.d.ts +1 -0
- package/src/local-dev/fleet-supervisor-daemon.js +41 -0
- package/src/local-dev/fleet-supervisor-daemon.js.map +1 -0
- package/src/local-dev/fleet-supervisor.d.ts +52 -0
- package/src/local-dev/fleet-supervisor.js +384 -0
- package/src/local-dev/fleet-supervisor.js.map +1 -0
- package/src/local-dev/gateway.js +1 -1
- package/src/local-dev/gateway.js.map +1 -1
- package/src/local-dev/identity.js +4 -6
- package/src/local-dev/identity.js.map +1 -1
- package/src/local-dev/index.d.ts +1 -0
- package/src/local-dev/index.js +1 -0
- package/src/local-dev/index.js.map +1 -1
- package/src/local-dev/local-context.d.ts +62 -0
- package/src/local-dev/local-context.js +299 -0
- package/src/local-dev/local-context.js.map +1 -0
- package/src/local-dev/nx-workspace.d.ts +45 -0
- package/src/local-dev/nx-workspace.js +228 -0
- package/src/local-dev/nx-workspace.js.map +1 -0
- package/src/local-dev/personal-secret-ledger.d.ts +75 -0
- package/src/local-dev/personal-secret-ledger.js +391 -0
- package/src/local-dev/personal-secret-ledger.js.map +1 -0
- package/src/local-dev/personal-stage.d.ts +18 -0
- package/src/local-dev/personal-stage.js +129 -0
- package/src/local-dev/personal-stage.js.map +1 -0
- package/src/local-dev/private-state.d.ts +17 -0
- package/src/local-dev/private-state.js +254 -0
- package/src/local-dev/private-state.js.map +1 -0
- package/src/local-dev/process-identity.d.ts +9 -0
- package/src/local-dev/process-identity.js +79 -0
- package/src/local-dev/process-identity.js.map +1 -0
- package/src/local-dev/runtime-paths.d.ts +17 -0
- package/src/local-dev/runtime-paths.js +33 -0
- package/src/local-dev/runtime-paths.js.map +1 -0
- package/src/local-dev/secret-slice-claim.d.ts +17 -0
- package/src/local-dev/secret-slice-claim.js +75 -0
- package/src/local-dev/secret-slice-claim.js.map +1 -0
- package/src/local-dev/slice-claim.d.ts +36 -0
- package/src/local-dev/slice-claim.js +199 -0
- package/src/local-dev/slice-claim.js.map +1 -0
- package/src/local-dev/slice-runner.d.ts +121 -0
- package/src/local-dev/slice-runner.js +715 -0
- package/src/local-dev/slice-runner.js.map +1 -0
- package/src/local-dev/tls.js +51 -17
- package/src/local-dev/tls.js.map +1 -1
- package/src/ownership/composition.d.ts +5 -2
- package/src/ownership/composition.js +26 -3
- package/src/ownership/composition.js.map +1 -1
- package/src/ownership/hash.d.ts +1 -1
- package/src/ownership/hash.js +3 -1
- package/src/ownership/hash.js.map +1 -1
- package/src/ownership/record.d.ts +32 -1
- package/src/ownership/record.js +139 -2
- package/src/ownership/record.js.map +1 -1
- package/src/performance/cost-collection.d.ts +225 -0
- package/src/performance/cost-collection.js +825 -0
- package/src/performance/cost-collection.js.map +1 -0
- package/src/performance/cost-controls.d.ts +131 -0
- package/src/performance/cost-controls.js +336 -0
- package/src/performance/cost-controls.js.map +1 -0
- package/src/performance/evidence.d.ts +140 -0
- package/src/performance/evidence.js +599 -0
- package/src/performance/evidence.js.map +1 -0
- package/src/performance/index.d.ts +10 -0
- package/src/performance/index.js +14 -0
- package/src/performance/index.js.map +1 -0
- package/src/performance/load-safety.d.ts +84 -0
- package/src/performance/load-safety.js +346 -0
- package/src/performance/load-safety.js.map +1 -0
- package/src/performance/model.d.ts +129 -0
- package/src/performance/model.js +452 -0
- package/src/performance/model.js.map +1 -0
- package/src/performance/pr-artifact-budget.d.ts +42 -0
- package/src/performance/pr-artifact-budget.js +151 -0
- package/src/performance/pr-artifact-budget.js.map +1 -0
- package/src/performance/runner.d.ts +75 -0
- package/src/performance/runner.js +227 -0
- package/src/performance/runner.js.map +1 -0
- package/src/performance/scenario-endpoint.d.ts +1 -0
- package/src/performance/scenario-endpoint.js +5 -0
- package/src/performance/scenario-endpoint.js.map +1 -0
- package/src/performance/scenario.d.ts +193 -0
- package/src/performance/scenario.js +736 -0
- package/src/performance/scenario.js.map +1 -0
- package/src/performance/test-fixtures.d.ts +7 -0
- package/src/performance/test-fixtures.js +169 -0
- package/src/performance/test-fixtures.js.map +1 -0
- package/src/performance/unit-cost.d.ts +105 -0
- package/src/performance/unit-cost.js +364 -0
- package/src/performance/unit-cost.js.map +1 -0
- package/src/release/index.d.ts +4 -0
- package/src/release/index.js +8 -0
- package/src/release/index.js.map +1 -0
- package/src/release/lifecycle.d.ts +132 -0
- package/src/release/lifecycle.js +411 -0
- package/src/release/lifecycle.js.map +1 -0
- package/src/release/manifest.d.ts +148 -0
- package/src/release/manifest.js +503 -0
- package/src/release/manifest.js.map +1 -0
- package/src/release/rollout.d.ts +170 -0
- package/src/release/rollout.js +578 -0
- package/src/release/rollout.js.map +1 -0
- package/src/release/source-authority.d.ts +19 -0
- package/src/release/source-authority.js +195 -0
- package/src/release/source-authority.js.map +1 -0
- package/src/repository-policy/deployment-plan.d.ts +2 -1
- package/src/repository-policy/deployment-plan.js +2 -0
- package/src/repository-policy/deployment-plan.js.map +1 -1
- package/src/repository-policy/policy.d.ts +1 -1
- package/src/repository-policy/policy.js +29 -25
- package/src/repository-policy/policy.js.map +1 -1
- package/src/schemas/aggregate-count-evidence-v1.json +135 -0
- package/src/schemas/api-contract-baseline-v1.json +674 -0
- package/src/schemas/api-contract-compatibility-report-v1.json +126 -0
- package/src/schemas/aws-billing-actual-evidence-v1.json +407 -0
- package/src/schemas/blueprint-v1.json +18 -1
- package/src/schemas/data-lifecycle-policy-v1.json +517 -0
- package/src/schemas/generated-ownership-v2.json +22 -0
- package/src/schemas/performance-policy-v1.json +335 -0
- package/src/schemas/repository-policy-v1.json +1 -0
- package/src/schemas/testing-evidence-quarantine-v1.json +168 -0
- package/src/schemas/testing-evidence-result-v1.json +319 -0
- package/src/secrets/adapters.d.ts +49 -0
- package/src/secrets/adapters.js +184 -0
- package/src/secrets/adapters.js.map +1 -0
- package/src/secrets/aws-control-plane.d.ts +20 -0
- package/src/secrets/aws-control-plane.js +255 -0
- package/src/secrets/aws-control-plane.js.map +1 -0
- package/src/secrets/declaration-verification.d.ts +11 -0
- package/src/secrets/declaration-verification.js +68 -0
- package/src/secrets/declaration-verification.js.map +1 -0
- package/src/secrets/guardrails.d.ts +26 -0
- package/src/secrets/guardrails.js +328 -0
- package/src/secrets/guardrails.js.map +1 -0
- package/src/secrets/index.d.ts +12 -0
- package/src/secrets/index.js +16 -0
- package/src/secrets/index.js.map +1 -0
- package/src/secrets/metadata.d.ts +48 -0
- package/src/secrets/metadata.js +171 -0
- package/src/secrets/metadata.js.map +1 -0
- package/src/secrets/model.d.ts +49 -0
- package/src/secrets/model.js +125 -0
- package/src/secrets/model.js.map +1 -0
- package/src/secrets/operator.d.ts +101 -0
- package/src/secrets/operator.js +229 -0
- package/src/secrets/operator.js.map +1 -0
- package/src/secrets/permissions.d.ts +34 -0
- package/src/secrets/permissions.js +86 -0
- package/src/secrets/permissions.js.map +1 -0
- package/src/secrets/personal-command.d.ts +83 -0
- package/src/secrets/personal-command.js +197 -0
- package/src/secrets/personal-command.js.map +1 -0
- package/src/secrets/personal-ledger.d.ts +21 -0
- package/src/secrets/personal-ledger.js +135 -0
- package/src/secrets/personal-ledger.js.map +1 -0
- package/src/secrets/registry.d.ts +9 -0
- package/src/secrets/registry.js +86 -0
- package/src/secrets/registry.js.map +1 -0
- package/src/secrets/verification.d.ts +18 -0
- package/src/secrets/verification.js +139 -0
- package/src/secrets/verification.js.map +1 -0
- package/src/secrets/workload-access.d.ts +46 -0
- package/src/secrets/workload-access.js +163 -0
- package/src/secrets/workload-access.js.map +1 -0
- package/src/supply-chain/action-pins.d.ts +26 -0
- package/src/supply-chain/action-pins.js +208 -0
- package/src/supply-chain/action-pins.js.map +1 -0
- package/src/supply-chain/blueprint-trust-git.d.ts +130 -0
- package/src/supply-chain/blueprint-trust-git.js +1581 -0
- package/src/supply-chain/blueprint-trust-git.js.map +1 -0
- package/src/supply-chain/blueprint-trust-process.d.ts +4 -0
- package/src/supply-chain/blueprint-trust-process.js +88 -0
- package/src/supply-chain/blueprint-trust-process.js.map +1 -0
- package/src/supply-chain/blueprint-trust.d.ts +354 -0
- package/src/supply-chain/blueprint-trust.js +1558 -0
- package/src/supply-chain/blueprint-trust.js.map +1 -0
- package/src/supply-chain/blueprint-verification-authority.d.ts +62 -0
- package/src/supply-chain/blueprint-verification-authority.js +588 -0
- package/src/supply-chain/blueprint-verification-authority.js.map +1 -0
- package/src/supply-chain/blueprint-verification-execution.d.ts +68 -0
- package/src/supply-chain/blueprint-verification-execution.js +624 -0
- package/src/supply-chain/blueprint-verification-execution.js.map +1 -0
- package/src/supply-chain/build-output.d.ts +35 -0
- package/src/supply-chain/build-output.js +398 -0
- package/src/supply-chain/build-output.js.map +1 -0
- package/src/supply-chain/common.d.ts +21 -0
- package/src/supply-chain/common.js +107 -0
- package/src/supply-chain/common.js.map +1 -0
- package/src/supply-chain/container-artifact-contract.d.ts +23 -0
- package/src/supply-chain/container-artifact-contract.js +208 -0
- package/src/supply-chain/container-artifact-contract.js.map +1 -0
- package/src/supply-chain/container-release.d.ts +119 -0
- package/src/supply-chain/container-release.js +496 -0
- package/src/supply-chain/container-release.js.map +1 -0
- package/src/supply-chain/ecr-applicability.d.ts +19 -0
- package/src/supply-chain/ecr-applicability.js +103 -0
- package/src/supply-chain/ecr-applicability.js.map +1 -0
- package/src/supply-chain/ecr-scanning.d.ts +83 -0
- package/src/supply-chain/ecr-scanning.js +321 -0
- package/src/supply-chain/ecr-scanning.js.map +1 -0
- package/src/supply-chain/ecs-deployed-image.d.ts +85 -0
- package/src/supply-chain/ecs-deployed-image.js +300 -0
- package/src/supply-chain/ecs-deployed-image.js.map +1 -0
- package/src/supply-chain/errors.d.ts +6 -0
- package/src/supply-chain/errors.js +15 -0
- package/src/supply-chain/errors.js.map +1 -0
- package/src/supply-chain/generated-blueprint-trust-command.d.ts +4 -0
- package/src/supply-chain/generated-blueprint-trust-command.js +1362 -0
- package/src/supply-chain/generated-blueprint-trust-command.js.map +1 -0
- package/src/supply-chain/generated-command.d.ts +1 -0
- package/src/supply-chain/generated-command.js +687 -0
- package/src/supply-chain/generated-command.js.map +1 -0
- package/src/supply-chain/generated-container-release-command.d.ts +16 -0
- package/src/supply-chain/generated-container-release-command.js +2087 -0
- package/src/supply-chain/generated-container-release-command.js.map +1 -0
- package/src/supply-chain/generated-ecr-collector-command.d.ts +21 -0
- package/src/supply-chain/generated-ecr-collector-command.js +1338 -0
- package/src/supply-chain/generated-ecr-collector-command.js.map +1 -0
- package/src/supply-chain/generated-files.d.ts +13 -0
- package/src/supply-chain/generated-files.js +401 -0
- package/src/supply-chain/generated-files.js.map +1 -0
- package/src/supply-chain/generated-scanner-command.d.ts +1 -0
- package/src/supply-chain/generated-scanner-command.js +718 -0
- package/src/supply-chain/generated-scanner-command.js.map +1 -0
- package/src/supply-chain/index.d.ts +28 -0
- package/src/supply-chain/index.js +35 -0
- package/src/supply-chain/index.js.map +1 -0
- package/src/supply-chain/inventory.d.ts +79 -0
- package/src/supply-chain/inventory.js +717 -0
- package/src/supply-chain/inventory.js.map +1 -0
- package/src/supply-chain/license-expression.d.ts +7 -0
- package/src/supply-chain/license-expression.js +128 -0
- package/src/supply-chain/license-expression.js.map +1 -0
- package/src/supply-chain/pnpm-toolchain-authority.d.ts +31 -0
- package/src/supply-chain/pnpm-toolchain-authority.js +316 -0
- package/src/supply-chain/pnpm-toolchain-authority.js.map +1 -0
- package/src/supply-chain/policy.d.ts +105 -0
- package/src/supply-chain/policy.js +301 -0
- package/src/supply-chain/policy.js.map +1 -0
- package/src/supply-chain/publication.d.ts +48 -0
- package/src/supply-chain/publication.js +85 -0
- package/src/supply-chain/publication.js.map +1 -0
- package/src/supply-chain/sbom.d.ts +228 -0
- package/src/supply-chain/sbom.js +826 -0
- package/src/supply-chain/sbom.js.map +1 -0
- package/src/supply-chain/scanner.d.ts +77 -0
- package/src/supply-chain/scanner.js +502 -0
- package/src/supply-chain/scanner.js.map +1 -0
- package/src/supply-chain/vendored-source.d.ts +95 -0
- package/src/supply-chain/vendored-source.js +315 -0
- package/src/supply-chain/vendored-source.js.map +1 -0
- package/src/testing-evidence/fixture-scope.d.ts +52 -0
- package/src/testing-evidence/fixture-scope.js +140 -0
- package/src/testing-evidence/fixture-scope.js.map +1 -0
- package/src/testing-evidence/index.d.ts +5 -0
- package/src/testing-evidence/index.js +9 -0
- package/src/testing-evidence/index.js.map +1 -0
- package/src/testing-evidence/quarantine.d.ts +48 -0
- package/src/testing-evidence/quarantine.js +253 -0
- package/src/testing-evidence/quarantine.js.map +1 -0
- package/src/testing-evidence/result.d.ts +108 -0
- package/src/testing-evidence/result.js +571 -0
- package/src/testing-evidence/result.js.map +1 -0
- package/src/testing-evidence/runner-adapter.d.ts +51 -0
- package/src/testing-evidence/runner-adapter.js +288 -0
- package/src/testing-evidence/runner-adapter.js.map +1 -0
- package/src/testing-evidence/sensitive-artifacts.d.ts +13 -0
- package/src/testing-evidence/sensitive-artifacts.js +93 -0
- package/src/testing-evidence/sensitive-artifacts.js.map +1 -0
- package/src/work-markers/work-markers.js +4 -3
- package/src/work-markers/work-markers.js.map +1 -1
- package/src/workload-roles/account-baseline.d.ts +132 -0
- package/src/workload-roles/account-baseline.js +743 -0
- package/src/workload-roles/account-baseline.js.map +1 -0
- package/src/workload-roles/authority.d.ts +38 -0
- package/src/workload-roles/authority.js +156 -0
- package/src/workload-roles/authority.js.map +1 -0
- package/src/workload-roles/aws-adapter.d.ts +99 -0
- package/src/workload-roles/aws-adapter.js +416 -0
- package/src/workload-roles/aws-adapter.js.map +1 -0
- package/src/workload-roles/aws-internal-handler.d.ts +27 -0
- package/src/workload-roles/aws-internal-handler.js +58 -0
- package/src/workload-roles/aws-internal-handler.js.map +1 -0
- package/src/workload-roles/aws-s3-state.d.ts +52 -0
- package/src/workload-roles/aws-s3-state.js +164 -0
- package/src/workload-roles/aws-s3-state.js.map +1 -0
- package/src/workload-roles/aws-sdk-control-plane.d.ts +12 -0
- package/src/workload-roles/aws-sdk-control-plane.js +291 -0
- package/src/workload-roles/aws-sdk-control-plane.js.map +1 -0
- package/src/workload-roles/boundary.d.ts +33 -0
- package/src/workload-roles/boundary.js +130 -0
- package/src/workload-roles/boundary.js.map +1 -0
- package/src/workload-roles/convergence.d.ts +66 -0
- package/src/workload-roles/convergence.js +186 -0
- package/src/workload-roles/convergence.js.map +1 -0
- package/src/workload-roles/effective-policy.d.ts +51 -0
- package/src/workload-roles/effective-policy.js +183 -0
- package/src/workload-roles/effective-policy.js.map +1 -0
- package/src/workload-roles/handler.d.ts +43 -0
- package/src/workload-roles/handler.js +130 -0
- package/src/workload-roles/handler.js.map +1 -0
- package/src/workload-roles/history.d.ts +47 -0
- package/src/workload-roles/history.js +324 -0
- package/src/workload-roles/history.js.map +1 -0
- package/src/workload-roles/index.d.ts +17 -0
- package/src/workload-roles/index.js +21 -0
- package/src/workload-roles/index.js.map +1 -0
- package/src/workload-roles/injection.d.ts +119 -0
- package/src/workload-roles/injection.js +495 -0
- package/src/workload-roles/injection.js.map +1 -0
- package/src/workload-roles/manifest.d.ts +54 -0
- package/src/workload-roles/manifest.js +343 -0
- package/src/workload-roles/manifest.js.map +1 -0
- package/src/workload-roles/provisioner.d.ts +70 -0
- package/src/workload-roles/provisioner.js +231 -0
- package/src/workload-roles/provisioner.js.map +1 -0
- package/src/workload-roles/registration.d.ts +101 -0
- package/src/workload-roles/registration.js +457 -0
- package/src/workload-roles/registration.js.map +1 -0
- package/src/workload-roles/stage-boundary.d.ts +31 -0
- package/src/workload-roles/stage-boundary.js +208 -0
- package/src/workload-roles/stage-boundary.js.map +1 -0
- package/src/workload-roles/standard-slice.d.ts +54 -0
- package/src/workload-roles/standard-slice.js +252 -0
- package/src/workload-roles/standard-slice.js.map +1 -0
- package/migrations/standard-pre-v1-to-v1.md +0 -11
- package/src/foundation/aurora-logical-database.d.ts +0 -76
- package/src/foundation/aurora-logical-database.js +0 -419
- package/src/foundation/aurora-logical-database.js.map +0 -1
|
@@ -0,0 +1,687 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EnvironmentDeficientError = exports.ENVIRONMENT_INSPECTOR_CHECKS = exports.AWS_ENVIRONMENT_PROBE_TIMEOUT_MS = void 0;
|
|
4
|
+
exports.evaluateDevelopmentFoundationAccount = evaluateDevelopmentFoundationAccount;
|
|
5
|
+
exports.inspectDevelopmentEnvironment = inspectDevelopmentEnvironment;
|
|
6
|
+
exports.assertEnvironmentReady = assertEnvironmentReady;
|
|
7
|
+
const node_child_process_1 = require("node:child_process");
|
|
8
|
+
const node_crypto_1 = require("node:crypto");
|
|
9
|
+
const node_fs_1 = require("node:fs");
|
|
10
|
+
const node_os_1 = require("node:os");
|
|
11
|
+
const node_path_1 = require("node:path");
|
|
12
|
+
const node_util_1 = require("node:util");
|
|
13
|
+
const client_sts_1 = require("@aws-sdk/client-sts");
|
|
14
|
+
const credential_providers_1 = require("@aws-sdk/credential-providers");
|
|
15
|
+
const semver_1 = require("semver");
|
|
16
|
+
const discovery_js_1 = require("../foundation/discovery.js");
|
|
17
|
+
const preflight_js_1 = require("../foundation/preflight.js");
|
|
18
|
+
const contract_validation_js_1 = require("./contract-validation.js");
|
|
19
|
+
const environment_state_js_1 = require("./environment-state.js");
|
|
20
|
+
const errors_js_1 = require("./errors.js");
|
|
21
|
+
const nx_workspace_js_1 = require("./nx-workspace.js");
|
|
22
|
+
const personal_stage_js_1 = require("./personal-stage.js");
|
|
23
|
+
const tls_js_1 = require("./tls.js");
|
|
24
|
+
const execFileAsync = (0, node_util_1.promisify)(node_child_process_1.execFile);
|
|
25
|
+
exports.AWS_ENVIRONMENT_PROBE_TIMEOUT_MS = 15_000;
|
|
26
|
+
const MAX_AWS_ENVIRONMENT_PROBE_TIMEOUT_MS = 60_000;
|
|
27
|
+
const AWS_NETWORK_PROBE_IDS = new Set([
|
|
28
|
+
'aws-sdk-credentials',
|
|
29
|
+
'aws-foundation-access',
|
|
30
|
+
]);
|
|
31
|
+
exports.ENVIRONMENT_INSPECTOR_CHECKS = [
|
|
32
|
+
{
|
|
33
|
+
capabilities: ['framework-bootstrap'],
|
|
34
|
+
id: 'platform',
|
|
35
|
+
volatile: false,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
capabilities: ['framework-bootstrap'],
|
|
39
|
+
id: 'node-runtime',
|
|
40
|
+
volatile: false,
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
capabilities: ['framework-bootstrap'],
|
|
44
|
+
id: 'git',
|
|
45
|
+
volatile: false,
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
capabilities: ['framework-bootstrap'],
|
|
49
|
+
id: 'corepack',
|
|
50
|
+
volatile: false,
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
capabilities: ['framework-bootstrap'],
|
|
54
|
+
id: 'pnpm',
|
|
55
|
+
volatile: false,
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
capabilities: ['workspace'],
|
|
59
|
+
id: 'workspace-write',
|
|
60
|
+
volatile: true,
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
capabilities: ['workspace'],
|
|
64
|
+
id: 'workspace-nx',
|
|
65
|
+
volatile: false,
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
capabilities: ['fleet-identity'],
|
|
69
|
+
id: 'personal-stage',
|
|
70
|
+
volatile: false,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
capabilities: ['fleet-control'],
|
|
74
|
+
id: 'private-state-location',
|
|
75
|
+
volatile: true,
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
capabilities: ['fleet-https'],
|
|
79
|
+
id: 'openssl',
|
|
80
|
+
volatile: false,
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
capabilities: ['fleet-https'],
|
|
84
|
+
id: 'tls-state',
|
|
85
|
+
volatile: true,
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
capabilities: ['containers'],
|
|
89
|
+
id: 'docker-cli',
|
|
90
|
+
volatile: false,
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
capabilities: ['containers'],
|
|
94
|
+
id: 'docker-engine',
|
|
95
|
+
volatile: true,
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
capabilities: ['containers'],
|
|
99
|
+
id: 'docker-compose-v2',
|
|
100
|
+
volatile: true,
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
capabilities: ['aws-foundation'],
|
|
104
|
+
id: 'aws-sdk-credentials',
|
|
105
|
+
volatile: true,
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
capabilities: ['aws-foundation'],
|
|
109
|
+
id: 'aws-foundation-access',
|
|
110
|
+
volatile: true,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
capabilities: ['aws-remediation'],
|
|
114
|
+
id: 'aws-cli-remediation',
|
|
115
|
+
volatile: false,
|
|
116
|
+
},
|
|
117
|
+
];
|
|
118
|
+
function environmentDeficiencyAssessment(assessment) {
|
|
119
|
+
return {
|
|
120
|
+
checks: assessment.checks
|
|
121
|
+
.filter(({ severity, status }) => severity === 'required' && status !== 'ready')
|
|
122
|
+
.map(({ detectedVersion, id, minimumVersion, remediation, requiredFor, severity, status, }) => ({
|
|
123
|
+
...(detectedVersion
|
|
124
|
+
? {
|
|
125
|
+
detectedVersion: (0, environment_state_js_1.sanitizeEnvironmentEvidence)(detectedVersion).slice(0, 128),
|
|
126
|
+
}
|
|
127
|
+
: {}),
|
|
128
|
+
id,
|
|
129
|
+
...(minimumVersion
|
|
130
|
+
? {
|
|
131
|
+
minimumVersion: (0, environment_state_js_1.sanitizeEnvironmentEvidence)(minimumVersion).slice(0, 128),
|
|
132
|
+
}
|
|
133
|
+
: {}),
|
|
134
|
+
...(remediation
|
|
135
|
+
? {
|
|
136
|
+
remediation: (0, environment_state_js_1.sanitizeEnvironmentEvidence)(remediation).slice(0, 512),
|
|
137
|
+
}
|
|
138
|
+
: {}),
|
|
139
|
+
requiredFor: requiredFor
|
|
140
|
+
.slice(0, 8)
|
|
141
|
+
.map((profile) => (0, environment_state_js_1.sanitizeEnvironmentEvidence)(profile).slice(0, 64)),
|
|
142
|
+
severity,
|
|
143
|
+
status,
|
|
144
|
+
}))
|
|
145
|
+
.slice(0, 32),
|
|
146
|
+
state: 'deficient',
|
|
147
|
+
};
|
|
148
|
+
}
|
|
149
|
+
class EnvironmentDeficientError extends errors_js_1.LocalDevContractError {
|
|
150
|
+
environmentAssessment;
|
|
151
|
+
constructor(environmentAssessment) {
|
|
152
|
+
const failures = environmentAssessment.checks.map(({ detectedVersion, id, minimumVersion, remediation, requiredFor, status, }) => [
|
|
153
|
+
`${id}=${status}`,
|
|
154
|
+
requiredFor.length > 0
|
|
155
|
+
? `required for ${requiredFor.join(', ')}`
|
|
156
|
+
: undefined,
|
|
157
|
+
detectedVersion ? `detected ${detectedVersion}` : undefined,
|
|
158
|
+
minimumVersion ? `minimum ${minimumVersion}` : undefined,
|
|
159
|
+
remediation ? `remediation: ${remediation}` : undefined,
|
|
160
|
+
]
|
|
161
|
+
.filter((part) => part !== undefined)
|
|
162
|
+
.join('; '));
|
|
163
|
+
super('environment-deficient', `Required development environment capabilities are deficient: ${failures.join('. ')}. Run ebk dev doctor --refresh.`);
|
|
164
|
+
this.environmentAssessment = environmentAssessment;
|
|
165
|
+
this.name = 'EnvironmentDeficientError';
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
exports.EnvironmentDeficientError = EnvironmentDeficientError;
|
|
169
|
+
function environmentError(message) {
|
|
170
|
+
throw new errors_js_1.LocalDevContractError('environment-deficient', message);
|
|
171
|
+
}
|
|
172
|
+
class AwsEnvironmentProbeTimeoutError extends Error {
|
|
173
|
+
probeId;
|
|
174
|
+
timeoutMs;
|
|
175
|
+
constructor(probeId, timeoutMs) {
|
|
176
|
+
super(`AWS environment probe ${probeId} timed out after ${timeoutMs}ms.`);
|
|
177
|
+
this.probeId = probeId;
|
|
178
|
+
this.timeoutMs = timeoutMs;
|
|
179
|
+
this.name = 'AwsEnvironmentProbeTimeoutError';
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
function resolveAwsProbeTimeout(dependencies) {
|
|
183
|
+
const timeoutMs = dependencies.awsProbeTimeoutMs ?? exports.AWS_ENVIRONMENT_PROBE_TIMEOUT_MS;
|
|
184
|
+
if (!Number.isSafeInteger(timeoutMs) ||
|
|
185
|
+
timeoutMs < 1 ||
|
|
186
|
+
timeoutMs > MAX_AWS_ENVIRONMENT_PROBE_TIMEOUT_MS) {
|
|
187
|
+
return environmentError(`AWS environment probe timeout must be an integer from 1 through ${MAX_AWS_ENVIRONMENT_PROBE_TIMEOUT_MS}ms.`);
|
|
188
|
+
}
|
|
189
|
+
return timeoutMs;
|
|
190
|
+
}
|
|
191
|
+
async function withAwsProbeTimeout(probeId, timeoutMs, effect) {
|
|
192
|
+
const controller = new AbortController();
|
|
193
|
+
let timer;
|
|
194
|
+
const timeout = new Promise((_resolve, reject) => {
|
|
195
|
+
timer = setTimeout(() => {
|
|
196
|
+
const error = new AwsEnvironmentProbeTimeoutError(probeId, timeoutMs);
|
|
197
|
+
controller.abort(error);
|
|
198
|
+
reject(error);
|
|
199
|
+
}, timeoutMs);
|
|
200
|
+
});
|
|
201
|
+
try {
|
|
202
|
+
return await Promise.race([effect(controller.signal), timeout]);
|
|
203
|
+
}
|
|
204
|
+
finally {
|
|
205
|
+
if (timer !== undefined)
|
|
206
|
+
clearTimeout(timer);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
function commandRequirements(command, adapters, force = false) {
|
|
210
|
+
const checks = {};
|
|
211
|
+
for (const definition of exports.ENVIRONMENT_INSPECTOR_CHECKS) {
|
|
212
|
+
checks[definition.id] = force ? 'advisory' : 'unverified';
|
|
213
|
+
}
|
|
214
|
+
for (const id of [
|
|
215
|
+
'platform',
|
|
216
|
+
'node-runtime',
|
|
217
|
+
'git',
|
|
218
|
+
'corepack',
|
|
219
|
+
'pnpm',
|
|
220
|
+
'workspace-write',
|
|
221
|
+
]) {
|
|
222
|
+
checks[id] = 'required';
|
|
223
|
+
}
|
|
224
|
+
if (command === 'configure') {
|
|
225
|
+
checks['personal-stage'] = 'required';
|
|
226
|
+
}
|
|
227
|
+
else if (command === 'setup') {
|
|
228
|
+
checks['openssl'] = 'required';
|
|
229
|
+
checks['private-state-location'] = 'required';
|
|
230
|
+
}
|
|
231
|
+
else if (command === 'secret') {
|
|
232
|
+
for (const id of [
|
|
233
|
+
'workspace-nx',
|
|
234
|
+
'personal-stage',
|
|
235
|
+
'private-state-location',
|
|
236
|
+
'aws-sdk-credentials',
|
|
237
|
+
'aws-foundation-access',
|
|
238
|
+
'aws-cli-remediation',
|
|
239
|
+
]) {
|
|
240
|
+
checks[id] = 'required';
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
else if (command === 'up' || command === 'restart') {
|
|
244
|
+
for (const id of [
|
|
245
|
+
'workspace-nx',
|
|
246
|
+
'personal-stage',
|
|
247
|
+
'private-state-location',
|
|
248
|
+
'openssl',
|
|
249
|
+
'tls-state',
|
|
250
|
+
'aws-sdk-credentials',
|
|
251
|
+
'aws-foundation-access',
|
|
252
|
+
]) {
|
|
253
|
+
checks[id] = 'required';
|
|
254
|
+
}
|
|
255
|
+
if (adapters.some(({ databaseMode }) => databaseMode === 'local')) {
|
|
256
|
+
checks['docker-cli'] = 'required';
|
|
257
|
+
checks['docker-engine'] = 'required';
|
|
258
|
+
checks['docker-compose-v2'] = 'required';
|
|
259
|
+
}
|
|
260
|
+
else {
|
|
261
|
+
checks['docker-cli'] = 'not-required';
|
|
262
|
+
checks['docker-engine'] = 'not-required';
|
|
263
|
+
checks['docker-compose-v2'] = 'not-required';
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
else if (command === 'doctor') {
|
|
267
|
+
for (const id of [
|
|
268
|
+
'workspace-nx',
|
|
269
|
+
'personal-stage',
|
|
270
|
+
'private-state-location',
|
|
271
|
+
'openssl',
|
|
272
|
+
'tls-state',
|
|
273
|
+
'aws-sdk-credentials',
|
|
274
|
+
'aws-foundation-access',
|
|
275
|
+
]) {
|
|
276
|
+
checks[id] = 'advisory';
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
return { checks, id: `${command}${force ? '-refresh' : ''}` };
|
|
280
|
+
}
|
|
281
|
+
async function commandVersion(executable, args, timeout = 5_000) {
|
|
282
|
+
const result = await execFileAsync(executable, [...args], {
|
|
283
|
+
encoding: 'utf8',
|
|
284
|
+
maxBuffer: 64 * 1024,
|
|
285
|
+
timeout,
|
|
286
|
+
windowsHide: true,
|
|
287
|
+
});
|
|
288
|
+
return `${result.stdout}${result.stderr}`.trim().split(/\r?\n/, 1)[0] ?? '';
|
|
289
|
+
}
|
|
290
|
+
function commandProbe(executable, args, remediation, minimumVersion) {
|
|
291
|
+
return async () => {
|
|
292
|
+
try {
|
|
293
|
+
const version = await commandVersion(executable, args);
|
|
294
|
+
return {
|
|
295
|
+
detectedVersion: (0, environment_state_js_1.sanitizeEnvironmentEvidence)(version).slice(0, 128),
|
|
296
|
+
...(minimumVersion ? { minimumVersion } : {}),
|
|
297
|
+
status: 'ready',
|
|
298
|
+
};
|
|
299
|
+
}
|
|
300
|
+
catch (error) {
|
|
301
|
+
const candidate = error;
|
|
302
|
+
return {
|
|
303
|
+
evidence: (0, environment_state_js_1.sanitizeEnvironmentEvidence)(error instanceof Error ? error.message : String(error)),
|
|
304
|
+
remediation,
|
|
305
|
+
status: candidate.code === 'ENOENT' ? 'missing' : 'unavailable',
|
|
306
|
+
};
|
|
307
|
+
}
|
|
308
|
+
};
|
|
309
|
+
}
|
|
310
|
+
function evaluateDevelopmentFoundationAccount(accountId, eventBusArn) {
|
|
311
|
+
const expectedAccount = /^arn:[^:]+:events:[^:]+:(\d{12}):event-bus\//.exec(eventBusArn)?.[1];
|
|
312
|
+
if (!expectedAccount || expectedAccount !== accountId) {
|
|
313
|
+
return {
|
|
314
|
+
evidence: expectedAccount
|
|
315
|
+
? `Selected account ${accountId} does not match development Foundation account ${expectedAccount}.`
|
|
316
|
+
: 'Development Foundation eventBusArn does not contain a valid account.',
|
|
317
|
+
remediation: 'Select the saved profile for the development Foundation account before running local development.',
|
|
318
|
+
status: 'incompatible',
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
return {
|
|
322
|
+
evidence: `AWS account ${accountId}; bounded development Foundation SSM access is ready.`,
|
|
323
|
+
status: 'ready',
|
|
324
|
+
};
|
|
325
|
+
}
|
|
326
|
+
function createAbortableCredentialRequestHandler(context, abortSignal) {
|
|
327
|
+
const transportClient = new client_sts_1.STSClient({
|
|
328
|
+
region: context.region,
|
|
329
|
+
});
|
|
330
|
+
const delegate = transportClient.config.requestHandler;
|
|
331
|
+
return {
|
|
332
|
+
destroy: () => transportClient.destroy(),
|
|
333
|
+
requestHandler: {
|
|
334
|
+
...(delegate.metadata ? { metadata: delegate.metadata } : {}),
|
|
335
|
+
handle: (request, handlerOptions) => delegate.handle(request, {
|
|
336
|
+
...handlerOptions,
|
|
337
|
+
abortSignal,
|
|
338
|
+
}),
|
|
339
|
+
},
|
|
340
|
+
};
|
|
341
|
+
}
|
|
342
|
+
async function resolveProfileCredentials(context, abortSignal) {
|
|
343
|
+
const transport = createAbortableCredentialRequestHandler(context, abortSignal);
|
|
344
|
+
try {
|
|
345
|
+
return await (0, credential_providers_1.fromIni)({
|
|
346
|
+
clientConfig: {
|
|
347
|
+
region: context.region,
|
|
348
|
+
requestHandler: transport.requestHandler,
|
|
349
|
+
},
|
|
350
|
+
profile: context.profile,
|
|
351
|
+
})();
|
|
352
|
+
}
|
|
353
|
+
finally {
|
|
354
|
+
transport.destroy();
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
const defaultProbes = {
|
|
358
|
+
platform: async () => {
|
|
359
|
+
const supported = ['darwin', 'linux', 'win32'].includes((0, node_os_1.platform)()) &&
|
|
360
|
+
['arm64', 'x64'].includes((0, node_os_1.arch)());
|
|
361
|
+
return supported
|
|
362
|
+
? { evidence: `${(0, node_os_1.platform)()} ${(0, node_os_1.arch)()}`, status: 'ready' }
|
|
363
|
+
: {
|
|
364
|
+
evidence: `${(0, node_os_1.platform)()} ${(0, node_os_1.arch)()}`,
|
|
365
|
+
remediation: 'Use a supported x64 or arm64 macOS, Linux, or Windows host.',
|
|
366
|
+
status: 'incompatible',
|
|
367
|
+
};
|
|
368
|
+
},
|
|
369
|
+
'node-runtime': async () => ({
|
|
370
|
+
detectedVersion: process.versions.node,
|
|
371
|
+
minimumVersion: '22.12.0',
|
|
372
|
+
remediation: 'Install Node.js 22.12.0 or newer within major 22.',
|
|
373
|
+
status: (0, semver_1.satisfies)(process.versions.node, '>=22.12.0')
|
|
374
|
+
? 'ready'
|
|
375
|
+
: 'incompatible',
|
|
376
|
+
}),
|
|
377
|
+
git: commandProbe('git', ['--version'], 'Install Git and ensure it is available on PATH.'),
|
|
378
|
+
corepack: commandProbe('corepack', ['--version'], 'Install or enable the Node.js Corepack shim.'),
|
|
379
|
+
pnpm: commandProbe('pnpm', ['--version'], 'Activate the workspace-pinned pnpm release through Corepack.'),
|
|
380
|
+
'workspace-write': async ({ workspaceRoot }) => {
|
|
381
|
+
try {
|
|
382
|
+
(0, node_fs_1.accessSync)(workspaceRoot, node_fs_1.constants.R_OK | node_fs_1.constants.W_OK);
|
|
383
|
+
return { status: 'ready' };
|
|
384
|
+
}
|
|
385
|
+
catch (error) {
|
|
386
|
+
return {
|
|
387
|
+
evidence: String(error),
|
|
388
|
+
remediation: 'Restore current-user read/write access to the checkout.',
|
|
389
|
+
status: 'unavailable',
|
|
390
|
+
};
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
'workspace-nx': async ({ workspaceRoot }) => {
|
|
394
|
+
try {
|
|
395
|
+
const runtime = (0, nx_workspace_js_1.resolveWorkspaceNxRuntime)(workspaceRoot);
|
|
396
|
+
return { detectedVersion: runtime.version, status: 'ready' };
|
|
397
|
+
}
|
|
398
|
+
catch (error) {
|
|
399
|
+
return {
|
|
400
|
+
evidence: String(error),
|
|
401
|
+
remediation: 'Install the workspace-pinned supported Nx dependencies.',
|
|
402
|
+
status: 'unavailable',
|
|
403
|
+
};
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
'personal-stage': async ({ identity }) => (0, personal_stage_js_1.isFrameworkPersonalStage)(identity.stage)
|
|
407
|
+
? { evidence: identity.stage, status: 'ready' }
|
|
408
|
+
: {
|
|
409
|
+
remediation: 'Repair operating-system account identity resolution.',
|
|
410
|
+
status: 'unavailable',
|
|
411
|
+
},
|
|
412
|
+
'private-state-location': async ({ appData }) => {
|
|
413
|
+
try {
|
|
414
|
+
const existing = (0, node_fs_1.existsSync)(appData) ? appData : (0, node_path_1.join)(appData, '..');
|
|
415
|
+
(0, node_fs_1.accessSync)(existing, node_fs_1.constants.R_OK | node_fs_1.constants.W_OK);
|
|
416
|
+
return { status: 'ready' };
|
|
417
|
+
}
|
|
418
|
+
catch (error) {
|
|
419
|
+
return {
|
|
420
|
+
evidence: String(error),
|
|
421
|
+
remediation: 'Restore current-user access to the EBK application-data directory.',
|
|
422
|
+
status: 'unavailable',
|
|
423
|
+
};
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
openssl: commandProbe('openssl', ['version'], 'Install a supported OpenSSL executable on PATH.'),
|
|
427
|
+
'tls-state': async ({ appData }) => {
|
|
428
|
+
const paths = (0, tls_js_1.localTlsPaths)(appData);
|
|
429
|
+
const required = [
|
|
430
|
+
paths.rootCertificate,
|
|
431
|
+
paths.intermediateCertificate,
|
|
432
|
+
paths.leafCertificate,
|
|
433
|
+
paths.leafKey,
|
|
434
|
+
paths.capability,
|
|
435
|
+
];
|
|
436
|
+
return required.every(node_fs_1.existsSync)
|
|
437
|
+
? { status: 'ready' }
|
|
438
|
+
: {
|
|
439
|
+
remediation: 'Run ebk dev setup, inspect the root, then explicitly run ebk dev setup --trust.',
|
|
440
|
+
status: 'missing',
|
|
441
|
+
};
|
|
442
|
+
},
|
|
443
|
+
'docker-cli': commandProbe('docker', ['--version'], 'Install Docker with the Docker CLI.'),
|
|
444
|
+
'docker-engine': commandProbe('docker', ['info', '--format', '{{.ServerVersion}}'], 'Start the Docker engine and confirm current-user access.'),
|
|
445
|
+
'docker-compose-v2': commandProbe('docker', ['compose', 'version', '--short'], 'Install or enable Docker Compose v2.'),
|
|
446
|
+
'aws-sdk-credentials': async ({ context }, abortSignal) => {
|
|
447
|
+
try {
|
|
448
|
+
const credentials = await resolveProfileCredentials(context, abortSignal);
|
|
449
|
+
return credentials.accessKeyId
|
|
450
|
+
? { evidence: 'AWS SDK provider chain resolved.', status: 'ready' }
|
|
451
|
+
: {
|
|
452
|
+
remediation: `Repair AWS credentials for profile ${context.profile}.`,
|
|
453
|
+
status: 'unavailable',
|
|
454
|
+
};
|
|
455
|
+
}
|
|
456
|
+
catch (error) {
|
|
457
|
+
return {
|
|
458
|
+
evidence: String(error),
|
|
459
|
+
remediation: `Refresh the AWS SDK credential source for profile ${context.profile}. If it is an SSO profile, run aws sso login --profile ${context.profile}.`,
|
|
460
|
+
status: 'unavailable',
|
|
461
|
+
};
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
'aws-foundation-access': async ({ accountId, accountResolutionFailure, context, identity }, abortSignal) => {
|
|
465
|
+
if (!accountId) {
|
|
466
|
+
return {
|
|
467
|
+
evidence: accountResolutionFailure ??
|
|
468
|
+
'AWS account identity could not be resolved by the bounded STS probe.',
|
|
469
|
+
remediation: `Repair AWS credentials for profile ${context.profile}, then retry the bounded development Foundation check.`,
|
|
470
|
+
status: 'unavailable',
|
|
471
|
+
};
|
|
472
|
+
}
|
|
473
|
+
try {
|
|
474
|
+
const credentials = await resolveProfileCredentials(context, abortSignal);
|
|
475
|
+
const reader = (0, preflight_js_1.createFoundationParameterReader)({
|
|
476
|
+
abortSignal,
|
|
477
|
+
credentials,
|
|
478
|
+
region: context.region,
|
|
479
|
+
});
|
|
480
|
+
try {
|
|
481
|
+
const report = await (0, preflight_js_1.evaluateFoundationPreflight)({
|
|
482
|
+
consumerStage: identity.stage,
|
|
483
|
+
foundationStage: 'development',
|
|
484
|
+
readParameters: reader.read,
|
|
485
|
+
region: context.region,
|
|
486
|
+
requirement: discovery_js_1.STANDARD_FOUNDATION_REQUIREMENT,
|
|
487
|
+
});
|
|
488
|
+
if (!report.ok || !report.discovery) {
|
|
489
|
+
return {
|
|
490
|
+
evidence: report.issues.join('; '),
|
|
491
|
+
remediation: `Grant profile ${context.profile} bounded ssm:GetParameters access to the development Foundation contract in ${context.region}.`,
|
|
492
|
+
status: 'unavailable',
|
|
493
|
+
};
|
|
494
|
+
}
|
|
495
|
+
return evaluateDevelopmentFoundationAccount(accountId, report.discovery.eventBusArn);
|
|
496
|
+
}
|
|
497
|
+
finally {
|
|
498
|
+
reader.destroy();
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
catch (error) {
|
|
502
|
+
return {
|
|
503
|
+
evidence: error instanceof Error ? error.message : String(error),
|
|
504
|
+
remediation: `Grant profile ${context.profile} bounded ssm:GetParameters access to /ebk/development/foundation/* in ${context.region}.`,
|
|
505
|
+
status: 'unavailable',
|
|
506
|
+
};
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
'aws-cli-remediation': commandProbe('aws', ['--version'], 'Install AWS CLI v2 only when the selected SSO profile requires aws sso login remediation.', '2'),
|
|
510
|
+
};
|
|
511
|
+
async function resolveCurrentAwsAccountId(context, abortSignal) {
|
|
512
|
+
const credentials = await resolveProfileCredentials(context, abortSignal);
|
|
513
|
+
const client = new client_sts_1.STSClient({
|
|
514
|
+
credentials,
|
|
515
|
+
region: context.region,
|
|
516
|
+
});
|
|
517
|
+
try {
|
|
518
|
+
const account = (await client.send(new client_sts_1.GetCallerIdentityCommand({}), { abortSignal })).Account;
|
|
519
|
+
if (!account || !/^\d{12}$/.test(account)) {
|
|
520
|
+
throw new Error('AWS STS did not return an exact 12-digit account ID.');
|
|
521
|
+
}
|
|
522
|
+
return account;
|
|
523
|
+
}
|
|
524
|
+
finally {
|
|
525
|
+
client.destroy();
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
function hashFile(path) {
|
|
529
|
+
if (!(0, node_fs_1.existsSync)(path))
|
|
530
|
+
return (0, contract_validation_js_1.sha256Digest)({ missing: true, path: path.split('/').pop() });
|
|
531
|
+
const status = (0, node_fs_1.statSync)(path);
|
|
532
|
+
return (0, contract_validation_js_1.sha256Digest)({
|
|
533
|
+
contentSha256: (0, node_crypto_1.createHash)('sha256')
|
|
534
|
+
.update((0, node_fs_1.readFileSync)(path))
|
|
535
|
+
.digest('hex'),
|
|
536
|
+
mtimeMs: status.mtimeMs,
|
|
537
|
+
size: status.size,
|
|
538
|
+
});
|
|
539
|
+
}
|
|
540
|
+
function fingerprintFor(input, profile, accountId, executableVersions) {
|
|
541
|
+
return (0, environment_state_js_1.createEnvironmentFingerprint)({
|
|
542
|
+
accountId: accountId ?? 'unresolved',
|
|
543
|
+
architecture: (0, node_os_1.arch)(),
|
|
544
|
+
executableResolutionDigest: (0, contract_validation_js_1.sha256Digest)({
|
|
545
|
+
path: process.env.PATH ?? '',
|
|
546
|
+
pathExt: process.env.PATHEXT ?? '',
|
|
547
|
+
}),
|
|
548
|
+
executableVersions: {
|
|
549
|
+
node: process.versions.node,
|
|
550
|
+
...executableVersions,
|
|
551
|
+
},
|
|
552
|
+
frameworkVersion: input.frameworkVersion,
|
|
553
|
+
localContextDigest: (0, contract_validation_js_1.sha256Digest)(input.context),
|
|
554
|
+
lockfileDigest: hashFile((0, node_path_1.join)(input.workspaceRoot, 'pnpm-lock.yaml')),
|
|
555
|
+
personalStageResolverVersion: input.identity.resolverVersion,
|
|
556
|
+
platform: (0, node_os_1.platform)(),
|
|
557
|
+
profile: input.context.profile,
|
|
558
|
+
region: input.context.region,
|
|
559
|
+
requirementProfile: profile.id,
|
|
560
|
+
resolvedStage: input.identity.stage,
|
|
561
|
+
workspaceConfigurationDigest: (0, contract_validation_js_1.sha256Digest)({
|
|
562
|
+
nx: hashFile((0, node_path_1.join)(input.workspaceRoot, 'nx.json')),
|
|
563
|
+
package: hashFile((0, node_path_1.join)(input.workspaceRoot, 'package.json')),
|
|
564
|
+
}),
|
|
565
|
+
});
|
|
566
|
+
}
|
|
567
|
+
function checkResult(definition, profile, observation) {
|
|
568
|
+
const requirement = profile.checks[definition.id] ?? 'unverified';
|
|
569
|
+
return {
|
|
570
|
+
capabilities: [...definition.capabilities],
|
|
571
|
+
...(observation.detectedVersion
|
|
572
|
+
? { detectedVersion: observation.detectedVersion }
|
|
573
|
+
: {}),
|
|
574
|
+
...(observation.evidence
|
|
575
|
+
? { evidence: (0, environment_state_js_1.sanitizeEnvironmentEvidence)(observation.evidence) }
|
|
576
|
+
: {}),
|
|
577
|
+
id: definition.id,
|
|
578
|
+
...(observation.minimumVersion
|
|
579
|
+
? { minimumVersion: observation.minimumVersion }
|
|
580
|
+
: {}),
|
|
581
|
+
...(observation.remediation
|
|
582
|
+
? { remediation: observation.remediation }
|
|
583
|
+
: {}),
|
|
584
|
+
requiredFor: requirement === 'required' || requirement === 'advisory'
|
|
585
|
+
? [profile.id]
|
|
586
|
+
: [],
|
|
587
|
+
severity: requirement === 'required' ? 'required' : 'advisory',
|
|
588
|
+
status: observation.status,
|
|
589
|
+
};
|
|
590
|
+
}
|
|
591
|
+
async function inspectDevelopmentEnvironment(input, dependencies = {}) {
|
|
592
|
+
if (!(0, node_path_1.isAbsolute)(input.workspaceRoot)) {
|
|
593
|
+
return environmentError('Environment inspection requires an absolute workspace root.');
|
|
594
|
+
}
|
|
595
|
+
const profile = commandRequirements(input.command, input.adapters ?? [], input.force);
|
|
596
|
+
const accountRequirement = profile.checks['aws-foundation-access'];
|
|
597
|
+
const awsProbeTimeoutMs = resolveAwsProbeTimeout(dependencies);
|
|
598
|
+
let accountId;
|
|
599
|
+
let accountResolutionFailure;
|
|
600
|
+
if (accountRequirement === 'required' || accountRequirement === 'advisory') {
|
|
601
|
+
try {
|
|
602
|
+
accountId = await withAwsProbeTimeout('aws-account-identity', awsProbeTimeoutMs, (abortSignal) => (dependencies.resolveAccountId ?? resolveCurrentAwsAccountId)(input.context, abortSignal));
|
|
603
|
+
if (!/^\d{12}$/.test(accountId)) {
|
|
604
|
+
accountId = undefined;
|
|
605
|
+
accountResolutionFailure =
|
|
606
|
+
'AWS account identity probe returned an invalid account identifier.';
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
catch (error) {
|
|
610
|
+
accountId = undefined;
|
|
611
|
+
accountResolutionFailure =
|
|
612
|
+
error instanceof AwsEnvironmentProbeTimeoutError
|
|
613
|
+
? error.message
|
|
614
|
+
: 'AWS account identity probe failed.';
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
const fingerprintContext = {
|
|
618
|
+
...(accountId ? { accountId } : {}),
|
|
619
|
+
...(accountResolutionFailure ? { accountResolutionFailure } : {}),
|
|
620
|
+
appData: input.appData ?? (0, tls_js_1.defaultLocalDevAppData)(),
|
|
621
|
+
context: input.context,
|
|
622
|
+
identity: input.identity,
|
|
623
|
+
workspaceRoot: input.workspaceRoot,
|
|
624
|
+
};
|
|
625
|
+
const executableVersions = Object.fromEntries(await Promise.all(['corepack', 'git', 'pnpm'].map(async (id) => {
|
|
626
|
+
const observation = await (dependencies.probes?.[id] ?? defaultProbes[id])(fingerprintContext, new AbortController().signal);
|
|
627
|
+
return [
|
|
628
|
+
id,
|
|
629
|
+
(0, environment_state_js_1.sanitizeEnvironmentEvidence)(observation.detectedVersion ?? observation.status).slice(0, 128),
|
|
630
|
+
];
|
|
631
|
+
})));
|
|
632
|
+
const fingerprint = fingerprintFor(input, profile, accountId, executableVersions);
|
|
633
|
+
const cachedState = (0, environment_state_js_1.readSavedEnvironmentAssessment)(input.workspaceRoot, dependencies.security);
|
|
634
|
+
const cached = cachedState.kind === 'ready' ? cachedState.assessment : undefined;
|
|
635
|
+
const plan = (0, environment_state_js_1.planEnvironmentAssessment)({
|
|
636
|
+
cached,
|
|
637
|
+
catalog: exports.ENVIRONMENT_INSPECTOR_CHECKS,
|
|
638
|
+
fingerprint,
|
|
639
|
+
force: input.force,
|
|
640
|
+
profile,
|
|
641
|
+
});
|
|
642
|
+
const context = fingerprintContext;
|
|
643
|
+
const definitions = new Map(plan.catalog.map((entry) => [entry.id, entry]));
|
|
644
|
+
const passiveProbeSignal = new AbortController().signal;
|
|
645
|
+
const probeResults = await Promise.all(plan.checksToRun.map(async (id) => {
|
|
646
|
+
const definition = definitions.get(id);
|
|
647
|
+
const probe = dependencies.probes?.[id] ??
|
|
648
|
+
defaultProbes[id];
|
|
649
|
+
if (!probe) {
|
|
650
|
+
return checkResult(definition, profile, {
|
|
651
|
+
remediation: `Framework probe ${id} is unavailable.`,
|
|
652
|
+
status: 'unavailable',
|
|
653
|
+
});
|
|
654
|
+
}
|
|
655
|
+
let observation;
|
|
656
|
+
try {
|
|
657
|
+
observation = AWS_NETWORK_PROBE_IDS.has(id)
|
|
658
|
+
? await withAwsProbeTimeout(id, awsProbeTimeoutMs, (abortSignal) => probe(context, abortSignal))
|
|
659
|
+
: await probe(context, passiveProbeSignal);
|
|
660
|
+
}
|
|
661
|
+
catch (error) {
|
|
662
|
+
observation = {
|
|
663
|
+
evidence: error instanceof Error ? error.message : String(error),
|
|
664
|
+
remediation: `Retry ${id} after repairing the reported prerequisite.`,
|
|
665
|
+
status: 'unavailable',
|
|
666
|
+
};
|
|
667
|
+
}
|
|
668
|
+
return checkResult(definition, profile, observation);
|
|
669
|
+
}));
|
|
670
|
+
const assessment = (0, environment_state_js_1.completeEnvironmentAssessment)(plan, probeResults, {
|
|
671
|
+
architecture: (0, node_os_1.arch)(),
|
|
672
|
+
frameworkVersion: input.frameworkVersion,
|
|
673
|
+
identity: input.identity,
|
|
674
|
+
localContextDigest: (0, contract_validation_js_1.sha256Digest)(input.context),
|
|
675
|
+
platform: (0, node_os_1.platform)(),
|
|
676
|
+
profile: input.context.profile,
|
|
677
|
+
region: input.context.region,
|
|
678
|
+
});
|
|
679
|
+
(0, environment_state_js_1.writeSavedEnvironmentAssessment)(input.workspaceRoot, assessment, dependencies.security);
|
|
680
|
+
return assessment;
|
|
681
|
+
}
|
|
682
|
+
function assertEnvironmentReady(assessment) {
|
|
683
|
+
if (assessment.state !== 'deficient')
|
|
684
|
+
return;
|
|
685
|
+
throw new EnvironmentDeficientError(environmentDeficiencyAssessment(assessment));
|
|
686
|
+
}
|
|
687
|
+
//# sourceMappingURL=environment-inspector.js.map
|