@llm-dev-ops/agentics-cli 1.4.27 → 1.4.29
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/dist/agents/repo-agent-runner.d.ts +2 -0
- package/dist/agents/repo-agent-runner.d.ts.map +1 -1
- package/dist/agents/repo-agent-runner.js +212 -10
- package/dist/agents/repo-agent-runner.js.map +1 -1
- package/dist/bundled-agents/auto-optimizer-agents/dist/claude.js +5 -2
- package/dist/bundled-agents/auto-optimizer-agents/package-lock.json +59 -18
- package/dist/bundled-agents/connector-hub-agents/package-lock.json +12 -0
- package/dist/bundled-agents/costops-agents/dist/claude.js +5 -2
- package/dist/bundled-agents/data-vault-agents/dist/claude.js +5 -2
- package/dist/bundled-agents/data-vault-agents/src/claude.ts +71 -0
- package/dist/bundled-agents/governance-dashboard-agents/dist/claude.js +5 -2
- package/dist/bundled-agents/governance-dashboard-agents/src/claude.ts +71 -0
- package/dist/bundled-agents/orchestrator-agents/package-lock.json +12790 -0
- package/dist/bundled-agents/platform-agents/dist/claude.js +5 -2
- package/dist/bundled-agents/platform-agents/src/claude.ts +5 -2
- package/dist/bundled-agents/policy-engine-agents/dist/claude.js +5 -2
- package/dist/bundled-agents/policy-engine-agents/package-lock.json +3 -0
- package/dist/bundled-agents/policy-engine-agents/src/claude.ts +71 -0
- package/dist/cli/index.js +136 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/commands/agents.d.ts.map +1 -1
- package/dist/commands/agents.js +456 -47
- package/dist/commands/agents.js.map +1 -1
- package/dist/commands/phase2.d.ts +38 -0
- package/dist/commands/phase2.d.ts.map +1 -0
- package/dist/commands/phase2.js +213 -0
- package/dist/commands/phase2.js.map +1 -0
- package/dist/commands/phase3.d.ts +38 -0
- package/dist/commands/phase3.d.ts.map +1 -0
- package/dist/commands/phase3.js +241 -0
- package/dist/commands/phase3.js.map +1 -0
- package/dist/commands/phase4.d.ts +39 -0
- package/dist/commands/phase4.d.ts.map +1 -0
- package/dist/commands/phase4.js +258 -0
- package/dist/commands/phase4.js.map +1 -0
- package/dist/commands/phase5.d.ts +38 -0
- package/dist/commands/phase5.d.ts.map +1 -0
- package/dist/commands/phase5.js +254 -0
- package/dist/commands/phase5.js.map +1 -0
- package/dist/commands/phase6.d.ts +41 -0
- package/dist/commands/phase6.d.ts.map +1 -0
- package/dist/commands/phase6.js +355 -0
- package/dist/commands/phase6.js.map +1 -0
- package/dist/deps/erp-database-map.d.ts +62 -0
- package/dist/deps/erp-database-map.d.ts.map +1 -0
- package/dist/deps/erp-database-map.js +244 -0
- package/dist/deps/erp-database-map.js.map +1 -0
- package/dist/deps/platform-repo-resolver.d.ts +53 -0
- package/dist/deps/platform-repo-resolver.d.ts.map +1 -0
- package/dist/deps/platform-repo-resolver.js +256 -0
- package/dist/deps/platform-repo-resolver.js.map +1 -0
- package/dist/deps/repo-errors.d.ts +23 -0
- package/dist/deps/repo-errors.d.ts.map +1 -0
- package/dist/deps/repo-errors.js +84 -0
- package/dist/deps/repo-errors.js.map +1 -0
- package/dist/enterprise/integration-registry.d.ts.map +1 -1
- package/dist/enterprise/integration-registry.js +90 -0
- package/dist/enterprise/integration-registry.js.map +1 -1
- package/dist/modules/command-parser.d.ts +1 -1
- package/dist/modules/command-parser.d.ts.map +1 -1
- package/dist/modules/command-parser.js +7 -0
- package/dist/modules/command-parser.js.map +1 -1
- package/dist/pipeline/phase2/index.d.ts +16 -0
- package/dist/pipeline/phase2/index.d.ts.map +1 -0
- package/dist/pipeline/phase2/index.js +15 -0
- package/dist/pipeline/phase2/index.js.map +1 -0
- package/dist/pipeline/phase2/manifest-writer.d.ts +33 -0
- package/dist/pipeline/phase2/manifest-writer.d.ts.map +1 -0
- package/dist/pipeline/phase2/manifest-writer.js +129 -0
- package/dist/pipeline/phase2/manifest-writer.js.map +1 -0
- package/dist/pipeline/phase2/phase2-coordinator.d.ts +20 -0
- package/dist/pipeline/phase2/phase2-coordinator.d.ts.map +1 -0
- package/dist/pipeline/phase2/phase2-coordinator.js +146 -0
- package/dist/pipeline/phase2/phase2-coordinator.js.map +1 -0
- package/dist/pipeline/phase2/phases/adr-generator.d.ts +45 -0
- package/dist/pipeline/phase2/phases/adr-generator.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/adr-generator.js +699 -0
- package/dist/pipeline/phase2/phases/adr-generator.js.map +1 -0
- package/dist/pipeline/phase2/phases/artifact-loader.d.ts +25 -0
- package/dist/pipeline/phase2/phases/artifact-loader.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/artifact-loader.js +164 -0
- package/dist/pipeline/phase2/phases/artifact-loader.js.map +1 -0
- package/dist/pipeline/phase2/phases/ddd-generator.d.ts +82 -0
- package/dist/pipeline/phase2/phases/ddd-generator.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/ddd-generator.js +1007 -0
- package/dist/pipeline/phase2/phases/ddd-generator.js.map +1 -0
- package/dist/pipeline/phase2/phases/research-dossier.d.ts +40 -0
- package/dist/pipeline/phase2/phases/research-dossier.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/research-dossier.js +601 -0
- package/dist/pipeline/phase2/phases/research-dossier.js.map +1 -0
- package/dist/pipeline/phase2/phases/sparc-specification.d.ts +38 -0
- package/dist/pipeline/phase2/phases/sparc-specification.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/sparc-specification.js +746 -0
- package/dist/pipeline/phase2/phases/sparc-specification.js.map +1 -0
- package/dist/pipeline/phase2/phases/tdd-plan-generator.d.ts +39 -0
- package/dist/pipeline/phase2/phases/tdd-plan-generator.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/tdd-plan-generator.js +586 -0
- package/dist/pipeline/phase2/phases/tdd-plan-generator.js.map +1 -0
- package/dist/pipeline/phase2/renderers/markdown-renderer.d.ts +30 -0
- package/dist/pipeline/phase2/renderers/markdown-renderer.d.ts.map +1 -0
- package/dist/pipeline/phase2/renderers/markdown-renderer.js +483 -0
- package/dist/pipeline/phase2/renderers/markdown-renderer.js.map +1 -0
- package/dist/pipeline/phase2/schemas.d.ts +1043 -0
- package/dist/pipeline/phase2/schemas.d.ts.map +1 -0
- package/dist/pipeline/phase2/schemas.js +364 -0
- package/dist/pipeline/phase2/schemas.js.map +1 -0
- package/dist/pipeline/phase2/telemetry.d.ts +46 -0
- package/dist/pipeline/phase2/telemetry.d.ts.map +1 -0
- package/dist/pipeline/phase2/telemetry.js +86 -0
- package/dist/pipeline/phase2/telemetry.js.map +1 -0
- package/dist/pipeline/phase2/types.d.ts +513 -0
- package/dist/pipeline/phase2/types.d.ts.map +1 -0
- package/dist/pipeline/phase2/types.js +13 -0
- package/dist/pipeline/phase2/types.js.map +1 -0
- package/dist/pipeline/phase3/index.d.ts +18 -0
- package/dist/pipeline/phase3/index.d.ts.map +1 -0
- package/dist/pipeline/phase3/index.js +17 -0
- package/dist/pipeline/phase3/index.js.map +1 -0
- package/dist/pipeline/phase3/manifest-writer.d.ts +41 -0
- package/dist/pipeline/phase3/manifest-writer.d.ts.map +1 -0
- package/dist/pipeline/phase3/manifest-writer.js +131 -0
- package/dist/pipeline/phase3/manifest-writer.js.map +1 -0
- package/dist/pipeline/phase3/phase3-coordinator.d.ts +25 -0
- package/dist/pipeline/phase3/phase3-coordinator.d.ts.map +1 -0
- package/dist/pipeline/phase3/phase3-coordinator.js +224 -0
- package/dist/pipeline/phase3/phase3-coordinator.js.map +1 -0
- package/dist/pipeline/phase3/phases/domain-codegen.d.ts +45 -0
- package/dist/pipeline/phase3/phases/domain-codegen.d.ts.map +1 -0
- package/dist/pipeline/phase3/phases/domain-codegen.js +1072 -0
- package/dist/pipeline/phase3/phases/domain-codegen.js.map +1 -0
- package/dist/pipeline/phase3/phases/language-resolver.d.ts +52 -0
- package/dist/pipeline/phase3/phases/language-resolver.d.ts.map +1 -0
- package/dist/pipeline/phase3/phases/language-resolver.js +628 -0
- package/dist/pipeline/phase3/phases/language-resolver.js.map +1 -0
- package/dist/pipeline/phase3/phases/phase2-validator.d.ts +24 -0
- package/dist/pipeline/phase3/phases/phase2-validator.d.ts.map +1 -0
- package/dist/pipeline/phase3/phases/phase2-validator.js +168 -0
- package/dist/pipeline/phase3/phases/phase2-validator.js.map +1 -0
- package/dist/pipeline/phase3/phases/ruflo-executor.d.ts +24 -0
- package/dist/pipeline/phase3/phases/ruflo-executor.d.ts.map +1 -0
- package/dist/pipeline/phase3/phases/ruflo-executor.js +197 -0
- package/dist/pipeline/phase3/phases/ruflo-executor.js.map +1 -0
- package/dist/pipeline/phase3/phases/scaffold-generator.d.ts +39 -0
- package/dist/pipeline/phase3/phases/scaffold-generator.d.ts.map +1 -0
- package/dist/pipeline/phase3/phases/scaffold-generator.js +538 -0
- package/dist/pipeline/phase3/phases/scaffold-generator.js.map +1 -0
- package/dist/pipeline/phase3/phases/test-generator.d.ts +38 -0
- package/dist/pipeline/phase3/phases/test-generator.d.ts.map +1 -0
- package/dist/pipeline/phase3/phases/test-generator.js +381 -0
- package/dist/pipeline/phase3/phases/test-generator.js.map +1 -0
- package/dist/pipeline/phase3/schemas.d.ts +231 -0
- package/dist/pipeline/phase3/schemas.d.ts.map +1 -0
- package/dist/pipeline/phase3/schemas.js +225 -0
- package/dist/pipeline/phase3/schemas.js.map +1 -0
- package/dist/pipeline/phase3/types.d.ts +270 -0
- package/dist/pipeline/phase3/types.d.ts.map +1 -0
- package/dist/pipeline/phase3/types.js +12 -0
- package/dist/pipeline/phase3/types.js.map +1 -0
- package/dist/pipeline/phase3-sparc/index.d.ts +9 -0
- package/dist/pipeline/phase3-sparc/index.d.ts.map +1 -0
- package/dist/pipeline/phase3-sparc/index.js +8 -0
- package/dist/pipeline/phase3-sparc/index.js.map +1 -0
- package/dist/pipeline/phase3-sparc/manifest-writer.d.ts +26 -0
- package/dist/pipeline/phase3-sparc/manifest-writer.d.ts.map +1 -0
- package/dist/pipeline/phase3-sparc/manifest-writer.js +129 -0
- package/dist/pipeline/phase3-sparc/manifest-writer.js.map +1 -0
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.d.ts +14 -0
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.d.ts.map +1 -0
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.js +351 -0
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.js.map +1 -0
- package/dist/pipeline/phase3-sparc/types.d.ts +44 -0
- package/dist/pipeline/phase3-sparc/types.d.ts.map +1 -0
- package/dist/pipeline/phase3-sparc/types.js +8 -0
- package/dist/pipeline/phase3-sparc/types.js.map +1 -0
- package/dist/pipeline/phase4/errors.d.ts +31 -0
- package/dist/pipeline/phase4/errors.d.ts.map +1 -0
- package/dist/pipeline/phase4/errors.js +115 -0
- package/dist/pipeline/phase4/errors.js.map +1 -0
- package/dist/pipeline/phase4/index.d.ts +21 -0
- package/dist/pipeline/phase4/index.d.ts.map +1 -0
- package/dist/pipeline/phase4/index.js +20 -0
- package/dist/pipeline/phase4/index.js.map +1 -0
- package/dist/pipeline/phase4/manifest-writer.d.ts +44 -0
- package/dist/pipeline/phase4/manifest-writer.d.ts.map +1 -0
- package/dist/pipeline/phase4/manifest-writer.js +135 -0
- package/dist/pipeline/phase4/manifest-writer.js.map +1 -0
- package/dist/pipeline/phase4/phase4-coordinator.d.ts +27 -0
- package/dist/pipeline/phase4/phase4-coordinator.d.ts.map +1 -0
- package/dist/pipeline/phase4/phase4-coordinator.js +238 -0
- package/dist/pipeline/phase4/phase4-coordinator.js.map +1 -0
- package/dist/pipeline/phase4/phases/deployment-generator.d.ts +32 -0
- package/dist/pipeline/phase4/phases/deployment-generator.d.ts.map +1 -0
- package/dist/pipeline/phase4/phases/deployment-generator.js +312 -0
- package/dist/pipeline/phase4/phases/deployment-generator.js.map +1 -0
- package/dist/pipeline/phase4/phases/erp-client-generator.d.ts +33 -0
- package/dist/pipeline/phase4/phases/erp-client-generator.d.ts.map +1 -0
- package/dist/pipeline/phase4/phases/erp-client-generator.js +675 -0
- package/dist/pipeline/phase4/phases/erp-client-generator.js.map +1 -0
- package/dist/pipeline/phase4/phases/erp-target-resolver.d.ts +25 -0
- package/dist/pipeline/phase4/phases/erp-target-resolver.d.ts.map +1 -0
- package/dist/pipeline/phase4/phases/erp-target-resolver.js +219 -0
- package/dist/pipeline/phase4/phases/erp-target-resolver.js.map +1 -0
- package/dist/pipeline/phase4/phases/http-server-generator.d.ts +33 -0
- package/dist/pipeline/phase4/phases/http-server-generator.d.ts.map +1 -0
- package/dist/pipeline/phase4/phases/http-server-generator.js +1010 -0
- package/dist/pipeline/phase4/phases/http-server-generator.js.map +1 -0
- package/dist/pipeline/phase4/phases/infra-adapter-generator.d.ts +31 -0
- package/dist/pipeline/phase4/phases/infra-adapter-generator.d.ts.map +1 -0
- package/dist/pipeline/phase4/phases/infra-adapter-generator.js +607 -0
- package/dist/pipeline/phase4/phases/infra-adapter-generator.js.map +1 -0
- package/dist/pipeline/phase4/phases/metadata-augmentor.d.ts +34 -0
- package/dist/pipeline/phase4/phases/metadata-augmentor.d.ts.map +1 -0
- package/dist/pipeline/phase4/phases/metadata-augmentor.js +253 -0
- package/dist/pipeline/phase4/phases/metadata-augmentor.js.map +1 -0
- package/dist/pipeline/phase4/phases/phase3-validator.d.ts +26 -0
- package/dist/pipeline/phase4/phases/phase3-validator.d.ts.map +1 -0
- package/dist/pipeline/phase4/phases/phase3-validator.js +184 -0
- package/dist/pipeline/phase4/phases/phase3-validator.js.map +1 -0
- package/dist/pipeline/phase4/phases/schema-generator.d.ts +31 -0
- package/dist/pipeline/phase4/phases/schema-generator.d.ts.map +1 -0
- package/dist/pipeline/phase4/phases/schema-generator.js +373 -0
- package/dist/pipeline/phase4/phases/schema-generator.js.map +1 -0
- package/dist/pipeline/phase4/schemas.d.ts +63 -0
- package/dist/pipeline/phase4/schemas.d.ts.map +1 -0
- package/dist/pipeline/phase4/schemas.js +64 -0
- package/dist/pipeline/phase4/schemas.js.map +1 -0
- package/dist/pipeline/phase4/types.d.ts +269 -0
- package/dist/pipeline/phase4/types.d.ts.map +1 -0
- package/dist/pipeline/phase4/types.js +13 -0
- package/dist/pipeline/phase4/types.js.map +1 -0
- package/dist/pipeline/phase4-adrs/index.d.ts +13 -0
- package/dist/pipeline/phase4-adrs/index.d.ts.map +1 -0
- package/dist/pipeline/phase4-adrs/index.js +12 -0
- package/dist/pipeline/phase4-adrs/index.js.map +1 -0
- package/dist/pipeline/phase4-adrs/manifest-writer.d.ts +31 -0
- package/dist/pipeline/phase4-adrs/manifest-writer.d.ts.map +1 -0
- package/dist/pipeline/phase4-adrs/manifest-writer.js +105 -0
- package/dist/pipeline/phase4-adrs/manifest-writer.js.map +1 -0
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.d.ts +25 -0
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.d.ts.map +1 -0
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js +312 -0
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js.map +1 -0
- package/dist/pipeline/phase4-adrs/types.d.ts +45 -0
- package/dist/pipeline/phase4-adrs/types.d.ts.map +1 -0
- package/dist/pipeline/phase4-adrs/types.js +8 -0
- package/dist/pipeline/phase4-adrs/types.js.map +1 -0
- package/dist/pipeline/phase5/index.d.ts +18 -0
- package/dist/pipeline/phase5/index.d.ts.map +1 -0
- package/dist/pipeline/phase5/index.js +17 -0
- package/dist/pipeline/phase5/index.js.map +1 -0
- package/dist/pipeline/phase5/manifest-writer.d.ts +41 -0
- package/dist/pipeline/phase5/manifest-writer.d.ts.map +1 -0
- package/dist/pipeline/phase5/manifest-writer.js +136 -0
- package/dist/pipeline/phase5/manifest-writer.js.map +1 -0
- package/dist/pipeline/phase5/phase5-coordinator.d.ts +23 -0
- package/dist/pipeline/phase5/phase5-coordinator.d.ts.map +1 -0
- package/dist/pipeline/phase5/phase5-coordinator.js +228 -0
- package/dist/pipeline/phase5/phase5-coordinator.js.map +1 -0
- package/dist/pipeline/phase5/phases/deployment-finalizer.d.ts +41 -0
- package/dist/pipeline/phase5/phases/deployment-finalizer.d.ts.map +1 -0
- package/dist/pipeline/phase5/phases/deployment-finalizer.js +663 -0
- package/dist/pipeline/phase5/phases/deployment-finalizer.js.map +1 -0
- package/dist/pipeline/phase5/phases/phase4-validator.d.ts +30 -0
- package/dist/pipeline/phase5/phases/phase4-validator.d.ts.map +1 -0
- package/dist/pipeline/phase5/phases/phase4-validator.js +276 -0
- package/dist/pipeline/phase5/phases/phase4-validator.js.map +1 -0
- package/dist/pipeline/phase5/phases/project-materializer.d.ts +26 -0
- package/dist/pipeline/phase5/phases/project-materializer.d.ts.map +1 -0
- package/dist/pipeline/phase5/phases/project-materializer.js +319 -0
- package/dist/pipeline/phase5/phases/project-materializer.js.map +1 -0
- package/dist/pipeline/phase5/phases/service-registrar.d.ts +29 -0
- package/dist/pipeline/phase5/phases/service-registrar.d.ts.map +1 -0
- package/dist/pipeline/phase5/phases/service-registrar.js +394 -0
- package/dist/pipeline/phase5/phases/service-registrar.js.map +1 -0
- package/dist/pipeline/phase5/types.d.ts +209 -0
- package/dist/pipeline/phase5/types.d.ts.map +1 -0
- package/dist/pipeline/phase5/types.js +12 -0
- package/dist/pipeline/phase5/types.js.map +1 -0
- package/dist/pipeline/phase5-build/index.d.ts +9 -0
- package/dist/pipeline/phase5-build/index.d.ts.map +1 -0
- package/dist/pipeline/phase5-build/index.js +8 -0
- package/dist/pipeline/phase5-build/index.js.map +1 -0
- package/dist/pipeline/phase5-build/manifest-writer.d.ts +48 -0
- package/dist/pipeline/phase5-build/manifest-writer.d.ts.map +1 -0
- package/dist/pipeline/phase5-build/manifest-writer.js +143 -0
- package/dist/pipeline/phase5-build/manifest-writer.js.map +1 -0
- package/dist/pipeline/phase5-build/phase5-build-coordinator.d.ts +16 -0
- package/dist/pipeline/phase5-build/phase5-build-coordinator.d.ts.map +1 -0
- package/dist/pipeline/phase5-build/phase5-build-coordinator.js +331 -0
- package/dist/pipeline/phase5-build/phase5-build-coordinator.js.map +1 -0
- package/dist/pipeline/phase5-build/phases/integration-inferrer.d.ts +35 -0
- package/dist/pipeline/phase5-build/phases/integration-inferrer.d.ts.map +1 -0
- package/dist/pipeline/phase5-build/phases/integration-inferrer.js +395 -0
- package/dist/pipeline/phase5-build/phases/integration-inferrer.js.map +1 -0
- package/dist/pipeline/phase5-build/phases/integration-injector.d.ts +38 -0
- package/dist/pipeline/phase5-build/phases/integration-injector.d.ts.map +1 -0
- package/dist/pipeline/phase5-build/phases/integration-injector.js +276 -0
- package/dist/pipeline/phase5-build/phases/integration-injector.js.map +1 -0
- package/dist/pipeline/phase5-build/types.d.ts +86 -0
- package/dist/pipeline/phase5-build/types.d.ts.map +1 -0
- package/dist/pipeline/phase5-build/types.js +9 -0
- package/dist/pipeline/phase5-build/types.js.map +1 -0
- package/dist/pipeline/phase6/index.d.ts +14 -0
- package/dist/pipeline/phase6/index.d.ts.map +1 -0
- package/dist/pipeline/phase6/index.js +13 -0
- package/dist/pipeline/phase6/index.js.map +1 -0
- package/dist/pipeline/phase6/manifest-writer.d.ts +41 -0
- package/dist/pipeline/phase6/manifest-writer.d.ts.map +1 -0
- package/dist/pipeline/phase6/manifest-writer.js +136 -0
- package/dist/pipeline/phase6/manifest-writer.js.map +1 -0
- package/dist/pipeline/phase6/phase6-coordinator.d.ts +23 -0
- package/dist/pipeline/phase6/phase6-coordinator.d.ts.map +1 -0
- package/dist/pipeline/phase6/phase6-coordinator.js +228 -0
- package/dist/pipeline/phase6/phase6-coordinator.js.map +1 -0
- package/dist/pipeline/phase6/phases/deployment-finalizer.d.ts +22 -0
- package/dist/pipeline/phase6/phases/deployment-finalizer.d.ts.map +1 -0
- package/dist/pipeline/phase6/phases/deployment-finalizer.js +281 -0
- package/dist/pipeline/phase6/phases/deployment-finalizer.js.map +1 -0
- package/dist/pipeline/phase6/phases/phase5-validator.d.ts +24 -0
- package/dist/pipeline/phase6/phases/phase5-validator.d.ts.map +1 -0
- package/dist/pipeline/phase6/phases/phase5-validator.js +269 -0
- package/dist/pipeline/phase6/phases/phase5-validator.js.map +1 -0
- package/dist/pipeline/phase6/phases/project-materializer.d.ts +18 -0
- package/dist/pipeline/phase6/phases/project-materializer.d.ts.map +1 -0
- package/dist/pipeline/phase6/phases/project-materializer.js +205 -0
- package/dist/pipeline/phase6/phases/project-materializer.js.map +1 -0
- package/dist/pipeline/phase6/phases/service-registrar.d.ts +20 -0
- package/dist/pipeline/phase6/phases/service-registrar.d.ts.map +1 -0
- package/dist/pipeline/phase6/phases/service-registrar.js +334 -0
- package/dist/pipeline/phase6/phases/service-registrar.js.map +1 -0
- package/dist/pipeline/phase6/types.d.ts +209 -0
- package/dist/pipeline/phase6/types.d.ts.map +1 -0
- package/dist/pipeline/phase6/types.js +12 -0
- package/dist/pipeline/phase6/types.js.map +1 -0
- package/package.json +3 -2
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/config-manager.d.ts +0 -186
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/config-manager.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/config-manager.js +0 -209
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/config-manager.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/costops.d.ts +0 -134
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/costops.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/costops.js +0 -131
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/costops.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/index.d.ts +0 -59
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/index.js +0 -120
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/memory-graph.d.ts +0 -168
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/memory-graph.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/memory-graph.js +0 -145
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/memory-graph.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/observatory.d.ts +0 -116
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/observatory.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/observatory.js +0 -108
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/observatory.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/registry.d.ts +0 -166
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/registry.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/registry.js +0 -169
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/registry.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/types.d.ts +0 -53
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/types.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/types.js +0 -29
- package/dist/bundled-agents/analytics-hub-agents/dist/adapters/types.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/computation.d.ts +0 -59
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/computation.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/computation.js +0 -240
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/computation.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/handler.d.ts +0 -55
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/handler.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/handler.js +0 -212
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/handler.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/index.d.ts +0 -11
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/index.js +0 -27
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/metadata.d.ts +0 -144
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/metadata.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/metadata.js +0 -180
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/consensus/metadata.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/computation.d.ts +0 -49
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/computation.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/computation.js +0 -248
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/computation.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/handler.d.ts +0 -43
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/handler.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/handler.js +0 -243
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/handler.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/index.d.ts +0 -20
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/index.js +0 -30
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/types.d.ts +0 -68
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/types.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/types.js +0 -10
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ecosystem-collaboration/types.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/index.d.ts +0 -9
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/index.js +0 -40
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ruvector-client.d.ts +0 -179
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ruvector-client.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ruvector-client.js +0 -484
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/ruvector-client.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/agent.d.ts +0 -116
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/agent.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/agent.js +0 -496
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/agent.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/index.d.ts +0 -11
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/index.js +0 -28
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.d.ts +0 -186
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.integration.d.ts +0 -58
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.integration.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.integration.js +0 -290
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.integration.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.js +0 -575
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/telemetry.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.d.ts +0 -2271
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.js +0 -300
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/types.d.ts +0 -928
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/types.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/types.js +0 -141
- package/dist/bundled-agents/analytics-hub-agents/dist/agents/types.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/api-keys.d.ts +0 -74
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/api-keys.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/api-keys.js +0 -148
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/api-keys.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/audit.d.ts +0 -132
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/audit.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/audit.js +0 -201
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/audit.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/jwt.d.ts +0 -55
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/jwt.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/jwt.js +0 -139
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/jwt.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/mfa.d.ts +0 -37
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/mfa.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/mfa.js +0 -123
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/mfa.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/middleware.d.ts +0 -35
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/middleware.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/middleware.js +0 -167
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/middleware.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/oauth.d.ts +0 -94
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/oauth.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/oauth.js +0 -223
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/oauth.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/rbac.d.ts +0 -106
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/rbac.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/rbac.js +0 -225
- package/dist/bundled-agents/analytics-hub-agents/dist/auth/rbac.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cache.d.ts +0 -22
- package/dist/bundled-agents/analytics-hub-agents/dist/cache.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cache.js +0 -138
- package/dist/bundled-agents/analytics-hub-agents/dist/cache.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/claude.js +0 -68
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/consensus-agent.d.ts +0 -47
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/consensus-agent.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/consensus-agent.js +0 -448
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/consensus-agent.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/index.d.ts +0 -10
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/index.js +0 -26
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/main.d.ts +0 -21
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/main.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/main.js +0 -175
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/main.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/strategic-recommendation.d.ts +0 -102
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/strategic-recommendation.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/strategic-recommendation.js +0 -842
- package/dist/bundled-agents/analytics-hub-agents/dist/cli/strategic-recommendation.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/compliance/gdpr.d.ts +0 -96
- package/dist/bundled-agents/analytics-hub-agents/dist/compliance/gdpr.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/compliance/gdpr.js +0 -226
- package/dist/bundled-agents/analytics-hub-agents/dist/compliance/gdpr.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/config.d.ts +0 -56
- package/dist/bundled-agents/analytics-hub-agents/dist/config.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/config.js +0 -77
- package/dist/bundled-agents/analytics-hub-agents/dist/config.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/consensus-agent.d.ts +0 -573
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/consensus-agent.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/consensus-agent.js +0 -224
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/consensus-agent.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/decision-event.d.ts +0 -379
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/decision-event.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/decision-event.js +0 -95
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/decision-event.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/ecosystem-collaboration-agent.d.ts +0 -1445
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/ecosystem-collaboration-agent.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/ecosystem-collaboration-agent.js +0 -343
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/ecosystem-collaboration-agent.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/index.d.ts +0 -11
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/index.js +0 -52
- package/dist/bundled-agents/analytics-hub-agents/dist/contracts/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/database.d.ts +0 -27
- package/dist/bundled-agents/analytics-hub-agents/dist/database.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/database.js +0 -152
- package/dist/bundled-agents/analytics-hub-agents/dist/database.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/execution-graph.d.ts +0 -54
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/execution-graph.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/execution-graph.js +0 -138
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/execution-graph.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/fastify-plugin.d.ts +0 -16
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/fastify-plugin.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/fastify-plugin.js +0 -131
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/fastify-plugin.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/index.d.ts +0 -10
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/index.js +0 -15
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/span-types.d.ts +0 -48
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/span-types.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/span-types.js +0 -16
- package/dist/bundled-agents/analytics-hub-agents/dist/execution/span-types.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/functions/handler.d.ts +0 -45
- package/dist/bundled-agents/analytics-hub-agents/dist/functions/handler.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/functions/handler.js +0 -189
- package/dist/bundled-agents/analytics-hub-agents/dist/functions/handler.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/index.d.ts +0 -11
- package/dist/bundled-agents/analytics-hub-agents/dist/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/index.js +0 -186
- package/dist/bundled-agents/analytics-hub-agents/dist/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/kafka.d.ts +0 -16
- package/dist/bundled-agents/analytics-hub-agents/dist/kafka.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/kafka.js +0 -100
- package/dist/bundled-agents/analytics-hub-agents/dist/kafka.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/logger.d.ts +0 -5
- package/dist/bundled-agents/analytics-hub-agents/dist/logger.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/logger.js +0 -31
- package/dist/bundled-agents/analytics-hub-agents/dist/logger.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/metrics.d.ts +0 -17
- package/dist/bundled-agents/analytics-hub-agents/dist/metrics.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/metrics.js +0 -77
- package/dist/bundled-agents/analytics-hub-agents/dist/metrics.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/analytics.d.ts +0 -6
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/analytics.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/analytics.js +0 -125
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/analytics.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/consensus.d.ts +0 -13
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/consensus.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/consensus.js +0 -192
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/consensus.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/ecosystem-collaboration.d.ts +0 -14
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/ecosystem-collaboration.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/ecosystem-collaboration.js +0 -258
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/ecosystem-collaboration.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/events.d.ts +0 -6
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/events.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/events.js +0 -323
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/events.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/index.d.ts +0 -6
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/index.js +0 -26
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/ingest.d.ts +0 -13
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/ingest.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/ingest.js +0 -122
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/ingest.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/metrics.d.ts +0 -6
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/metrics.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/metrics.js +0 -77
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/metrics.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/strategic-recommendations.d.ts +0 -7
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/strategic-recommendations.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/strategic-recommendations.js +0 -482
- package/dist/bundled-agents/analytics-hub-agents/dist/routes/strategic-recommendations.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/secrets/vault.d.ts +0 -101
- package/dist/bundled-agents/analytics-hub-agents/dist/secrets/vault.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/secrets/vault.js +0 -209
- package/dist/bundled-agents/analytics-hub-agents/dist/secrets/vault.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/services/index.d.ts +0 -10
- package/dist/bundled-agents/analytics-hub-agents/dist/services/index.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/services/index.js +0 -26
- package/dist/bundled-agents/analytics-hub-agents/dist/services/index.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/services/ruvector-client.d.ts +0 -94
- package/dist/bundled-agents/analytics-hub-agents/dist/services/ruvector-client.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/services/ruvector-client.js +0 -189
- package/dist/bundled-agents/analytics-hub-agents/dist/services/ruvector-client.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/services/telemetry-emitter.d.ts +0 -90
- package/dist/bundled-agents/analytics-hub-agents/dist/services/telemetry-emitter.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/services/telemetry-emitter.js +0 -177
- package/dist/bundled-agents/analytics-hub-agents/dist/services/telemetry-emitter.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/types/events.d.ts +0 -230
- package/dist/bundled-agents/analytics-hub-agents/dist/types/events.d.ts.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/dist/types/events.js +0 -44
- package/dist/bundled-agents/analytics-hub-agents/dist/types/events.js.map +0 -1
- package/dist/bundled-agents/analytics-hub-agents/package-lock.json +0 -8836
- package/dist/bundled-agents/analytics-hub-agents/package.json +0 -109
- package/dist/bundled-agents/analytics-hub-agents/src/adapters/config-manager.ts +0 -389
- package/dist/bundled-agents/analytics-hub-agents/src/adapters/costops.ts +0 -265
- package/dist/bundled-agents/analytics-hub-agents/src/adapters/index.ts +0 -121
- package/dist/bundled-agents/analytics-hub-agents/src/adapters/memory-graph.ts +0 -314
- package/dist/bundled-agents/analytics-hub-agents/src/adapters/observatory.ts +0 -222
- package/dist/bundled-agents/analytics-hub-agents/src/adapters/registry.ts +0 -364
- package/dist/bundled-agents/analytics-hub-agents/src/adapters/types.ts +0 -72
- package/dist/bundled-agents/analytics-hub-agents/src/agents/consensus/computation.ts +0 -318
- package/dist/bundled-agents/analytics-hub-agents/src/agents/consensus/handler.ts +0 -318
- package/dist/bundled-agents/analytics-hub-agents/src/agents/consensus/index.ts +0 -11
- package/dist/bundled-agents/analytics-hub-agents/src/agents/consensus/metadata.ts +0 -220
- package/dist/bundled-agents/analytics-hub-agents/src/agents/ecosystem-collaboration/computation.ts +0 -335
- package/dist/bundled-agents/analytics-hub-agents/src/agents/ecosystem-collaboration/handler.ts +0 -289
- package/dist/bundled-agents/analytics-hub-agents/src/agents/ecosystem-collaboration/index.ts +0 -42
- package/dist/bundled-agents/analytics-hub-agents/src/agents/ecosystem-collaboration/types.ts +0 -81
- package/dist/bundled-agents/analytics-hub-agents/src/agents/index.ts +0 -43
- package/dist/bundled-agents/analytics-hub-agents/src/agents/ruvector-client.ts +0 -591
- package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/agent.ts +0 -663
- package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/index.ts +0 -43
- package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/telemetry.integration.ts +0 -476
- package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/telemetry.ts +0 -763
- package/dist/bundled-agents/analytics-hub-agents/src/agents/strategic-recommendation/types.ts +0 -368
- package/dist/bundled-agents/analytics-hub-agents/src/agents/types.ts +0 -363
- package/dist/bundled-agents/analytics-hub-agents/src/auth/api-keys.ts +0 -209
- package/dist/bundled-agents/analytics-hub-agents/src/auth/audit.ts +0 -278
- package/dist/bundled-agents/analytics-hub-agents/src/auth/jwt.ts +0 -172
- package/dist/bundled-agents/analytics-hub-agents/src/auth/mfa.ts +0 -107
- package/dist/bundled-agents/analytics-hub-agents/src/auth/middleware.ts +0 -220
- package/dist/bundled-agents/analytics-hub-agents/src/auth/oauth.ts +0 -293
- package/dist/bundled-agents/analytics-hub-agents/src/auth/rbac.ts +0 -281
- package/dist/bundled-agents/analytics-hub-agents/src/cache.ts +0 -146
- package/dist/bundled-agents/analytics-hub-agents/src/cli/consensus-agent.ts +0 -511
- package/dist/bundled-agents/analytics-hub-agents/src/cli/index.ts +0 -10
- package/dist/bundled-agents/analytics-hub-agents/src/cli/main.ts +0 -161
- package/dist/bundled-agents/analytics-hub-agents/src/cli/strategic-recommendation.ts +0 -1126
- package/dist/bundled-agents/analytics-hub-agents/src/compliance/gdpr.ts +0 -330
- package/dist/bundled-agents/analytics-hub-agents/src/config.ts +0 -81
- package/dist/bundled-agents/analytics-hub-agents/src/contracts/consensus-agent.ts +0 -249
- package/dist/bundled-agents/analytics-hub-agents/src/contracts/decision-event.ts +0 -99
- package/dist/bundled-agents/analytics-hub-agents/src/contracts/ecosystem-collaboration-agent.ts +0 -388
- package/dist/bundled-agents/analytics-hub-agents/src/contracts/index.ts +0 -14
- package/dist/bundled-agents/analytics-hub-agents/src/database.ts +0 -187
- package/dist/bundled-agents/analytics-hub-agents/src/execution/execution-graph.ts +0 -165
- package/dist/bundled-agents/analytics-hub-agents/src/execution/fastify-plugin.ts +0 -168
- package/dist/bundled-agents/analytics-hub-agents/src/execution/index.ts +0 -18
- package/dist/bundled-agents/analytics-hub-agents/src/execution/span-types.ts +0 -54
- package/dist/bundled-agents/analytics-hub-agents/src/functions/handler.ts +0 -264
- package/dist/bundled-agents/analytics-hub-agents/src/index.ts +0 -195
- package/dist/bundled-agents/analytics-hub-agents/src/kafka.ts +0 -109
- package/dist/bundled-agents/analytics-hub-agents/src/logger.ts +0 -26
- package/dist/bundled-agents/analytics-hub-agents/src/metrics.ts +0 -97
- package/dist/bundled-agents/analytics-hub-agents/src/routes/analytics.ts +0 -153
- package/dist/bundled-agents/analytics-hub-agents/src/routes/consensus.ts +0 -218
- package/dist/bundled-agents/analytics-hub-agents/src/routes/ecosystem-collaboration.ts +0 -284
- package/dist/bundled-agents/analytics-hub-agents/src/routes/events.ts +0 -396
- package/dist/bundled-agents/analytics-hub-agents/src/routes/index.ts +0 -27
- package/dist/bundled-agents/analytics-hub-agents/src/routes/ingest.ts +0 -146
- package/dist/bundled-agents/analytics-hub-agents/src/routes/metrics.ts +0 -105
- package/dist/bundled-agents/analytics-hub-agents/src/routes/strategic-recommendations.ts +0 -624
- package/dist/bundled-agents/analytics-hub-agents/src/secrets/vault.ts +0 -252
- package/dist/bundled-agents/analytics-hub-agents/src/services/index.ts +0 -10
- package/dist/bundled-agents/analytics-hub-agents/src/services/ruvector-client.ts +0 -235
- package/dist/bundled-agents/analytics-hub-agents/src/services/telemetry-emitter.ts +0 -250
- package/dist/bundled-agents/analytics-hub-agents/src/types/events.ts +0 -237
- package/dist/bundled-agents/analytics-hub-agents/src/types/fastify.d.ts +0 -25
- package/dist/bundled-agents/benchmark-exchange-agents/index.js +0 -331
- package/dist/bundled-agents/benchmark-exchange-agents/package-lock.json +0 -16
- package/dist/bundled-agents/benchmark-exchange-agents/package.json +0 -50
- package/dist/bundled-agents/config-manager-agents/index.js +0 -341
- package/dist/bundled-agents/config-manager-agents/package-lock.json +0 -1839
- package/dist/bundled-agents/config-manager-agents/package.json +0 -17
- package/dist/bundled-agents/copilot-agents/dist/claude.js +0 -68
- package/dist/bundled-agents/copilot-agents/dist/functions/src/cors.d.ts +0 -14
- package/dist/bundled-agents/copilot-agents/dist/functions/src/cors.js +0 -35
- package/dist/bundled-agents/copilot-agents/dist/functions/src/cors.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/functions/src/envelope.d.ts +0 -55
- package/dist/bundled-agents/copilot-agents/dist/functions/src/envelope.js +0 -40
- package/dist/bundled-agents/copilot-agents/dist/functions/src/envelope.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/functions/src/health.d.ts +0 -22
- package/dist/bundled-agents/copilot-agents/dist/functions/src/health.js +0 -38
- package/dist/bundled-agents/copilot-agents/dist/functions/src/health.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/functions/src/index.d.ts +0 -34
- package/dist/bundled-agents/copilot-agents/dist/functions/src/index.js +0 -186
- package/dist/bundled-agents/copilot-agents/dist/functions/src/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/functions/src/router.d.ts +0 -36
- package/dist/bundled-agents/copilot-agents/dist/functions/src/router.js +0 -121
- package/dist/bundled-agents/copilot-agents/dist/functions/src/router.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/config-validation-agent.d.ts +0 -157
- package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/config-validation-agent.js +0 -948
- package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/config-validation-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/index.d.ts +0 -9
- package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/index.js +0 -27
- package/dist/bundled-agents/copilot-agents/dist/services/agents/config-validation/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/agent-span-wrapper.d.ts +0 -23
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/agent-span-wrapper.js +0 -50
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/agent-span-wrapper.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/base-agent.d.ts +0 -214
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/base-agent.js +0 -91
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/base-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/config-validation-schemas.d.ts +0 -1166
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/config-validation-schemas.js +0 -308
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/config-validation-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decision-event.d.ts +0 -59
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decision-event.js +0 -62
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decision-event.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decomposer-schemas.d.ts +0 -400
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decomposer-schemas.js +0 -113
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/decomposer-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/execution-graph.d.ts +0 -250
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/execution-graph.js +0 -169
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/execution-graph.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/index.d.ts +0 -17
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/index.js +0 -97
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intelligence-schemas.d.ts +0 -1674
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intelligence-schemas.js +0 -246
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intelligence-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intent-classifier-schemas.d.ts +0 -1085
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intent-classifier-schemas.js +0 -218
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/intent-classifier-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/meta-reasoner-schemas.d.ts +0 -949
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/meta-reasoner-schemas.js +0 -253
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/meta-reasoner-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/objective-clarifier-schemas.d.ts +0 -657
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/objective-clarifier-schemas.js +0 -205
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/objective-clarifier-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/pipeline-schemas.d.ts +0 -285
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/pipeline-schemas.js +0 -106
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/pipeline-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/planner-schemas.d.ts +0 -581
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/planner-schemas.js +0 -136
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/planner-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/reflection-schemas.d.ts +0 -791
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/reflection-schemas.js +0 -225
- package/dist/bundled-agents/copilot-agents/dist/services/agents/contracts/reflection-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/decomposer-agent.d.ts +0 -120
- package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/decomposer-agent.js +0 -535
- package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/decomposer-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/index.d.ts +0 -9
- package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/index.js +0 -18
- package/dist/bundled-agents/copilot-agents/dist/services/agents/decomposer/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/index.d.ts +0 -4
- package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/index.js +0 -9
- package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/intent-classifier-agent.d.ts +0 -123
- package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/intent-classifier-agent.js +0 -609
- package/dist/bundled-agents/copilot-agents/dist/services/agents/intent-classifier/intent-classifier-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/index.d.ts +0 -10
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/index.js +0 -25
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/meta-reasoner-agent.d.ts +0 -111
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/meta-reasoner-agent.js +0 -686
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/meta-reasoner-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/telemetry.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/telemetry.js +0 -25
- package/dist/bundled-agents/copilot-agents/dist/services/agents/meta-reasoner/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/index.d.ts +0 -6
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/index.js +0 -15
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/objective-clarifier-agent.d.ts +0 -126
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/objective-clarifier-agent.js +0 -780
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/objective-clarifier-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/ruvector-persistence.d.ts +0 -49
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/ruvector-persistence.js +0 -125
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/telemetry.d.ts +0 -73
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/telemetry.js +0 -192
- package/dist/bundled-agents/copilot-agents/dist/services/agents/objective-clarifier/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/index.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/index.js +0 -25
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/planner-agent.d.ts +0 -127
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/planner-agent.js +0 -483
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/planner-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/ruvector-persistence.d.ts +0 -49
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/ruvector-persistence.js +0 -125
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/telemetry.d.ts +0 -73
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/telemetry.js +0 -192
- package/dist/bundled-agents/copilot-agents/dist/services/agents/planner/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/index.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/index.js +0 -27
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/reflection-agent.d.ts +0 -122
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/reflection-agent.js +0 -645
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/reflection-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/ruvector-persistence.d.ts +0 -59
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/ruvector-persistence.js +0 -156
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/telemetry.d.ts +0 -88
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/telemetry.js +0 -246
- package/dist/bundled-agents/copilot-agents/dist/services/agents/reflection/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/index.js +0 -4
- package/dist/bundled-agents/copilot-agents/lib/functions/src/cors.d.ts +0 -14
- package/dist/bundled-agents/copilot-agents/lib/functions/src/cors.js +0 -35
- package/dist/bundled-agents/copilot-agents/lib/functions/src/cors.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/functions/src/envelope.d.ts +0 -27
- package/dist/bundled-agents/copilot-agents/lib/functions/src/envelope.js +0 -21
- package/dist/bundled-agents/copilot-agents/lib/functions/src/envelope.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/functions/src/health.d.ts +0 -22
- package/dist/bundled-agents/copilot-agents/lib/functions/src/health.js +0 -38
- package/dist/bundled-agents/copilot-agents/lib/functions/src/health.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/functions/src/index.d.ts +0 -34
- package/dist/bundled-agents/copilot-agents/lib/functions/src/index.js +0 -321
- package/dist/bundled-agents/copilot-agents/lib/functions/src/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/functions/src/router.d.ts +0 -27
- package/dist/bundled-agents/copilot-agents/lib/functions/src/router.js +0 -107
- package/dist/bundled-agents/copilot-agents/lib/functions/src/router.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/config-validation-agent.d.ts +0 -157
- package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/config-validation-agent.js +0 -941
- package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/config-validation-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/index.d.ts +0 -9
- package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/index.js +0 -27
- package/dist/bundled-agents/copilot-agents/lib/services/agents/config-validation/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/agent-span-wrapper.d.ts +0 -23
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/agent-span-wrapper.js +0 -50
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/agent-span-wrapper.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/base-agent.d.ts +0 -185
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/base-agent.js +0 -86
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/base-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/config-validation-schemas.d.ts +0 -1081
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/config-validation-schemas.js +0 -305
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/config-validation-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decision-event.d.ts +0 -59
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decision-event.js +0 -62
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decision-event.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decomposer-schemas.d.ts +0 -315
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decomposer-schemas.js +0 -110
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/decomposer-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/execution-graph.d.ts +0 -250
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/execution-graph.js +0 -169
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/execution-graph.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/index.d.ts +0 -16
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/index.js +0 -88
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intelligence-schemas.d.ts +0 -1674
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intelligence-schemas.js +0 -246
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intelligence-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intent-classifier-schemas.d.ts +0 -1000
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intent-classifier-schemas.js +0 -215
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/intent-classifier-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/meta-reasoner-schemas.d.ts +0 -864
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/meta-reasoner-schemas.js +0 -250
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/meta-reasoner-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/objective-clarifier-schemas.d.ts +0 -572
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/objective-clarifier-schemas.js +0 -202
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/objective-clarifier-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/planner-schemas.d.ts +0 -496
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/planner-schemas.js +0 -133
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/planner-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/reflection-schemas.d.ts +0 -706
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/reflection-schemas.js +0 -222
- package/dist/bundled-agents/copilot-agents/lib/services/agents/contracts/reflection-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/decomposer-agent.d.ts +0 -107
- package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/decomposer-agent.js +0 -360
- package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/decomposer-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/index.d.ts +0 -9
- package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/index.js +0 -18
- package/dist/bundled-agents/copilot-agents/lib/services/agents/decomposer/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/index.d.ts +0 -4
- package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/index.js +0 -9
- package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/intent-classifier-agent.d.ts +0 -123
- package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/intent-classifier-agent.js +0 -609
- package/dist/bundled-agents/copilot-agents/lib/services/agents/intent-classifier/intent-classifier-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/index.d.ts +0 -10
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/index.js +0 -25
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/meta-reasoner-agent.d.ts +0 -111
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/meta-reasoner-agent.js +0 -686
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/meta-reasoner-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/telemetry.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/telemetry.js +0 -25
- package/dist/bundled-agents/copilot-agents/lib/services/agents/meta-reasoner/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/index.d.ts +0 -6
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/index.js +0 -15
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/objective-clarifier-agent.d.ts +0 -126
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/objective-clarifier-agent.js +0 -780
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/objective-clarifier-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/ruvector-persistence.d.ts +0 -49
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/ruvector-persistence.js +0 -125
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/telemetry.d.ts +0 -73
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/telemetry.js +0 -192
- package/dist/bundled-agents/copilot-agents/lib/services/agents/objective-clarifier/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/index.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/index.js +0 -25
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/planner-agent.d.ts +0 -119
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/planner-agent.js +0 -421
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/planner-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/ruvector-persistence.d.ts +0 -49
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/ruvector-persistence.js +0 -125
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/telemetry.d.ts +0 -73
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/telemetry.js +0 -192
- package/dist/bundled-agents/copilot-agents/lib/services/agents/planner/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/index.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/index.js +0 -27
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/reflection-agent.d.ts +0 -122
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/reflection-agent.js +0 -645
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/reflection-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/ruvector-persistence.d.ts +0 -59
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/ruvector-persistence.js +0 -156
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/telemetry.d.ts +0 -88
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/telemetry.js +0 -246
- package/dist/bundled-agents/copilot-agents/lib/services/agents/reflection/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/package-lock.json +0 -5474
- package/dist/bundled-agents/copilot-agents/package.json +0 -40
- package/dist/bundled-agents/copilot-agents/src/cors.ts +0 -36
- package/dist/bundled-agents/copilot-agents/src/envelope.ts +0 -77
- package/dist/bundled-agents/copilot-agents/src/handler.test.ts +0 -340
- package/dist/bundled-agents/copilot-agents/src/health.ts +0 -53
- package/dist/bundled-agents/copilot-agents/src/index.ts +0 -201
- package/dist/bundled-agents/copilot-agents/src/router.ts +0 -148
- package/dist/bundled-agents/edge-agents/index.js +0 -66
- package/dist/bundled-agents/edge-agents/package-lock.json +0 -6352
- package/dist/bundled-agents/edge-agents/package.json +0 -114
- package/dist/bundled-agents/forge-agents/dist/claude.js +0 -68
- package/dist/bundled-agents/forge-agents/dist/cli/index.js +0 -11140
- package/dist/bundled-agents/forge-agents/dist/cli/index.js.map +0 -1
- package/dist/bundled-agents/forge-agents/dist/index.js +0 -11929
- package/dist/bundled-agents/forge-agents/dist/index.js.map +0 -1
- package/dist/bundled-agents/forge-agents/dist/service/cloud-function.js +0 -9346
- package/dist/bundled-agents/forge-agents/dist/service/cloud-function.js.map +0 -1
- package/dist/bundled-agents/forge-agents/dist/service/server.js +0 -10612
- package/dist/bundled-agents/forge-agents/dist/service/server.js.map +0 -1
- package/dist/bundled-agents/forge-agents/package-lock.json +0 -13229
- package/dist/bundled-agents/forge-agents/package.json +0 -110
- package/dist/bundled-agents/incident-manager-agents/dist/claude.js +0 -68
- package/dist/bundled-agents/incident-manager-agents/dist/index.d.ts +0 -37
- package/dist/bundled-agents/incident-manager-agents/dist/index.d.ts.map +0 -1
- package/dist/bundled-agents/incident-manager-agents/dist/index.js +0 -372
- package/dist/bundled-agents/incident-manager-agents/dist/index.js.map +0 -1
- package/dist/bundled-agents/incident-manager-agents/package.json +0 -28
- package/dist/bundled-agents/incident-manager-agents/src/index.ts +0 -480
- package/dist/bundled-agents/inference-gateway-agents/index.js +0 -140
- package/dist/bundled-agents/inference-gateway-agents/package-lock.json +0 -6328
- package/dist/bundled-agents/inference-gateway-agents/package.json +0 -19
- package/dist/bundled-agents/latency-lens-agents/index.js +0 -341
- package/dist/bundled-agents/latency-lens-agents/package-lock.json +0 -1710
- package/dist/bundled-agents/latency-lens-agents/package.json +0 -17
- package/dist/bundled-agents/latency-lens-agents/src/adapters/mod.rs +0 -285
- package/dist/bundled-agents/latency-lens-agents/src/agents/cold_start_mitigation/agent.rs +0 -657
- package/dist/bundled-agents/latency-lens-agents/src/agents/cold_start_mitigation/detector.rs +0 -720
- package/dist/bundled-agents/latency-lens-agents/src/agents/cold_start_mitigation/mod.rs +0 -45
- package/dist/bundled-agents/latency-lens-agents/src/agents/cold_start_mitigation/schemas.rs +0 -401
- package/dist/bundled-agents/latency-lens-agents/src/agents/contracts/decision_event.rs +0 -374
- package/dist/bundled-agents/latency-lens-agents/src/agents/contracts/latency_schemas.rs +0 -439
- package/dist/bundled-agents/latency-lens-agents/src/agents/contracts/mod.rs +0 -18
- package/dist/bundled-agents/latency-lens-agents/src/agents/contracts/timing_events.rs +0 -296
- package/dist/bundled-agents/latency-lens-agents/src/agents/edge_function.rs +0 -667
- package/dist/bundled-agents/latency-lens-agents/src/agents/execution_graph.rs +0 -659
- package/dist/bundled-agents/latency-lens-agents/src/agents/latency_analysis/agent.rs +0 -426
- package/dist/bundled-agents/latency-lens-agents/src/agents/latency_analysis/analyzer.rs +0 -791
- package/dist/bundled-agents/latency-lens-agents/src/agents/latency_analysis/mod.rs +0 -40
- package/dist/bundled-agents/latency-lens-agents/src/agents/latency_analysis/telemetry.rs +0 -134
- package/dist/bundled-agents/latency-lens-agents/src/agents/mod.rs +0 -70
- package/dist/bundled-agents/latency-lens-agents/src/agents/ruvector/client.rs +0 -335
- package/dist/bundled-agents/latency-lens-agents/src/agents/ruvector/error.rs +0 -61
- package/dist/bundled-agents/latency-lens-agents/src/agents/ruvector/mod.rs +0 -21
- package/dist/bundled-agents/latency-lens-agents/src/agents/ruvector/types.rs +0 -203
- package/dist/bundled-agents/latency-lens-agents/src/benchmarks/io.rs +0 -211
- package/dist/bundled-agents/latency-lens-agents/src/benchmarks/markdown.rs +0 -334
- package/dist/bundled-agents/latency-lens-agents/src/benchmarks/mod.rs +0 -245
- package/dist/bundled-agents/latency-lens-agents/src/benchmarks/result.rs +0 -169
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/analyze.rs +0 -432
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/benchmark.rs +0 -292
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/cold_start.rs +0 -553
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/compare.rs +0 -375
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/export.rs +0 -92
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/inspect.rs +0 -156
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/mod.rs +0 -39
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/profile.rs +0 -226
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/replay.rs +0 -106
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/run.rs +0 -217
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/serve.rs +0 -702
- package/dist/bundled-agents/latency-lens-agents/src/cli/commands/validate.rs +0 -325
- package/dist/bundled-agents/latency-lens-agents/src/cli.rs +0 -752
- package/dist/bundled-agents/latency-lens-agents/src/config.rs +0 -521
- package/dist/bundled-agents/latency-lens-agents/src/consumers/analytics_hub.rs +0 -668
- package/dist/bundled-agents/latency-lens-agents/src/consumers/mod.rs +0 -234
- package/dist/bundled-agents/latency-lens-agents/src/consumers/observatory.rs +0 -426
- package/dist/bundled-agents/latency-lens-agents/src/consumers/testbench.rs +0 -620
- package/dist/bundled-agents/latency-lens-agents/src/lib.rs +0 -440
- package/dist/bundled-agents/latency-lens-agents/src/main.rs +0 -210
- package/dist/bundled-agents/latency-lens-agents/src/orchestrator.rs +0 -371
- package/dist/bundled-agents/latency-lens-agents/src/phase2/agent_config.rs +0 -273
- package/dist/bundled-agents/latency-lens-agents/src/phase2/cache.rs +0 -431
- package/dist/bundled-agents/latency-lens-agents/src/phase2/mod.rs +0 -43
- package/dist/bundled-agents/latency-lens-agents/src/phase2/runtime.rs +0 -373
- package/dist/bundled-agents/latency-lens-agents/src/phase2/signals.rs +0 -594
- package/dist/bundled-agents/marketplace-agents/index.js +0 -208
- package/dist/bundled-agents/marketplace-agents/package-lock.json +0 -15
- package/dist/bundled-agents/marketplace-agents/package.json +0 -9
- package/dist/bundled-agents/marketplace-agents/src/unified-service/execution-context.js +0 -258
- package/dist/bundled-agents/marketplace-agents/src/unified-service/server.js +0 -735
- package/dist/bundled-agents/memory-graph-agents/functions/index.js +0 -208
- package/dist/bundled-agents/memory-graph-agents/package-lock.json +0 -8079
- package/dist/bundled-agents/memory-graph-agents/package.json +0 -24
- package/dist/bundled-agents/memory-graph-agents/src/bin/server.rs +0 -402
- package/dist/bundled-agents/memory-graph-agents/src/engine/async_memory_graph.rs +0 -1578
- package/dist/bundled-agents/memory-graph-agents/src/engine/mod.rs +0 -1163
- package/dist/bundled-agents/memory-graph-agents/src/error.rs +0 -687
- package/dist/bundled-agents/memory-graph-agents/src/execution/agent-adapter.ts +0 -249
- package/dist/bundled-agents/memory-graph-agents/src/execution/artifact-builder.ts +0 -237
- package/dist/bundled-agents/memory-graph-agents/src/execution/executor.ts +0 -217
- package/dist/bundled-agents/memory-graph-agents/src/execution/index.ts +0 -68
- package/dist/bundled-agents/memory-graph-agents/src/execution/types.ts +0 -181
- package/dist/bundled-agents/memory-graph-agents/src/grpc/converters.rs +0 -446
- package/dist/bundled-agents/memory-graph-agents/src/grpc/handlers.rs +0 -87
- package/dist/bundled-agents/memory-graph-agents/src/grpc/llm.memory.graph.v1.rs +0 -2852
- package/dist/bundled-agents/memory-graph-agents/src/grpc/mod.rs +0 -73
- package/dist/bundled-agents/memory-graph-agents/src/grpc/service.rs +0 -557
- package/dist/bundled-agents/memory-graph-agents/src/grpc/streaming.rs +0 -70
- package/dist/bundled-agents/memory-graph-agents/src/integrations/mod.rs +0 -243
- package/dist/bundled-agents/memory-graph-agents/src/integrations/registry/client.rs +0 -483
- package/dist/bundled-agents/memory-graph-agents/src/integrations/registry/mod.rs +0 -13
- package/dist/bundled-agents/memory-graph-agents/src/integrations/registry/types.rs +0 -392
- package/dist/bundled-agents/memory-graph-agents/src/integrations/vault/archiver.rs +0 -650
- package/dist/bundled-agents/memory-graph-agents/src/integrations/vault/mod.rs +0 -13
- package/dist/bundled-agents/memory-graph-agents/src/integrations/vault/retention.rs +0 -430
- package/dist/bundled-agents/memory-graph-agents/src/lib.rs +0 -79
- package/dist/bundled-agents/memory-graph-agents/src/migration.rs +0 -478
- package/dist/bundled-agents/memory-graph-agents/src/observatory/config.rs +0 -113
- package/dist/bundled-agents/memory-graph-agents/src/observatory/emitter.rs +0 -648
- package/dist/bundled-agents/memory-graph-agents/src/observatory/events.rs +0 -437
- package/dist/bundled-agents/memory-graph-agents/src/observatory/kafka.rs +0 -621
- package/dist/bundled-agents/memory-graph-agents/src/observatory/metrics.rs +0 -244
- package/dist/bundled-agents/memory-graph-agents/src/observatory/mod.rs +0 -72
- package/dist/bundled-agents/memory-graph-agents/src/observatory/prometheus.rs +0 -1296
- package/dist/bundled-agents/memory-graph-agents/src/observatory/publisher.rs +0 -224
- package/dist/bundled-agents/memory-graph-agents/src/observatory/streaming.rs +0 -435
- package/dist/bundled-agents/memory-graph-agents/src/plugin/hooks.rs +0 -487
- package/dist/bundled-agents/memory-graph-agents/src/plugin/manager.rs +0 -541
- package/dist/bundled-agents/memory-graph-agents/src/plugin/mod.rs +0 -429
- package/dist/bundled-agents/memory-graph-agents/src/plugin/registry.rs +0 -515
- package/dist/bundled-agents/memory-graph-agents/src/query/async_query.rs +0 -623
- package/dist/bundled-agents/memory-graph-agents/src/query/mod.rs +0 -697
- package/dist/bundled-agents/memory-graph-agents/src/storage/async_sled_backend.rs +0 -442
- package/dist/bundled-agents/memory-graph-agents/src/storage/cache.rs +0 -288
- package/dist/bundled-agents/memory-graph-agents/src/storage/mod.rs +0 -202
- package/dist/bundled-agents/memory-graph-agents/src/storage/pooled_backend.rs +0 -564
- package/dist/bundled-agents/memory-graph-agents/src/storage/serialization.rs +0 -142
- package/dist/bundled-agents/memory-graph-agents/src/storage/sled_backend.rs +0 -336
- package/dist/bundled-agents/memory-graph-agents/src/types/config.rs +0 -104
- package/dist/bundled-agents/memory-graph-agents/src/types/edges.rs +0 -1067
- package/dist/bundled-agents/memory-graph-agents/src/types/ids.rs +0 -289
- package/dist/bundled-agents/memory-graph-agents/src/types/mod.rs +0 -18
- package/dist/bundled-agents/memory-graph-agents/src/types/nodes.rs +0 -1712
- package/dist/bundled-agents/registry-agents/dist/agents/bootstrap-agent.d.ts +0 -9
- package/dist/bundled-agents/registry-agents/dist/agents/bootstrap-agent.d.ts.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/agents/bootstrap-agent.js +0 -33
- package/dist/bundled-agents/registry-agents/dist/agents/bootstrap-agent.js.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/agents/index-agent.d.ts +0 -9
- package/dist/bundled-agents/registry-agents/dist/agents/index-agent.d.ts.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/agents/index-agent.js +0 -22
- package/dist/bundled-agents/registry-agents/dist/agents/index-agent.js.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/agents/reputation-agent.d.ts +0 -9
- package/dist/bundled-agents/registry-agents/dist/agents/reputation-agent.d.ts.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/agents/reputation-agent.js +0 -27
- package/dist/bundled-agents/registry-agents/dist/agents/reputation-agent.js.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/claude.js +0 -68
- package/dist/bundled-agents/registry-agents/dist/contracts.d.ts +0 -217
- package/dist/bundled-agents/registry-agents/dist/contracts.d.ts.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/contracts.js +0 -102
- package/dist/bundled-agents/registry-agents/dist/contracts.js.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/index.d.ts +0 -25
- package/dist/bundled-agents/registry-agents/dist/index.d.ts.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/index.js +0 -217
- package/dist/bundled-agents/registry-agents/dist/index.js.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/index.test.d.ts +0 -2
- package/dist/bundled-agents/registry-agents/dist/index.test.d.ts.map +0 -1
- package/dist/bundled-agents/registry-agents/dist/index.test.js +0 -218
- package/dist/bundled-agents/registry-agents/dist/index.test.js.map +0 -1
- package/dist/bundled-agents/registry-agents/package-lock.json +0 -1713
- package/dist/bundled-agents/registry-agents/package.json +0 -23
- package/dist/bundled-agents/schema-registry-agents/index.js +0 -245
- package/dist/bundled-agents/schema-registry-agents/package-lock.json +0 -5774
- package/dist/bundled-agents/schema-registry-agents/package.json +0 -19
- package/dist/bundled-agents/simulator-agents/index.js +0 -536
- package/dist/bundled-agents/simulator-agents/package-lock.json +0 -11977
- package/dist/bundled-agents/simulator-agents/package.json +0 -19
- package/dist/bundled-agents/test-bench-agents/dist/.tsbuildinfo +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/claude.js +0 -68
- package/dist/bundled-agents/test-bench-agents/dist/cli.d.ts +0 -3
- package/dist/bundled-agents/test-bench-agents/dist/cli.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/cli.js +0 -47
- package/dist/bundled-agents/test-bench-agents/dist/cli.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/core/fleet-benchmark.d.ts +0 -120
- package/dist/bundled-agents/test-bench-agents/dist/core/fleet-benchmark.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/core/fleet-benchmark.js +0 -129
- package/dist/bundled-agents/test-bench-agents/dist/core/fleet-benchmark.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/core/llm-test-bench.d.ts +0 -35
- package/dist/bundled-agents/test-bench-agents/dist/core/llm-test-bench.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/core/llm-test-bench.js +0 -246
- package/dist/bundled-agents/test-bench-agents/dist/core/llm-test-bench.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/core/provider-client.d.ts +0 -37
- package/dist/bundled-agents/test-bench-agents/dist/core/provider-client.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/core/provider-client.js +0 -135
- package/dist/bundled-agents/test-bench-agents/dist/core/provider-client.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/evaluators/index.d.ts +0 -28
- package/dist/bundled-agents/test-bench-agents/dist/evaluators/index.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/evaluators/index.js +0 -67
- package/dist/bundled-agents/test-bench-agents/dist/evaluators/index.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/default-policy.d.ts +0 -3
- package/dist/bundled-agents/test-bench-agents/dist/execution/default-policy.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/default-policy.js +0 -85
- package/dist/bundled-agents/test-bench-agents/dist/execution/default-policy.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/index.d.ts +0 -10
- package/dist/bundled-agents/test-bench-agents/dist/execution/index.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/index.js +0 -7
- package/dist/bundled-agents/test-bench-agents/dist/execution/index.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/instrumented.d.ts +0 -39
- package/dist/bundled-agents/test-bench-agents/dist/execution/instrumented.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/instrumented.js +0 -178
- package/dist/bundled-agents/test-bench-agents/dist/execution/instrumented.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/policy-gate.d.ts +0 -25
- package/dist/bundled-agents/test-bench-agents/dist/execution/policy-gate.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/policy-gate.js +0 -75
- package/dist/bundled-agents/test-bench-agents/dist/execution/policy-gate.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/policy.d.ts +0 -108
- package/dist/bundled-agents/test-bench-agents/dist/execution/policy.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/policy.js +0 -53
- package/dist/bundled-agents/test-bench-agents/dist/execution/policy.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/span-manager.d.ts +0 -28
- package/dist/bundled-agents/test-bench-agents/dist/execution/span-manager.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/span-manager.js +0 -164
- package/dist/bundled-agents/test-bench-agents/dist/execution/span-manager.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/types.d.ts +0 -37
- package/dist/bundled-agents/test-bench-agents/dist/execution/types.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/execution/types.js +0 -9
- package/dist/bundled-agents/test-bench-agents/dist/execution/types.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/index.d.ts +0 -16
- package/dist/bundled-agents/test-bench-agents/dist/index.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/index.js +0 -13
- package/dist/bundled-agents/test-bench-agents/dist/index.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/types/benchmarks.d.ts +0 -87
- package/dist/bundled-agents/test-bench-agents/dist/types/benchmarks.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/types/benchmarks.js +0 -2
- package/dist/bundled-agents/test-bench-agents/dist/types/benchmarks.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/types/evaluators.d.ts +0 -98
- package/dist/bundled-agents/test-bench-agents/dist/types/evaluators.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/types/evaluators.js +0 -2
- package/dist/bundled-agents/test-bench-agents/dist/types/evaluators.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/types/index.d.ts +0 -20
- package/dist/bundled-agents/test-bench-agents/dist/types/index.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/types/index.js +0 -4
- package/dist/bundled-agents/test-bench-agents/dist/types/index.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/types/providers.d.ts +0 -64
- package/dist/bundled-agents/test-bench-agents/dist/types/providers.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/types/providers.js +0 -2
- package/dist/bundled-agents/test-bench-agents/dist/types/providers.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/utils/cli-executor.d.ts +0 -11
- package/dist/bundled-agents/test-bench-agents/dist/utils/cli-executor.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/utils/cli-executor.js +0 -95
- package/dist/bundled-agents/test-bench-agents/dist/utils/cli-executor.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/utils/validators.d.ts +0 -8
- package/dist/bundled-agents/test-bench-agents/dist/utils/validators.d.ts.map +0 -1
- package/dist/bundled-agents/test-bench-agents/dist/utils/validators.js +0 -94
- package/dist/bundled-agents/test-bench-agents/dist/utils/validators.js.map +0 -1
- package/dist/bundled-agents/test-bench-agents/functions/dist/index.js +0 -212
- package/dist/bundled-agents/test-bench-agents/functions/index.ts +0 -257
- package/dist/bundled-agents/test-bench-agents/package-lock.json +0 -12743
- package/dist/bundled-agents/test-bench-agents/package.json +0 -113
- package/dist/bundled-agents/test-bench-agents/src/cli.ts +0 -72
- package/dist/bundled-agents/test-bench-agents/src/core/fleet-benchmark.ts +0 -503
- package/dist/bundled-agents/test-bench-agents/src/core/llm-test-bench.ts +0 -420
- package/dist/bundled-agents/test-bench-agents/src/core/provider-client.ts +0 -233
- package/dist/bundled-agents/test-bench-agents/src/evaluators/index.ts +0 -137
- package/dist/bundled-agents/test-bench-agents/src/execution/default-policy.ts +0 -98
- package/dist/bundled-agents/test-bench-agents/src/execution/index.ts +0 -52
- package/dist/bundled-agents/test-bench-agents/src/execution/instrumented.ts +0 -337
- package/dist/bundled-agents/test-bench-agents/src/execution/policy-gate.ts +0 -166
- package/dist/bundled-agents/test-bench-agents/src/execution/policy.ts +0 -130
- package/dist/bundled-agents/test-bench-agents/src/execution/span-manager.ts +0 -292
- package/dist/bundled-agents/test-bench-agents/src/execution/types.ts +0 -125
- package/dist/bundled-agents/test-bench-agents/src/index.ts +0 -100
- package/dist/bundled-agents/test-bench-agents/src/types/benchmarks.ts +0 -219
- package/dist/bundled-agents/test-bench-agents/src/types/evaluators.ts +0 -253
- package/dist/bundled-agents/test-bench-agents/src/types/index.ts +0 -55
- package/dist/bundled-agents/test-bench-agents/src/types/providers.ts +0 -193
- package/dist/bundled-agents/test-bench-agents/src/utils/cli-executor.ts +0 -170
- package/dist/bundled-agents/test-bench-agents/src/utils/validators.ts +0 -166
- package/dist/enterprise/index.d.ts +0 -16
- package/dist/enterprise/index.d.ts.map +0 -1
- package/dist/enterprise/index.js +0 -17
- package/dist/enterprise/index.js.map +0 -1
package/dist/bundled-agents/analytics-hub-agents/dist/agents/strategic-recommendation/types.d.ts
DELETED
|
@@ -1,2271 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Strategic Recommendation Agent - Type Definitions
|
|
3
|
-
*
|
|
4
|
-
* Defines types for aggregating signals, analyzing trends,
|
|
5
|
-
* and generating strategic recommendations across multiple data sources.
|
|
6
|
-
*
|
|
7
|
-
* @module agents/strategic-recommendation/types
|
|
8
|
-
*/
|
|
9
|
-
import { z } from 'zod';
|
|
10
|
-
/**
|
|
11
|
-
* Time range for signal aggregation
|
|
12
|
-
*/
|
|
13
|
-
export declare const TimeRangeSchema: z.ZodObject<{
|
|
14
|
-
startTime: z.ZodString;
|
|
15
|
-
endTime: z.ZodString;
|
|
16
|
-
}, "strip", z.ZodTypeAny, {
|
|
17
|
-
startTime: string;
|
|
18
|
-
endTime: string;
|
|
19
|
-
}, {
|
|
20
|
-
startTime: string;
|
|
21
|
-
endTime: string;
|
|
22
|
-
}>;
|
|
23
|
-
export type TimeRange = z.infer<typeof TimeRangeSchema>;
|
|
24
|
-
export type UUID = string;
|
|
25
|
-
export type ISODateString = string;
|
|
26
|
-
/**
|
|
27
|
-
* Data source types that can feed into the agent
|
|
28
|
-
*/
|
|
29
|
-
export declare enum DataSource {
|
|
30
|
-
Observatory = "llm-observatory",
|
|
31
|
-
Sentinel = "llm-sentinel",
|
|
32
|
-
CostOps = "llm-cost-ops",
|
|
33
|
-
Governance = "llm-governance-dashboard",
|
|
34
|
-
Registry = "llm-registry",
|
|
35
|
-
PolicyEngine = "llm-policy-engine"
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Source layer types (legacy support)
|
|
39
|
-
*/
|
|
40
|
-
export type SourceLayer = 'observatory' | 'cost-ops' | 'governance' | 'consensus';
|
|
41
|
-
/**
|
|
42
|
-
* Individual signal from a source layer
|
|
43
|
-
*/
|
|
44
|
-
export declare const SignalSchema: z.ZodObject<{
|
|
45
|
-
signalId: z.ZodString;
|
|
46
|
-
layer: z.ZodString;
|
|
47
|
-
timestamp: z.ZodString;
|
|
48
|
-
metricType: z.ZodString;
|
|
49
|
-
value: z.ZodNumber;
|
|
50
|
-
confidence: z.ZodNumber;
|
|
51
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
52
|
-
}, "strip", z.ZodTypeAny, {
|
|
53
|
-
timestamp: string;
|
|
54
|
-
value: number;
|
|
55
|
-
signalId: string;
|
|
56
|
-
confidence: number;
|
|
57
|
-
layer: string;
|
|
58
|
-
metricType: string;
|
|
59
|
-
metadata?: Record<string, unknown> | undefined;
|
|
60
|
-
}, {
|
|
61
|
-
timestamp: string;
|
|
62
|
-
value: number;
|
|
63
|
-
signalId: string;
|
|
64
|
-
confidence: number;
|
|
65
|
-
layer: string;
|
|
66
|
-
metricType: string;
|
|
67
|
-
metadata?: Record<string, unknown> | undefined;
|
|
68
|
-
}>;
|
|
69
|
-
export type Signal = z.infer<typeof SignalSchema>;
|
|
70
|
-
/**
|
|
71
|
-
* Aggregated signals from multiple sources (enhanced)
|
|
72
|
-
* Note: Enhanced fields are optional for backward compatibility
|
|
73
|
-
*/
|
|
74
|
-
export declare const SignalAggregationSchema: z.ZodObject<{
|
|
75
|
-
aggregation_id: z.ZodOptional<z.ZodString>;
|
|
76
|
-
timeWindow: z.ZodObject<{
|
|
77
|
-
startTime: z.ZodString;
|
|
78
|
-
endTime: z.ZodString;
|
|
79
|
-
}, "strip", z.ZodTypeAny, {
|
|
80
|
-
startTime: string;
|
|
81
|
-
endTime: string;
|
|
82
|
-
}, {
|
|
83
|
-
startTime: string;
|
|
84
|
-
endTime: string;
|
|
85
|
-
}>;
|
|
86
|
-
time_window: z.ZodOptional<z.ZodObject<{
|
|
87
|
-
start: z.ZodString;
|
|
88
|
-
end: z.ZodString;
|
|
89
|
-
granularity: z.ZodEnum<["minute", "hour", "day", "week", "month"]>;
|
|
90
|
-
}, "strip", z.ZodTypeAny, {
|
|
91
|
-
start: string;
|
|
92
|
-
end: string;
|
|
93
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
94
|
-
}, {
|
|
95
|
-
start: string;
|
|
96
|
-
end: string;
|
|
97
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
98
|
-
}>>;
|
|
99
|
-
signalsByLayer: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
100
|
-
signalId: z.ZodString;
|
|
101
|
-
layer: z.ZodString;
|
|
102
|
-
timestamp: z.ZodString;
|
|
103
|
-
metricType: z.ZodString;
|
|
104
|
-
value: z.ZodNumber;
|
|
105
|
-
confidence: z.ZodNumber;
|
|
106
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107
|
-
}, "strip", z.ZodTypeAny, {
|
|
108
|
-
timestamp: string;
|
|
109
|
-
value: number;
|
|
110
|
-
signalId: string;
|
|
111
|
-
confidence: number;
|
|
112
|
-
layer: string;
|
|
113
|
-
metricType: string;
|
|
114
|
-
metadata?: Record<string, unknown> | undefined;
|
|
115
|
-
}, {
|
|
116
|
-
timestamp: string;
|
|
117
|
-
value: number;
|
|
118
|
-
signalId: string;
|
|
119
|
-
confidence: number;
|
|
120
|
-
layer: string;
|
|
121
|
-
metricType: string;
|
|
122
|
-
metadata?: Record<string, unknown> | undefined;
|
|
123
|
-
}>, "many">>;
|
|
124
|
-
by_source: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
125
|
-
source: z.ZodString;
|
|
126
|
-
signal_count: z.ZodNumber;
|
|
127
|
-
avg_severity: z.ZodNumber;
|
|
128
|
-
dominant_categories: z.ZodArray<z.ZodString, "many">;
|
|
129
|
-
key_metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
130
|
-
}, "strip", z.ZodTypeAny, {
|
|
131
|
-
source: string;
|
|
132
|
-
signal_count: number;
|
|
133
|
-
avg_severity: number;
|
|
134
|
-
dominant_categories: string[];
|
|
135
|
-
key_metrics: Record<string, number>;
|
|
136
|
-
}, {
|
|
137
|
-
source: string;
|
|
138
|
-
signal_count: number;
|
|
139
|
-
avg_severity: number;
|
|
140
|
-
dominant_categories: string[];
|
|
141
|
-
key_metrics: Record<string, number>;
|
|
142
|
-
}>, "many">>;
|
|
143
|
-
totalSignals: z.ZodNumber;
|
|
144
|
-
layersIncluded: z.ZodArray<z.ZodString, "many">;
|
|
145
|
-
aggregated_metrics: z.ZodOptional<z.ZodObject<{
|
|
146
|
-
total_events: z.ZodNumber;
|
|
147
|
-
unique_resources: z.ZodNumber;
|
|
148
|
-
avg_latency_ms: z.ZodOptional<z.ZodNumber>;
|
|
149
|
-
total_cost: z.ZodOptional<z.ZodNumber>;
|
|
150
|
-
error_rate: z.ZodOptional<z.ZodNumber>;
|
|
151
|
-
security_incidents: z.ZodOptional<z.ZodNumber>;
|
|
152
|
-
policy_violations: z.ZodOptional<z.ZodNumber>;
|
|
153
|
-
}, "strip", z.ZodTypeAny, {
|
|
154
|
-
total_events: number;
|
|
155
|
-
unique_resources: number;
|
|
156
|
-
avg_latency_ms?: number | undefined;
|
|
157
|
-
total_cost?: number | undefined;
|
|
158
|
-
error_rate?: number | undefined;
|
|
159
|
-
security_incidents?: number | undefined;
|
|
160
|
-
policy_violations?: number | undefined;
|
|
161
|
-
}, {
|
|
162
|
-
total_events: number;
|
|
163
|
-
unique_resources: number;
|
|
164
|
-
avg_latency_ms?: number | undefined;
|
|
165
|
-
total_cost?: number | undefined;
|
|
166
|
-
error_rate?: number | undefined;
|
|
167
|
-
security_incidents?: number | undefined;
|
|
168
|
-
policy_violations?: number | undefined;
|
|
169
|
-
}>>;
|
|
170
|
-
statistics: z.ZodOptional<z.ZodObject<{
|
|
171
|
-
mean: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
172
|
-
median: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
173
|
-
std_dev: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
174
|
-
percentiles: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
175
|
-
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
mean: Record<string, number>;
|
|
177
|
-
median: Record<string, number>;
|
|
178
|
-
std_dev: Record<string, number>;
|
|
179
|
-
percentiles: Record<string, Record<string, number>>;
|
|
180
|
-
}, {
|
|
181
|
-
mean: Record<string, number>;
|
|
182
|
-
median: Record<string, number>;
|
|
183
|
-
std_dev: Record<string, number>;
|
|
184
|
-
percentiles: Record<string, Record<string, number>>;
|
|
185
|
-
}>>;
|
|
186
|
-
temporal_patterns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
187
|
-
pattern_type: z.ZodEnum<["spike", "dip", "cyclical", "trending"]>;
|
|
188
|
-
detected_at: z.ZodString;
|
|
189
|
-
strength: z.ZodNumber;
|
|
190
|
-
description: z.ZodString;
|
|
191
|
-
}, "strip", z.ZodTypeAny, {
|
|
192
|
-
description: string;
|
|
193
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
194
|
-
detected_at: string;
|
|
195
|
-
strength: number;
|
|
196
|
-
}, {
|
|
197
|
-
description: string;
|
|
198
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
199
|
-
detected_at: string;
|
|
200
|
-
strength: number;
|
|
201
|
-
}>, "many">>;
|
|
202
|
-
}, "strip", z.ZodTypeAny, {
|
|
203
|
-
totalSignals: number;
|
|
204
|
-
timeWindow: {
|
|
205
|
-
startTime: string;
|
|
206
|
-
endTime: string;
|
|
207
|
-
};
|
|
208
|
-
signalsByLayer: Record<string, {
|
|
209
|
-
timestamp: string;
|
|
210
|
-
value: number;
|
|
211
|
-
signalId: string;
|
|
212
|
-
confidence: number;
|
|
213
|
-
layer: string;
|
|
214
|
-
metricType: string;
|
|
215
|
-
metadata?: Record<string, unknown> | undefined;
|
|
216
|
-
}[]>;
|
|
217
|
-
layersIncluded: string[];
|
|
218
|
-
statistics?: {
|
|
219
|
-
mean: Record<string, number>;
|
|
220
|
-
median: Record<string, number>;
|
|
221
|
-
std_dev: Record<string, number>;
|
|
222
|
-
percentiles: Record<string, Record<string, number>>;
|
|
223
|
-
} | undefined;
|
|
224
|
-
aggregation_id?: string | undefined;
|
|
225
|
-
time_window?: {
|
|
226
|
-
start: string;
|
|
227
|
-
end: string;
|
|
228
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
229
|
-
} | undefined;
|
|
230
|
-
by_source?: {
|
|
231
|
-
source: string;
|
|
232
|
-
signal_count: number;
|
|
233
|
-
avg_severity: number;
|
|
234
|
-
dominant_categories: string[];
|
|
235
|
-
key_metrics: Record<string, number>;
|
|
236
|
-
}[] | undefined;
|
|
237
|
-
aggregated_metrics?: {
|
|
238
|
-
total_events: number;
|
|
239
|
-
unique_resources: number;
|
|
240
|
-
avg_latency_ms?: number | undefined;
|
|
241
|
-
total_cost?: number | undefined;
|
|
242
|
-
error_rate?: number | undefined;
|
|
243
|
-
security_incidents?: number | undefined;
|
|
244
|
-
policy_violations?: number | undefined;
|
|
245
|
-
} | undefined;
|
|
246
|
-
temporal_patterns?: {
|
|
247
|
-
description: string;
|
|
248
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
249
|
-
detected_at: string;
|
|
250
|
-
strength: number;
|
|
251
|
-
}[] | undefined;
|
|
252
|
-
}, {
|
|
253
|
-
totalSignals: number;
|
|
254
|
-
timeWindow: {
|
|
255
|
-
startTime: string;
|
|
256
|
-
endTime: string;
|
|
257
|
-
};
|
|
258
|
-
signalsByLayer: Record<string, {
|
|
259
|
-
timestamp: string;
|
|
260
|
-
value: number;
|
|
261
|
-
signalId: string;
|
|
262
|
-
confidence: number;
|
|
263
|
-
layer: string;
|
|
264
|
-
metricType: string;
|
|
265
|
-
metadata?: Record<string, unknown> | undefined;
|
|
266
|
-
}[]>;
|
|
267
|
-
layersIncluded: string[];
|
|
268
|
-
statistics?: {
|
|
269
|
-
mean: Record<string, number>;
|
|
270
|
-
median: Record<string, number>;
|
|
271
|
-
std_dev: Record<string, number>;
|
|
272
|
-
percentiles: Record<string, Record<string, number>>;
|
|
273
|
-
} | undefined;
|
|
274
|
-
aggregation_id?: string | undefined;
|
|
275
|
-
time_window?: {
|
|
276
|
-
start: string;
|
|
277
|
-
end: string;
|
|
278
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
279
|
-
} | undefined;
|
|
280
|
-
by_source?: {
|
|
281
|
-
source: string;
|
|
282
|
-
signal_count: number;
|
|
283
|
-
avg_severity: number;
|
|
284
|
-
dominant_categories: string[];
|
|
285
|
-
key_metrics: Record<string, number>;
|
|
286
|
-
}[] | undefined;
|
|
287
|
-
aggregated_metrics?: {
|
|
288
|
-
total_events: number;
|
|
289
|
-
unique_resources: number;
|
|
290
|
-
avg_latency_ms?: number | undefined;
|
|
291
|
-
total_cost?: number | undefined;
|
|
292
|
-
error_rate?: number | undefined;
|
|
293
|
-
security_incidents?: number | undefined;
|
|
294
|
-
policy_violations?: number | undefined;
|
|
295
|
-
} | undefined;
|
|
296
|
-
temporal_patterns?: {
|
|
297
|
-
description: string;
|
|
298
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
299
|
-
detected_at: string;
|
|
300
|
-
strength: number;
|
|
301
|
-
}[] | undefined;
|
|
302
|
-
}>;
|
|
303
|
-
export type SignalAggregation = z.infer<typeof SignalAggregationSchema>;
|
|
304
|
-
/**
|
|
305
|
-
* Trend direction
|
|
306
|
-
*/
|
|
307
|
-
export type TrendDirection = 'increasing' | 'decreasing' | 'stable' | 'volatile';
|
|
308
|
-
/**
|
|
309
|
-
* Trend analysis for a specific metric
|
|
310
|
-
*/
|
|
311
|
-
export declare const TrendAnalysisSchema: z.ZodObject<{
|
|
312
|
-
metricType: z.ZodString;
|
|
313
|
-
layer: z.ZodString;
|
|
314
|
-
direction: z.ZodEnum<["increasing", "decreasing", "stable", "volatile"]>;
|
|
315
|
-
magnitude: z.ZodNumber;
|
|
316
|
-
velocity: z.ZodNumber;
|
|
317
|
-
dataPoints: z.ZodNumber;
|
|
318
|
-
confidence: z.ZodNumber;
|
|
319
|
-
anomalies: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
320
|
-
timestamp: z.ZodString;
|
|
321
|
-
value: z.ZodNumber;
|
|
322
|
-
deviationScore: z.ZodNumber;
|
|
323
|
-
}, "strip", z.ZodTypeAny, {
|
|
324
|
-
timestamp: string;
|
|
325
|
-
value: number;
|
|
326
|
-
deviationScore: number;
|
|
327
|
-
}, {
|
|
328
|
-
timestamp: string;
|
|
329
|
-
value: number;
|
|
330
|
-
deviationScore: number;
|
|
331
|
-
}>, "many">>;
|
|
332
|
-
}, "strip", z.ZodTypeAny, {
|
|
333
|
-
confidence: number;
|
|
334
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
335
|
-
layer: string;
|
|
336
|
-
metricType: string;
|
|
337
|
-
magnitude: number;
|
|
338
|
-
velocity: number;
|
|
339
|
-
dataPoints: number;
|
|
340
|
-
anomalies?: {
|
|
341
|
-
timestamp: string;
|
|
342
|
-
value: number;
|
|
343
|
-
deviationScore: number;
|
|
344
|
-
}[] | undefined;
|
|
345
|
-
}, {
|
|
346
|
-
confidence: number;
|
|
347
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
348
|
-
layer: string;
|
|
349
|
-
metricType: string;
|
|
350
|
-
magnitude: number;
|
|
351
|
-
velocity: number;
|
|
352
|
-
dataPoints: number;
|
|
353
|
-
anomalies?: {
|
|
354
|
-
timestamp: string;
|
|
355
|
-
value: number;
|
|
356
|
-
deviationScore: number;
|
|
357
|
-
}[] | undefined;
|
|
358
|
-
}>;
|
|
359
|
-
export type TrendAnalysis = z.infer<typeof TrendAnalysisSchema>;
|
|
360
|
-
/**
|
|
361
|
-
* Cross-domain correlation between different signal types (enhanced)
|
|
362
|
-
* Identifies relationships between different domains (cost, security, performance)
|
|
363
|
-
* Note: Enhanced fields are optional for backward compatibility
|
|
364
|
-
*/
|
|
365
|
-
export declare const CrossDomainCorrelationSchema: z.ZodObject<{
|
|
366
|
-
correlation_id: z.ZodOptional<z.ZodString>;
|
|
367
|
-
correlationId: z.ZodString;
|
|
368
|
-
primaryTrend: z.ZodObject<{
|
|
369
|
-
metricType: z.ZodString;
|
|
370
|
-
layer: z.ZodString;
|
|
371
|
-
direction: z.ZodEnum<["increasing", "decreasing", "stable", "volatile"]>;
|
|
372
|
-
magnitude: z.ZodNumber;
|
|
373
|
-
velocity: z.ZodNumber;
|
|
374
|
-
dataPoints: z.ZodNumber;
|
|
375
|
-
confidence: z.ZodNumber;
|
|
376
|
-
anomalies: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
377
|
-
timestamp: z.ZodString;
|
|
378
|
-
value: z.ZodNumber;
|
|
379
|
-
deviationScore: z.ZodNumber;
|
|
380
|
-
}, "strip", z.ZodTypeAny, {
|
|
381
|
-
timestamp: string;
|
|
382
|
-
value: number;
|
|
383
|
-
deviationScore: number;
|
|
384
|
-
}, {
|
|
385
|
-
timestamp: string;
|
|
386
|
-
value: number;
|
|
387
|
-
deviationScore: number;
|
|
388
|
-
}>, "many">>;
|
|
389
|
-
}, "strip", z.ZodTypeAny, {
|
|
390
|
-
confidence: number;
|
|
391
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
392
|
-
layer: string;
|
|
393
|
-
metricType: string;
|
|
394
|
-
magnitude: number;
|
|
395
|
-
velocity: number;
|
|
396
|
-
dataPoints: number;
|
|
397
|
-
anomalies?: {
|
|
398
|
-
timestamp: string;
|
|
399
|
-
value: number;
|
|
400
|
-
deviationScore: number;
|
|
401
|
-
}[] | undefined;
|
|
402
|
-
}, {
|
|
403
|
-
confidence: number;
|
|
404
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
405
|
-
layer: string;
|
|
406
|
-
metricType: string;
|
|
407
|
-
magnitude: number;
|
|
408
|
-
velocity: number;
|
|
409
|
-
dataPoints: number;
|
|
410
|
-
anomalies?: {
|
|
411
|
-
timestamp: string;
|
|
412
|
-
value: number;
|
|
413
|
-
deviationScore: number;
|
|
414
|
-
}[] | undefined;
|
|
415
|
-
}>;
|
|
416
|
-
secondaryTrend: z.ZodObject<{
|
|
417
|
-
metricType: z.ZodString;
|
|
418
|
-
layer: z.ZodString;
|
|
419
|
-
direction: z.ZodEnum<["increasing", "decreasing", "stable", "volatile"]>;
|
|
420
|
-
magnitude: z.ZodNumber;
|
|
421
|
-
velocity: z.ZodNumber;
|
|
422
|
-
dataPoints: z.ZodNumber;
|
|
423
|
-
confidence: z.ZodNumber;
|
|
424
|
-
anomalies: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
425
|
-
timestamp: z.ZodString;
|
|
426
|
-
value: z.ZodNumber;
|
|
427
|
-
deviationScore: z.ZodNumber;
|
|
428
|
-
}, "strip", z.ZodTypeAny, {
|
|
429
|
-
timestamp: string;
|
|
430
|
-
value: number;
|
|
431
|
-
deviationScore: number;
|
|
432
|
-
}, {
|
|
433
|
-
timestamp: string;
|
|
434
|
-
value: number;
|
|
435
|
-
deviationScore: number;
|
|
436
|
-
}>, "many">>;
|
|
437
|
-
}, "strip", z.ZodTypeAny, {
|
|
438
|
-
confidence: number;
|
|
439
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
440
|
-
layer: string;
|
|
441
|
-
metricType: string;
|
|
442
|
-
magnitude: number;
|
|
443
|
-
velocity: number;
|
|
444
|
-
dataPoints: number;
|
|
445
|
-
anomalies?: {
|
|
446
|
-
timestamp: string;
|
|
447
|
-
value: number;
|
|
448
|
-
deviationScore: number;
|
|
449
|
-
}[] | undefined;
|
|
450
|
-
}, {
|
|
451
|
-
confidence: number;
|
|
452
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
453
|
-
layer: string;
|
|
454
|
-
metricType: string;
|
|
455
|
-
magnitude: number;
|
|
456
|
-
velocity: number;
|
|
457
|
-
dataPoints: number;
|
|
458
|
-
anomalies?: {
|
|
459
|
-
timestamp: string;
|
|
460
|
-
value: number;
|
|
461
|
-
deviationScore: number;
|
|
462
|
-
}[] | undefined;
|
|
463
|
-
}>;
|
|
464
|
-
domains: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
465
|
-
domain: z.ZodEnum<["cost", "security", "performance", "governance", "compliance"]>;
|
|
466
|
-
metrics: z.ZodArray<z.ZodString, "many">;
|
|
467
|
-
}, "strip", z.ZodTypeAny, {
|
|
468
|
-
metrics: string[];
|
|
469
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
470
|
-
}, {
|
|
471
|
-
metrics: string[];
|
|
472
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
473
|
-
}>, "many">>;
|
|
474
|
-
correlations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
475
|
-
metric_a: z.ZodString;
|
|
476
|
-
metric_b: z.ZodString;
|
|
477
|
-
correlation_coefficient: z.ZodNumber;
|
|
478
|
-
p_value: z.ZodNumber;
|
|
479
|
-
is_significant: z.ZodBoolean;
|
|
480
|
-
relationship_type: z.ZodEnum<["positive", "negative", "none"]>;
|
|
481
|
-
}, "strip", z.ZodTypeAny, {
|
|
482
|
-
metric_a: string;
|
|
483
|
-
metric_b: string;
|
|
484
|
-
correlation_coefficient: number;
|
|
485
|
-
p_value: number;
|
|
486
|
-
is_significant: boolean;
|
|
487
|
-
relationship_type: "positive" | "negative" | "none";
|
|
488
|
-
}, {
|
|
489
|
-
metric_a: string;
|
|
490
|
-
metric_b: string;
|
|
491
|
-
correlation_coefficient: number;
|
|
492
|
-
p_value: number;
|
|
493
|
-
is_significant: boolean;
|
|
494
|
-
relationship_type: "positive" | "negative" | "none";
|
|
495
|
-
}>, "many">>;
|
|
496
|
-
correlationCoefficient: z.ZodNumber;
|
|
497
|
-
strength: z.ZodEnum<["weak", "moderate", "strong"]>;
|
|
498
|
-
lagTime: z.ZodOptional<z.ZodNumber>;
|
|
499
|
-
causality: z.ZodOptional<z.ZodEnum<["none", "potential", "likely"]>>;
|
|
500
|
-
causal_relationships: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
501
|
-
cause_metric: z.ZodString;
|
|
502
|
-
effect_metric: z.ZodString;
|
|
503
|
-
lag_time: z.ZodOptional<z.ZodString>;
|
|
504
|
-
confidence: z.ZodNumber;
|
|
505
|
-
evidence: z.ZodArray<z.ZodString, "many">;
|
|
506
|
-
}, "strip", z.ZodTypeAny, {
|
|
507
|
-
confidence: number;
|
|
508
|
-
evidence: string[];
|
|
509
|
-
cause_metric: string;
|
|
510
|
-
effect_metric: string;
|
|
511
|
-
lag_time?: string | undefined;
|
|
512
|
-
}, {
|
|
513
|
-
confidence: number;
|
|
514
|
-
evidence: string[];
|
|
515
|
-
cause_metric: string;
|
|
516
|
-
effect_metric: string;
|
|
517
|
-
lag_time?: string | undefined;
|
|
518
|
-
}>, "many">>;
|
|
519
|
-
insights: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
520
|
-
insight_type: z.ZodEnum<["trade_off", "synergy", "cascade_effect", "feedback_loop"]>;
|
|
521
|
-
description: z.ZodString;
|
|
522
|
-
affected_domains: z.ZodArray<z.ZodString, "many">;
|
|
523
|
-
impact_score: z.ZodNumber;
|
|
524
|
-
}, "strip", z.ZodTypeAny, {
|
|
525
|
-
description: string;
|
|
526
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
527
|
-
affected_domains: string[];
|
|
528
|
-
impact_score: number;
|
|
529
|
-
}, {
|
|
530
|
-
description: string;
|
|
531
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
532
|
-
affected_domains: string[];
|
|
533
|
-
impact_score: number;
|
|
534
|
-
}>, "many">>;
|
|
535
|
-
anomalous_correlations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
536
|
-
metrics: z.ZodArray<z.ZodString, "many">;
|
|
537
|
-
expected_correlation: z.ZodNumber;
|
|
538
|
-
actual_correlation: z.ZodNumber;
|
|
539
|
-
deviation_score: z.ZodNumber;
|
|
540
|
-
possible_explanation: z.ZodOptional<z.ZodString>;
|
|
541
|
-
}, "strip", z.ZodTypeAny, {
|
|
542
|
-
metrics: string[];
|
|
543
|
-
deviation_score: number;
|
|
544
|
-
expected_correlation: number;
|
|
545
|
-
actual_correlation: number;
|
|
546
|
-
possible_explanation?: string | undefined;
|
|
547
|
-
}, {
|
|
548
|
-
metrics: string[];
|
|
549
|
-
deviation_score: number;
|
|
550
|
-
expected_correlation: number;
|
|
551
|
-
actual_correlation: number;
|
|
552
|
-
possible_explanation?: string | undefined;
|
|
553
|
-
}>, "many">>;
|
|
554
|
-
}, "strip", z.ZodTypeAny, {
|
|
555
|
-
strength: "weak" | "moderate" | "strong";
|
|
556
|
-
correlationId: string;
|
|
557
|
-
primaryTrend: {
|
|
558
|
-
confidence: number;
|
|
559
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
560
|
-
layer: string;
|
|
561
|
-
metricType: string;
|
|
562
|
-
magnitude: number;
|
|
563
|
-
velocity: number;
|
|
564
|
-
dataPoints: number;
|
|
565
|
-
anomalies?: {
|
|
566
|
-
timestamp: string;
|
|
567
|
-
value: number;
|
|
568
|
-
deviationScore: number;
|
|
569
|
-
}[] | undefined;
|
|
570
|
-
};
|
|
571
|
-
secondaryTrend: {
|
|
572
|
-
confidence: number;
|
|
573
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
574
|
-
layer: string;
|
|
575
|
-
metricType: string;
|
|
576
|
-
magnitude: number;
|
|
577
|
-
velocity: number;
|
|
578
|
-
dataPoints: number;
|
|
579
|
-
anomalies?: {
|
|
580
|
-
timestamp: string;
|
|
581
|
-
value: number;
|
|
582
|
-
deviationScore: number;
|
|
583
|
-
}[] | undefined;
|
|
584
|
-
};
|
|
585
|
-
correlationCoefficient: number;
|
|
586
|
-
correlation_id?: string | undefined;
|
|
587
|
-
domains?: {
|
|
588
|
-
metrics: string[];
|
|
589
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
590
|
-
}[] | undefined;
|
|
591
|
-
correlations?: {
|
|
592
|
-
metric_a: string;
|
|
593
|
-
metric_b: string;
|
|
594
|
-
correlation_coefficient: number;
|
|
595
|
-
p_value: number;
|
|
596
|
-
is_significant: boolean;
|
|
597
|
-
relationship_type: "positive" | "negative" | "none";
|
|
598
|
-
}[] | undefined;
|
|
599
|
-
lagTime?: number | undefined;
|
|
600
|
-
causality?: "none" | "potential" | "likely" | undefined;
|
|
601
|
-
causal_relationships?: {
|
|
602
|
-
confidence: number;
|
|
603
|
-
evidence: string[];
|
|
604
|
-
cause_metric: string;
|
|
605
|
-
effect_metric: string;
|
|
606
|
-
lag_time?: string | undefined;
|
|
607
|
-
}[] | undefined;
|
|
608
|
-
insights?: {
|
|
609
|
-
description: string;
|
|
610
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
611
|
-
affected_domains: string[];
|
|
612
|
-
impact_score: number;
|
|
613
|
-
}[] | undefined;
|
|
614
|
-
anomalous_correlations?: {
|
|
615
|
-
metrics: string[];
|
|
616
|
-
deviation_score: number;
|
|
617
|
-
expected_correlation: number;
|
|
618
|
-
actual_correlation: number;
|
|
619
|
-
possible_explanation?: string | undefined;
|
|
620
|
-
}[] | undefined;
|
|
621
|
-
}, {
|
|
622
|
-
strength: "weak" | "moderate" | "strong";
|
|
623
|
-
correlationId: string;
|
|
624
|
-
primaryTrend: {
|
|
625
|
-
confidence: number;
|
|
626
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
627
|
-
layer: string;
|
|
628
|
-
metricType: string;
|
|
629
|
-
magnitude: number;
|
|
630
|
-
velocity: number;
|
|
631
|
-
dataPoints: number;
|
|
632
|
-
anomalies?: {
|
|
633
|
-
timestamp: string;
|
|
634
|
-
value: number;
|
|
635
|
-
deviationScore: number;
|
|
636
|
-
}[] | undefined;
|
|
637
|
-
};
|
|
638
|
-
secondaryTrend: {
|
|
639
|
-
confidence: number;
|
|
640
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
641
|
-
layer: string;
|
|
642
|
-
metricType: string;
|
|
643
|
-
magnitude: number;
|
|
644
|
-
velocity: number;
|
|
645
|
-
dataPoints: number;
|
|
646
|
-
anomalies?: {
|
|
647
|
-
timestamp: string;
|
|
648
|
-
value: number;
|
|
649
|
-
deviationScore: number;
|
|
650
|
-
}[] | undefined;
|
|
651
|
-
};
|
|
652
|
-
correlationCoefficient: number;
|
|
653
|
-
correlation_id?: string | undefined;
|
|
654
|
-
domains?: {
|
|
655
|
-
metrics: string[];
|
|
656
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
657
|
-
}[] | undefined;
|
|
658
|
-
correlations?: {
|
|
659
|
-
metric_a: string;
|
|
660
|
-
metric_b: string;
|
|
661
|
-
correlation_coefficient: number;
|
|
662
|
-
p_value: number;
|
|
663
|
-
is_significant: boolean;
|
|
664
|
-
relationship_type: "positive" | "negative" | "none";
|
|
665
|
-
}[] | undefined;
|
|
666
|
-
lagTime?: number | undefined;
|
|
667
|
-
causality?: "none" | "potential" | "likely" | undefined;
|
|
668
|
-
causal_relationships?: {
|
|
669
|
-
confidence: number;
|
|
670
|
-
evidence: string[];
|
|
671
|
-
cause_metric: string;
|
|
672
|
-
effect_metric: string;
|
|
673
|
-
lag_time?: string | undefined;
|
|
674
|
-
}[] | undefined;
|
|
675
|
-
insights?: {
|
|
676
|
-
description: string;
|
|
677
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
678
|
-
affected_domains: string[];
|
|
679
|
-
impact_score: number;
|
|
680
|
-
}[] | undefined;
|
|
681
|
-
anomalous_correlations?: {
|
|
682
|
-
metrics: string[];
|
|
683
|
-
deviation_score: number;
|
|
684
|
-
expected_correlation: number;
|
|
685
|
-
actual_correlation: number;
|
|
686
|
-
possible_explanation?: string | undefined;
|
|
687
|
-
}[] | undefined;
|
|
688
|
-
}>;
|
|
689
|
-
export type CrossDomainCorrelation = z.infer<typeof CrossDomainCorrelationSchema>;
|
|
690
|
-
/**
|
|
691
|
-
* Recommendation priority level
|
|
692
|
-
*/
|
|
693
|
-
export type RecommendationPriority = 'critical' | 'high' | 'medium' | 'low';
|
|
694
|
-
/**
|
|
695
|
-
* Recommendation category
|
|
696
|
-
*/
|
|
697
|
-
export type RecommendationCategory = 'cost-optimization' | 'performance-improvement' | 'risk-mitigation' | 'capacity-planning' | 'governance-compliance' | 'strategic-initiative';
|
|
698
|
-
/**
|
|
699
|
-
* Strategic recommendation
|
|
700
|
-
*/
|
|
701
|
-
export declare const StrategicRecommendationSchema: z.ZodObject<{
|
|
702
|
-
recommendationId: z.ZodString;
|
|
703
|
-
category: z.ZodEnum<["cost-optimization", "performance-improvement", "risk-mitigation", "capacity-planning", "governance-compliance", "strategic-initiative"]>;
|
|
704
|
-
priority: z.ZodEnum<["critical", "high", "medium", "low"]>;
|
|
705
|
-
title: z.ZodString;
|
|
706
|
-
description: z.ZodString;
|
|
707
|
-
rationale: z.ZodString;
|
|
708
|
-
supportingCorrelations: z.ZodArray<z.ZodString, "many">;
|
|
709
|
-
supportingTrends: z.ZodArray<z.ZodString, "many">;
|
|
710
|
-
expectedImpact: z.ZodOptional<z.ZodObject<{
|
|
711
|
-
costSavings: z.ZodOptional<z.ZodNumber>;
|
|
712
|
-
performanceGain: z.ZodOptional<z.ZodNumber>;
|
|
713
|
-
riskReduction: z.ZodOptional<z.ZodNumber>;
|
|
714
|
-
}, "strip", z.ZodTypeAny, {
|
|
715
|
-
costSavings?: number | undefined;
|
|
716
|
-
performanceGain?: number | undefined;
|
|
717
|
-
riskReduction?: number | undefined;
|
|
718
|
-
}, {
|
|
719
|
-
costSavings?: number | undefined;
|
|
720
|
-
performanceGain?: number | undefined;
|
|
721
|
-
riskReduction?: number | undefined;
|
|
722
|
-
}>>;
|
|
723
|
-
confidence: z.ZodNumber;
|
|
724
|
-
timeHorizon: z.ZodEnum<["immediate", "short-term", "medium-term", "long-term"]>;
|
|
725
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
726
|
-
}, "strip", z.ZodTypeAny, {
|
|
727
|
-
description: string;
|
|
728
|
-
confidence: number;
|
|
729
|
-
category: "cost-optimization" | "performance-improvement" | "risk-mitigation" | "capacity-planning" | "governance-compliance" | "strategic-initiative";
|
|
730
|
-
priority: "critical" | "low" | "medium" | "high";
|
|
731
|
-
title: string;
|
|
732
|
-
recommendationId: string;
|
|
733
|
-
rationale: string;
|
|
734
|
-
supportingCorrelations: string[];
|
|
735
|
-
supportingTrends: string[];
|
|
736
|
-
timeHorizon: "immediate" | "short-term" | "medium-term" | "long-term";
|
|
737
|
-
metadata?: Record<string, unknown> | undefined;
|
|
738
|
-
expectedImpact?: {
|
|
739
|
-
costSavings?: number | undefined;
|
|
740
|
-
performanceGain?: number | undefined;
|
|
741
|
-
riskReduction?: number | undefined;
|
|
742
|
-
} | undefined;
|
|
743
|
-
}, {
|
|
744
|
-
description: string;
|
|
745
|
-
confidence: number;
|
|
746
|
-
category: "cost-optimization" | "performance-improvement" | "risk-mitigation" | "capacity-planning" | "governance-compliance" | "strategic-initiative";
|
|
747
|
-
priority: "critical" | "low" | "medium" | "high";
|
|
748
|
-
title: string;
|
|
749
|
-
recommendationId: string;
|
|
750
|
-
rationale: string;
|
|
751
|
-
supportingCorrelations: string[];
|
|
752
|
-
supportingTrends: string[];
|
|
753
|
-
timeHorizon: "immediate" | "short-term" | "medium-term" | "long-term";
|
|
754
|
-
metadata?: Record<string, unknown> | undefined;
|
|
755
|
-
expectedImpact?: {
|
|
756
|
-
costSavings?: number | undefined;
|
|
757
|
-
performanceGain?: number | undefined;
|
|
758
|
-
riskReduction?: number | undefined;
|
|
759
|
-
} | undefined;
|
|
760
|
-
}>;
|
|
761
|
-
export type StrategicRecommendation = z.infer<typeof StrategicRecommendationSchema>;
|
|
762
|
-
export declare const DataSourceSchema: z.ZodNativeEnum<typeof DataSource>;
|
|
763
|
-
/**
|
|
764
|
-
* Input to the Strategic Recommendation Agent (enhanced)
|
|
765
|
-
*/
|
|
766
|
-
export declare const StrategicRecommendationInputSchema: z.ZodObject<{
|
|
767
|
-
request_id: z.ZodString;
|
|
768
|
-
timeWindow: z.ZodObject<{
|
|
769
|
-
startTime: z.ZodString;
|
|
770
|
-
endTime: z.ZodString;
|
|
771
|
-
}, "strip", z.ZodTypeAny, {
|
|
772
|
-
startTime: string;
|
|
773
|
-
endTime: string;
|
|
774
|
-
}, {
|
|
775
|
-
startTime: string;
|
|
776
|
-
endTime: string;
|
|
777
|
-
}>;
|
|
778
|
-
time_range: z.ZodObject<{
|
|
779
|
-
start: z.ZodString;
|
|
780
|
-
end: z.ZodString;
|
|
781
|
-
}, "strip", z.ZodTypeAny, {
|
|
782
|
-
start: string;
|
|
783
|
-
end: string;
|
|
784
|
-
}, {
|
|
785
|
-
start: string;
|
|
786
|
-
end: string;
|
|
787
|
-
}>;
|
|
788
|
-
sourceLayers: z.ZodArray<z.ZodString, "many">;
|
|
789
|
-
data_sources: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof DataSource>, "many">>;
|
|
790
|
-
focus_areas: z.ZodOptional<z.ZodArray<z.ZodEnum<["cost", "security", "performance", "governance", "compliance", "operations"]>, "many">>;
|
|
791
|
-
constraints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
792
|
-
type: z.ZodString;
|
|
793
|
-
value: z.ZodUnknown;
|
|
794
|
-
description: z.ZodOptional<z.ZodString>;
|
|
795
|
-
}, "strip", z.ZodTypeAny, {
|
|
796
|
-
type: string;
|
|
797
|
-
description?: string | undefined;
|
|
798
|
-
value?: unknown;
|
|
799
|
-
}, {
|
|
800
|
-
type: string;
|
|
801
|
-
description?: string | undefined;
|
|
802
|
-
value?: unknown;
|
|
803
|
-
}>, "many">>;
|
|
804
|
-
minConfidence: z.ZodDefault<z.ZodNumber>;
|
|
805
|
-
min_confidence: z.ZodOptional<z.ZodNumber>;
|
|
806
|
-
maxRecommendations: z.ZodDefault<z.ZodNumber>;
|
|
807
|
-
max_recommendations: z.ZodOptional<z.ZodNumber>;
|
|
808
|
-
focusCategories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
809
|
-
include_details: z.ZodOptional<z.ZodBoolean>;
|
|
810
|
-
executionRef: z.ZodString;
|
|
811
|
-
context: z.ZodOptional<z.ZodObject<{
|
|
812
|
-
previous_recommendations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
813
|
-
implemented_actions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
814
|
-
recommendation_id: z.ZodString;
|
|
815
|
-
action_taken: z.ZodString;
|
|
816
|
-
outcome: z.ZodEnum<["successful", "failed", "partial"]>;
|
|
817
|
-
impact_observed: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
818
|
-
}, "strip", z.ZodTypeAny, {
|
|
819
|
-
recommendation_id: string;
|
|
820
|
-
action_taken: string;
|
|
821
|
-
outcome: "successful" | "failed" | "partial";
|
|
822
|
-
impact_observed?: Record<string, number> | undefined;
|
|
823
|
-
}, {
|
|
824
|
-
recommendation_id: string;
|
|
825
|
-
action_taken: string;
|
|
826
|
-
outcome: "successful" | "failed" | "partial";
|
|
827
|
-
impact_observed?: Record<string, number> | undefined;
|
|
828
|
-
}>, "many">>;
|
|
829
|
-
}, "strip", z.ZodTypeAny, {
|
|
830
|
-
previous_recommendations?: string[] | undefined;
|
|
831
|
-
implemented_actions?: {
|
|
832
|
-
recommendation_id: string;
|
|
833
|
-
action_taken: string;
|
|
834
|
-
outcome: "successful" | "failed" | "partial";
|
|
835
|
-
impact_observed?: Record<string, number> | undefined;
|
|
836
|
-
}[] | undefined;
|
|
837
|
-
}, {
|
|
838
|
-
previous_recommendations?: string[] | undefined;
|
|
839
|
-
implemented_actions?: {
|
|
840
|
-
recommendation_id: string;
|
|
841
|
-
action_taken: string;
|
|
842
|
-
outcome: "successful" | "failed" | "partial";
|
|
843
|
-
impact_observed?: Record<string, number> | undefined;
|
|
844
|
-
}[] | undefined;
|
|
845
|
-
}>>;
|
|
846
|
-
}, "strip", z.ZodTypeAny, {
|
|
847
|
-
executionRef: string;
|
|
848
|
-
timeWindow: {
|
|
849
|
-
startTime: string;
|
|
850
|
-
endTime: string;
|
|
851
|
-
};
|
|
852
|
-
request_id: string;
|
|
853
|
-
time_range: {
|
|
854
|
-
start: string;
|
|
855
|
-
end: string;
|
|
856
|
-
};
|
|
857
|
-
sourceLayers: string[];
|
|
858
|
-
minConfidence: number;
|
|
859
|
-
maxRecommendations: number;
|
|
860
|
-
data_sources?: DataSource[] | undefined;
|
|
861
|
-
focus_areas?: ("cost" | "performance" | "security" | "compliance" | "governance" | "operations")[] | undefined;
|
|
862
|
-
constraints?: {
|
|
863
|
-
type: string;
|
|
864
|
-
description?: string | undefined;
|
|
865
|
-
value?: unknown;
|
|
866
|
-
}[] | undefined;
|
|
867
|
-
min_confidence?: number | undefined;
|
|
868
|
-
max_recommendations?: number | undefined;
|
|
869
|
-
focusCategories?: string[] | undefined;
|
|
870
|
-
include_details?: boolean | undefined;
|
|
871
|
-
context?: {
|
|
872
|
-
previous_recommendations?: string[] | undefined;
|
|
873
|
-
implemented_actions?: {
|
|
874
|
-
recommendation_id: string;
|
|
875
|
-
action_taken: string;
|
|
876
|
-
outcome: "successful" | "failed" | "partial";
|
|
877
|
-
impact_observed?: Record<string, number> | undefined;
|
|
878
|
-
}[] | undefined;
|
|
879
|
-
} | undefined;
|
|
880
|
-
}, {
|
|
881
|
-
executionRef: string;
|
|
882
|
-
timeWindow: {
|
|
883
|
-
startTime: string;
|
|
884
|
-
endTime: string;
|
|
885
|
-
};
|
|
886
|
-
request_id: string;
|
|
887
|
-
time_range: {
|
|
888
|
-
start: string;
|
|
889
|
-
end: string;
|
|
890
|
-
};
|
|
891
|
-
sourceLayers: string[];
|
|
892
|
-
data_sources?: DataSource[] | undefined;
|
|
893
|
-
focus_areas?: ("cost" | "performance" | "security" | "compliance" | "governance" | "operations")[] | undefined;
|
|
894
|
-
constraints?: {
|
|
895
|
-
type: string;
|
|
896
|
-
description?: string | undefined;
|
|
897
|
-
value?: unknown;
|
|
898
|
-
}[] | undefined;
|
|
899
|
-
minConfidence?: number | undefined;
|
|
900
|
-
min_confidence?: number | undefined;
|
|
901
|
-
maxRecommendations?: number | undefined;
|
|
902
|
-
max_recommendations?: number | undefined;
|
|
903
|
-
focusCategories?: string[] | undefined;
|
|
904
|
-
include_details?: boolean | undefined;
|
|
905
|
-
context?: {
|
|
906
|
-
previous_recommendations?: string[] | undefined;
|
|
907
|
-
implemented_actions?: {
|
|
908
|
-
recommendation_id: string;
|
|
909
|
-
action_taken: string;
|
|
910
|
-
outcome: "successful" | "failed" | "partial";
|
|
911
|
-
impact_observed?: Record<string, number> | undefined;
|
|
912
|
-
}[] | undefined;
|
|
913
|
-
} | undefined;
|
|
914
|
-
}>;
|
|
915
|
-
export type StrategicRecommendationInput = z.infer<typeof StrategicRecommendationInputSchema>;
|
|
916
|
-
/**
|
|
917
|
-
* Output from the Strategic Recommendation Agent (enhanced)
|
|
918
|
-
* Note: Enhanced fields are optional for backward compatibility
|
|
919
|
-
*/
|
|
920
|
-
export declare const StrategicRecommendationOutputSchema: z.ZodObject<{
|
|
921
|
-
request_id: z.ZodOptional<z.ZodString>;
|
|
922
|
-
recommendations: z.ZodArray<z.ZodObject<{
|
|
923
|
-
recommendationId: z.ZodString;
|
|
924
|
-
category: z.ZodEnum<["cost-optimization", "performance-improvement", "risk-mitigation", "capacity-planning", "governance-compliance", "strategic-initiative"]>;
|
|
925
|
-
priority: z.ZodEnum<["critical", "high", "medium", "low"]>;
|
|
926
|
-
title: z.ZodString;
|
|
927
|
-
description: z.ZodString;
|
|
928
|
-
rationale: z.ZodString;
|
|
929
|
-
supportingCorrelations: z.ZodArray<z.ZodString, "many">;
|
|
930
|
-
supportingTrends: z.ZodArray<z.ZodString, "many">;
|
|
931
|
-
expectedImpact: z.ZodOptional<z.ZodObject<{
|
|
932
|
-
costSavings: z.ZodOptional<z.ZodNumber>;
|
|
933
|
-
performanceGain: z.ZodOptional<z.ZodNumber>;
|
|
934
|
-
riskReduction: z.ZodOptional<z.ZodNumber>;
|
|
935
|
-
}, "strip", z.ZodTypeAny, {
|
|
936
|
-
costSavings?: number | undefined;
|
|
937
|
-
performanceGain?: number | undefined;
|
|
938
|
-
riskReduction?: number | undefined;
|
|
939
|
-
}, {
|
|
940
|
-
costSavings?: number | undefined;
|
|
941
|
-
performanceGain?: number | undefined;
|
|
942
|
-
riskReduction?: number | undefined;
|
|
943
|
-
}>>;
|
|
944
|
-
confidence: z.ZodNumber;
|
|
945
|
-
timeHorizon: z.ZodEnum<["immediate", "short-term", "medium-term", "long-term"]>;
|
|
946
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
947
|
-
}, "strip", z.ZodTypeAny, {
|
|
948
|
-
description: string;
|
|
949
|
-
confidence: number;
|
|
950
|
-
category: "cost-optimization" | "performance-improvement" | "risk-mitigation" | "capacity-planning" | "governance-compliance" | "strategic-initiative";
|
|
951
|
-
priority: "critical" | "low" | "medium" | "high";
|
|
952
|
-
title: string;
|
|
953
|
-
recommendationId: string;
|
|
954
|
-
rationale: string;
|
|
955
|
-
supportingCorrelations: string[];
|
|
956
|
-
supportingTrends: string[];
|
|
957
|
-
timeHorizon: "immediate" | "short-term" | "medium-term" | "long-term";
|
|
958
|
-
metadata?: Record<string, unknown> | undefined;
|
|
959
|
-
expectedImpact?: {
|
|
960
|
-
costSavings?: number | undefined;
|
|
961
|
-
performanceGain?: number | undefined;
|
|
962
|
-
riskReduction?: number | undefined;
|
|
963
|
-
} | undefined;
|
|
964
|
-
}, {
|
|
965
|
-
description: string;
|
|
966
|
-
confidence: number;
|
|
967
|
-
category: "cost-optimization" | "performance-improvement" | "risk-mitigation" | "capacity-planning" | "governance-compliance" | "strategic-initiative";
|
|
968
|
-
priority: "critical" | "low" | "medium" | "high";
|
|
969
|
-
title: string;
|
|
970
|
-
recommendationId: string;
|
|
971
|
-
rationale: string;
|
|
972
|
-
supportingCorrelations: string[];
|
|
973
|
-
supportingTrends: string[];
|
|
974
|
-
timeHorizon: "immediate" | "short-term" | "medium-term" | "long-term";
|
|
975
|
-
metadata?: Record<string, unknown> | undefined;
|
|
976
|
-
expectedImpact?: {
|
|
977
|
-
costSavings?: number | undefined;
|
|
978
|
-
performanceGain?: number | undefined;
|
|
979
|
-
riskReduction?: number | undefined;
|
|
980
|
-
} | undefined;
|
|
981
|
-
}>, "many">;
|
|
982
|
-
signal_aggregation: z.ZodOptional<z.ZodObject<{
|
|
983
|
-
aggregation_id: z.ZodOptional<z.ZodString>;
|
|
984
|
-
timeWindow: z.ZodObject<{
|
|
985
|
-
startTime: z.ZodString;
|
|
986
|
-
endTime: z.ZodString;
|
|
987
|
-
}, "strip", z.ZodTypeAny, {
|
|
988
|
-
startTime: string;
|
|
989
|
-
endTime: string;
|
|
990
|
-
}, {
|
|
991
|
-
startTime: string;
|
|
992
|
-
endTime: string;
|
|
993
|
-
}>;
|
|
994
|
-
time_window: z.ZodOptional<z.ZodObject<{
|
|
995
|
-
start: z.ZodString;
|
|
996
|
-
end: z.ZodString;
|
|
997
|
-
granularity: z.ZodEnum<["minute", "hour", "day", "week", "month"]>;
|
|
998
|
-
}, "strip", z.ZodTypeAny, {
|
|
999
|
-
start: string;
|
|
1000
|
-
end: string;
|
|
1001
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
1002
|
-
}, {
|
|
1003
|
-
start: string;
|
|
1004
|
-
end: string;
|
|
1005
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
1006
|
-
}>>;
|
|
1007
|
-
signalsByLayer: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
1008
|
-
signalId: z.ZodString;
|
|
1009
|
-
layer: z.ZodString;
|
|
1010
|
-
timestamp: z.ZodString;
|
|
1011
|
-
metricType: z.ZodString;
|
|
1012
|
-
value: z.ZodNumber;
|
|
1013
|
-
confidence: z.ZodNumber;
|
|
1014
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1015
|
-
}, "strip", z.ZodTypeAny, {
|
|
1016
|
-
timestamp: string;
|
|
1017
|
-
value: number;
|
|
1018
|
-
signalId: string;
|
|
1019
|
-
confidence: number;
|
|
1020
|
-
layer: string;
|
|
1021
|
-
metricType: string;
|
|
1022
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1023
|
-
}, {
|
|
1024
|
-
timestamp: string;
|
|
1025
|
-
value: number;
|
|
1026
|
-
signalId: string;
|
|
1027
|
-
confidence: number;
|
|
1028
|
-
layer: string;
|
|
1029
|
-
metricType: string;
|
|
1030
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1031
|
-
}>, "many">>;
|
|
1032
|
-
by_source: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1033
|
-
source: z.ZodString;
|
|
1034
|
-
signal_count: z.ZodNumber;
|
|
1035
|
-
avg_severity: z.ZodNumber;
|
|
1036
|
-
dominant_categories: z.ZodArray<z.ZodString, "many">;
|
|
1037
|
-
key_metrics: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1038
|
-
}, "strip", z.ZodTypeAny, {
|
|
1039
|
-
source: string;
|
|
1040
|
-
signal_count: number;
|
|
1041
|
-
avg_severity: number;
|
|
1042
|
-
dominant_categories: string[];
|
|
1043
|
-
key_metrics: Record<string, number>;
|
|
1044
|
-
}, {
|
|
1045
|
-
source: string;
|
|
1046
|
-
signal_count: number;
|
|
1047
|
-
avg_severity: number;
|
|
1048
|
-
dominant_categories: string[];
|
|
1049
|
-
key_metrics: Record<string, number>;
|
|
1050
|
-
}>, "many">>;
|
|
1051
|
-
totalSignals: z.ZodNumber;
|
|
1052
|
-
layersIncluded: z.ZodArray<z.ZodString, "many">;
|
|
1053
|
-
aggregated_metrics: z.ZodOptional<z.ZodObject<{
|
|
1054
|
-
total_events: z.ZodNumber;
|
|
1055
|
-
unique_resources: z.ZodNumber;
|
|
1056
|
-
avg_latency_ms: z.ZodOptional<z.ZodNumber>;
|
|
1057
|
-
total_cost: z.ZodOptional<z.ZodNumber>;
|
|
1058
|
-
error_rate: z.ZodOptional<z.ZodNumber>;
|
|
1059
|
-
security_incidents: z.ZodOptional<z.ZodNumber>;
|
|
1060
|
-
policy_violations: z.ZodOptional<z.ZodNumber>;
|
|
1061
|
-
}, "strip", z.ZodTypeAny, {
|
|
1062
|
-
total_events: number;
|
|
1063
|
-
unique_resources: number;
|
|
1064
|
-
avg_latency_ms?: number | undefined;
|
|
1065
|
-
total_cost?: number | undefined;
|
|
1066
|
-
error_rate?: number | undefined;
|
|
1067
|
-
security_incidents?: number | undefined;
|
|
1068
|
-
policy_violations?: number | undefined;
|
|
1069
|
-
}, {
|
|
1070
|
-
total_events: number;
|
|
1071
|
-
unique_resources: number;
|
|
1072
|
-
avg_latency_ms?: number | undefined;
|
|
1073
|
-
total_cost?: number | undefined;
|
|
1074
|
-
error_rate?: number | undefined;
|
|
1075
|
-
security_incidents?: number | undefined;
|
|
1076
|
-
policy_violations?: number | undefined;
|
|
1077
|
-
}>>;
|
|
1078
|
-
statistics: z.ZodOptional<z.ZodObject<{
|
|
1079
|
-
mean: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1080
|
-
median: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1081
|
-
std_dev: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1082
|
-
percentiles: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1083
|
-
}, "strip", z.ZodTypeAny, {
|
|
1084
|
-
mean: Record<string, number>;
|
|
1085
|
-
median: Record<string, number>;
|
|
1086
|
-
std_dev: Record<string, number>;
|
|
1087
|
-
percentiles: Record<string, Record<string, number>>;
|
|
1088
|
-
}, {
|
|
1089
|
-
mean: Record<string, number>;
|
|
1090
|
-
median: Record<string, number>;
|
|
1091
|
-
std_dev: Record<string, number>;
|
|
1092
|
-
percentiles: Record<string, Record<string, number>>;
|
|
1093
|
-
}>>;
|
|
1094
|
-
temporal_patterns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1095
|
-
pattern_type: z.ZodEnum<["spike", "dip", "cyclical", "trending"]>;
|
|
1096
|
-
detected_at: z.ZodString;
|
|
1097
|
-
strength: z.ZodNumber;
|
|
1098
|
-
description: z.ZodString;
|
|
1099
|
-
}, "strip", z.ZodTypeAny, {
|
|
1100
|
-
description: string;
|
|
1101
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
1102
|
-
detected_at: string;
|
|
1103
|
-
strength: number;
|
|
1104
|
-
}, {
|
|
1105
|
-
description: string;
|
|
1106
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
1107
|
-
detected_at: string;
|
|
1108
|
-
strength: number;
|
|
1109
|
-
}>, "many">>;
|
|
1110
|
-
}, "strip", z.ZodTypeAny, {
|
|
1111
|
-
totalSignals: number;
|
|
1112
|
-
timeWindow: {
|
|
1113
|
-
startTime: string;
|
|
1114
|
-
endTime: string;
|
|
1115
|
-
};
|
|
1116
|
-
signalsByLayer: Record<string, {
|
|
1117
|
-
timestamp: string;
|
|
1118
|
-
value: number;
|
|
1119
|
-
signalId: string;
|
|
1120
|
-
confidence: number;
|
|
1121
|
-
layer: string;
|
|
1122
|
-
metricType: string;
|
|
1123
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1124
|
-
}[]>;
|
|
1125
|
-
layersIncluded: string[];
|
|
1126
|
-
statistics?: {
|
|
1127
|
-
mean: Record<string, number>;
|
|
1128
|
-
median: Record<string, number>;
|
|
1129
|
-
std_dev: Record<string, number>;
|
|
1130
|
-
percentiles: Record<string, Record<string, number>>;
|
|
1131
|
-
} | undefined;
|
|
1132
|
-
aggregation_id?: string | undefined;
|
|
1133
|
-
time_window?: {
|
|
1134
|
-
start: string;
|
|
1135
|
-
end: string;
|
|
1136
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
1137
|
-
} | undefined;
|
|
1138
|
-
by_source?: {
|
|
1139
|
-
source: string;
|
|
1140
|
-
signal_count: number;
|
|
1141
|
-
avg_severity: number;
|
|
1142
|
-
dominant_categories: string[];
|
|
1143
|
-
key_metrics: Record<string, number>;
|
|
1144
|
-
}[] | undefined;
|
|
1145
|
-
aggregated_metrics?: {
|
|
1146
|
-
total_events: number;
|
|
1147
|
-
unique_resources: number;
|
|
1148
|
-
avg_latency_ms?: number | undefined;
|
|
1149
|
-
total_cost?: number | undefined;
|
|
1150
|
-
error_rate?: number | undefined;
|
|
1151
|
-
security_incidents?: number | undefined;
|
|
1152
|
-
policy_violations?: number | undefined;
|
|
1153
|
-
} | undefined;
|
|
1154
|
-
temporal_patterns?: {
|
|
1155
|
-
description: string;
|
|
1156
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
1157
|
-
detected_at: string;
|
|
1158
|
-
strength: number;
|
|
1159
|
-
}[] | undefined;
|
|
1160
|
-
}, {
|
|
1161
|
-
totalSignals: number;
|
|
1162
|
-
timeWindow: {
|
|
1163
|
-
startTime: string;
|
|
1164
|
-
endTime: string;
|
|
1165
|
-
};
|
|
1166
|
-
signalsByLayer: Record<string, {
|
|
1167
|
-
timestamp: string;
|
|
1168
|
-
value: number;
|
|
1169
|
-
signalId: string;
|
|
1170
|
-
confidence: number;
|
|
1171
|
-
layer: string;
|
|
1172
|
-
metricType: string;
|
|
1173
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1174
|
-
}[]>;
|
|
1175
|
-
layersIncluded: string[];
|
|
1176
|
-
statistics?: {
|
|
1177
|
-
mean: Record<string, number>;
|
|
1178
|
-
median: Record<string, number>;
|
|
1179
|
-
std_dev: Record<string, number>;
|
|
1180
|
-
percentiles: Record<string, Record<string, number>>;
|
|
1181
|
-
} | undefined;
|
|
1182
|
-
aggregation_id?: string | undefined;
|
|
1183
|
-
time_window?: {
|
|
1184
|
-
start: string;
|
|
1185
|
-
end: string;
|
|
1186
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
1187
|
-
} | undefined;
|
|
1188
|
-
by_source?: {
|
|
1189
|
-
source: string;
|
|
1190
|
-
signal_count: number;
|
|
1191
|
-
avg_severity: number;
|
|
1192
|
-
dominant_categories: string[];
|
|
1193
|
-
key_metrics: Record<string, number>;
|
|
1194
|
-
}[] | undefined;
|
|
1195
|
-
aggregated_metrics?: {
|
|
1196
|
-
total_events: number;
|
|
1197
|
-
unique_resources: number;
|
|
1198
|
-
avg_latency_ms?: number | undefined;
|
|
1199
|
-
total_cost?: number | undefined;
|
|
1200
|
-
error_rate?: number | undefined;
|
|
1201
|
-
security_incidents?: number | undefined;
|
|
1202
|
-
policy_violations?: number | undefined;
|
|
1203
|
-
} | undefined;
|
|
1204
|
-
temporal_patterns?: {
|
|
1205
|
-
description: string;
|
|
1206
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
1207
|
-
detected_at: string;
|
|
1208
|
-
strength: number;
|
|
1209
|
-
}[] | undefined;
|
|
1210
|
-
}>>;
|
|
1211
|
-
cross_domain_correlations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1212
|
-
correlation_id: z.ZodOptional<z.ZodString>;
|
|
1213
|
-
correlationId: z.ZodString;
|
|
1214
|
-
primaryTrend: z.ZodObject<{
|
|
1215
|
-
metricType: z.ZodString;
|
|
1216
|
-
layer: z.ZodString;
|
|
1217
|
-
direction: z.ZodEnum<["increasing", "decreasing", "stable", "volatile"]>;
|
|
1218
|
-
magnitude: z.ZodNumber;
|
|
1219
|
-
velocity: z.ZodNumber;
|
|
1220
|
-
dataPoints: z.ZodNumber;
|
|
1221
|
-
confidence: z.ZodNumber;
|
|
1222
|
-
anomalies: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1223
|
-
timestamp: z.ZodString;
|
|
1224
|
-
value: z.ZodNumber;
|
|
1225
|
-
deviationScore: z.ZodNumber;
|
|
1226
|
-
}, "strip", z.ZodTypeAny, {
|
|
1227
|
-
timestamp: string;
|
|
1228
|
-
value: number;
|
|
1229
|
-
deviationScore: number;
|
|
1230
|
-
}, {
|
|
1231
|
-
timestamp: string;
|
|
1232
|
-
value: number;
|
|
1233
|
-
deviationScore: number;
|
|
1234
|
-
}>, "many">>;
|
|
1235
|
-
}, "strip", z.ZodTypeAny, {
|
|
1236
|
-
confidence: number;
|
|
1237
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1238
|
-
layer: string;
|
|
1239
|
-
metricType: string;
|
|
1240
|
-
magnitude: number;
|
|
1241
|
-
velocity: number;
|
|
1242
|
-
dataPoints: number;
|
|
1243
|
-
anomalies?: {
|
|
1244
|
-
timestamp: string;
|
|
1245
|
-
value: number;
|
|
1246
|
-
deviationScore: number;
|
|
1247
|
-
}[] | undefined;
|
|
1248
|
-
}, {
|
|
1249
|
-
confidence: number;
|
|
1250
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1251
|
-
layer: string;
|
|
1252
|
-
metricType: string;
|
|
1253
|
-
magnitude: number;
|
|
1254
|
-
velocity: number;
|
|
1255
|
-
dataPoints: number;
|
|
1256
|
-
anomalies?: {
|
|
1257
|
-
timestamp: string;
|
|
1258
|
-
value: number;
|
|
1259
|
-
deviationScore: number;
|
|
1260
|
-
}[] | undefined;
|
|
1261
|
-
}>;
|
|
1262
|
-
secondaryTrend: z.ZodObject<{
|
|
1263
|
-
metricType: z.ZodString;
|
|
1264
|
-
layer: z.ZodString;
|
|
1265
|
-
direction: z.ZodEnum<["increasing", "decreasing", "stable", "volatile"]>;
|
|
1266
|
-
magnitude: z.ZodNumber;
|
|
1267
|
-
velocity: z.ZodNumber;
|
|
1268
|
-
dataPoints: z.ZodNumber;
|
|
1269
|
-
confidence: z.ZodNumber;
|
|
1270
|
-
anomalies: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1271
|
-
timestamp: z.ZodString;
|
|
1272
|
-
value: z.ZodNumber;
|
|
1273
|
-
deviationScore: z.ZodNumber;
|
|
1274
|
-
}, "strip", z.ZodTypeAny, {
|
|
1275
|
-
timestamp: string;
|
|
1276
|
-
value: number;
|
|
1277
|
-
deviationScore: number;
|
|
1278
|
-
}, {
|
|
1279
|
-
timestamp: string;
|
|
1280
|
-
value: number;
|
|
1281
|
-
deviationScore: number;
|
|
1282
|
-
}>, "many">>;
|
|
1283
|
-
}, "strip", z.ZodTypeAny, {
|
|
1284
|
-
confidence: number;
|
|
1285
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1286
|
-
layer: string;
|
|
1287
|
-
metricType: string;
|
|
1288
|
-
magnitude: number;
|
|
1289
|
-
velocity: number;
|
|
1290
|
-
dataPoints: number;
|
|
1291
|
-
anomalies?: {
|
|
1292
|
-
timestamp: string;
|
|
1293
|
-
value: number;
|
|
1294
|
-
deviationScore: number;
|
|
1295
|
-
}[] | undefined;
|
|
1296
|
-
}, {
|
|
1297
|
-
confidence: number;
|
|
1298
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1299
|
-
layer: string;
|
|
1300
|
-
metricType: string;
|
|
1301
|
-
magnitude: number;
|
|
1302
|
-
velocity: number;
|
|
1303
|
-
dataPoints: number;
|
|
1304
|
-
anomalies?: {
|
|
1305
|
-
timestamp: string;
|
|
1306
|
-
value: number;
|
|
1307
|
-
deviationScore: number;
|
|
1308
|
-
}[] | undefined;
|
|
1309
|
-
}>;
|
|
1310
|
-
domains: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1311
|
-
domain: z.ZodEnum<["cost", "security", "performance", "governance", "compliance"]>;
|
|
1312
|
-
metrics: z.ZodArray<z.ZodString, "many">;
|
|
1313
|
-
}, "strip", z.ZodTypeAny, {
|
|
1314
|
-
metrics: string[];
|
|
1315
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
1316
|
-
}, {
|
|
1317
|
-
metrics: string[];
|
|
1318
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
1319
|
-
}>, "many">>;
|
|
1320
|
-
correlations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1321
|
-
metric_a: z.ZodString;
|
|
1322
|
-
metric_b: z.ZodString;
|
|
1323
|
-
correlation_coefficient: z.ZodNumber;
|
|
1324
|
-
p_value: z.ZodNumber;
|
|
1325
|
-
is_significant: z.ZodBoolean;
|
|
1326
|
-
relationship_type: z.ZodEnum<["positive", "negative", "none"]>;
|
|
1327
|
-
}, "strip", z.ZodTypeAny, {
|
|
1328
|
-
metric_a: string;
|
|
1329
|
-
metric_b: string;
|
|
1330
|
-
correlation_coefficient: number;
|
|
1331
|
-
p_value: number;
|
|
1332
|
-
is_significant: boolean;
|
|
1333
|
-
relationship_type: "positive" | "negative" | "none";
|
|
1334
|
-
}, {
|
|
1335
|
-
metric_a: string;
|
|
1336
|
-
metric_b: string;
|
|
1337
|
-
correlation_coefficient: number;
|
|
1338
|
-
p_value: number;
|
|
1339
|
-
is_significant: boolean;
|
|
1340
|
-
relationship_type: "positive" | "negative" | "none";
|
|
1341
|
-
}>, "many">>;
|
|
1342
|
-
correlationCoefficient: z.ZodNumber;
|
|
1343
|
-
strength: z.ZodEnum<["weak", "moderate", "strong"]>;
|
|
1344
|
-
lagTime: z.ZodOptional<z.ZodNumber>;
|
|
1345
|
-
causality: z.ZodOptional<z.ZodEnum<["none", "potential", "likely"]>>;
|
|
1346
|
-
causal_relationships: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1347
|
-
cause_metric: z.ZodString;
|
|
1348
|
-
effect_metric: z.ZodString;
|
|
1349
|
-
lag_time: z.ZodOptional<z.ZodString>;
|
|
1350
|
-
confidence: z.ZodNumber;
|
|
1351
|
-
evidence: z.ZodArray<z.ZodString, "many">;
|
|
1352
|
-
}, "strip", z.ZodTypeAny, {
|
|
1353
|
-
confidence: number;
|
|
1354
|
-
evidence: string[];
|
|
1355
|
-
cause_metric: string;
|
|
1356
|
-
effect_metric: string;
|
|
1357
|
-
lag_time?: string | undefined;
|
|
1358
|
-
}, {
|
|
1359
|
-
confidence: number;
|
|
1360
|
-
evidence: string[];
|
|
1361
|
-
cause_metric: string;
|
|
1362
|
-
effect_metric: string;
|
|
1363
|
-
lag_time?: string | undefined;
|
|
1364
|
-
}>, "many">>;
|
|
1365
|
-
insights: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1366
|
-
insight_type: z.ZodEnum<["trade_off", "synergy", "cascade_effect", "feedback_loop"]>;
|
|
1367
|
-
description: z.ZodString;
|
|
1368
|
-
affected_domains: z.ZodArray<z.ZodString, "many">;
|
|
1369
|
-
impact_score: z.ZodNumber;
|
|
1370
|
-
}, "strip", z.ZodTypeAny, {
|
|
1371
|
-
description: string;
|
|
1372
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
1373
|
-
affected_domains: string[];
|
|
1374
|
-
impact_score: number;
|
|
1375
|
-
}, {
|
|
1376
|
-
description: string;
|
|
1377
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
1378
|
-
affected_domains: string[];
|
|
1379
|
-
impact_score: number;
|
|
1380
|
-
}>, "many">>;
|
|
1381
|
-
anomalous_correlations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1382
|
-
metrics: z.ZodArray<z.ZodString, "many">;
|
|
1383
|
-
expected_correlation: z.ZodNumber;
|
|
1384
|
-
actual_correlation: z.ZodNumber;
|
|
1385
|
-
deviation_score: z.ZodNumber;
|
|
1386
|
-
possible_explanation: z.ZodOptional<z.ZodString>;
|
|
1387
|
-
}, "strip", z.ZodTypeAny, {
|
|
1388
|
-
metrics: string[];
|
|
1389
|
-
deviation_score: number;
|
|
1390
|
-
expected_correlation: number;
|
|
1391
|
-
actual_correlation: number;
|
|
1392
|
-
possible_explanation?: string | undefined;
|
|
1393
|
-
}, {
|
|
1394
|
-
metrics: string[];
|
|
1395
|
-
deviation_score: number;
|
|
1396
|
-
expected_correlation: number;
|
|
1397
|
-
actual_correlation: number;
|
|
1398
|
-
possible_explanation?: string | undefined;
|
|
1399
|
-
}>, "many">>;
|
|
1400
|
-
}, "strip", z.ZodTypeAny, {
|
|
1401
|
-
strength: "weak" | "moderate" | "strong";
|
|
1402
|
-
correlationId: string;
|
|
1403
|
-
primaryTrend: {
|
|
1404
|
-
confidence: number;
|
|
1405
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1406
|
-
layer: string;
|
|
1407
|
-
metricType: string;
|
|
1408
|
-
magnitude: number;
|
|
1409
|
-
velocity: number;
|
|
1410
|
-
dataPoints: number;
|
|
1411
|
-
anomalies?: {
|
|
1412
|
-
timestamp: string;
|
|
1413
|
-
value: number;
|
|
1414
|
-
deviationScore: number;
|
|
1415
|
-
}[] | undefined;
|
|
1416
|
-
};
|
|
1417
|
-
secondaryTrend: {
|
|
1418
|
-
confidence: number;
|
|
1419
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1420
|
-
layer: string;
|
|
1421
|
-
metricType: string;
|
|
1422
|
-
magnitude: number;
|
|
1423
|
-
velocity: number;
|
|
1424
|
-
dataPoints: number;
|
|
1425
|
-
anomalies?: {
|
|
1426
|
-
timestamp: string;
|
|
1427
|
-
value: number;
|
|
1428
|
-
deviationScore: number;
|
|
1429
|
-
}[] | undefined;
|
|
1430
|
-
};
|
|
1431
|
-
correlationCoefficient: number;
|
|
1432
|
-
correlation_id?: string | undefined;
|
|
1433
|
-
domains?: {
|
|
1434
|
-
metrics: string[];
|
|
1435
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
1436
|
-
}[] | undefined;
|
|
1437
|
-
correlations?: {
|
|
1438
|
-
metric_a: string;
|
|
1439
|
-
metric_b: string;
|
|
1440
|
-
correlation_coefficient: number;
|
|
1441
|
-
p_value: number;
|
|
1442
|
-
is_significant: boolean;
|
|
1443
|
-
relationship_type: "positive" | "negative" | "none";
|
|
1444
|
-
}[] | undefined;
|
|
1445
|
-
lagTime?: number | undefined;
|
|
1446
|
-
causality?: "none" | "potential" | "likely" | undefined;
|
|
1447
|
-
causal_relationships?: {
|
|
1448
|
-
confidence: number;
|
|
1449
|
-
evidence: string[];
|
|
1450
|
-
cause_metric: string;
|
|
1451
|
-
effect_metric: string;
|
|
1452
|
-
lag_time?: string | undefined;
|
|
1453
|
-
}[] | undefined;
|
|
1454
|
-
insights?: {
|
|
1455
|
-
description: string;
|
|
1456
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
1457
|
-
affected_domains: string[];
|
|
1458
|
-
impact_score: number;
|
|
1459
|
-
}[] | undefined;
|
|
1460
|
-
anomalous_correlations?: {
|
|
1461
|
-
metrics: string[];
|
|
1462
|
-
deviation_score: number;
|
|
1463
|
-
expected_correlation: number;
|
|
1464
|
-
actual_correlation: number;
|
|
1465
|
-
possible_explanation?: string | undefined;
|
|
1466
|
-
}[] | undefined;
|
|
1467
|
-
}, {
|
|
1468
|
-
strength: "weak" | "moderate" | "strong";
|
|
1469
|
-
correlationId: string;
|
|
1470
|
-
primaryTrend: {
|
|
1471
|
-
confidence: number;
|
|
1472
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1473
|
-
layer: string;
|
|
1474
|
-
metricType: string;
|
|
1475
|
-
magnitude: number;
|
|
1476
|
-
velocity: number;
|
|
1477
|
-
dataPoints: number;
|
|
1478
|
-
anomalies?: {
|
|
1479
|
-
timestamp: string;
|
|
1480
|
-
value: number;
|
|
1481
|
-
deviationScore: number;
|
|
1482
|
-
}[] | undefined;
|
|
1483
|
-
};
|
|
1484
|
-
secondaryTrend: {
|
|
1485
|
-
confidence: number;
|
|
1486
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1487
|
-
layer: string;
|
|
1488
|
-
metricType: string;
|
|
1489
|
-
magnitude: number;
|
|
1490
|
-
velocity: number;
|
|
1491
|
-
dataPoints: number;
|
|
1492
|
-
anomalies?: {
|
|
1493
|
-
timestamp: string;
|
|
1494
|
-
value: number;
|
|
1495
|
-
deviationScore: number;
|
|
1496
|
-
}[] | undefined;
|
|
1497
|
-
};
|
|
1498
|
-
correlationCoefficient: number;
|
|
1499
|
-
correlation_id?: string | undefined;
|
|
1500
|
-
domains?: {
|
|
1501
|
-
metrics: string[];
|
|
1502
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
1503
|
-
}[] | undefined;
|
|
1504
|
-
correlations?: {
|
|
1505
|
-
metric_a: string;
|
|
1506
|
-
metric_b: string;
|
|
1507
|
-
correlation_coefficient: number;
|
|
1508
|
-
p_value: number;
|
|
1509
|
-
is_significant: boolean;
|
|
1510
|
-
relationship_type: "positive" | "negative" | "none";
|
|
1511
|
-
}[] | undefined;
|
|
1512
|
-
lagTime?: number | undefined;
|
|
1513
|
-
causality?: "none" | "potential" | "likely" | undefined;
|
|
1514
|
-
causal_relationships?: {
|
|
1515
|
-
confidence: number;
|
|
1516
|
-
evidence: string[];
|
|
1517
|
-
cause_metric: string;
|
|
1518
|
-
effect_metric: string;
|
|
1519
|
-
lag_time?: string | undefined;
|
|
1520
|
-
}[] | undefined;
|
|
1521
|
-
insights?: {
|
|
1522
|
-
description: string;
|
|
1523
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
1524
|
-
affected_domains: string[];
|
|
1525
|
-
impact_score: number;
|
|
1526
|
-
}[] | undefined;
|
|
1527
|
-
anomalous_correlations?: {
|
|
1528
|
-
metrics: string[];
|
|
1529
|
-
deviation_score: number;
|
|
1530
|
-
expected_correlation: number;
|
|
1531
|
-
actual_correlation: number;
|
|
1532
|
-
possible_explanation?: string | undefined;
|
|
1533
|
-
}[] | undefined;
|
|
1534
|
-
}>, "many">>;
|
|
1535
|
-
system_health: z.ZodOptional<z.ZodObject<{
|
|
1536
|
-
overall_score: z.ZodNumber;
|
|
1537
|
-
dimensions: z.ZodArray<z.ZodObject<{
|
|
1538
|
-
dimension: z.ZodString;
|
|
1539
|
-
score: z.ZodNumber;
|
|
1540
|
-
trend: z.ZodEnum<["improving", "stable", "degrading"]>;
|
|
1541
|
-
critical_issues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1542
|
-
}, "strip", z.ZodTypeAny, {
|
|
1543
|
-
score: number;
|
|
1544
|
-
dimension: string;
|
|
1545
|
-
trend: "stable" | "improving" | "degrading";
|
|
1546
|
-
critical_issues?: string[] | undefined;
|
|
1547
|
-
}, {
|
|
1548
|
-
score: number;
|
|
1549
|
-
dimension: string;
|
|
1550
|
-
trend: "stable" | "improving" | "degrading";
|
|
1551
|
-
critical_issues?: string[] | undefined;
|
|
1552
|
-
}>, "many">;
|
|
1553
|
-
}, "strip", z.ZodTypeAny, {
|
|
1554
|
-
overall_score: number;
|
|
1555
|
-
dimensions: {
|
|
1556
|
-
score: number;
|
|
1557
|
-
dimension: string;
|
|
1558
|
-
trend: "stable" | "improving" | "degrading";
|
|
1559
|
-
critical_issues?: string[] | undefined;
|
|
1560
|
-
}[];
|
|
1561
|
-
}, {
|
|
1562
|
-
overall_score: number;
|
|
1563
|
-
dimensions: {
|
|
1564
|
-
score: number;
|
|
1565
|
-
dimension: string;
|
|
1566
|
-
trend: "stable" | "improving" | "degrading";
|
|
1567
|
-
critical_issues?: string[] | undefined;
|
|
1568
|
-
}[];
|
|
1569
|
-
}>>;
|
|
1570
|
-
kpis: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1571
|
-
name: z.ZodString;
|
|
1572
|
-
current_value: z.ZodNumber;
|
|
1573
|
-
target_value: z.ZodOptional<z.ZodNumber>;
|
|
1574
|
-
trend: z.ZodObject<{
|
|
1575
|
-
metricType: z.ZodString;
|
|
1576
|
-
layer: z.ZodString;
|
|
1577
|
-
direction: z.ZodEnum<["increasing", "decreasing", "stable", "volatile"]>;
|
|
1578
|
-
magnitude: z.ZodNumber;
|
|
1579
|
-
velocity: z.ZodNumber;
|
|
1580
|
-
dataPoints: z.ZodNumber;
|
|
1581
|
-
confidence: z.ZodNumber;
|
|
1582
|
-
anomalies: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1583
|
-
timestamp: z.ZodString;
|
|
1584
|
-
value: z.ZodNumber;
|
|
1585
|
-
deviationScore: z.ZodNumber;
|
|
1586
|
-
}, "strip", z.ZodTypeAny, {
|
|
1587
|
-
timestamp: string;
|
|
1588
|
-
value: number;
|
|
1589
|
-
deviationScore: number;
|
|
1590
|
-
}, {
|
|
1591
|
-
timestamp: string;
|
|
1592
|
-
value: number;
|
|
1593
|
-
deviationScore: number;
|
|
1594
|
-
}>, "many">>;
|
|
1595
|
-
}, "strip", z.ZodTypeAny, {
|
|
1596
|
-
confidence: number;
|
|
1597
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1598
|
-
layer: string;
|
|
1599
|
-
metricType: string;
|
|
1600
|
-
magnitude: number;
|
|
1601
|
-
velocity: number;
|
|
1602
|
-
dataPoints: number;
|
|
1603
|
-
anomalies?: {
|
|
1604
|
-
timestamp: string;
|
|
1605
|
-
value: number;
|
|
1606
|
-
deviationScore: number;
|
|
1607
|
-
}[] | undefined;
|
|
1608
|
-
}, {
|
|
1609
|
-
confidence: number;
|
|
1610
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1611
|
-
layer: string;
|
|
1612
|
-
metricType: string;
|
|
1613
|
-
magnitude: number;
|
|
1614
|
-
velocity: number;
|
|
1615
|
-
dataPoints: number;
|
|
1616
|
-
anomalies?: {
|
|
1617
|
-
timestamp: string;
|
|
1618
|
-
value: number;
|
|
1619
|
-
deviationScore: number;
|
|
1620
|
-
}[] | undefined;
|
|
1621
|
-
}>;
|
|
1622
|
-
status: z.ZodEnum<["healthy", "warning", "critical"]>;
|
|
1623
|
-
}, "strip", z.ZodTypeAny, {
|
|
1624
|
-
name: string;
|
|
1625
|
-
status: "warning" | "critical" | "healthy";
|
|
1626
|
-
current_value: number;
|
|
1627
|
-
trend: {
|
|
1628
|
-
confidence: number;
|
|
1629
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1630
|
-
layer: string;
|
|
1631
|
-
metricType: string;
|
|
1632
|
-
magnitude: number;
|
|
1633
|
-
velocity: number;
|
|
1634
|
-
dataPoints: number;
|
|
1635
|
-
anomalies?: {
|
|
1636
|
-
timestamp: string;
|
|
1637
|
-
value: number;
|
|
1638
|
-
deviationScore: number;
|
|
1639
|
-
}[] | undefined;
|
|
1640
|
-
};
|
|
1641
|
-
target_value?: number | undefined;
|
|
1642
|
-
}, {
|
|
1643
|
-
name: string;
|
|
1644
|
-
status: "warning" | "critical" | "healthy";
|
|
1645
|
-
current_value: number;
|
|
1646
|
-
trend: {
|
|
1647
|
-
confidence: number;
|
|
1648
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1649
|
-
layer: string;
|
|
1650
|
-
metricType: string;
|
|
1651
|
-
magnitude: number;
|
|
1652
|
-
velocity: number;
|
|
1653
|
-
dataPoints: number;
|
|
1654
|
-
anomalies?: {
|
|
1655
|
-
timestamp: string;
|
|
1656
|
-
value: number;
|
|
1657
|
-
deviationScore: number;
|
|
1658
|
-
}[] | undefined;
|
|
1659
|
-
};
|
|
1660
|
-
target_value?: number | undefined;
|
|
1661
|
-
}>, "many">>;
|
|
1662
|
-
decision_event: z.ZodOptional<z.ZodObject<{
|
|
1663
|
-
agent_id: z.ZodString;
|
|
1664
|
-
agent_version: z.ZodString;
|
|
1665
|
-
decision_type: z.ZodString;
|
|
1666
|
-
inputs_hash: z.ZodString;
|
|
1667
|
-
outputs: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1668
|
-
confidence: z.ZodNumber;
|
|
1669
|
-
constraints_applied: z.ZodArray<z.ZodString, "many">;
|
|
1670
|
-
execution_ref: z.ZodOptional<z.ZodString>;
|
|
1671
|
-
timestamp: z.ZodString;
|
|
1672
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1673
|
-
}, "strip", z.ZodTypeAny, {
|
|
1674
|
-
timestamp: string;
|
|
1675
|
-
agent_id: string;
|
|
1676
|
-
agent_version: string;
|
|
1677
|
-
decision_type: string;
|
|
1678
|
-
inputs_hash: string;
|
|
1679
|
-
outputs: Record<string, unknown>;
|
|
1680
|
-
confidence: number;
|
|
1681
|
-
constraints_applied: string[];
|
|
1682
|
-
execution_ref?: string | undefined;
|
|
1683
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1684
|
-
}, {
|
|
1685
|
-
timestamp: string;
|
|
1686
|
-
agent_id: string;
|
|
1687
|
-
agent_version: string;
|
|
1688
|
-
decision_type: string;
|
|
1689
|
-
inputs_hash: string;
|
|
1690
|
-
outputs: Record<string, unknown>;
|
|
1691
|
-
confidence: number;
|
|
1692
|
-
constraints_applied: string[];
|
|
1693
|
-
execution_ref?: string | undefined;
|
|
1694
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1695
|
-
}>>;
|
|
1696
|
-
totalSignalsAnalyzed: z.ZodNumber;
|
|
1697
|
-
trendsIdentified: z.ZodNumber;
|
|
1698
|
-
correlationsFound: z.ZodNumber;
|
|
1699
|
-
overallConfidence: z.ZodNumber;
|
|
1700
|
-
analysisMetadata: z.ZodObject<{
|
|
1701
|
-
timeWindow: z.ZodObject<{
|
|
1702
|
-
startTime: z.ZodString;
|
|
1703
|
-
endTime: z.ZodString;
|
|
1704
|
-
}, "strip", z.ZodTypeAny, {
|
|
1705
|
-
startTime: string;
|
|
1706
|
-
endTime: string;
|
|
1707
|
-
}, {
|
|
1708
|
-
startTime: string;
|
|
1709
|
-
endTime: string;
|
|
1710
|
-
}>;
|
|
1711
|
-
layersAnalyzed: z.ZodArray<z.ZodString, "many">;
|
|
1712
|
-
processingDuration: z.ZodOptional<z.ZodNumber>;
|
|
1713
|
-
}, "strip", z.ZodTypeAny, {
|
|
1714
|
-
timeWindow: {
|
|
1715
|
-
startTime: string;
|
|
1716
|
-
endTime: string;
|
|
1717
|
-
};
|
|
1718
|
-
layersAnalyzed: string[];
|
|
1719
|
-
processingDuration?: number | undefined;
|
|
1720
|
-
}, {
|
|
1721
|
-
timeWindow: {
|
|
1722
|
-
startTime: string;
|
|
1723
|
-
endTime: string;
|
|
1724
|
-
};
|
|
1725
|
-
layersAnalyzed: string[];
|
|
1726
|
-
processingDuration?: number | undefined;
|
|
1727
|
-
}>;
|
|
1728
|
-
metadata: z.ZodOptional<z.ZodObject<{
|
|
1729
|
-
agent_version: z.ZodString;
|
|
1730
|
-
processing_time_ms: z.ZodNumber;
|
|
1731
|
-
data_sources_used: z.ZodArray<z.ZodNativeEnum<typeof DataSource>, "many">;
|
|
1732
|
-
events_analyzed: z.ZodNumber;
|
|
1733
|
-
model_version: z.ZodOptional<z.ZodString>;
|
|
1734
|
-
timestamp: z.ZodString;
|
|
1735
|
-
}, "strip", z.ZodTypeAny, {
|
|
1736
|
-
timestamp: string;
|
|
1737
|
-
agent_version: string;
|
|
1738
|
-
processing_time_ms: number;
|
|
1739
|
-
data_sources_used: DataSource[];
|
|
1740
|
-
events_analyzed: number;
|
|
1741
|
-
model_version?: string | undefined;
|
|
1742
|
-
}, {
|
|
1743
|
-
timestamp: string;
|
|
1744
|
-
agent_version: string;
|
|
1745
|
-
processing_time_ms: number;
|
|
1746
|
-
data_sources_used: DataSource[];
|
|
1747
|
-
events_analyzed: number;
|
|
1748
|
-
model_version?: string | undefined;
|
|
1749
|
-
}>>;
|
|
1750
|
-
}, "strip", z.ZodTypeAny, {
|
|
1751
|
-
recommendations: {
|
|
1752
|
-
description: string;
|
|
1753
|
-
confidence: number;
|
|
1754
|
-
category: "cost-optimization" | "performance-improvement" | "risk-mitigation" | "capacity-planning" | "governance-compliance" | "strategic-initiative";
|
|
1755
|
-
priority: "critical" | "low" | "medium" | "high";
|
|
1756
|
-
title: string;
|
|
1757
|
-
recommendationId: string;
|
|
1758
|
-
rationale: string;
|
|
1759
|
-
supportingCorrelations: string[];
|
|
1760
|
-
supportingTrends: string[];
|
|
1761
|
-
timeHorizon: "immediate" | "short-term" | "medium-term" | "long-term";
|
|
1762
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1763
|
-
expectedImpact?: {
|
|
1764
|
-
costSavings?: number | undefined;
|
|
1765
|
-
performanceGain?: number | undefined;
|
|
1766
|
-
riskReduction?: number | undefined;
|
|
1767
|
-
} | undefined;
|
|
1768
|
-
}[];
|
|
1769
|
-
totalSignalsAnalyzed: number;
|
|
1770
|
-
trendsIdentified: number;
|
|
1771
|
-
correlationsFound: number;
|
|
1772
|
-
overallConfidence: number;
|
|
1773
|
-
analysisMetadata: {
|
|
1774
|
-
timeWindow: {
|
|
1775
|
-
startTime: string;
|
|
1776
|
-
endTime: string;
|
|
1777
|
-
};
|
|
1778
|
-
layersAnalyzed: string[];
|
|
1779
|
-
processingDuration?: number | undefined;
|
|
1780
|
-
};
|
|
1781
|
-
metadata?: {
|
|
1782
|
-
timestamp: string;
|
|
1783
|
-
agent_version: string;
|
|
1784
|
-
processing_time_ms: number;
|
|
1785
|
-
data_sources_used: DataSource[];
|
|
1786
|
-
events_analyzed: number;
|
|
1787
|
-
model_version?: string | undefined;
|
|
1788
|
-
} | undefined;
|
|
1789
|
-
decision_event?: {
|
|
1790
|
-
timestamp: string;
|
|
1791
|
-
agent_id: string;
|
|
1792
|
-
agent_version: string;
|
|
1793
|
-
decision_type: string;
|
|
1794
|
-
inputs_hash: string;
|
|
1795
|
-
outputs: Record<string, unknown>;
|
|
1796
|
-
confidence: number;
|
|
1797
|
-
constraints_applied: string[];
|
|
1798
|
-
execution_ref?: string | undefined;
|
|
1799
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1800
|
-
} | undefined;
|
|
1801
|
-
request_id?: string | undefined;
|
|
1802
|
-
signal_aggregation?: {
|
|
1803
|
-
totalSignals: number;
|
|
1804
|
-
timeWindow: {
|
|
1805
|
-
startTime: string;
|
|
1806
|
-
endTime: string;
|
|
1807
|
-
};
|
|
1808
|
-
signalsByLayer: Record<string, {
|
|
1809
|
-
timestamp: string;
|
|
1810
|
-
value: number;
|
|
1811
|
-
signalId: string;
|
|
1812
|
-
confidence: number;
|
|
1813
|
-
layer: string;
|
|
1814
|
-
metricType: string;
|
|
1815
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1816
|
-
}[]>;
|
|
1817
|
-
layersIncluded: string[];
|
|
1818
|
-
statistics?: {
|
|
1819
|
-
mean: Record<string, number>;
|
|
1820
|
-
median: Record<string, number>;
|
|
1821
|
-
std_dev: Record<string, number>;
|
|
1822
|
-
percentiles: Record<string, Record<string, number>>;
|
|
1823
|
-
} | undefined;
|
|
1824
|
-
aggregation_id?: string | undefined;
|
|
1825
|
-
time_window?: {
|
|
1826
|
-
start: string;
|
|
1827
|
-
end: string;
|
|
1828
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
1829
|
-
} | undefined;
|
|
1830
|
-
by_source?: {
|
|
1831
|
-
source: string;
|
|
1832
|
-
signal_count: number;
|
|
1833
|
-
avg_severity: number;
|
|
1834
|
-
dominant_categories: string[];
|
|
1835
|
-
key_metrics: Record<string, number>;
|
|
1836
|
-
}[] | undefined;
|
|
1837
|
-
aggregated_metrics?: {
|
|
1838
|
-
total_events: number;
|
|
1839
|
-
unique_resources: number;
|
|
1840
|
-
avg_latency_ms?: number | undefined;
|
|
1841
|
-
total_cost?: number | undefined;
|
|
1842
|
-
error_rate?: number | undefined;
|
|
1843
|
-
security_incidents?: number | undefined;
|
|
1844
|
-
policy_violations?: number | undefined;
|
|
1845
|
-
} | undefined;
|
|
1846
|
-
temporal_patterns?: {
|
|
1847
|
-
description: string;
|
|
1848
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
1849
|
-
detected_at: string;
|
|
1850
|
-
strength: number;
|
|
1851
|
-
}[] | undefined;
|
|
1852
|
-
} | undefined;
|
|
1853
|
-
cross_domain_correlations?: {
|
|
1854
|
-
strength: "weak" | "moderate" | "strong";
|
|
1855
|
-
correlationId: string;
|
|
1856
|
-
primaryTrend: {
|
|
1857
|
-
confidence: number;
|
|
1858
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1859
|
-
layer: string;
|
|
1860
|
-
metricType: string;
|
|
1861
|
-
magnitude: number;
|
|
1862
|
-
velocity: number;
|
|
1863
|
-
dataPoints: number;
|
|
1864
|
-
anomalies?: {
|
|
1865
|
-
timestamp: string;
|
|
1866
|
-
value: number;
|
|
1867
|
-
deviationScore: number;
|
|
1868
|
-
}[] | undefined;
|
|
1869
|
-
};
|
|
1870
|
-
secondaryTrend: {
|
|
1871
|
-
confidence: number;
|
|
1872
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1873
|
-
layer: string;
|
|
1874
|
-
metricType: string;
|
|
1875
|
-
magnitude: number;
|
|
1876
|
-
velocity: number;
|
|
1877
|
-
dataPoints: number;
|
|
1878
|
-
anomalies?: {
|
|
1879
|
-
timestamp: string;
|
|
1880
|
-
value: number;
|
|
1881
|
-
deviationScore: number;
|
|
1882
|
-
}[] | undefined;
|
|
1883
|
-
};
|
|
1884
|
-
correlationCoefficient: number;
|
|
1885
|
-
correlation_id?: string | undefined;
|
|
1886
|
-
domains?: {
|
|
1887
|
-
metrics: string[];
|
|
1888
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
1889
|
-
}[] | undefined;
|
|
1890
|
-
correlations?: {
|
|
1891
|
-
metric_a: string;
|
|
1892
|
-
metric_b: string;
|
|
1893
|
-
correlation_coefficient: number;
|
|
1894
|
-
p_value: number;
|
|
1895
|
-
is_significant: boolean;
|
|
1896
|
-
relationship_type: "positive" | "negative" | "none";
|
|
1897
|
-
}[] | undefined;
|
|
1898
|
-
lagTime?: number | undefined;
|
|
1899
|
-
causality?: "none" | "potential" | "likely" | undefined;
|
|
1900
|
-
causal_relationships?: {
|
|
1901
|
-
confidence: number;
|
|
1902
|
-
evidence: string[];
|
|
1903
|
-
cause_metric: string;
|
|
1904
|
-
effect_metric: string;
|
|
1905
|
-
lag_time?: string | undefined;
|
|
1906
|
-
}[] | undefined;
|
|
1907
|
-
insights?: {
|
|
1908
|
-
description: string;
|
|
1909
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
1910
|
-
affected_domains: string[];
|
|
1911
|
-
impact_score: number;
|
|
1912
|
-
}[] | undefined;
|
|
1913
|
-
anomalous_correlations?: {
|
|
1914
|
-
metrics: string[];
|
|
1915
|
-
deviation_score: number;
|
|
1916
|
-
expected_correlation: number;
|
|
1917
|
-
actual_correlation: number;
|
|
1918
|
-
possible_explanation?: string | undefined;
|
|
1919
|
-
}[] | undefined;
|
|
1920
|
-
}[] | undefined;
|
|
1921
|
-
system_health?: {
|
|
1922
|
-
overall_score: number;
|
|
1923
|
-
dimensions: {
|
|
1924
|
-
score: number;
|
|
1925
|
-
dimension: string;
|
|
1926
|
-
trend: "stable" | "improving" | "degrading";
|
|
1927
|
-
critical_issues?: string[] | undefined;
|
|
1928
|
-
}[];
|
|
1929
|
-
} | undefined;
|
|
1930
|
-
kpis?: {
|
|
1931
|
-
name: string;
|
|
1932
|
-
status: "warning" | "critical" | "healthy";
|
|
1933
|
-
current_value: number;
|
|
1934
|
-
trend: {
|
|
1935
|
-
confidence: number;
|
|
1936
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
1937
|
-
layer: string;
|
|
1938
|
-
metricType: string;
|
|
1939
|
-
magnitude: number;
|
|
1940
|
-
velocity: number;
|
|
1941
|
-
dataPoints: number;
|
|
1942
|
-
anomalies?: {
|
|
1943
|
-
timestamp: string;
|
|
1944
|
-
value: number;
|
|
1945
|
-
deviationScore: number;
|
|
1946
|
-
}[] | undefined;
|
|
1947
|
-
};
|
|
1948
|
-
target_value?: number | undefined;
|
|
1949
|
-
}[] | undefined;
|
|
1950
|
-
}, {
|
|
1951
|
-
recommendations: {
|
|
1952
|
-
description: string;
|
|
1953
|
-
confidence: number;
|
|
1954
|
-
category: "cost-optimization" | "performance-improvement" | "risk-mitigation" | "capacity-planning" | "governance-compliance" | "strategic-initiative";
|
|
1955
|
-
priority: "critical" | "low" | "medium" | "high";
|
|
1956
|
-
title: string;
|
|
1957
|
-
recommendationId: string;
|
|
1958
|
-
rationale: string;
|
|
1959
|
-
supportingCorrelations: string[];
|
|
1960
|
-
supportingTrends: string[];
|
|
1961
|
-
timeHorizon: "immediate" | "short-term" | "medium-term" | "long-term";
|
|
1962
|
-
metadata?: Record<string, unknown> | undefined;
|
|
1963
|
-
expectedImpact?: {
|
|
1964
|
-
costSavings?: number | undefined;
|
|
1965
|
-
performanceGain?: number | undefined;
|
|
1966
|
-
riskReduction?: number | undefined;
|
|
1967
|
-
} | undefined;
|
|
1968
|
-
}[];
|
|
1969
|
-
totalSignalsAnalyzed: number;
|
|
1970
|
-
trendsIdentified: number;
|
|
1971
|
-
correlationsFound: number;
|
|
1972
|
-
overallConfidence: number;
|
|
1973
|
-
analysisMetadata: {
|
|
1974
|
-
timeWindow: {
|
|
1975
|
-
startTime: string;
|
|
1976
|
-
endTime: string;
|
|
1977
|
-
};
|
|
1978
|
-
layersAnalyzed: string[];
|
|
1979
|
-
processingDuration?: number | undefined;
|
|
1980
|
-
};
|
|
1981
|
-
metadata?: {
|
|
1982
|
-
timestamp: string;
|
|
1983
|
-
agent_version: string;
|
|
1984
|
-
processing_time_ms: number;
|
|
1985
|
-
data_sources_used: DataSource[];
|
|
1986
|
-
events_analyzed: number;
|
|
1987
|
-
model_version?: string | undefined;
|
|
1988
|
-
} | undefined;
|
|
1989
|
-
decision_event?: {
|
|
1990
|
-
timestamp: string;
|
|
1991
|
-
agent_id: string;
|
|
1992
|
-
agent_version: string;
|
|
1993
|
-
decision_type: string;
|
|
1994
|
-
inputs_hash: string;
|
|
1995
|
-
outputs: Record<string, unknown>;
|
|
1996
|
-
confidence: number;
|
|
1997
|
-
constraints_applied: string[];
|
|
1998
|
-
execution_ref?: string | undefined;
|
|
1999
|
-
metadata?: Record<string, unknown> | undefined;
|
|
2000
|
-
} | undefined;
|
|
2001
|
-
request_id?: string | undefined;
|
|
2002
|
-
signal_aggregation?: {
|
|
2003
|
-
totalSignals: number;
|
|
2004
|
-
timeWindow: {
|
|
2005
|
-
startTime: string;
|
|
2006
|
-
endTime: string;
|
|
2007
|
-
};
|
|
2008
|
-
signalsByLayer: Record<string, {
|
|
2009
|
-
timestamp: string;
|
|
2010
|
-
value: number;
|
|
2011
|
-
signalId: string;
|
|
2012
|
-
confidence: number;
|
|
2013
|
-
layer: string;
|
|
2014
|
-
metricType: string;
|
|
2015
|
-
metadata?: Record<string, unknown> | undefined;
|
|
2016
|
-
}[]>;
|
|
2017
|
-
layersIncluded: string[];
|
|
2018
|
-
statistics?: {
|
|
2019
|
-
mean: Record<string, number>;
|
|
2020
|
-
median: Record<string, number>;
|
|
2021
|
-
std_dev: Record<string, number>;
|
|
2022
|
-
percentiles: Record<string, Record<string, number>>;
|
|
2023
|
-
} | undefined;
|
|
2024
|
-
aggregation_id?: string | undefined;
|
|
2025
|
-
time_window?: {
|
|
2026
|
-
start: string;
|
|
2027
|
-
end: string;
|
|
2028
|
-
granularity: "minute" | "hour" | "day" | "week" | "month";
|
|
2029
|
-
} | undefined;
|
|
2030
|
-
by_source?: {
|
|
2031
|
-
source: string;
|
|
2032
|
-
signal_count: number;
|
|
2033
|
-
avg_severity: number;
|
|
2034
|
-
dominant_categories: string[];
|
|
2035
|
-
key_metrics: Record<string, number>;
|
|
2036
|
-
}[] | undefined;
|
|
2037
|
-
aggregated_metrics?: {
|
|
2038
|
-
total_events: number;
|
|
2039
|
-
unique_resources: number;
|
|
2040
|
-
avg_latency_ms?: number | undefined;
|
|
2041
|
-
total_cost?: number | undefined;
|
|
2042
|
-
error_rate?: number | undefined;
|
|
2043
|
-
security_incidents?: number | undefined;
|
|
2044
|
-
policy_violations?: number | undefined;
|
|
2045
|
-
} | undefined;
|
|
2046
|
-
temporal_patterns?: {
|
|
2047
|
-
description: string;
|
|
2048
|
-
pattern_type: "spike" | "dip" | "cyclical" | "trending";
|
|
2049
|
-
detected_at: string;
|
|
2050
|
-
strength: number;
|
|
2051
|
-
}[] | undefined;
|
|
2052
|
-
} | undefined;
|
|
2053
|
-
cross_domain_correlations?: {
|
|
2054
|
-
strength: "weak" | "moderate" | "strong";
|
|
2055
|
-
correlationId: string;
|
|
2056
|
-
primaryTrend: {
|
|
2057
|
-
confidence: number;
|
|
2058
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
2059
|
-
layer: string;
|
|
2060
|
-
metricType: string;
|
|
2061
|
-
magnitude: number;
|
|
2062
|
-
velocity: number;
|
|
2063
|
-
dataPoints: number;
|
|
2064
|
-
anomalies?: {
|
|
2065
|
-
timestamp: string;
|
|
2066
|
-
value: number;
|
|
2067
|
-
deviationScore: number;
|
|
2068
|
-
}[] | undefined;
|
|
2069
|
-
};
|
|
2070
|
-
secondaryTrend: {
|
|
2071
|
-
confidence: number;
|
|
2072
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
2073
|
-
layer: string;
|
|
2074
|
-
metricType: string;
|
|
2075
|
-
magnitude: number;
|
|
2076
|
-
velocity: number;
|
|
2077
|
-
dataPoints: number;
|
|
2078
|
-
anomalies?: {
|
|
2079
|
-
timestamp: string;
|
|
2080
|
-
value: number;
|
|
2081
|
-
deviationScore: number;
|
|
2082
|
-
}[] | undefined;
|
|
2083
|
-
};
|
|
2084
|
-
correlationCoefficient: number;
|
|
2085
|
-
correlation_id?: string | undefined;
|
|
2086
|
-
domains?: {
|
|
2087
|
-
metrics: string[];
|
|
2088
|
-
domain: "cost" | "performance" | "security" | "compliance" | "governance";
|
|
2089
|
-
}[] | undefined;
|
|
2090
|
-
correlations?: {
|
|
2091
|
-
metric_a: string;
|
|
2092
|
-
metric_b: string;
|
|
2093
|
-
correlation_coefficient: number;
|
|
2094
|
-
p_value: number;
|
|
2095
|
-
is_significant: boolean;
|
|
2096
|
-
relationship_type: "positive" | "negative" | "none";
|
|
2097
|
-
}[] | undefined;
|
|
2098
|
-
lagTime?: number | undefined;
|
|
2099
|
-
causality?: "none" | "potential" | "likely" | undefined;
|
|
2100
|
-
causal_relationships?: {
|
|
2101
|
-
confidence: number;
|
|
2102
|
-
evidence: string[];
|
|
2103
|
-
cause_metric: string;
|
|
2104
|
-
effect_metric: string;
|
|
2105
|
-
lag_time?: string | undefined;
|
|
2106
|
-
}[] | undefined;
|
|
2107
|
-
insights?: {
|
|
2108
|
-
description: string;
|
|
2109
|
-
insight_type: "trade_off" | "synergy" | "cascade_effect" | "feedback_loop";
|
|
2110
|
-
affected_domains: string[];
|
|
2111
|
-
impact_score: number;
|
|
2112
|
-
}[] | undefined;
|
|
2113
|
-
anomalous_correlations?: {
|
|
2114
|
-
metrics: string[];
|
|
2115
|
-
deviation_score: number;
|
|
2116
|
-
expected_correlation: number;
|
|
2117
|
-
actual_correlation: number;
|
|
2118
|
-
possible_explanation?: string | undefined;
|
|
2119
|
-
}[] | undefined;
|
|
2120
|
-
}[] | undefined;
|
|
2121
|
-
system_health?: {
|
|
2122
|
-
overall_score: number;
|
|
2123
|
-
dimensions: {
|
|
2124
|
-
score: number;
|
|
2125
|
-
dimension: string;
|
|
2126
|
-
trend: "stable" | "improving" | "degrading";
|
|
2127
|
-
critical_issues?: string[] | undefined;
|
|
2128
|
-
}[];
|
|
2129
|
-
} | undefined;
|
|
2130
|
-
kpis?: {
|
|
2131
|
-
name: string;
|
|
2132
|
-
status: "warning" | "critical" | "healthy";
|
|
2133
|
-
current_value: number;
|
|
2134
|
-
trend: {
|
|
2135
|
-
confidence: number;
|
|
2136
|
-
direction: "increasing" | "decreasing" | "stable" | "volatile";
|
|
2137
|
-
layer: string;
|
|
2138
|
-
metricType: string;
|
|
2139
|
-
magnitude: number;
|
|
2140
|
-
velocity: number;
|
|
2141
|
-
dataPoints: number;
|
|
2142
|
-
anomalies?: {
|
|
2143
|
-
timestamp: string;
|
|
2144
|
-
value: number;
|
|
2145
|
-
deviationScore: number;
|
|
2146
|
-
}[] | undefined;
|
|
2147
|
-
};
|
|
2148
|
-
target_value?: number | undefined;
|
|
2149
|
-
}[] | undefined;
|
|
2150
|
-
}>;
|
|
2151
|
-
export type StrategicRecommendationOutput = z.infer<typeof StrategicRecommendationOutputSchema>;
|
|
2152
|
-
/**
|
|
2153
|
-
* Agent configuration
|
|
2154
|
-
*/
|
|
2155
|
-
export declare const StrategicRecommendationAgentConfigSchema: z.ZodObject<{
|
|
2156
|
-
agent_id: z.ZodString;
|
|
2157
|
-
version: z.ZodString;
|
|
2158
|
-
model: z.ZodOptional<z.ZodObject<{
|
|
2159
|
-
provider: z.ZodEnum<["anthropic", "openai", "custom"]>;
|
|
2160
|
-
model_name: z.ZodString;
|
|
2161
|
-
temperature: z.ZodOptional<z.ZodNumber>;
|
|
2162
|
-
max_tokens: z.ZodOptional<z.ZodNumber>;
|
|
2163
|
-
}, "strip", z.ZodTypeAny, {
|
|
2164
|
-
provider: "custom" | "anthropic" | "openai";
|
|
2165
|
-
model_name: string;
|
|
2166
|
-
temperature?: number | undefined;
|
|
2167
|
-
max_tokens?: number | undefined;
|
|
2168
|
-
}, {
|
|
2169
|
-
provider: "custom" | "anthropic" | "openai";
|
|
2170
|
-
model_name: string;
|
|
2171
|
-
temperature?: number | undefined;
|
|
2172
|
-
max_tokens?: number | undefined;
|
|
2173
|
-
}>>;
|
|
2174
|
-
default_constraints: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2175
|
-
type: z.ZodString;
|
|
2176
|
-
value: z.ZodUnknown;
|
|
2177
|
-
}, "strip", z.ZodTypeAny, {
|
|
2178
|
-
type: string;
|
|
2179
|
-
value?: unknown;
|
|
2180
|
-
}, {
|
|
2181
|
-
type: string;
|
|
2182
|
-
value?: unknown;
|
|
2183
|
-
}>, "many">>;
|
|
2184
|
-
confidence_thresholds: z.ZodOptional<z.ZodObject<{
|
|
2185
|
-
min_overall: z.ZodNumber;
|
|
2186
|
-
min_data_quality: z.ZodNumber;
|
|
2187
|
-
min_trend_strength: z.ZodNumber;
|
|
2188
|
-
}, "strip", z.ZodTypeAny, {
|
|
2189
|
-
min_overall: number;
|
|
2190
|
-
min_data_quality: number;
|
|
2191
|
-
min_trend_strength: number;
|
|
2192
|
-
}, {
|
|
2193
|
-
min_overall: number;
|
|
2194
|
-
min_data_quality: number;
|
|
2195
|
-
min_trend_strength: number;
|
|
2196
|
-
}>>;
|
|
2197
|
-
source_priorities: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2198
|
-
features: z.ZodOptional<z.ZodObject<{
|
|
2199
|
-
enable_causal_analysis: z.ZodOptional<z.ZodBoolean>;
|
|
2200
|
-
enable_predictive_modeling: z.ZodOptional<z.ZodBoolean>;
|
|
2201
|
-
enable_anomaly_detection: z.ZodOptional<z.ZodBoolean>;
|
|
2202
|
-
enable_cross_domain_correlation: z.ZodOptional<z.ZodBoolean>;
|
|
2203
|
-
}, "strip", z.ZodTypeAny, {
|
|
2204
|
-
enable_causal_analysis?: boolean | undefined;
|
|
2205
|
-
enable_predictive_modeling?: boolean | undefined;
|
|
2206
|
-
enable_anomaly_detection?: boolean | undefined;
|
|
2207
|
-
enable_cross_domain_correlation?: boolean | undefined;
|
|
2208
|
-
}, {
|
|
2209
|
-
enable_causal_analysis?: boolean | undefined;
|
|
2210
|
-
enable_predictive_modeling?: boolean | undefined;
|
|
2211
|
-
enable_anomaly_detection?: boolean | undefined;
|
|
2212
|
-
enable_cross_domain_correlation?: boolean | undefined;
|
|
2213
|
-
}>>;
|
|
2214
|
-
}, "strip", z.ZodTypeAny, {
|
|
2215
|
-
version: string;
|
|
2216
|
-
agent_id: string;
|
|
2217
|
-
model?: {
|
|
2218
|
-
provider: "custom" | "anthropic" | "openai";
|
|
2219
|
-
model_name: string;
|
|
2220
|
-
temperature?: number | undefined;
|
|
2221
|
-
max_tokens?: number | undefined;
|
|
2222
|
-
} | undefined;
|
|
2223
|
-
default_constraints?: {
|
|
2224
|
-
type: string;
|
|
2225
|
-
value?: unknown;
|
|
2226
|
-
}[] | undefined;
|
|
2227
|
-
confidence_thresholds?: {
|
|
2228
|
-
min_overall: number;
|
|
2229
|
-
min_data_quality: number;
|
|
2230
|
-
min_trend_strength: number;
|
|
2231
|
-
} | undefined;
|
|
2232
|
-
source_priorities?: Record<string, number> | undefined;
|
|
2233
|
-
features?: {
|
|
2234
|
-
enable_causal_analysis?: boolean | undefined;
|
|
2235
|
-
enable_predictive_modeling?: boolean | undefined;
|
|
2236
|
-
enable_anomaly_detection?: boolean | undefined;
|
|
2237
|
-
enable_cross_domain_correlation?: boolean | undefined;
|
|
2238
|
-
} | undefined;
|
|
2239
|
-
}, {
|
|
2240
|
-
version: string;
|
|
2241
|
-
agent_id: string;
|
|
2242
|
-
model?: {
|
|
2243
|
-
provider: "custom" | "anthropic" | "openai";
|
|
2244
|
-
model_name: string;
|
|
2245
|
-
temperature?: number | undefined;
|
|
2246
|
-
max_tokens?: number | undefined;
|
|
2247
|
-
} | undefined;
|
|
2248
|
-
default_constraints?: {
|
|
2249
|
-
type: string;
|
|
2250
|
-
value?: unknown;
|
|
2251
|
-
}[] | undefined;
|
|
2252
|
-
confidence_thresholds?: {
|
|
2253
|
-
min_overall: number;
|
|
2254
|
-
min_data_quality: number;
|
|
2255
|
-
min_trend_strength: number;
|
|
2256
|
-
} | undefined;
|
|
2257
|
-
source_priorities?: Record<string, number> | undefined;
|
|
2258
|
-
features?: {
|
|
2259
|
-
enable_causal_analysis?: boolean | undefined;
|
|
2260
|
-
enable_predictive_modeling?: boolean | undefined;
|
|
2261
|
-
enable_anomaly_detection?: boolean | undefined;
|
|
2262
|
-
enable_cross_domain_correlation?: boolean | undefined;
|
|
2263
|
-
} | undefined;
|
|
2264
|
-
}>;
|
|
2265
|
-
export type StrategicRecommendationAgentConfig = z.infer<typeof StrategicRecommendationAgentConfigSchema>;
|
|
2266
|
-
export type ValidatedSignalAggregation = z.infer<typeof SignalAggregationSchema>;
|
|
2267
|
-
export type ValidatedCrossDomainCorrelation = z.infer<typeof CrossDomainCorrelationSchema>;
|
|
2268
|
-
export type ValidatedStrategicRecommendationInput = z.infer<typeof StrategicRecommendationInputSchema>;
|
|
2269
|
-
export type ValidatedStrategicRecommendationOutput = z.infer<typeof StrategicRecommendationOutputSchema>;
|
|
2270
|
-
export type ValidatedStrategicRecommendationAgentConfig = z.infer<typeof StrategicRecommendationAgentConfigSchema>;
|
|
2271
|
-
//# sourceMappingURL=types.d.ts.map
|