@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,511 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DEVELOPER_AGENT_WORKSPACE_SEEDED_PATHS = exports.DEVELOPER_AGENT_ADAPTER_EVALUATION_PATH = exports.DEVELOPER_AGENT_HANDOFF_TEMPLATE_PATH = exports.DEVELOPER_AGENT_RUNBOOK_PATH = void 0;
|
|
4
|
+
exports.renderDeveloperAgentWorkspaceFilePlan = renderDeveloperAgentWorkspaceFilePlan;
|
|
5
|
+
const model_js_1 = require("../../developer-agent/model.js");
|
|
6
|
+
exports.DEVELOPER_AGENT_RUNBOOK_PATH = 'docs/developer-agent.md';
|
|
7
|
+
exports.DEVELOPER_AGENT_HANDOFF_TEMPLATE_PATH = 'docs/developer-agent-handoff.template.json';
|
|
8
|
+
exports.DEVELOPER_AGENT_ADAPTER_EVALUATION_PATH = 'docs/developer-agent-adapters.md';
|
|
9
|
+
exports.DEVELOPER_AGENT_WORKSPACE_SEEDED_PATHS = [
|
|
10
|
+
exports.DEVELOPER_AGENT_RUNBOOK_PATH,
|
|
11
|
+
exports.DEVELOPER_AGENT_HANDOFF_TEMPLATE_PATH,
|
|
12
|
+
exports.DEVELOPER_AGENT_ADAPTER_EVALUATION_PATH,
|
|
13
|
+
];
|
|
14
|
+
const HANDOFF_STATE_DESCRIPTIONS = {
|
|
15
|
+
'implemented-and-verified': 'Implementation and every required verification completed successfully.',
|
|
16
|
+
'implemented-external-proof-pending': 'Implementation completed, but named protected or external proof remains pending.',
|
|
17
|
+
'blocked-before-mutation': 'A prerequisite, policy, ownership, marker, or authority blocker stopped work before mutation.',
|
|
18
|
+
'failed-recovery-complete': 'Execution failed and the recorded recovery completed without pending cleanup.',
|
|
19
|
+
'failed-recovery-or-cleanup-required': 'Execution failed and named recovery or cleanup work is still required.',
|
|
20
|
+
'proposal-or-research-only': 'The record contains no implementation or mutation claim.',
|
|
21
|
+
};
|
|
22
|
+
function renderAgentsAppendix(name) {
|
|
23
|
+
return `## Developer-Agent workflow
|
|
24
|
+
|
|
25
|
+
The Developer-Agent contract is bounded to the ${name} product and this repository. It does
|
|
26
|
+
not grant authority over another repository, account, environment, or worktree.
|
|
27
|
+
|
|
28
|
+
Use \`ebk agent context\`, \`ebk agent plan\`, \`ebk agent upgrade-preview\`,
|
|
29
|
+
\`ebk agent handoff\`, and \`ebk agent resume\`; add \`--json\` when a machine-readable
|
|
30
|
+
result is required. Nx remains the graph and target authority: an agent plan is advisory, and
|
|
31
|
+
work runs only through the authenticated owning target, typed Nx generator, bounded EBK
|
|
32
|
+
development command, frozen package-manager command, or plan-derived adopter-owned
|
|
33
|
+
source-edit scope. Protected and destructive operations expose identity and routing only,
|
|
34
|
+
never local command arguments.
|
|
35
|
+
|
|
36
|
+
External Blueprint receipt review is the one deliberate target exception. Run only
|
|
37
|
+
\`ebk blueprint verification-review\` after the protected static approval; there is no Nx
|
|
38
|
+
receipt target, and an adapter must not invent one. The command leaves unauthoritative
|
|
39
|
+
working-tree receipts for a later protected retention commit. Recurring Blueprint checks
|
|
40
|
+
reported after that commit remain authenticated local-source Nx targets and retain the
|
|
41
|
+
documented same-user installed-toolchain boundary.
|
|
42
|
+
|
|
43
|
+
Begin and hand off implementation work with
|
|
44
|
+
\`pnpm nx run ${name}:work-markers\`. Verify the affected owner target, then run
|
|
45
|
+
\`pnpm nx run ${name}:verify\` and the workspace \`pnpm verify\` barrier before claiming
|
|
46
|
+
implemented-and-verified.
|
|
47
|
+
|
|
48
|
+
Use one topic branch and linked worktree per independent change. Stop on stale base,
|
|
49
|
+
overlapping paths or shared external state, ownership or generated drift, invalid policy,
|
|
50
|
+
blocking markers, missing prerequisites, or unknown authority; never merge, rebase, discard,
|
|
51
|
+
or overwrite another worktree automatically.
|
|
52
|
+
|
|
53
|
+
Local agents may inspect and propose protected work, but staging and production mutation
|
|
54
|
+
belongs to the matching protected GitHub environment and OIDC workflow. Secret values remain
|
|
55
|
+
a human-only TTY ceremony; agents may use only value-blind metadata, status, and verification.
|
|
56
|
+
|
|
57
|
+
Read \`docs/developer-agent.md\`, \`docs/developer-agent-handoff.template.json\`,
|
|
58
|
+
\`docs/developer-agent-adapters.md\`, \`docs/git-workflow.md\`, and
|
|
59
|
+
\`docs/work-markers.md\` before proceeding.
|
|
60
|
+
`;
|
|
61
|
+
}
|
|
62
|
+
function renderHandoffStates() {
|
|
63
|
+
return model_js_1.DEVELOPER_AGENT_HANDOFF_STATES.map((state) => `- \`${state}\`: ${HANDOFF_STATE_DESCRIPTIONS[state]}`).join('\n');
|
|
64
|
+
}
|
|
65
|
+
function renderRunbook(name) {
|
|
66
|
+
return `# Developer-Agent runbook
|
|
67
|
+
|
|
68
|
+
This is the vendor-neutral Developer-Agent contract for the ${name} repository. The
|
|
69
|
+
repository-local CLI, Nx graph, generated ownership records, installed package versions,
|
|
70
|
+
Blueprint records, Repository Operating Policy, Git state, work markers, and declared
|
|
71
|
+
contracts are the sources of truth. Neither Work Orchestration nor the Operations Console is
|
|
72
|
+
required. A skill, MCP client, IDE, or hosted agent service is optional.
|
|
73
|
+
|
|
74
|
+
The numeric JSON schema in this runbook is framework-internal and may change before stable v1.
|
|
75
|
+
Do not publish an adapter or treat it as an independent public API until the repository-native
|
|
76
|
+
CLI and Nx contract complete their live pilots.
|
|
77
|
+
|
|
78
|
+
## Canonical loop
|
|
79
|
+
|
|
80
|
+
1. Run \`pnpm nx run ${name}:work-markers\`.
|
|
81
|
+
2. Run \`ebk agent context\` to inspect bounded repository, Git, project, ownership, policy,
|
|
82
|
+
marker, contract, and verification facts. Select an explicit base and head when affected
|
|
83
|
+
calculation is required. This CLI is the sole full structured context transport. The root
|
|
84
|
+
\`pnpm nx run ${name}:developer-context\` target is a compatibility and graph-authority
|
|
85
|
+
route: its human mode emits concise prose, and \`--json\` emits only the canonical context
|
|
86
|
+
byte length and digest in a bounded fingerprint.
|
|
87
|
+
3. Create one bounded JSON request, then run
|
|
88
|
+
\`ebk agent plan <request.json>\` for one supported operation and reviewed
|
|
89
|
+
acceptance-criteria reference. The plan is advisory and grants no execution authority.
|
|
90
|
+
4. Follow only the reported owner and operation:
|
|
91
|
+
- execute a typed stable Slice, Function, Service, Job, or Upgrade generator with exactly
|
|
92
|
+
the structured arguments reported by the plan;
|
|
93
|
+
- execute authenticated read-only, local-source, or development Nx targets;
|
|
94
|
+
- execute bounded \`ebk dev\` inspection or Slice lifecycle commands;
|
|
95
|
+
- execute the frozen package installation command;
|
|
96
|
+
- make an ordinary source edit only within the plan-derived adopter-owned project scope; or
|
|
97
|
+
- route protected work to the matching GitHub environment and OIDC workflow without
|
|
98
|
+
receiving local command arguments.
|
|
99
|
+
5. Verify the affected project or owner target, rerun
|
|
100
|
+
\`pnpm nx run ${name}:work-markers\`, run \`pnpm nx run ${name}:verify\`, and complete
|
|
101
|
+
\`pnpm verify\` before claiming completion.
|
|
102
|
+
6. Fill an adopter-owned copy of the seeded template, then run
|
|
103
|
+
\`ebk agent handoff <handoff.json>\` to validate exact resumable state. A different actor
|
|
104
|
+
uses \`ebk agent resume <handoff.json>\` and must re-inspect current state rather than
|
|
105
|
+
trust a transcript.
|
|
106
|
+
|
|
107
|
+
There is no agent command that executes an arbitrary plan. Unknown operations remain
|
|
108
|
+
unsupported until their owning target, command, workflow, or runbook has an exact authenticated
|
|
109
|
+
signature and proof contract. The stable Slice, Function, Service, Job, and Upgrade generators
|
|
110
|
+
have closed typed inputs; arbitrary Blueprint references or inputs, dependency changes other
|
|
111
|
+
than frozen installation, mutable development configuration, and secret set/remove remain
|
|
112
|
+
outside \`ebk agent plan\`. Use their direct typed owner and never infer arguments.
|
|
113
|
+
|
|
114
|
+
External Blueprint receipt creation is not an Nx target. After protected Git retains the exact
|
|
115
|
+
static generated-content approval, invoke only \`ebk blueprint verification-review\`. The
|
|
116
|
+
dependency-light launcher enters a controlled child and executes the admitted roots directly;
|
|
117
|
+
it leaves receipts uncommitted for a separate protected retention review. Never replace it with
|
|
118
|
+
\`pnpm\`, \`npx\`, an inferred \`nx run\`, a non-workspace shell shim, or an adapter-generated
|
|
119
|
+
command. The installed workspace package-manager shim may enter the launcher, but the controlled
|
|
120
|
+
child never resolves a sensitive executable through that shim or ambient \`PATH\`. Once the
|
|
121
|
+
retained receipt is present in protected history, context may expose its recurring
|
|
122
|
+
verification roots as ordinary authenticated local-source Nx targets. Those recurring runs do
|
|
123
|
+
not inherit the receipt command's stronger clean-child evidence boundary.
|
|
124
|
+
|
|
125
|
+
The plan request is a regular, non-symlink, workspace-relative JSON file under the generated
|
|
126
|
+
ignored \`.ebk/agent/requests/\` directory. Select an \`operationId\` exactly as reported by
|
|
127
|
+
context:
|
|
128
|
+
|
|
129
|
+
\`\`\`json
|
|
130
|
+
{
|
|
131
|
+
"acceptanceCriteriaReference": "GH:123/acceptance-v2",
|
|
132
|
+
"operationId": "source-edit:${name}",
|
|
133
|
+
"requestedOutcome": "Edit bounded adopter-owned source",
|
|
134
|
+
"selectedFiles": ["path/to/adopter-owned-source.ts"]
|
|
135
|
+
}
|
|
136
|
+
\`\`\`
|
|
137
|
+
|
|
138
|
+
Optional \`assumptions\` remain bounded and explicit. The CLI derives each selected path's
|
|
139
|
+
\`managed\`, \`seeded\`, or \`adopter-owned\` mode from repository ownership records and
|
|
140
|
+
project roots; the request cannot assert it. Cross-project selections, unknown ownership,
|
|
141
|
+
managed or seeded source-edit paths, raw commands, prompts, secret values, absolute paths,
|
|
142
|
+
traversal, and symlink inputs are refused.
|
|
143
|
+
|
|
144
|
+
Typed generator requests add one closed \`generatorInput\` object and cannot supply
|
|
145
|
+
\`selectedFiles\`. New Slice planning accepts only \`{"generator":"slice","name":"billing"}\`
|
|
146
|
+
and the built-in Standard Blueprint. Function, Service, and Job planning requires exact
|
|
147
|
+
\`generator\`, \`slice\`, \`feature\`, and \`name\` strings which must match inspected
|
|
148
|
+
repository context. Upgrade planning accepts only an existing \`workspace\`, \`foundation\`,
|
|
149
|
+
or Product Slice target:
|
|
150
|
+
|
|
151
|
+
\`\`\`json
|
|
152
|
+
{
|
|
153
|
+
"acceptanceCriteriaReference": "GH:123/upgrade-v1",
|
|
154
|
+
"generatorInput": { "generator": "upgrade", "name": "billing" },
|
|
155
|
+
"operationId": "generator:upgrade:preview",
|
|
156
|
+
"requestedOutcome": "Preview the billing ownership upgrade"
|
|
157
|
+
}
|
|
158
|
+
\`\`\`
|
|
159
|
+
|
|
160
|
+
The Upgrade apply plan requires a schema-valid, caller-retained, digest-bound preview. Run
|
|
161
|
+
\`ebk agent upgrade-preview <request.json> .ebk/agent/previews/<name>.json\` from clean,
|
|
162
|
+
non-stale source, retain the returned digest and reference in the apply request's
|
|
163
|
+
\`generatorInput.preview\`, then invoke only the exact owning Nx command reported by that
|
|
164
|
+
plan. Apply revalidates the artifact and independently re-derives its exact mutation candidate.
|
|
165
|
+
Preview artifacts are non-overwriting, allowlisted, non-secret local files under the
|
|
166
|
+
generated ignored \`.ebk/agent/previews/\` directory. POSIX hosts additionally require
|
|
167
|
+
current-user ownership and private directory/file modes; Windows inherits the repository
|
|
168
|
+
directory ACL because Node does not expose an equivalent ownership check. The artifact binds
|
|
169
|
+
the repository commit, workspace, installed framework candidate, ownership-recorded framework
|
|
170
|
+
and Blueprint versions, and optional candidate provenance. Any changed binding requires a
|
|
171
|
+
new preview.
|
|
172
|
+
|
|
173
|
+
Atomic hard-link creation selects one publisher without replacing an existing artifact and
|
|
174
|
+
requires no persistent lock that could be orphaned by a terminated process. Deliberate
|
|
175
|
+
same-UID filesystem tampering is outside this v1 control: Node does not expose the fd-relative
|
|
176
|
+
path operations required to make ancestor replacement race-proof, so any detected path or
|
|
177
|
+
ownership change fails closed.
|
|
178
|
+
|
|
179
|
+
Every typed generator preview is \`local-source\`: even a dry run executes the owning
|
|
180
|
+
generator and may create bounded ignored preview material. An external Blueprint Upgrade
|
|
181
|
+
preview additionally executes the admitted publisher's generator code with supply-chain risk
|
|
182
|
+
under the authority of the invoking process. No preview is a filesystem or network sandbox,
|
|
183
|
+
and none may be reported as read-only proof.
|
|
184
|
+
|
|
185
|
+
Installing a newer stable framework candidate intentionally creates version drift before
|
|
186
|
+
ownership upgrade. Only the Upgrade operation for the exact target may consume its typed
|
|
187
|
+
version-drift finding, and only in dependency order: workspace, then Foundation, then each
|
|
188
|
+
Product Slice. Every identity disagreement, managed drift, package mismatch, wrong target,
|
|
189
|
+
or prerequisite-layer drift remains blocking. Prerelease consumers regenerate cleanly
|
|
190
|
+
instead of using this stable-line transition as beta compatibility.
|
|
191
|
+
|
|
192
|
+
Bound inspection with \`--projects=<names>\`, \`--slice=<name>\`, and optional
|
|
193
|
+
\`--feature=<name>\`. Affected inspection requires the complete
|
|
194
|
+
\`--base=<ref> --head=<ref>\` pair; \`--targets=<names>\` is valid only with that pair.
|
|
195
|
+
Reference an existing generated or separately retained candidate document explicitly with
|
|
196
|
+
\`--candidate-provenance=<workspace-relative-path>\`; context records only its path and
|
|
197
|
+
SHA-256 digest, never its contents.
|
|
198
|
+
|
|
199
|
+
## JSON contract
|
|
200
|
+
|
|
201
|
+
Add \`--json\` to a canonical command when automation needs structured output. JSON output is
|
|
202
|
+
one bounded, versioned CLI envelope. Route automation on its \`namespace\`, \`command\`,
|
|
203
|
+
\`schemaVersion\`, \`outcome\`, and optional \`failureClassification\`, then validate the
|
|
204
|
+
payload's \`kind\` and \`schemaVersion\`; do not scrape human prose. Arrays representing sets
|
|
205
|
+
are deterministically ordered. Output is allowlisted and excludes environment dumps, secret
|
|
206
|
+
values, file contents, raw logs, prompts, and transcripts. Refer to large or protected
|
|
207
|
+
evidence by bounded path, digest, and privacy class.
|
|
208
|
+
|
|
209
|
+
Inspection and planning are report-first. A successful context or plan does not prove that
|
|
210
|
+
mutation, verification, cleanup, protected evidence, or approval occurred.
|
|
211
|
+
|
|
212
|
+
## Stop conditions
|
|
213
|
+
|
|
214
|
+
Stop before mutation when the command reports invalid input, a dirty worktree, stale base,
|
|
215
|
+
overlapping work, ownership conflict, generated drift, policy conflict, blocking marker,
|
|
216
|
+
missing prerequisite, or required authority. Unknown targets fail closed. Do not repair managed
|
|
217
|
+
output directly, silently adopt another worktree's changes, infer a protected credential, or
|
|
218
|
+
broaden an operation beyond the owning tool.
|
|
219
|
+
|
|
220
|
+
For development mutation, name the cleanup and recovery owner before execution. For staging or
|
|
221
|
+
production, a local agent stops at report or proposal: mutation belongs only to the matching
|
|
222
|
+
protected GitHub environment and OIDC workflow. Destructive work additionally requires an exact
|
|
223
|
+
target, explicit approval, retained recovery proof, and completed cleanup.
|
|
224
|
+
|
|
225
|
+
Secret values are entered only through the human TTY ceremony. Agents and CI are limited to
|
|
226
|
+
value-blind secret metadata, status, and verification.
|
|
227
|
+
|
|
228
|
+
## Handoff and resumption
|
|
229
|
+
|
|
230
|
+
\`${exports.DEVELOPER_AGENT_HANDOFF_TEMPLATE_PATH}\` is a seeded draft, not a historical handoff. Its
|
|
231
|
+
zero commits and \`REPLACE_WITH_...\` values are sentinels. Do not retain or resume it until every
|
|
232
|
+
sentinel is replaced with inspected state and the handoff command validates the result. Actual
|
|
233
|
+
handoff records are local checkpoint data: store an adopter-owned copy under the generated
|
|
234
|
+
ignored \`.ebk/agent/handoffs/\` directory, never in a managed or tracked source path. Create
|
|
235
|
+
a handoff only at a clean, committed checkpoint. The record binds the exact repository,
|
|
236
|
+
worktree, Nx-default base ref and commit, head commit, selected projects and targets, canonical
|
|
237
|
+
stage, effective policy digest, candidate provenance, Blueprint and framework versions,
|
|
238
|
+
performed operation identities, marker snapshot, external resources, and required verification
|
|
239
|
+
and evidence.
|
|
240
|
+
|
|
241
|
+
The six honest handoff states are:
|
|
242
|
+
|
|
243
|
+
${renderHandoffStates()}
|
|
244
|
+
|
|
245
|
+
\`${exports.DEVELOPER_AGENT_HANDOFF_TEMPLATE_PATH}\` includes one structurally complete,
|
|
246
|
+
proposal-only \`source-edit:${name}\` result. It demonstrates the nested result and
|
|
247
|
+
Testing/Evidence composition without claiming a mutation: its change sets are empty, its
|
|
248
|
+
result is \`incomplete\`, and its required verification is explicitly pending. Delete that
|
|
249
|
+
operation and result when no operation was attempted, or replace every field with facts from
|
|
250
|
+
the inspected plan, owning tool, and evidence producer.
|
|
251
|
+
|
|
252
|
+
Each retained result must include \`affected\`, \`artifacts\`, \`changes\`, \`cleanup\`,
|
|
253
|
+
\`nextSafeAction\`, \`operation\`, \`outcome\`, \`recovery\`, \`source\`, \`tool\`,
|
|
254
|
+
\`unresolved\`, and \`verification\`; add \`failureClassification\` whenever the result
|
|
255
|
+
contract requires it. Never infer \`succeeded\` from a clean worktree or a command exit alone.
|
|
256
|
+
When proof ran, retain the complete Testing/Evidence result under
|
|
257
|
+
\`testingEvidence.result\`: artifacts, cleanup, counts, environment, findings, retry facts,
|
|
258
|
+
operation and proof layer, outcome and proof-started state, source candidates, timing, and
|
|
259
|
+
workspace identity. Its outer \`reference\`, \`digest\`, and evidence class must match one
|
|
260
|
+
Developer-Agent artifact, and every nested Testing/Evidence artifact must match an outer
|
|
261
|
+
artifact name and digest. Copy producer facts exactly; do not turn blocked, incomplete,
|
|
262
|
+
failed, or flaky proof into passed evidence.
|
|
263
|
+
|
|
264
|
+
The handoff is a reconciliation record, not a second summary:
|
|
265
|
+
|
|
266
|
+
- \`operations\` must be exactly the operations represented by \`results\`;
|
|
267
|
+
- \`changedFiles\`, \`changedContracts\`, \`externalState\`, and \`unresolved\` must be the
|
|
268
|
+
exact unions of their nested result fields;
|
|
269
|
+
- \`requiredVerification\` is the exact executed-or-pending union, and
|
|
270
|
+
\`requiredVerificationPending\` is the exact omitted union;
|
|
271
|
+
- \`requiredEvidence\` is the exact referenced-or-pending union, and protected or recovery
|
|
272
|
+
proof remains in \`requiredEvidencePending\` until its semantic validator succeeds; and
|
|
273
|
+
- result source, Testing/Evidence source, framework and Blueprint candidates, project, Slice,
|
|
274
|
+
stage, target, and proof layer must agree with the retained repository and operation scope.
|
|
275
|
+
|
|
276
|
+
\`implemented-and-verified\` is unavailable while required verification, external proof,
|
|
277
|
+
cleanup, recovery, or another unresolved item remains pending. A resumed actor runs
|
|
278
|
+
\`ebk agent resume\`, re-inspects every retained binding, rebinds the next operation to the
|
|
279
|
+
current registry, and stops on dirty, stale, contradictory, unsupported, or incomplete state.
|
|
280
|
+
\`implemented-and-verified\` requires succeeded results, executed verification, and ingested
|
|
281
|
+
passed Testing/Evidence. \`implemented-external-proof-pending\` requires an
|
|
282
|
+
\`external-proof-pending\` incomplete result plus the named protected or recovery evidence;
|
|
283
|
+
it cannot hide incomplete cleanup or recovery. \`proposal-or-research-only\` permits only
|
|
284
|
+
blocked or incomplete results and no changed file, contract, external resource, or mutation
|
|
285
|
+
claim.
|
|
286
|
+
Completed generator results retain their effective project, contract, verification, and
|
|
287
|
+
evidence scope plus the closed typed generator identity needed to rebind that scope, but never
|
|
288
|
+
executable argv or arbitrary normalized inputs. A generator cannot be a resumable next action;
|
|
289
|
+
create a fresh typed plan instead.
|
|
290
|
+
|
|
291
|
+
## Related runbooks
|
|
292
|
+
|
|
293
|
+
- \`AGENTS.md\`
|
|
294
|
+
- \`docs/architecture.md\`
|
|
295
|
+
- \`docs/git-workflow.md\`
|
|
296
|
+
- \`docs/repository-operating-policy.md\`
|
|
297
|
+
- \`docs/work-markers.md\`
|
|
298
|
+
- \`${exports.DEVELOPER_AGENT_ADAPTER_EVALUATION_PATH}\`
|
|
299
|
+
`;
|
|
300
|
+
}
|
|
301
|
+
function createHandoffTemplate(options) {
|
|
302
|
+
const testingEvidenceDigest = `sha256:${'0'.repeat(64)}`;
|
|
303
|
+
const testingEvidenceReference = '.ebk/agent/evidence/REPLACE_WITH_TESTING_EVIDENCE.json';
|
|
304
|
+
const requiredVerification = `${options.name}:verify`;
|
|
305
|
+
return {
|
|
306
|
+
changedContracts: [],
|
|
307
|
+
changedFiles: [],
|
|
308
|
+
cleanup: { outcome: 'not-required' },
|
|
309
|
+
externalProofPending: false,
|
|
310
|
+
externalState: [],
|
|
311
|
+
kind: model_js_1.DEVELOPER_AGENT_HANDOFF_KIND,
|
|
312
|
+
markerSnapshot: [],
|
|
313
|
+
nextSafeAction: {
|
|
314
|
+
approvalRequired: false,
|
|
315
|
+
authority: 'read-only',
|
|
316
|
+
description: 'Replace every template sentinel, then inspect current context before retaining a handoff.',
|
|
317
|
+
},
|
|
318
|
+
operations: [
|
|
319
|
+
{
|
|
320
|
+
authority: 'local-source',
|
|
321
|
+
id: `source-edit:${options.name}`,
|
|
322
|
+
owner: 'source-edit',
|
|
323
|
+
scope: {
|
|
324
|
+
contracts: [],
|
|
325
|
+
evidenceClasses: ['source'],
|
|
326
|
+
projects: [options.name],
|
|
327
|
+
requiredVerification: [requiredVerification],
|
|
328
|
+
},
|
|
329
|
+
},
|
|
330
|
+
],
|
|
331
|
+
recovery: { outcome: 'not-required' },
|
|
332
|
+
repository: {
|
|
333
|
+
baseCommit: '0'.repeat(40),
|
|
334
|
+
baseRef: 'REPLACE_WITH_DEFAULT_BASE_REF',
|
|
335
|
+
branch: 'REPLACE_WITH_BRANCH',
|
|
336
|
+
headCommit: '0'.repeat(40),
|
|
337
|
+
identity: options.name,
|
|
338
|
+
worktree: 'REPLACE_WITH_ABSOLUTE_WORKTREE',
|
|
339
|
+
},
|
|
340
|
+
requiredEvidence: ['source'],
|
|
341
|
+
requiredEvidencePending: [],
|
|
342
|
+
requiredVerification: [requiredVerification],
|
|
343
|
+
requiredVerificationPending: [requiredVerification],
|
|
344
|
+
results: [
|
|
345
|
+
{
|
|
346
|
+
affected: {
|
|
347
|
+
contracts: [],
|
|
348
|
+
projects: [options.name],
|
|
349
|
+
},
|
|
350
|
+
artifacts: [
|
|
351
|
+
{
|
|
352
|
+
digest: testingEvidenceDigest,
|
|
353
|
+
evidenceClass: 'source',
|
|
354
|
+
name: 'testing-evidence-result.json',
|
|
355
|
+
privacyClass: 'repository-internal',
|
|
356
|
+
reference: testingEvidenceReference,
|
|
357
|
+
},
|
|
358
|
+
],
|
|
359
|
+
changes: {
|
|
360
|
+
externalResources: [],
|
|
361
|
+
files: [],
|
|
362
|
+
},
|
|
363
|
+
cleanup: { outcome: 'not-required' },
|
|
364
|
+
kind: model_js_1.DEVELOPER_AGENT_RESULT_KIND,
|
|
365
|
+
nextSafeAction: {
|
|
366
|
+
approvalRequired: false,
|
|
367
|
+
authority: 'read-only',
|
|
368
|
+
description: 'Replace the proposal-only example with inspected facts or remove it.',
|
|
369
|
+
},
|
|
370
|
+
operation: {
|
|
371
|
+
name: `source-edit:${options.name}`,
|
|
372
|
+
normalizedInputs: [],
|
|
373
|
+
},
|
|
374
|
+
outcome: 'incomplete',
|
|
375
|
+
recovery: { outcome: 'not-required' },
|
|
376
|
+
schemaVersion: model_js_1.DEVELOPER_AGENT_CONTRACT_SCHEMA_VERSION,
|
|
377
|
+
source: {
|
|
378
|
+
commit: '0'.repeat(40),
|
|
379
|
+
worktree: 'REPLACE_WITH_ABSOLUTE_WORKTREE',
|
|
380
|
+
},
|
|
381
|
+
testingEvidence: {
|
|
382
|
+
digest: testingEvidenceDigest,
|
|
383
|
+
reference: testingEvidenceReference,
|
|
384
|
+
result: {
|
|
385
|
+
artifacts: [],
|
|
386
|
+
cleanup: { outcome: 'not-required' },
|
|
387
|
+
counts: {
|
|
388
|
+
failed: 0,
|
|
389
|
+
passed: 1,
|
|
390
|
+
quarantined: 0,
|
|
391
|
+
retried: 0,
|
|
392
|
+
skipped: 0,
|
|
393
|
+
},
|
|
394
|
+
environment: {
|
|
395
|
+
class: 'local',
|
|
396
|
+
deployed: false,
|
|
397
|
+
},
|
|
398
|
+
findings: [],
|
|
399
|
+
identicalRetry: false,
|
|
400
|
+
kind: 'testing-evidence-result',
|
|
401
|
+
operation: {
|
|
402
|
+
commandVersion: 'REPLACE_WITH_COMMAND_VERSION',
|
|
403
|
+
project: options.name,
|
|
404
|
+
proofLayer: 'source',
|
|
405
|
+
target: 'verify',
|
|
406
|
+
},
|
|
407
|
+
outcome: 'passed',
|
|
408
|
+
proofStarted: true,
|
|
409
|
+
retryChangedOutcome: false,
|
|
410
|
+
schemaVersion: model_js_1.DEVELOPER_AGENT_TESTING_EVIDENCE_SCHEMA_VERSION,
|
|
411
|
+
source: {
|
|
412
|
+
blueprintCandidates: [],
|
|
413
|
+
commit: '0'.repeat(40),
|
|
414
|
+
frameworkCandidate: `@empire-builder-kit/nx@${options.frameworkVersion}`,
|
|
415
|
+
},
|
|
416
|
+
timing: {
|
|
417
|
+
completedAt: '2026-01-01T00:00:01.000Z',
|
|
418
|
+
durationMs: 1000,
|
|
419
|
+
startedAt: '2026-01-01T00:00:00.000Z',
|
|
420
|
+
},
|
|
421
|
+
workspace: options.name,
|
|
422
|
+
},
|
|
423
|
+
schemaVersion: model_js_1.DEVELOPER_AGENT_TESTING_EVIDENCE_SCHEMA_VERSION,
|
|
424
|
+
},
|
|
425
|
+
tool: {
|
|
426
|
+
contractVersion: model_js_1.DEVELOPER_AGENT_CONTRACT_SCHEMA_VERSION,
|
|
427
|
+
name: 'source-edit',
|
|
428
|
+
version: options.frameworkVersion,
|
|
429
|
+
},
|
|
430
|
+
unresolved: {
|
|
431
|
+
approvalNeeds: [],
|
|
432
|
+
assumptions: [],
|
|
433
|
+
conflicts: [],
|
|
434
|
+
markers: [],
|
|
435
|
+
},
|
|
436
|
+
verification: {
|
|
437
|
+
executed: [],
|
|
438
|
+
omitted: [requiredVerification],
|
|
439
|
+
},
|
|
440
|
+
},
|
|
441
|
+
],
|
|
442
|
+
schemaVersion: model_js_1.DEVELOPER_AGENT_CONTRACT_SCHEMA_VERSION,
|
|
443
|
+
selection: {
|
|
444
|
+
affectedTargets: ['verify'],
|
|
445
|
+
projects: [options.name],
|
|
446
|
+
},
|
|
447
|
+
state: 'proposal-or-research-only',
|
|
448
|
+
unresolved: {
|
|
449
|
+
approvalNeeds: [],
|
|
450
|
+
assumptions: [],
|
|
451
|
+
conflicts: [],
|
|
452
|
+
markers: [],
|
|
453
|
+
},
|
|
454
|
+
versions: {
|
|
455
|
+
blueprintVersions: [],
|
|
456
|
+
canonicalStage: 'development',
|
|
457
|
+
effectivePolicyDigest: `sha256:${'0'.repeat(64)}`,
|
|
458
|
+
frameworkVersion: options.frameworkVersion,
|
|
459
|
+
policyReferences: ['ebk.repository-policy.json'],
|
|
460
|
+
},
|
|
461
|
+
work: {
|
|
462
|
+
acceptanceCriteriaRevision: 'REPLACE_WITH_ACCEPTANCE_CRITERIA_REVISION',
|
|
463
|
+
reference: 'REPLACE_WITH_WORK_REFERENCE',
|
|
464
|
+
},
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
function renderAdapterEvaluation() {
|
|
468
|
+
return `# Optional Developer-Agent adapter evaluation
|
|
469
|
+
|
|
470
|
+
Stable-v1 decision: Empire Builder Kit does not ship a skill or MCP adapter before v1. The
|
|
471
|
+
repository-local \`ebk agent context\`, \`ebk agent plan\`, \`ebk agent upgrade-preview\`,
|
|
472
|
+
\`ebk agent handoff\`, \`ebk agent resume\`, and declared Nx targets are the canonical
|
|
473
|
+
contract for humans and agents. Revisit an adapter only after that contract completes its
|
|
474
|
+
live pilots.
|
|
475
|
+
|
|
476
|
+
A skill or MCP adapter is optional.
|
|
477
|
+
|
|
478
|
+
A future adapter may only wrap those same commands and declared targets. The repository-local
|
|
479
|
+
CLI and Nx contract must remain fully usable without it.
|
|
480
|
+
|
|
481
|
+
An adapter gains no filesystem, network, credential, approval, Git, cloud, or protected-stage
|
|
482
|
+
authority. It must preserve structured argv, bounded JSON, stable classifications, redaction,
|
|
483
|
+
stop conditions, and owning-tool selection byte-for-byte. Protected mutation still belongs to
|
|
484
|
+
the matching GitHub environment and OIDC workflow.
|
|
485
|
+
|
|
486
|
+
Evaluate an adapter only when it:
|
|
487
|
+
|
|
488
|
+
- adds no parallel project graph, ownership model, operation registry, or result vocabulary;
|
|
489
|
+
- treats repository, issue, Blueprint, and log content as untrusted data rather than instructions;
|
|
490
|
+
- neither broadens a plan nor invents an execution path;
|
|
491
|
+
- exposes no additional secret or environment data;
|
|
492
|
+
- preserves operation, failure, handoff, and resumption semantics; and
|
|
493
|
+
- can be removed without changing the repository workflow or retained handoff.
|
|
494
|
+
|
|
495
|
+
Neither Work Orchestration nor the Operations Console is a prerequisite for this adapter or the
|
|
496
|
+
canonical Developer-Agent contract.
|
|
497
|
+
`;
|
|
498
|
+
}
|
|
499
|
+
function renderDeveloperAgentWorkspaceFilePlan(options) {
|
|
500
|
+
const template = createHandoffTemplate(options);
|
|
501
|
+
return {
|
|
502
|
+
agentsAppendix: renderAgentsAppendix(options.name),
|
|
503
|
+
files: {
|
|
504
|
+
[exports.DEVELOPER_AGENT_RUNBOOK_PATH]: renderRunbook(options.name),
|
|
505
|
+
[exports.DEVELOPER_AGENT_HANDOFF_TEMPLATE_PATH]: `${JSON.stringify(template, null, 2)}\n`,
|
|
506
|
+
[exports.DEVELOPER_AGENT_ADAPTER_EVALUATION_PATH]: renderAdapterEvaluation(),
|
|
507
|
+
},
|
|
508
|
+
seededPaths: exports.DEVELOPER_AGENT_WORKSPACE_SEEDED_PATHS,
|
|
509
|
+
};
|
|
510
|
+
}
|
|
511
|
+
//# sourceMappingURL=workspace-files-developer-agent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workspace-files-developer-agent.js","sourceRoot":"","sources":["../../../../../../packages/nx/src/generators/preset/workspace-files-developer-agent.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Renders the Foundation's single generated workload role. It stays separate
|
|
3
|
+
* from the broad workspace template so candidate, preflight, and injection
|
|
4
|
+
* semantics can be inspected without parsing unrelated Foundation resources.
|
|
5
|
+
*/
|
|
6
|
+
export declare function renderFoundationWorkloadRoleFiles(): Readonly<Record<string, string>>;
|