@llm-dev-ops/agentics-cli 1.4.58 → 1.4.68
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/README.md +1 -1
- package/dist/commands/agents.d.ts.map +1 -1
- package/dist/commands/agents.js +227 -19
- package/dist/commands/agents.js.map +1 -1
- package/dist/pipeline/auto-chain.d.ts +1 -0
- package/dist/pipeline/auto-chain.d.ts.map +1 -1
- package/dist/pipeline/auto-chain.js +124 -37
- package/dist/pipeline/auto-chain.js.map +1 -1
- package/dist/pipeline/execution-context.d.ts.map +1 -1
- package/dist/pipeline/execution-context.js +12 -37
- package/dist/pipeline/execution-context.js.map +1 -1
- package/dist/pipeline/phase2/phases/adr-generator.d.ts.map +1 -1
- package/dist/pipeline/phase2/phases/adr-generator.js +160 -1
- package/dist/pipeline/phase2/phases/adr-generator.js.map +1 -1
- package/dist/pipeline/phase2/phases/ddd-generator.d.ts.map +1 -1
- package/dist/pipeline/phase2/phases/ddd-generator.js +400 -3
- package/dist/pipeline/phase2/phases/ddd-generator.js.map +1 -1
- package/dist/pipeline/phase2/phases/ddd-quality-gate.d.ts +43 -0
- package/dist/pipeline/phase2/phases/ddd-quality-gate.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/ddd-quality-gate.js +413 -0
- package/dist/pipeline/phase2/phases/ddd-quality-gate.js.map +1 -0
- package/dist/pipeline/phase2/phases/research-dossier.d.ts +0 -13
- package/dist/pipeline/phase2/phases/research-dossier.d.ts.map +1 -1
- package/dist/pipeline/phase2/phases/research-dossier.js +114 -1
- package/dist/pipeline/phase2/phases/research-dossier.js.map +1 -1
- package/dist/pipeline/phase2/phases/research-quality-gate.d.ts +48 -0
- package/dist/pipeline/phase2/phases/research-quality-gate.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/research-quality-gate.js +322 -0
- package/dist/pipeline/phase2/phases/research-quality-gate.js.map +1 -0
- package/dist/pipeline/phase2/phases/sparc-quality-gate.d.ts +41 -0
- package/dist/pipeline/phase2/phases/sparc-quality-gate.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/sparc-quality-gate.js +350 -0
- package/dist/pipeline/phase2/phases/sparc-quality-gate.js.map +1 -0
- package/dist/pipeline/phase2/phases/sparc-specification.d.ts +14 -0
- package/dist/pipeline/phase2/phases/sparc-specification.d.ts.map +1 -1
- package/dist/pipeline/phase2/phases/sparc-specification.js +500 -10
- package/dist/pipeline/phase2/phases/sparc-specification.js.map +1 -1
- package/dist/pipeline/phase2/phases/tdd-plan-generator.js +1 -1
- package/dist/pipeline/phase2/phases/tdd-plan-generator.js.map +1 -1
- package/dist/pipeline/phase2/phases/tech-stack-detector.d.ts +72 -0
- package/dist/pipeline/phase2/phases/tech-stack-detector.d.ts.map +1 -0
- package/dist/pipeline/phase2/phases/tech-stack-detector.js +332 -0
- package/dist/pipeline/phase2/phases/tech-stack-detector.js.map +1 -0
- package/dist/pipeline/phase2/types.d.ts +2 -0
- package/dist/pipeline/phase2/types.d.ts.map +1 -1
- package/dist/pipeline/phase3/phases/domain-codegen.d.ts.map +1 -1
- package/dist/pipeline/phase3/phases/domain-codegen.js +169 -4
- package/dist/pipeline/phase3/phases/domain-codegen.js.map +1 -1
- package/dist/pipeline/phase3/phases/test-generator.d.ts.map +1 -1
- package/dist/pipeline/phase3/phases/test-generator.js +12 -2
- package/dist/pipeline/phase3/phases/test-generator.js.map +1 -1
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.d.ts.map +1 -1
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.js +99 -1
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.js.map +1 -1
- package/dist/pipeline/phase4/phases/deployment-generator.d.ts +17 -4
- package/dist/pipeline/phase4/phases/deployment-generator.d.ts.map +1 -1
- package/dist/pipeline/phase4/phases/deployment-generator.js +364 -44
- package/dist/pipeline/phase4/phases/deployment-generator.js.map +1 -1
- package/dist/pipeline/phase4/phases/erp-client-generator.d.ts.map +1 -1
- package/dist/pipeline/phase4/phases/erp-client-generator.js +27 -15
- package/dist/pipeline/phase4/phases/erp-client-generator.js.map +1 -1
- package/dist/pipeline/phase4/phases/erp-target-resolver.d.ts.map +1 -1
- package/dist/pipeline/phase4/phases/erp-target-resolver.js +49 -2
- package/dist/pipeline/phase4/phases/erp-target-resolver.js.map +1 -1
- package/dist/pipeline/phase4/phases/http-server-generator.d.ts.map +1 -1
- package/dist/pipeline/phase4/phases/http-server-generator.js +263 -3
- package/dist/pipeline/phase4/phases/http-server-generator.js.map +1 -1
- package/dist/pipeline/phase4/phases/infra-adapter-generator.d.ts.map +1 -1
- package/dist/pipeline/phase4/phases/infra-adapter-generator.js +335 -37
- package/dist/pipeline/phase4/phases/infra-adapter-generator.js.map +1 -1
- package/dist/pipeline/phase4/types.d.ts +3 -1
- package/dist/pipeline/phase4/types.d.ts.map +1 -1
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.d.ts.map +1 -1
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js +211 -2
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js.map +1 -1
- package/dist/pipeline/phase5-build/phases/implementation-quality-gate.d.ts +54 -0
- package/dist/pipeline/phase5-build/phases/implementation-quality-gate.d.ts.map +1 -0
- package/dist/pipeline/phase5-build/phases/implementation-quality-gate.js +417 -0
- package/dist/pipeline/phase5-build/phases/implementation-quality-gate.js.map +1 -0
- package/dist/pipeline/phases/prompt-generator.js +1 -1
- package/dist/pipeline/phases/prompt-generator.js.map +1 -1
- package/dist/pipeline/ruflo-phase-executor.d.ts +116 -1
- package/dist/pipeline/ruflo-phase-executor.d.ts.map +1 -1
- package/dist/pipeline/ruflo-phase-executor.js +666 -159
- package/dist/pipeline/ruflo-phase-executor.js.map +1 -1
- package/dist/pipeline/swarm-orchestrator.d.ts.map +1 -1
- package/dist/pipeline/swarm-orchestrator.js +62 -6
- package/dist/pipeline/swarm-orchestrator.js.map +1 -1
- package/dist/routing/capability-classifier.d.ts +43 -0
- package/dist/routing/capability-classifier.d.ts.map +1 -0
- package/dist/routing/capability-classifier.js +157 -0
- package/dist/routing/capability-classifier.js.map +1 -0
- package/dist/routing/composition-engine.d.ts +77 -0
- package/dist/routing/composition-engine.d.ts.map +1 -0
- package/dist/routing/composition-engine.js +249 -0
- package/dist/routing/composition-engine.js.map +1 -0
- package/dist/routing/graph-federation.d.ts +71 -0
- package/dist/routing/graph-federation.d.ts.map +1 -0
- package/dist/routing/graph-federation.js +210 -0
- package/dist/routing/graph-federation.js.map +1 -0
- package/dist/routing/graph-loader.d.ts +74 -0
- package/dist/routing/graph-loader.d.ts.map +1 -0
- package/dist/routing/graph-loader.js +383 -0
- package/dist/routing/graph-loader.js.map +1 -0
- package/dist/routing/graph-router.d.ts +103 -0
- package/dist/routing/graph-router.d.ts.map +1 -0
- package/dist/routing/graph-router.js +415 -0
- package/dist/routing/graph-router.js.map +1 -0
- package/dist/routing/graph-validator.d.ts +44 -0
- package/dist/routing/graph-validator.d.ts.map +1 -0
- package/dist/routing/graph-validator.js +329 -0
- package/dist/routing/graph-validator.js.map +1 -0
- package/dist/routing/index.d.ts +52 -0
- package/dist/routing/index.d.ts.map +1 -0
- package/dist/routing/index.js +68 -0
- package/dist/routing/index.js.map +1 -0
- package/dist/routing/outcome-recorder.d.ts +71 -0
- package/dist/routing/outcome-recorder.d.ts.map +1 -0
- package/dist/routing/outcome-recorder.js +133 -0
- package/dist/routing/outcome-recorder.js.map +1 -0
- package/dist/routing/weight-adjuster.d.ts +59 -0
- package/dist/routing/weight-adjuster.d.ts.map +1 -0
- package/dist/routing/weight-adjuster.js +167 -0
- package/dist/routing/weight-adjuster.js.map +1 -0
- package/dist/routing/weighted-resolver.d.ts +55 -0
- package/dist/routing/weighted-resolver.d.ts.map +1 -0
- package/dist/routing/weighted-resolver.js +133 -0
- package/dist/routing/weighted-resolver.js.map +1 -0
- package/dist/synthesis/ask-artifact-writer.d.ts.map +1 -1
- package/dist/synthesis/ask-artifact-writer.js +8 -0
- package/dist/synthesis/ask-artifact-writer.js.map +1 -1
- package/dist/synthesis/simulation-artifact-generator.d.ts +14 -0
- package/dist/synthesis/simulation-artifact-generator.d.ts.map +1 -1
- package/dist/synthesis/simulation-artifact-generator.js +224 -1
- package/dist/synthesis/simulation-artifact-generator.js.map +1 -1
- package/dist/synthesis/simulation-renderers.d.ts.map +1 -1
- package/dist/synthesis/simulation-renderers.js +211 -40
- package/dist/synthesis/simulation-renderers.js.map +1 -1
- package/package.json +1 -1
- package/dist/bundled-agents/connector-hub-agents/package-lock.json +0 -11697
- package/dist/bundled-agents/connector-hub-agents/package.json +0 -75
- package/dist/bundled-agents/connector-hub-agents/tsconfig.build.json +0 -22
- package/dist/bundled-agents/connector-hub-agents/tsconfig.json +0 -57
- package/dist/bundled-agents/copilot-agents/functions/.gcloudignore +0 -17
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/cors.d.ts +0 -14
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/cors.js +0 -35
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/cors.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/envelope.d.ts +0 -55
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/envelope.js +0 -40
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/envelope.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/health.d.ts +0 -22
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/health.js +0 -38
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/health.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/index.d.ts +0 -34
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/index.js +0 -186
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/router.d.ts +0 -36
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/router.js +0 -121
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/router.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/config-validation-agent.d.ts +0 -157
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/config-validation-agent.js +0 -948
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/config-validation-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/index.d.ts +0 -9
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/index.js +0 -27
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/agent-span-wrapper.d.ts +0 -23
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/agent-span-wrapper.js +0 -50
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/agent-span-wrapper.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/base-agent.d.ts +0 -214
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/base-agent.js +0 -91
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/base-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/config-validation-schemas.d.ts +0 -1166
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/config-validation-schemas.js +0 -308
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/config-validation-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decision-event.d.ts +0 -59
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decision-event.js +0 -62
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decision-event.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decomposer-schemas.d.ts +0 -400
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decomposer-schemas.js +0 -113
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decomposer-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/execution-graph.d.ts +0 -250
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/execution-graph.js +0 -169
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/execution-graph.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/index.d.ts +0 -17
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/index.js +0 -97
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intelligence-schemas.d.ts +0 -1674
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intelligence-schemas.js +0 -246
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intelligence-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intent-classifier-schemas.d.ts +0 -1085
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intent-classifier-schemas.js +0 -218
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intent-classifier-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/meta-reasoner-schemas.d.ts +0 -949
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/meta-reasoner-schemas.js +0 -253
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/meta-reasoner-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/objective-clarifier-schemas.d.ts +0 -657
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/objective-clarifier-schemas.js +0 -205
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/objective-clarifier-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/pipeline-schemas.d.ts +0 -285
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/pipeline-schemas.js +0 -106
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/pipeline-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/planner-schemas.d.ts +0 -581
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/planner-schemas.js +0 -136
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/planner-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/reflection-schemas.d.ts +0 -791
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/reflection-schemas.js +0 -225
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/reflection-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/decomposer-agent.d.ts +0 -120
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/decomposer-agent.js +0 -535
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/decomposer-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/index.d.ts +0 -9
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/index.js +0 -18
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/index.d.ts +0 -4
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/index.js +0 -9
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/intent-classifier-agent.d.ts +0 -123
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/intent-classifier-agent.js +0 -609
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/intent-classifier-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/index.d.ts +0 -10
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/index.js +0 -25
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/meta-reasoner-agent.d.ts +0 -111
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/meta-reasoner-agent.js +0 -686
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/meta-reasoner-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/telemetry.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/telemetry.js +0 -25
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/index.d.ts +0 -6
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/index.js +0 -15
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/objective-clarifier-agent.d.ts +0 -126
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/objective-clarifier-agent.js +0 -780
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/objective-clarifier-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/ruvector-persistence.d.ts +0 -49
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/ruvector-persistence.js +0 -125
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/telemetry.d.ts +0 -73
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/telemetry.js +0 -192
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/index.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/index.js +0 -25
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/planner-agent.d.ts +0 -127
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/planner-agent.js +0 -483
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/planner-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/ruvector-persistence.d.ts +0 -49
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/ruvector-persistence.js +0 -125
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/telemetry.d.ts +0 -73
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/telemetry.js +0 -192
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/index.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/index.js +0 -27
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/reflection-agent.d.ts +0 -122
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/reflection-agent.js +0 -645
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/reflection-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/ruvector-persistence.d.ts +0 -59
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/ruvector-persistence.js +0 -156
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/telemetry.d.ts +0 -88
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/telemetry.js +0 -246
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/index.js +0 -4
- package/dist/bundled-agents/copilot-agents/functions/jest.config.js +0 -29
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/cors.d.ts +0 -14
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/cors.js +0 -35
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/cors.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/envelope.d.ts +0 -27
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/envelope.js +0 -21
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/envelope.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/health.d.ts +0 -22
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/health.js +0 -38
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/health.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/index.d.ts +0 -34
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/index.js +0 -174
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/router.d.ts +0 -27
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/router.js +0 -107
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/router.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/config-validation-agent.d.ts +0 -157
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/config-validation-agent.js +0 -941
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/config-validation-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/index.d.ts +0 -9
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/index.js +0 -27
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/agent-span-wrapper.d.ts +0 -23
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/agent-span-wrapper.js +0 -50
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/agent-span-wrapper.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/base-agent.d.ts +0 -185
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/base-agent.js +0 -86
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/base-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/config-validation-schemas.d.ts +0 -1081
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/config-validation-schemas.js +0 -305
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/config-validation-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decision-event.d.ts +0 -59
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decision-event.js +0 -62
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decision-event.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decomposer-schemas.d.ts +0 -315
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decomposer-schemas.js +0 -110
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decomposer-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/execution-graph.d.ts +0 -250
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/execution-graph.js +0 -169
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/execution-graph.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/index.d.ts +0 -16
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/index.js +0 -88
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intelligence-schemas.d.ts +0 -1674
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intelligence-schemas.js +0 -246
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intelligence-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intent-classifier-schemas.d.ts +0 -1000
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intent-classifier-schemas.js +0 -215
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intent-classifier-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/meta-reasoner-schemas.d.ts +0 -864
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/meta-reasoner-schemas.js +0 -250
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/meta-reasoner-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/objective-clarifier-schemas.d.ts +0 -572
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/objective-clarifier-schemas.js +0 -202
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/objective-clarifier-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/planner-schemas.d.ts +0 -496
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/planner-schemas.js +0 -133
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/planner-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/reflection-schemas.d.ts +0 -706
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/reflection-schemas.js +0 -222
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/reflection-schemas.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/decomposer-agent.d.ts +0 -107
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/decomposer-agent.js +0 -360
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/decomposer-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.d.ts +0 -9
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.js +0 -18
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/index.d.ts +0 -4
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/index.js +0 -9
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/intent-classifier-agent.d.ts +0 -123
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/intent-classifier-agent.js +0 -609
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/intent-classifier-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/index.d.ts +0 -10
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/index.js +0 -25
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/meta-reasoner-agent.d.ts +0 -111
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/meta-reasoner-agent.js +0 -686
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/meta-reasoner-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/telemetry.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/telemetry.js +0 -25
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/index.d.ts +0 -6
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/index.js +0 -15
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/objective-clarifier-agent.d.ts +0 -126
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/objective-clarifier-agent.js +0 -780
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/objective-clarifier-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/ruvector-persistence.d.ts +0 -49
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/ruvector-persistence.js +0 -125
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/telemetry.d.ts +0 -73
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/telemetry.js +0 -192
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/index.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/index.js +0 -25
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/planner-agent.d.ts +0 -119
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/planner-agent.js +0 -421
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/planner-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/ruvector-persistence.d.ts +0 -49
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/ruvector-persistence.js +0 -125
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/telemetry.d.ts +0 -73
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/telemetry.js +0 -192
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/index.d.ts +0 -11
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/index.js +0 -27
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/index.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/reflection-agent.d.ts +0 -122
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/reflection-agent.js +0 -645
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/reflection-agent.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/ruvector-persistence.d.ts +0 -59
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/ruvector-persistence.js +0 -156
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/ruvector-persistence.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/telemetry.d.ts +0 -88
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/telemetry.js +0 -246
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/telemetry.js.map +0 -1
- package/dist/bundled-agents/copilot-agents/functions/package-lock.json +0 -5473
- package/dist/bundled-agents/copilot-agents/functions/package.json +0 -40
- package/dist/bundled-agents/copilot-agents/functions/src/claude.ts +0 -71
- package/dist/bundled-agents/copilot-agents/functions/src/cors.ts +0 -36
- package/dist/bundled-agents/copilot-agents/functions/src/envelope.ts +0 -77
- package/dist/bundled-agents/copilot-agents/functions/src/handler.test.ts +0 -340
- package/dist/bundled-agents/copilot-agents/functions/src/health.ts +0 -53
- package/dist/bundled-agents/copilot-agents/functions/src/index.ts +0 -201
- package/dist/bundled-agents/copilot-agents/functions/src/router.ts +0 -148
- package/dist/bundled-agents/copilot-agents/functions/tsconfig.json +0 -31
- package/dist/bundled-agents/copilot-agents/package-lock.json +0 -11825
- package/dist/bundled-agents/copilot-agents/package.json +0 -5
- package/dist/bundled-agents/governance-dashboard-agents/package-lock.json +0 -8282
- package/dist/bundled-agents/governance-dashboard-agents/package.json +0 -13
- package/dist/bundled-agents/orchestrator-agents/functions/contracts/index.js +0 -590
- package/dist/bundled-agents/orchestrator-agents/functions/index.js +0 -442
- package/dist/bundled-agents/orchestrator-agents/functions/test.js +0 -325
- package/dist/bundled-agents/orchestrator-agents/index.js +0 -6
- package/dist/bundled-agents/orchestrator-agents/package-lock.json +0 -13254
- package/dist/bundled-agents/orchestrator-agents/package.json +0 -20
- package/dist/bundled-agents/platform-agents/package-lock.json +0 -1723
- package/dist/bundled-agents/platform-agents/package.json +0 -22
- package/dist/bundled-agents/platform-agents/src/agents/decision-memo.ts +0 -463
- package/dist/bundled-agents/platform-agents/src/agents/decision.ts +0 -234
- package/dist/bundled-agents/platform-agents/src/agents/executive-summary.ts +0 -229
- package/dist/bundled-agents/platform-agents/src/agents/risk-score.ts +0 -327
- package/dist/bundled-agents/platform-agents/src/claude.ts +0 -71
- package/dist/bundled-agents/platform-agents/src/cors.ts +0 -24
- package/dist/bundled-agents/platform-agents/src/envelope.ts +0 -37
- package/dist/bundled-agents/platform-agents/src/health.ts +0 -20
- package/dist/bundled-agents/platform-agents/src/index.ts +0 -171
- package/dist/bundled-agents/platform-agents/src/router.ts +0 -38
- package/dist/bundled-agents/platform-agents/src/text-analysis.ts +0 -238
- package/dist/bundled-agents/platform-agents/tsconfig.json +0 -19
- package/dist/bundled-agents/sentinel-agents/lib/agents/alert.d.ts +0 -3
- package/dist/bundled-agents/sentinel-agents/lib/agents/alert.d.ts.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/alert.js +0 -43
- package/dist/bundled-agents/sentinel-agents/lib/agents/alert.js.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/anomaly.d.ts +0 -3
- package/dist/bundled-agents/sentinel-agents/lib/agents/anomaly.d.ts.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/anomaly.js +0 -30
- package/dist/bundled-agents/sentinel-agents/lib/agents/anomaly.js.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/correlation.d.ts +0 -3
- package/dist/bundled-agents/sentinel-agents/lib/agents/correlation.d.ts.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/correlation.js +0 -53
- package/dist/bundled-agents/sentinel-agents/lib/agents/correlation.js.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/drift.d.ts +0 -3
- package/dist/bundled-agents/sentinel-agents/lib/agents/drift.d.ts.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/drift.js +0 -51
- package/dist/bundled-agents/sentinel-agents/lib/agents/drift.js.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/rca.d.ts +0 -3
- package/dist/bundled-agents/sentinel-agents/lib/agents/rca.d.ts.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/agents/rca.js +0 -36
- package/dist/bundled-agents/sentinel-agents/lib/agents/rca.js.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/index.d.ts +0 -2
- package/dist/bundled-agents/sentinel-agents/lib/index.d.ts.map +0 -1
- package/dist/bundled-agents/sentinel-agents/lib/index.js +0 -70
- package/dist/bundled-agents/sentinel-agents/lib/index.js.map +0 -1
- package/dist/bundled-agents/sentinel-agents/package-lock.json +0 -12591
- package/dist/bundled-agents/sentinel-agents/package.json +0 -62
- package/dist/bundled-agents/sentinel-agents/src/agents/alert.ts +0 -46
- package/dist/bundled-agents/sentinel-agents/src/agents/anomaly.ts +0 -33
- package/dist/bundled-agents/sentinel-agents/src/agents/correlation.ts +0 -56
- package/dist/bundled-agents/sentinel-agents/src/agents/drift.ts +0 -54
- package/dist/bundled-agents/sentinel-agents/src/agents/rca.ts +0 -38
- package/dist/bundled-agents/sentinel-agents/src/claude.ts +0 -71
- package/dist/bundled-agents/sentinel-agents/src/index.ts +0 -77
- package/dist/bundled-agents/sentinel-agents/tsconfig.json +0 -20
|
@@ -1,360 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* Decomposer Agent
|
|
4
|
-
*
|
|
5
|
-
* Purpose: Decompose complex objectives into manageable sub-objectives
|
|
6
|
-
* Classification: DECOMPOSITION, STRUCTURAL_SYNTHESIS
|
|
7
|
-
* decision_type: objective_decomposition
|
|
8
|
-
*
|
|
9
|
-
* Scope:
|
|
10
|
-
* - Break complex objectives into sub-objectives
|
|
11
|
-
* - Identify sub-objective relationships
|
|
12
|
-
* - Assess decomposition completeness
|
|
13
|
-
*
|
|
14
|
-
* CONSTITUTION COMPLIANCE:
|
|
15
|
-
* ✓ Stateless at runtime
|
|
16
|
-
* ✓ Emits exactly ONE DecisionEvent per invocation
|
|
17
|
-
* ✓ Persists ONLY via ruvector-service
|
|
18
|
-
* ✓ NEVER connects directly to databases
|
|
19
|
-
* ✓ NEVER executes SQL
|
|
20
|
-
* ✓ NEVER modifies runtime behavior
|
|
21
|
-
* ✓ NEVER orchestrates other agents
|
|
22
|
-
* ✓ NEVER enforces policy
|
|
23
|
-
* ✓ NEVER intercepts execution paths
|
|
24
|
-
*
|
|
25
|
-
* Must Never:
|
|
26
|
-
* - Execute sub-objectives
|
|
27
|
-
* - Assign agents
|
|
28
|
-
* - Allocate resources
|
|
29
|
-
* - Schedule execution
|
|
30
|
-
*/
|
|
31
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32
|
-
exports.DecomposerAgent = void 0;
|
|
33
|
-
const uuid_1 = require("uuid");
|
|
34
|
-
const contracts_1 = require("../contracts");
|
|
35
|
-
const AGENT_ID = 'decomposer-agent';
|
|
36
|
-
const AGENT_VERSION = '1.0.0';
|
|
37
|
-
const DECISION_TYPE = 'objective_decomposition';
|
|
38
|
-
/**
|
|
39
|
-
* Decomposer Agent Implementation
|
|
40
|
-
*
|
|
41
|
-
* This agent analyzes complex objectives and produces structured sub-objectives.
|
|
42
|
-
* It is purely analytical - it NEVER executes, assigns, or schedules anything.
|
|
43
|
-
*/
|
|
44
|
-
class DecomposerAgent {
|
|
45
|
-
metadata = {
|
|
46
|
-
id: AGENT_ID,
|
|
47
|
-
name: 'Decomposer Agent',
|
|
48
|
-
version: AGENT_VERSION,
|
|
49
|
-
classifications: [
|
|
50
|
-
contracts_1.AgentClassification.DECOMPOSITION,
|
|
51
|
-
contracts_1.AgentClassification.STRUCTURAL_SYNTHESIS,
|
|
52
|
-
],
|
|
53
|
-
decision_type: DECISION_TYPE,
|
|
54
|
-
description: 'Decomposes complex objectives into manageable sub-objectives with relationships and completeness assessment.',
|
|
55
|
-
};
|
|
56
|
-
persistence;
|
|
57
|
-
telemetry;
|
|
58
|
-
constructor(persistence, telemetry) {
|
|
59
|
-
this.persistence = persistence;
|
|
60
|
-
this.telemetry = telemetry;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Validate input against DecomposerInputSchema
|
|
64
|
-
*/
|
|
65
|
-
validateInput(input) {
|
|
66
|
-
return contracts_1.DecomposerInputSchema.parse(input);
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* Invoke the decomposer agent
|
|
70
|
-
*
|
|
71
|
-
* DETERMINISTIC: Same input always produces same output structure
|
|
72
|
-
* STATELESS: No internal state modified
|
|
73
|
-
* NON-BLOCKING: Fully async
|
|
74
|
-
*/
|
|
75
|
-
async invoke(input, executionRef) {
|
|
76
|
-
const startTime = Date.now();
|
|
77
|
-
try {
|
|
78
|
-
// Emit telemetry start
|
|
79
|
-
this.telemetry.recordStart(AGENT_ID, executionRef, input);
|
|
80
|
-
// Decompose the objective (pure analysis, no side effects)
|
|
81
|
-
const output = this.decompose(input);
|
|
82
|
-
// Validate output
|
|
83
|
-
const validatedOutput = contracts_1.DecomposerOutputSchema.parse(output);
|
|
84
|
-
// Calculate confidence based on decomposition quality
|
|
85
|
-
const confidence = this.calculateConfidence(validatedOutput);
|
|
86
|
-
// Constraints applied during decomposition
|
|
87
|
-
const constraintsApplied = this.getAppliedConstraints(input);
|
|
88
|
-
// Create the DecisionEvent
|
|
89
|
-
const event = (0, contracts_1.createDecisionEvent)(AGENT_ID, AGENT_VERSION, DECISION_TYPE, input, validatedOutput, confidence, constraintsApplied, executionRef);
|
|
90
|
-
// Persist via ruvector-service (best-effort, non-blocking)
|
|
91
|
-
let persistence_status;
|
|
92
|
-
try {
|
|
93
|
-
await this.persistence.store(event);
|
|
94
|
-
persistence_status = { status: 'persisted' };
|
|
95
|
-
}
|
|
96
|
-
catch (persistError) {
|
|
97
|
-
const persistMessage = persistError instanceof Error ? persistError.message : 'Unknown persistence error';
|
|
98
|
-
console.error(`[${AGENT_ID}] RuVector persistence failed (non-blocking): ${persistMessage}`);
|
|
99
|
-
persistence_status = { status: 'skipped', error: persistMessage };
|
|
100
|
-
}
|
|
101
|
-
// Emit telemetry success
|
|
102
|
-
this.telemetry.recordSuccess(AGENT_ID, executionRef, Date.now() - startTime);
|
|
103
|
-
return {
|
|
104
|
-
status: 'success',
|
|
105
|
-
event,
|
|
106
|
-
persistence_status,
|
|
107
|
-
};
|
|
108
|
-
}
|
|
109
|
-
catch (error) {
|
|
110
|
-
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
|
|
111
|
-
const errorCode = this.classifyError(error);
|
|
112
|
-
// Emit telemetry failure
|
|
113
|
-
this.telemetry.recordFailure(AGENT_ID, executionRef, errorCode, errorMessage);
|
|
114
|
-
return (0, contracts_1.createErrorResult)(errorCode, errorMessage, executionRef);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
/**
|
|
118
|
-
* Decompose objective into sub-objectives
|
|
119
|
-
*
|
|
120
|
-
* This is the core decomposition logic - purely analytical.
|
|
121
|
-
* NEVER executes, assigns agents, or schedules anything.
|
|
122
|
-
*/
|
|
123
|
-
decompose(input) {
|
|
124
|
-
const decompositionId = (0, uuid_1.v4)();
|
|
125
|
-
const maxDepth = input.context?.max_depth ?? 3;
|
|
126
|
-
const maxSubObjectives = input.config?.max_sub_objectives ?? 20;
|
|
127
|
-
const subObjectives = this.extractSubObjectives(input, maxDepth, maxSubObjectives);
|
|
128
|
-
const treeStructure = this.buildTreeStructure(subObjectives);
|
|
129
|
-
const dependencyGraph = this.buildDependencyGraph(subObjectives);
|
|
130
|
-
const atomicCount = subObjectives.filter(s => s.is_atomic).length;
|
|
131
|
-
const complexityDist = this.calculateComplexityDistribution(subObjectives);
|
|
132
|
-
const coverageScore = this.assessCoverage(subObjectives, input);
|
|
133
|
-
const maxDepthReached = Math.max(0, ...subObjectives.map(s => s.depth));
|
|
134
|
-
return {
|
|
135
|
-
decomposition_id: decompositionId,
|
|
136
|
-
original_objective: this.summarize(input.objective),
|
|
137
|
-
sub_objectives: subObjectives,
|
|
138
|
-
tree_structure: treeStructure,
|
|
139
|
-
dependency_graph: dependencyGraph,
|
|
140
|
-
analysis: {
|
|
141
|
-
total_sub_objectives: subObjectives.length,
|
|
142
|
-
max_depth_reached: maxDepthReached,
|
|
143
|
-
atomic_count: atomicCount,
|
|
144
|
-
coverage_score: coverageScore,
|
|
145
|
-
complexity_distribution: complexityDist,
|
|
146
|
-
assumptions: this.extractAssumptions(input),
|
|
147
|
-
},
|
|
148
|
-
version: '1.0.0',
|
|
149
|
-
};
|
|
150
|
-
}
|
|
151
|
-
/**
|
|
152
|
-
* Extract sub-objectives from the objective using pattern-based analysis
|
|
153
|
-
*/
|
|
154
|
-
extractSubObjectives(input, maxDepth, maxCount) {
|
|
155
|
-
const objective = input.objective.toLowerCase();
|
|
156
|
-
const subs = [];
|
|
157
|
-
let counter = 0;
|
|
158
|
-
const addSub = (title, description, parentId, depth, tags, complexity, isAtomic, deps = [], criteria = []) => {
|
|
159
|
-
if (subs.length >= maxCount || depth > maxDepth)
|
|
160
|
-
return '';
|
|
161
|
-
const id = `sub-${++counter}`;
|
|
162
|
-
subs.push({
|
|
163
|
-
sub_objective_id: id,
|
|
164
|
-
title,
|
|
165
|
-
description,
|
|
166
|
-
parent_id: parentId,
|
|
167
|
-
depth,
|
|
168
|
-
dependencies: deps,
|
|
169
|
-
tags,
|
|
170
|
-
complexity,
|
|
171
|
-
is_atomic: isAtomic,
|
|
172
|
-
acceptance_criteria: criteria,
|
|
173
|
-
});
|
|
174
|
-
return id;
|
|
175
|
-
};
|
|
176
|
-
// Top-level: understand requirements
|
|
177
|
-
const understandId = addSub('Understand Requirements', 'Analyze and capture all requirements from the objective', null, 0, ['requirements', 'analysis'], 'simple', true, [], ['All requirements identified', 'Ambiguities documented']);
|
|
178
|
-
// Top-level: design approach
|
|
179
|
-
const designId = addSub('Design Approach', 'Design the solution approach and architecture', null, 0, ['design', 'architecture'], 'moderate', false, understandId ? [{ depends_on: understandId, type: 'data' }] : [], ['Architecture decisions documented', 'Approach validated']);
|
|
180
|
-
// Conditional sub-objectives based on objective content
|
|
181
|
-
if (this.containsAny(objective, ['build', 'create', 'implement', 'develop'])) {
|
|
182
|
-
const implId = addSub('Implement Core Logic', 'Implement the core functionality described in the objective', null, 0, ['implementation', 'core'], 'complex', false, designId ? [{ depends_on: designId, type: 'blocking' }] : [], ['Core functionality working', 'Unit tests passing']);
|
|
183
|
-
if (implId && maxDepth >= 1) {
|
|
184
|
-
addSub('Set Up Project Structure', 'Create the project scaffolding and configuration', implId, 1, ['setup', 'scaffolding'], 'simple', true, [], ['Project structure created', 'Dependencies installed']);
|
|
185
|
-
addSub('Implement Business Logic', 'Build the primary business logic components', implId, 1, ['business-logic', 'core'], 'complex', true, [], ['Business rules implemented', 'Edge cases handled']);
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
if (this.containsAny(objective, ['api', 'service', 'endpoint', 'interface'])) {
|
|
189
|
-
addSub('Define Interface Contracts', 'Specify API contracts, schemas, and interface boundaries', designId, 1, ['interfaces', 'contracts', 'api'], 'moderate', true, [], ['API contracts defined', 'Schemas validated']);
|
|
190
|
-
}
|
|
191
|
-
if (this.containsAny(objective, ['test', 'validate', 'verify', 'quality'])) {
|
|
192
|
-
addSub('Establish Validation Strategy', 'Define the testing and validation approach', null, 0, ['testing', 'validation'], 'moderate', true, designId ? [{ depends_on: designId, type: 'data' }] : [], ['Test strategy defined', 'Coverage targets set']);
|
|
193
|
-
}
|
|
194
|
-
if (this.containsAny(objective, ['deploy', 'release', 'production', 'launch'])) {
|
|
195
|
-
addSub('Plan Deployment', 'Define the deployment and release strategy', null, 0, ['deployment', 'release'], 'moderate', true, designId ? [{ depends_on: designId, type: 'data' }] : [], ['Deployment pipeline defined', 'Rollback plan documented']);
|
|
196
|
-
}
|
|
197
|
-
if (this.containsAny(objective, ['integrate', 'connect', 'migrate'])) {
|
|
198
|
-
addSub('Plan Integration', 'Define integration points and data flow between systems', null, 0, ['integration', 'connectivity'], 'complex', false, designId ? [{ depends_on: designId, type: 'data' }] : [], ['Integration points mapped', 'Data flow documented']);
|
|
199
|
-
}
|
|
200
|
-
// Always add a completion/review sub-objective
|
|
201
|
-
const allTopLevel = subs.filter(s => s.parent_id === null).map(s => s.sub_objective_id);
|
|
202
|
-
addSub('Review and Validate Completeness', 'Ensure all sub-objectives adequately cover the original objective', null, 0, ['review', 'completeness'], 'simple', true, allTopLevel.map(id => ({ depends_on: id, type: 'data' })), ['All sub-objectives addressed', 'Coverage verified']);
|
|
203
|
-
return subs;
|
|
204
|
-
}
|
|
205
|
-
/**
|
|
206
|
-
* Build tree structure (parent -> children) from sub-objectives
|
|
207
|
-
*/
|
|
208
|
-
buildTreeStructure(subs) {
|
|
209
|
-
const tree = { root: [] };
|
|
210
|
-
for (const sub of subs) {
|
|
211
|
-
if (sub.parent_id === null) {
|
|
212
|
-
tree.root.push(sub.sub_objective_id);
|
|
213
|
-
}
|
|
214
|
-
else {
|
|
215
|
-
if (!tree[sub.parent_id]) {
|
|
216
|
-
tree[sub.parent_id] = [];
|
|
217
|
-
}
|
|
218
|
-
tree[sub.parent_id].push(sub.sub_objective_id);
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
return tree;
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* Build dependency graph as adjacency list
|
|
225
|
-
*/
|
|
226
|
-
buildDependencyGraph(subs) {
|
|
227
|
-
const graph = {};
|
|
228
|
-
for (const sub of subs) {
|
|
229
|
-
graph[sub.sub_objective_id] = sub.dependencies.map(d => d.depends_on);
|
|
230
|
-
}
|
|
231
|
-
return graph;
|
|
232
|
-
}
|
|
233
|
-
/**
|
|
234
|
-
* Calculate complexity distribution
|
|
235
|
-
*/
|
|
236
|
-
calculateComplexityDistribution(subs) {
|
|
237
|
-
const dist = {
|
|
238
|
-
trivial: 0, simple: 0, moderate: 0, complex: 0, very_complex: 0,
|
|
239
|
-
};
|
|
240
|
-
for (const sub of subs) {
|
|
241
|
-
dist[sub.complexity]++;
|
|
242
|
-
}
|
|
243
|
-
return dist;
|
|
244
|
-
}
|
|
245
|
-
/**
|
|
246
|
-
* Assess how well the sub-objectives cover the original objective
|
|
247
|
-
*/
|
|
248
|
-
assessCoverage(subs, input) {
|
|
249
|
-
let score = 0.5; // Base coverage
|
|
250
|
-
// More sub-objectives generally means better coverage (up to a point)
|
|
251
|
-
if (subs.length >= 3 && subs.length <= 15)
|
|
252
|
-
score += 0.15;
|
|
253
|
-
if (subs.length > 15)
|
|
254
|
-
score += 0.1;
|
|
255
|
-
// Atomic sub-objectives are actionable
|
|
256
|
-
const atomicRatio = subs.filter(s => s.is_atomic).length / subs.length;
|
|
257
|
-
if (atomicRatio > 0.4)
|
|
258
|
-
score += 0.1;
|
|
259
|
-
// Sub-objectives with acceptance criteria
|
|
260
|
-
const criteriaRatio = subs.filter(s => s.acceptance_criteria.length > 0).length / subs.length;
|
|
261
|
-
score += criteriaRatio * 0.15;
|
|
262
|
-
// Multi-depth decomposition
|
|
263
|
-
const maxDepth = Math.max(0, ...subs.map(s => s.depth));
|
|
264
|
-
if (maxDepth >= 1)
|
|
265
|
-
score += 0.1;
|
|
266
|
-
return Math.min(1.0, Math.max(0.0, score));
|
|
267
|
-
}
|
|
268
|
-
/**
|
|
269
|
-
* Summarize objective for output
|
|
270
|
-
*/
|
|
271
|
-
summarize(objective) {
|
|
272
|
-
const cleaned = objective.trim().replace(/\s+/g, ' ');
|
|
273
|
-
return cleaned.length > 200 ? cleaned.substring(0, 197) + '...' : cleaned;
|
|
274
|
-
}
|
|
275
|
-
/**
|
|
276
|
-
* Extract assumptions made during decomposition
|
|
277
|
-
*/
|
|
278
|
-
extractAssumptions(input) {
|
|
279
|
-
const assumptions = [
|
|
280
|
-
'Objective has been validated for clarity',
|
|
281
|
-
'Decomposition is based on structural analysis of the objective text',
|
|
282
|
-
];
|
|
283
|
-
if (!input.context?.constraints?.length) {
|
|
284
|
-
assumptions.push('No explicit constraints provided - using default decomposition strategy');
|
|
285
|
-
}
|
|
286
|
-
if (!input.context?.existing_components?.length) {
|
|
287
|
-
assumptions.push('No existing components specified - decomposing as new work');
|
|
288
|
-
}
|
|
289
|
-
if (!input.config?.target_granularity) {
|
|
290
|
-
assumptions.push('Using medium granularity as default');
|
|
291
|
-
}
|
|
292
|
-
return assumptions;
|
|
293
|
-
}
|
|
294
|
-
/**
|
|
295
|
-
* Calculate confidence score based on decomposition quality
|
|
296
|
-
*/
|
|
297
|
-
calculateConfidence(output) {
|
|
298
|
-
let confidence = 0.65; // Base confidence
|
|
299
|
-
// Boost for well-structured decompositions
|
|
300
|
-
if (output.sub_objectives.length >= 3 && output.sub_objectives.length <= 20) {
|
|
301
|
-
confidence += 0.1;
|
|
302
|
-
}
|
|
303
|
-
// Boost for good coverage
|
|
304
|
-
if (output.analysis.coverage_score >= 0.7) {
|
|
305
|
-
confidence += 0.1;
|
|
306
|
-
}
|
|
307
|
-
// Boost for multi-depth decomposition
|
|
308
|
-
if (output.analysis.max_depth_reached >= 1) {
|
|
309
|
-
confidence += 0.05;
|
|
310
|
-
}
|
|
311
|
-
// Boost for atomic sub-objectives
|
|
312
|
-
if (output.analysis.atomic_count > 0) {
|
|
313
|
-
confidence += 0.05;
|
|
314
|
-
}
|
|
315
|
-
// Reduce for too many sub-objectives (potential over-decomposition)
|
|
316
|
-
if (output.sub_objectives.length > 25) {
|
|
317
|
-
confidence -= 0.1;
|
|
318
|
-
}
|
|
319
|
-
return Math.min(1.0, Math.max(0.0, confidence));
|
|
320
|
-
}
|
|
321
|
-
/**
|
|
322
|
-
* Get constraints applied during decomposition
|
|
323
|
-
*/
|
|
324
|
-
getAppliedConstraints(input) {
|
|
325
|
-
const constraints = [
|
|
326
|
-
'read_only_analysis',
|
|
327
|
-
'no_execution',
|
|
328
|
-
'no_agent_assignment',
|
|
329
|
-
'no_resource_allocation',
|
|
330
|
-
'no_scheduling',
|
|
331
|
-
'deterministic_output',
|
|
332
|
-
];
|
|
333
|
-
if (input.context?.constraints) {
|
|
334
|
-
constraints.push(...input.context.constraints.map(c => `user_constraint:${c}`));
|
|
335
|
-
}
|
|
336
|
-
return constraints;
|
|
337
|
-
}
|
|
338
|
-
/**
|
|
339
|
-
* Classify error for proper error code
|
|
340
|
-
*/
|
|
341
|
-
classifyError(error) {
|
|
342
|
-
if (error instanceof Error) {
|
|
343
|
-
if (error.name === 'ZodError') {
|
|
344
|
-
return contracts_1.AgentErrorCodes.VALIDATION_FAILED;
|
|
345
|
-
}
|
|
346
|
-
if (error.message.includes('persistence') || error.message.includes('ruvector')) {
|
|
347
|
-
return contracts_1.AgentErrorCodes.PERSISTENCE_ERROR;
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
return contracts_1.AgentErrorCodes.PROCESSING_ERROR;
|
|
351
|
-
}
|
|
352
|
-
/**
|
|
353
|
-
* Helper: Check if text contains any of the keywords
|
|
354
|
-
*/
|
|
355
|
-
containsAny(text, keywords) {
|
|
356
|
-
return keywords.some(kw => text.includes(kw));
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
exports.DecomposerAgent = DecomposerAgent;
|
|
360
|
-
//# sourceMappingURL=decomposer-agent.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"decomposer-agent.js","sourceRoot":"","sources":["../../../../../services/agents/decomposer/decomposer-agent.ts"],"names":[],"mappings":"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"}
|
package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Decomposer Agent Module Exports
|
|
3
|
-
*
|
|
4
|
-
* Purpose: Decompose complex objectives into manageable sub-objectives
|
|
5
|
-
* Classification: DECOMPOSITION, STRUCTURAL_SYNTHESIS
|
|
6
|
-
* decision_type: objective_decomposition
|
|
7
|
-
*/
|
|
8
|
-
export { DecomposerAgent } from './decomposer-agent';
|
|
9
|
-
export { SubObjectiveSchema, DecomposerInputSchema, DecomposerOutputSchema, type SubObjective, type DecomposerInput, type DecomposerOutput, } from '../contracts';
|
package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* Decomposer Agent Module Exports
|
|
4
|
-
*
|
|
5
|
-
* Purpose: Decompose complex objectives into manageable sub-objectives
|
|
6
|
-
* Classification: DECOMPOSITION, STRUCTURAL_SYNTHESIS
|
|
7
|
-
* decision_type: objective_decomposition
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.DecomposerOutputSchema = exports.DecomposerInputSchema = exports.SubObjectiveSchema = exports.DecomposerAgent = void 0;
|
|
11
|
-
var decomposer_agent_1 = require("./decomposer-agent");
|
|
12
|
-
Object.defineProperty(exports, "DecomposerAgent", { enumerable: true, get: function () { return decomposer_agent_1.DecomposerAgent; } });
|
|
13
|
-
// Re-export schemas from contracts
|
|
14
|
-
var contracts_1 = require("../contracts");
|
|
15
|
-
Object.defineProperty(exports, "SubObjectiveSchema", { enumerable: true, get: function () { return contracts_1.SubObjectiveSchema; } });
|
|
16
|
-
Object.defineProperty(exports, "DecomposerInputSchema", { enumerable: true, get: function () { return contracts_1.DecomposerInputSchema; } });
|
|
17
|
-
Object.defineProperty(exports, "DecomposerOutputSchema", { enumerable: true, get: function () { return contracts_1.DecomposerOutputSchema; } });
|
|
18
|
-
//# sourceMappingURL=index.js.map
|
package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../services/agents/decomposer/index.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAEH,uDAAqD;AAA5C,mHAAA,eAAe,OAAA;AAExB,mCAAmC;AACnC,0CAOsB;AANpB,+GAAA,kBAAkB,OAAA;AAClB,kHAAA,qBAAqB,OAAA;AACrB,mHAAA,sBAAsB,OAAA"}
|
package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/index.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* Intent Classifier Agent Module Exports
|
|
4
|
-
*/
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.IntentClassifierAgent = void 0;
|
|
7
|
-
var intent_classifier_agent_1 = require("./intent-classifier-agent");
|
|
8
|
-
Object.defineProperty(exports, "IntentClassifierAgent", { enumerable: true, get: function () { return intent_classifier_agent_1.IntentClassifierAgent; } });
|
|
9
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../services/agents/intent-classifier/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,qEAAkE;AAAzD,gIAAA,qBAAqB,OAAA"}
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Intent Classifier Agent
|
|
3
|
-
*
|
|
4
|
-
* Purpose: Classify user or system intent to guide downstream reasoning
|
|
5
|
-
* Classification: INTENT_ANALYSIS
|
|
6
|
-
* decision_type: intent_classification
|
|
7
|
-
*
|
|
8
|
-
* Scope:
|
|
9
|
-
* - Classify intent type
|
|
10
|
-
* - Detect multi-intent states
|
|
11
|
-
* - Assign confidence scores
|
|
12
|
-
*
|
|
13
|
-
* CONSTITUTION COMPLIANCE:
|
|
14
|
-
* ✓ Stateless at runtime
|
|
15
|
-
* ✓ Emits exactly ONE DecisionEvent per invocation
|
|
16
|
-
* ✓ Persists ONLY via ruvector-service
|
|
17
|
-
* ✓ NEVER connects directly to databases
|
|
18
|
-
* ✓ NEVER executes SQL
|
|
19
|
-
* ✓ NEVER modifies runtime behavior
|
|
20
|
-
* ✓ NEVER orchestrates other agents
|
|
21
|
-
* ✓ NEVER enforces policy
|
|
22
|
-
* ✓ NEVER intercepts execution paths
|
|
23
|
-
*
|
|
24
|
-
* Must Never:
|
|
25
|
-
* - Trigger workflows
|
|
26
|
-
* - Route execution
|
|
27
|
-
* - Enforce policy
|
|
28
|
-
*/
|
|
29
|
-
import { BaseAgent, AgentMetadata, AgentResult } from '../contracts';
|
|
30
|
-
import { IntentClassifierInput, IntentClassifierOutput } from '../contracts/intent-classifier-schemas';
|
|
31
|
-
import { RuvectorPersistence } from '../planner/ruvector-persistence';
|
|
32
|
-
import { Telemetry } from '../planner/telemetry';
|
|
33
|
-
/**
|
|
34
|
-
* Intent Classifier Agent Implementation
|
|
35
|
-
*
|
|
36
|
-
* This agent analyzes text and classifies user/system intent.
|
|
37
|
-
* It is purely analytical - it NEVER executes, routes, or enforces anything.
|
|
38
|
-
*/
|
|
39
|
-
export declare class IntentClassifierAgent implements BaseAgent<IntentClassifierInput, IntentClassifierOutput> {
|
|
40
|
-
readonly metadata: AgentMetadata;
|
|
41
|
-
private readonly persistence;
|
|
42
|
-
private readonly telemetry;
|
|
43
|
-
constructor(persistence: RuvectorPersistence, telemetry: Telemetry);
|
|
44
|
-
/**
|
|
45
|
-
* Validate input against IntentClassifierInputSchema
|
|
46
|
-
*/
|
|
47
|
-
validateInput(input: unknown): IntentClassifierInput;
|
|
48
|
-
/**
|
|
49
|
-
* Invoke the intent classifier agent
|
|
50
|
-
*
|
|
51
|
-
* DETERMINISTIC: Same input always produces same output structure
|
|
52
|
-
* STATELESS: No internal state modified
|
|
53
|
-
* NON-BLOCKING: Fully async
|
|
54
|
-
*/
|
|
55
|
-
invoke(input: IntentClassifierInput, executionRef: string): Promise<AgentResult>;
|
|
56
|
-
/**
|
|
57
|
-
* Classify intent from input text
|
|
58
|
-
*
|
|
59
|
-
* This is the core classification logic - purely analytical.
|
|
60
|
-
* NEVER triggers workflows, routes execution, or enforces policy.
|
|
61
|
-
*/
|
|
62
|
-
private classifyIntent;
|
|
63
|
-
/**
|
|
64
|
-
* Normalize text for analysis
|
|
65
|
-
*/
|
|
66
|
-
private normalizeText;
|
|
67
|
-
/**
|
|
68
|
-
* Detect all potential intents from normalized text
|
|
69
|
-
*/
|
|
70
|
-
private detectIntents;
|
|
71
|
-
/**
|
|
72
|
-
* Extract target from text based on intent
|
|
73
|
-
*/
|
|
74
|
-
private extractTarget;
|
|
75
|
-
/**
|
|
76
|
-
* Extract action from text based on intent
|
|
77
|
-
*/
|
|
78
|
-
private extractAction;
|
|
79
|
-
/**
|
|
80
|
-
* Extract scope from input context
|
|
81
|
-
*/
|
|
82
|
-
private extractScope;
|
|
83
|
-
/**
|
|
84
|
-
* Apply hints to filter intents
|
|
85
|
-
*/
|
|
86
|
-
private applyHints;
|
|
87
|
-
/**
|
|
88
|
-
* Create unknown intent fallback
|
|
89
|
-
*/
|
|
90
|
-
private createUnknownIntent;
|
|
91
|
-
/**
|
|
92
|
-
* Analyze multi-intent state
|
|
93
|
-
*/
|
|
94
|
-
private analyzeMultiIntentState;
|
|
95
|
-
/**
|
|
96
|
-
* Detect relationship between intents
|
|
97
|
-
*/
|
|
98
|
-
private detectIntentRelationship;
|
|
99
|
-
/**
|
|
100
|
-
* Detect ambiguity in classification
|
|
101
|
-
*/
|
|
102
|
-
private detectAmbiguity;
|
|
103
|
-
/**
|
|
104
|
-
* Detect language of input
|
|
105
|
-
*/
|
|
106
|
-
private detectLanguage;
|
|
107
|
-
/**
|
|
108
|
-
* Generate analysis notes
|
|
109
|
-
*/
|
|
110
|
-
private generateNotes;
|
|
111
|
-
/**
|
|
112
|
-
* Calculate overall confidence
|
|
113
|
-
*/
|
|
114
|
-
private calculateOverallConfidence;
|
|
115
|
-
/**
|
|
116
|
-
* Get constraints applied during classification
|
|
117
|
-
*/
|
|
118
|
-
private getAppliedConstraints;
|
|
119
|
-
/**
|
|
120
|
-
* Classify error for proper error code
|
|
121
|
-
*/
|
|
122
|
-
private classifyError;
|
|
123
|
-
}
|