@llm-dev-ops/agentics-cli 1.4.52 → 1.4.54
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/bundled-agents/connector-hub-agents/package-lock.json +11697 -0
- package/dist/bundled-agents/connector-hub-agents/package.json +75 -0
- package/dist/bundled-agents/connector-hub-agents/tsconfig.build.json +22 -0
- package/dist/bundled-agents/connector-hub-agents/tsconfig.json +57 -0
- package/dist/bundled-agents/copilot-agents/functions/.gcloudignore +17 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/cors.d.ts +14 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/cors.js +35 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/cors.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/envelope.d.ts +55 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/envelope.js +40 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/envelope.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/health.d.ts +22 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/health.js +38 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/health.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/index.d.ts +34 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/index.js +186 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/router.d.ts +36 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/router.js +121 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/functions/src/router.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/config-validation-agent.d.ts +157 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/config-validation-agent.js +948 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/config-validation-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/index.d.ts +9 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/index.js +27 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/config-validation/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/agent-span-wrapper.d.ts +23 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/agent-span-wrapper.js +50 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/agent-span-wrapper.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/base-agent.d.ts +214 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/base-agent.js +91 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/base-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/config-validation-schemas.d.ts +1166 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/config-validation-schemas.js +308 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/config-validation-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decision-event.d.ts +59 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decision-event.js +62 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decision-event.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decomposer-schemas.d.ts +400 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decomposer-schemas.js +113 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/decomposer-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/execution-graph.d.ts +250 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/execution-graph.js +169 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/execution-graph.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/index.d.ts +17 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/index.js +97 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intelligence-schemas.d.ts +1674 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intelligence-schemas.js +246 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intelligence-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intent-classifier-schemas.d.ts +1085 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intent-classifier-schemas.js +218 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/intent-classifier-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/meta-reasoner-schemas.d.ts +949 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/meta-reasoner-schemas.js +253 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/meta-reasoner-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/objective-clarifier-schemas.d.ts +657 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/objective-clarifier-schemas.js +205 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/objective-clarifier-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/pipeline-schemas.d.ts +285 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/pipeline-schemas.js +106 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/pipeline-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/planner-schemas.d.ts +581 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/planner-schemas.js +136 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/planner-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/reflection-schemas.d.ts +791 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/reflection-schemas.js +225 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/contracts/reflection-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/decomposer-agent.d.ts +120 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/decomposer-agent.js +535 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/decomposer-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/index.d.ts +9 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/index.js +18 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/decomposer/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/index.d.ts +4 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/index.js +9 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/intent-classifier-agent.d.ts +123 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/intent-classifier-agent.js +609 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/intent-classifier/intent-classifier-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/index.d.ts +10 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/index.js +25 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/meta-reasoner-agent.d.ts +111 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/meta-reasoner-agent.js +686 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/meta-reasoner-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/telemetry.d.ts +11 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/telemetry.js +25 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/meta-reasoner/telemetry.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/index.d.ts +6 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/index.js +15 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/objective-clarifier-agent.d.ts +126 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/objective-clarifier-agent.js +780 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/objective-clarifier-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/ruvector-persistence.d.ts +49 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/ruvector-persistence.js +125 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/ruvector-persistence.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/telemetry.d.ts +73 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/telemetry.js +192 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/objective-clarifier/telemetry.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/index.d.ts +11 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/index.js +25 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/planner-agent.d.ts +127 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/planner-agent.js +483 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/planner-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/ruvector-persistence.d.ts +49 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/ruvector-persistence.js +125 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/ruvector-persistence.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/telemetry.d.ts +73 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/telemetry.js +192 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/planner/telemetry.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/index.d.ts +11 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/index.js +27 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/reflection-agent.d.ts +122 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/reflection-agent.js +645 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/reflection-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/ruvector-persistence.d.ts +59 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/ruvector-persistence.js +156 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/ruvector-persistence.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/telemetry.d.ts +88 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/telemetry.js +246 -0
- package/dist/bundled-agents/copilot-agents/functions/dist/services/agents/reflection/telemetry.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/index.js +4 -0
- package/dist/bundled-agents/copilot-agents/functions/jest.config.js +29 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/cors.d.ts +14 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/cors.js +35 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/cors.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/envelope.d.ts +27 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/envelope.js +21 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/envelope.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/health.d.ts +22 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/health.js +38 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/health.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/index.d.ts +34 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/index.js +174 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/router.d.ts +27 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/router.js +107 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/functions/src/router.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/config-validation-agent.d.ts +157 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/config-validation-agent.js +941 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/config-validation-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/index.d.ts +9 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/index.js +27 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/config-validation/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/agent-span-wrapper.d.ts +23 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/agent-span-wrapper.js +50 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/agent-span-wrapper.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/base-agent.d.ts +185 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/base-agent.js +86 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/base-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/config-validation-schemas.d.ts +1081 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/config-validation-schemas.js +305 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/config-validation-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decision-event.d.ts +59 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decision-event.js +62 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decision-event.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decomposer-schemas.d.ts +315 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decomposer-schemas.js +110 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/decomposer-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/execution-graph.d.ts +250 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/execution-graph.js +169 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/execution-graph.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/index.d.ts +16 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/index.js +88 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intelligence-schemas.d.ts +1674 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intelligence-schemas.js +246 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intelligence-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intent-classifier-schemas.d.ts +1000 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intent-classifier-schemas.js +215 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/intent-classifier-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/meta-reasoner-schemas.d.ts +864 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/meta-reasoner-schemas.js +250 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/meta-reasoner-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/objective-clarifier-schemas.d.ts +572 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/objective-clarifier-schemas.js +202 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/objective-clarifier-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/planner-schemas.d.ts +496 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/planner-schemas.js +133 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/planner-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/reflection-schemas.d.ts +706 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/reflection-schemas.js +222 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/contracts/reflection-schemas.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/decomposer-agent.d.ts +107 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/decomposer-agent.js +360 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/decomposer-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.d.ts +9 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.js +18 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/decomposer/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/index.d.ts +4 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/index.js +9 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/intent-classifier-agent.d.ts +123 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/intent-classifier-agent.js +609 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/intent-classifier/intent-classifier-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/index.d.ts +10 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/index.js +25 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/meta-reasoner-agent.d.ts +111 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/meta-reasoner-agent.js +686 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/meta-reasoner-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/telemetry.d.ts +11 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/telemetry.js +25 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/meta-reasoner/telemetry.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/index.d.ts +6 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/index.js +15 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/objective-clarifier-agent.d.ts +126 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/objective-clarifier-agent.js +780 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/objective-clarifier-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/ruvector-persistence.d.ts +49 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/ruvector-persistence.js +125 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/ruvector-persistence.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/telemetry.d.ts +73 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/telemetry.js +192 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/objective-clarifier/telemetry.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/index.d.ts +11 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/index.js +25 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/planner-agent.d.ts +119 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/planner-agent.js +421 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/planner-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/ruvector-persistence.d.ts +49 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/ruvector-persistence.js +125 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/ruvector-persistence.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/telemetry.d.ts +73 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/telemetry.js +192 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/planner/telemetry.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/index.d.ts +11 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/index.js +27 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/index.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/reflection-agent.d.ts +122 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/reflection-agent.js +645 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/reflection-agent.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/ruvector-persistence.d.ts +59 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/ruvector-persistence.js +156 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/ruvector-persistence.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/telemetry.d.ts +88 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/telemetry.js +246 -0
- package/dist/bundled-agents/copilot-agents/functions/lib/services/agents/reflection/telemetry.js.map +1 -0
- package/dist/bundled-agents/copilot-agents/functions/package-lock.json +5473 -0
- package/dist/bundled-agents/copilot-agents/functions/package.json +40 -0
- package/dist/bundled-agents/copilot-agents/functions/src/claude.ts +71 -0
- package/dist/bundled-agents/copilot-agents/functions/src/cors.ts +36 -0
- package/dist/bundled-agents/copilot-agents/functions/src/envelope.ts +77 -0
- package/dist/bundled-agents/copilot-agents/functions/src/handler.test.ts +340 -0
- package/dist/bundled-agents/copilot-agents/functions/src/health.ts +53 -0
- package/dist/bundled-agents/copilot-agents/functions/src/index.ts +201 -0
- package/dist/bundled-agents/copilot-agents/functions/src/router.ts +148 -0
- package/dist/bundled-agents/copilot-agents/functions/tsconfig.json +31 -0
- package/dist/bundled-agents/copilot-agents/package-lock.json +11825 -0
- package/dist/bundled-agents/copilot-agents/package.json +5 -0
- package/dist/bundled-agents/governance-dashboard-agents/package-lock.json +8282 -0
- package/dist/bundled-agents/governance-dashboard-agents/package.json +13 -0
- package/dist/bundled-agents/orchestrator-agents/functions/contracts/index.js +590 -0
- package/dist/bundled-agents/orchestrator-agents/functions/index.js +442 -0
- package/dist/bundled-agents/orchestrator-agents/functions/test.js +325 -0
- package/dist/bundled-agents/orchestrator-agents/index.js +6 -0
- package/dist/bundled-agents/orchestrator-agents/package-lock.json +13254 -0
- package/dist/bundled-agents/orchestrator-agents/package.json +20 -0
- package/dist/bundled-agents/platform-agents/package-lock.json +1723 -0
- package/dist/bundled-agents/platform-agents/package.json +22 -0
- package/dist/bundled-agents/platform-agents/src/agents/decision-memo.ts +463 -0
- package/dist/bundled-agents/platform-agents/src/agents/decision.ts +234 -0
- package/dist/bundled-agents/platform-agents/src/agents/executive-summary.ts +229 -0
- package/dist/bundled-agents/platform-agents/src/agents/risk-score.ts +327 -0
- package/dist/bundled-agents/platform-agents/src/claude.ts +71 -0
- package/dist/bundled-agents/platform-agents/src/cors.ts +24 -0
- package/dist/bundled-agents/platform-agents/src/envelope.ts +37 -0
- package/dist/bundled-agents/platform-agents/src/health.ts +20 -0
- package/dist/bundled-agents/platform-agents/src/index.ts +171 -0
- package/dist/bundled-agents/platform-agents/src/router.ts +38 -0
- package/dist/bundled-agents/platform-agents/src/text-analysis.ts +238 -0
- package/dist/bundled-agents/platform-agents/tsconfig.json +19 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/alert.d.ts +3 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/alert.d.ts.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/alert.js +43 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/alert.js.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/anomaly.d.ts +3 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/anomaly.d.ts.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/anomaly.js +30 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/anomaly.js.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/correlation.d.ts +3 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/correlation.d.ts.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/correlation.js +53 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/correlation.js.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/drift.d.ts +3 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/drift.d.ts.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/drift.js +51 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/drift.js.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/rca.d.ts +3 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/rca.d.ts.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/rca.js +36 -0
- package/dist/bundled-agents/sentinel-agents/lib/agents/rca.js.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/index.d.ts +2 -0
- package/dist/bundled-agents/sentinel-agents/lib/index.d.ts.map +1 -0
- package/dist/bundled-agents/sentinel-agents/lib/index.js +70 -0
- package/dist/bundled-agents/sentinel-agents/lib/index.js.map +1 -0
- package/dist/bundled-agents/sentinel-agents/package-lock.json +12591 -0
- package/dist/bundled-agents/sentinel-agents/package.json +62 -0
- package/dist/bundled-agents/sentinel-agents/src/agents/alert.ts +46 -0
- package/dist/bundled-agents/sentinel-agents/src/agents/anomaly.ts +33 -0
- package/dist/bundled-agents/sentinel-agents/src/agents/correlation.ts +56 -0
- package/dist/bundled-agents/sentinel-agents/src/agents/drift.ts +54 -0
- package/dist/bundled-agents/sentinel-agents/src/agents/rca.ts +38 -0
- package/dist/bundled-agents/sentinel-agents/src/claude.ts +71 -0
- package/dist/bundled-agents/sentinel-agents/src/index.ts +77 -0
- package/dist/bundled-agents/sentinel-agents/tsconfig.json +20 -0
- package/dist/pipeline/auto-chain.d.ts.map +1 -1
- package/dist/pipeline/auto-chain.js +52 -0
- package/dist/pipeline/auto-chain.js.map +1 -1
- package/dist/pipeline/phase2/phases/ddd-generator.d.ts.map +1 -1
- package/dist/pipeline/phase2/phases/ddd-generator.js +15 -1
- package/dist/pipeline/phase2/phases/ddd-generator.js.map +1 -1
- package/dist/pipeline/phase2/phases/sparc-specification.d.ts.map +1 -1
- package/dist/pipeline/phase2/phases/sparc-specification.js +9 -0
- package/dist/pipeline/phase2/phases/sparc-specification.js.map +1 -1
- package/dist/pipeline/phase3/phases/domain-codegen.d.ts.map +1 -1
- package/dist/pipeline/phase3/phases/domain-codegen.js +41 -0
- package/dist/pipeline/phase3/phases/domain-codegen.js.map +1 -1
- package/dist/pipeline/ruflo-phase-executor.d.ts.map +1 -1
- package/dist/pipeline/ruflo-phase-executor.js +109 -19
- package/dist/pipeline/ruflo-phase-executor.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,400 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Decomposer Agent Schemas
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Decompose complex objectives into manageable sub-objectives
|
|
5
|
+
* Classification: DECOMPOSITION, STRUCTURAL_SYNTHESIS
|
|
6
|
+
* decision_type: objective_decomposition
|
|
7
|
+
*
|
|
8
|
+
* Scope:
|
|
9
|
+
* - Break complex objectives into sub-objectives
|
|
10
|
+
* - Identify sub-objective relationships
|
|
11
|
+
* - Assess decomposition completeness
|
|
12
|
+
*
|
|
13
|
+
* Must Never:
|
|
14
|
+
* - Execute sub-objectives
|
|
15
|
+
* - Assign agents
|
|
16
|
+
* - Allocate resources
|
|
17
|
+
* - Schedule execution
|
|
18
|
+
*/
|
|
19
|
+
import { z } from 'zod';
|
|
20
|
+
/**
|
|
21
|
+
* A single sub-objective produced by decomposition
|
|
22
|
+
*/
|
|
23
|
+
export declare const SubObjectiveSchema: z.ZodObject<{
|
|
24
|
+
/** Unique identifier for this sub-objective */
|
|
25
|
+
sub_objective_id: z.ZodString;
|
|
26
|
+
/** Human-readable title */
|
|
27
|
+
title: z.ZodString;
|
|
28
|
+
/** Detailed description of the sub-objective */
|
|
29
|
+
description: z.ZodString;
|
|
30
|
+
/** Parent sub-objective ID (null for top-level) */
|
|
31
|
+
parent_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
32
|
+
/** Depth level in the decomposition tree (0 = top-level) */
|
|
33
|
+
depth: z.ZodNumber;
|
|
34
|
+
/** Dependencies on other sub-objectives */
|
|
35
|
+
dependencies: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
36
|
+
depends_on: z.ZodString;
|
|
37
|
+
type: z.ZodEnum<["blocking", "data", "sequential"]>;
|
|
38
|
+
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
type: "data" | "blocking" | "sequential";
|
|
40
|
+
depends_on: string;
|
|
41
|
+
}, {
|
|
42
|
+
type: "data" | "blocking" | "sequential";
|
|
43
|
+
depends_on: string;
|
|
44
|
+
}>, "many">>;
|
|
45
|
+
/** Classification tags */
|
|
46
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
47
|
+
/** Estimated complexity */
|
|
48
|
+
complexity: z.ZodDefault<z.ZodEnum<["trivial", "simple", "moderate", "complex", "very_complex"]>>;
|
|
49
|
+
/** Whether this sub-objective can be further decomposed */
|
|
50
|
+
is_atomic: z.ZodDefault<z.ZodBoolean>;
|
|
51
|
+
/** Acceptance criteria for this sub-objective */
|
|
52
|
+
acceptance_criteria: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
53
|
+
}, "strip", z.ZodTypeAny, {
|
|
54
|
+
description: string;
|
|
55
|
+
dependencies: {
|
|
56
|
+
type: "data" | "blocking" | "sequential";
|
|
57
|
+
depends_on: string;
|
|
58
|
+
}[];
|
|
59
|
+
tags: string[];
|
|
60
|
+
title: string;
|
|
61
|
+
complexity: "simple" | "moderate" | "complex" | "very_complex" | "trivial";
|
|
62
|
+
sub_objective_id: string;
|
|
63
|
+
parent_id: string | null;
|
|
64
|
+
depth: number;
|
|
65
|
+
is_atomic: boolean;
|
|
66
|
+
acceptance_criteria: string[];
|
|
67
|
+
}, {
|
|
68
|
+
description: string;
|
|
69
|
+
title: string;
|
|
70
|
+
sub_objective_id: string;
|
|
71
|
+
depth: number;
|
|
72
|
+
dependencies?: {
|
|
73
|
+
type: "data" | "blocking" | "sequential";
|
|
74
|
+
depends_on: string;
|
|
75
|
+
}[] | undefined;
|
|
76
|
+
tags?: string[] | undefined;
|
|
77
|
+
complexity?: "simple" | "moderate" | "complex" | "very_complex" | "trivial" | undefined;
|
|
78
|
+
parent_id?: string | null | undefined;
|
|
79
|
+
is_atomic?: boolean | undefined;
|
|
80
|
+
acceptance_criteria?: string[] | undefined;
|
|
81
|
+
}>;
|
|
82
|
+
export type SubObjective = z.infer<typeof SubObjectiveSchema>;
|
|
83
|
+
/**
|
|
84
|
+
* Decomposer Agent Input Schema
|
|
85
|
+
*/
|
|
86
|
+
export declare const DecomposerInputSchema: z.ZodObject<{
|
|
87
|
+
/** The complex objective to decompose */
|
|
88
|
+
objective: z.ZodString;
|
|
89
|
+
/** Optional context to aid decomposition */
|
|
90
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
91
|
+
/** Domain/industry context */
|
|
92
|
+
domain: z.ZodOptional<z.ZodString>;
|
|
93
|
+
/** Existing components or systems */
|
|
94
|
+
existing_components: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
95
|
+
/** Known constraints */
|
|
96
|
+
constraints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
97
|
+
/** Maximum decomposition depth */
|
|
98
|
+
max_depth: z.ZodOptional<z.ZodNumber>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
domain?: string | undefined;
|
|
101
|
+
constraints?: string[] | undefined;
|
|
102
|
+
existing_components?: string[] | undefined;
|
|
103
|
+
max_depth?: number | undefined;
|
|
104
|
+
}, {
|
|
105
|
+
domain?: string | undefined;
|
|
106
|
+
constraints?: string[] | undefined;
|
|
107
|
+
existing_components?: string[] | undefined;
|
|
108
|
+
max_depth?: number | undefined;
|
|
109
|
+
}>>;
|
|
110
|
+
/** Configuration for decomposition */
|
|
111
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
112
|
+
/** Target granularity for leaf sub-objectives */
|
|
113
|
+
target_granularity: z.ZodOptional<z.ZodEnum<["coarse", "medium", "fine"]>>;
|
|
114
|
+
/** Maximum number of sub-objectives to produce */
|
|
115
|
+
max_sub_objectives: z.ZodOptional<z.ZodNumber>;
|
|
116
|
+
}, "strip", z.ZodTypeAny, {
|
|
117
|
+
target_granularity?: "medium" | "coarse" | "fine" | undefined;
|
|
118
|
+
max_sub_objectives?: number | undefined;
|
|
119
|
+
}, {
|
|
120
|
+
target_granularity?: "medium" | "coarse" | "fine" | undefined;
|
|
121
|
+
max_sub_objectives?: number | undefined;
|
|
122
|
+
}>>;
|
|
123
|
+
/** Request ID for tracing */
|
|
124
|
+
request_id: z.ZodOptional<z.ZodString>;
|
|
125
|
+
/** Optional pipeline context for multi-agent orchestration */
|
|
126
|
+
pipeline_context: z.ZodOptional<z.ZodObject<{
|
|
127
|
+
plan_id: z.ZodString;
|
|
128
|
+
step_id: z.ZodString;
|
|
129
|
+
previous_steps: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
130
|
+
step_id: z.ZodString;
|
|
131
|
+
domain: z.ZodString;
|
|
132
|
+
agent: z.ZodString;
|
|
133
|
+
output: z.ZodOptional<z.ZodUnknown>;
|
|
134
|
+
}, "strip", z.ZodTypeAny, {
|
|
135
|
+
step_id: string;
|
|
136
|
+
domain: string;
|
|
137
|
+
agent: string;
|
|
138
|
+
output?: unknown;
|
|
139
|
+
}, {
|
|
140
|
+
step_id: string;
|
|
141
|
+
domain: string;
|
|
142
|
+
agent: string;
|
|
143
|
+
output?: unknown;
|
|
144
|
+
}>, "many">>;
|
|
145
|
+
execution_metadata: z.ZodOptional<z.ZodObject<{
|
|
146
|
+
trace_id: z.ZodString;
|
|
147
|
+
initiated_by: z.ZodString;
|
|
148
|
+
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
trace_id: string;
|
|
150
|
+
initiated_by: string;
|
|
151
|
+
}, {
|
|
152
|
+
trace_id: string;
|
|
153
|
+
initiated_by: string;
|
|
154
|
+
}>>;
|
|
155
|
+
}, "strip", z.ZodTypeAny, {
|
|
156
|
+
step_id: string;
|
|
157
|
+
plan_id: string;
|
|
158
|
+
previous_steps: {
|
|
159
|
+
step_id: string;
|
|
160
|
+
domain: string;
|
|
161
|
+
agent: string;
|
|
162
|
+
output?: unknown;
|
|
163
|
+
}[];
|
|
164
|
+
execution_metadata?: {
|
|
165
|
+
trace_id: string;
|
|
166
|
+
initiated_by: string;
|
|
167
|
+
} | undefined;
|
|
168
|
+
}, {
|
|
169
|
+
step_id: string;
|
|
170
|
+
plan_id: string;
|
|
171
|
+
previous_steps?: {
|
|
172
|
+
step_id: string;
|
|
173
|
+
domain: string;
|
|
174
|
+
agent: string;
|
|
175
|
+
output?: unknown;
|
|
176
|
+
}[] | undefined;
|
|
177
|
+
execution_metadata?: {
|
|
178
|
+
trace_id: string;
|
|
179
|
+
initiated_by: string;
|
|
180
|
+
} | undefined;
|
|
181
|
+
}>>;
|
|
182
|
+
}, "strip", z.ZodTypeAny, {
|
|
183
|
+
objective: string;
|
|
184
|
+
config?: {
|
|
185
|
+
target_granularity?: "medium" | "coarse" | "fine" | undefined;
|
|
186
|
+
max_sub_objectives?: number | undefined;
|
|
187
|
+
} | undefined;
|
|
188
|
+
context?: {
|
|
189
|
+
domain?: string | undefined;
|
|
190
|
+
constraints?: string[] | undefined;
|
|
191
|
+
existing_components?: string[] | undefined;
|
|
192
|
+
max_depth?: number | undefined;
|
|
193
|
+
} | undefined;
|
|
194
|
+
request_id?: string | undefined;
|
|
195
|
+
pipeline_context?: {
|
|
196
|
+
step_id: string;
|
|
197
|
+
plan_id: string;
|
|
198
|
+
previous_steps: {
|
|
199
|
+
step_id: string;
|
|
200
|
+
domain: string;
|
|
201
|
+
agent: string;
|
|
202
|
+
output?: unknown;
|
|
203
|
+
}[];
|
|
204
|
+
execution_metadata?: {
|
|
205
|
+
trace_id: string;
|
|
206
|
+
initiated_by: string;
|
|
207
|
+
} | undefined;
|
|
208
|
+
} | undefined;
|
|
209
|
+
}, {
|
|
210
|
+
objective: string;
|
|
211
|
+
config?: {
|
|
212
|
+
target_granularity?: "medium" | "coarse" | "fine" | undefined;
|
|
213
|
+
max_sub_objectives?: number | undefined;
|
|
214
|
+
} | undefined;
|
|
215
|
+
context?: {
|
|
216
|
+
domain?: string | undefined;
|
|
217
|
+
constraints?: string[] | undefined;
|
|
218
|
+
existing_components?: string[] | undefined;
|
|
219
|
+
max_depth?: number | undefined;
|
|
220
|
+
} | undefined;
|
|
221
|
+
request_id?: string | undefined;
|
|
222
|
+
pipeline_context?: {
|
|
223
|
+
step_id: string;
|
|
224
|
+
plan_id: string;
|
|
225
|
+
previous_steps?: {
|
|
226
|
+
step_id: string;
|
|
227
|
+
domain: string;
|
|
228
|
+
agent: string;
|
|
229
|
+
output?: unknown;
|
|
230
|
+
}[] | undefined;
|
|
231
|
+
execution_metadata?: {
|
|
232
|
+
trace_id: string;
|
|
233
|
+
initiated_by: string;
|
|
234
|
+
} | undefined;
|
|
235
|
+
} | undefined;
|
|
236
|
+
}>;
|
|
237
|
+
export type DecomposerInput = z.infer<typeof DecomposerInputSchema>;
|
|
238
|
+
/**
|
|
239
|
+
* Decomposer Agent Output Schema
|
|
240
|
+
*/
|
|
241
|
+
export declare const DecomposerOutputSchema: z.ZodObject<{
|
|
242
|
+
/** Unique decomposition identifier */
|
|
243
|
+
decomposition_id: z.ZodString;
|
|
244
|
+
/** Original objective (echoed for verification) */
|
|
245
|
+
original_objective: z.ZodString;
|
|
246
|
+
/** List of sub-objectives produced */
|
|
247
|
+
sub_objectives: z.ZodArray<z.ZodObject<{
|
|
248
|
+
/** Unique identifier for this sub-objective */
|
|
249
|
+
sub_objective_id: z.ZodString;
|
|
250
|
+
/** Human-readable title */
|
|
251
|
+
title: z.ZodString;
|
|
252
|
+
/** Detailed description of the sub-objective */
|
|
253
|
+
description: z.ZodString;
|
|
254
|
+
/** Parent sub-objective ID (null for top-level) */
|
|
255
|
+
parent_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
256
|
+
/** Depth level in the decomposition tree (0 = top-level) */
|
|
257
|
+
depth: z.ZodNumber;
|
|
258
|
+
/** Dependencies on other sub-objectives */
|
|
259
|
+
dependencies: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
260
|
+
depends_on: z.ZodString;
|
|
261
|
+
type: z.ZodEnum<["blocking", "data", "sequential"]>;
|
|
262
|
+
}, "strip", z.ZodTypeAny, {
|
|
263
|
+
type: "data" | "blocking" | "sequential";
|
|
264
|
+
depends_on: string;
|
|
265
|
+
}, {
|
|
266
|
+
type: "data" | "blocking" | "sequential";
|
|
267
|
+
depends_on: string;
|
|
268
|
+
}>, "many">>;
|
|
269
|
+
/** Classification tags */
|
|
270
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
271
|
+
/** Estimated complexity */
|
|
272
|
+
complexity: z.ZodDefault<z.ZodEnum<["trivial", "simple", "moderate", "complex", "very_complex"]>>;
|
|
273
|
+
/** Whether this sub-objective can be further decomposed */
|
|
274
|
+
is_atomic: z.ZodDefault<z.ZodBoolean>;
|
|
275
|
+
/** Acceptance criteria for this sub-objective */
|
|
276
|
+
acceptance_criteria: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
277
|
+
}, "strip", z.ZodTypeAny, {
|
|
278
|
+
description: string;
|
|
279
|
+
dependencies: {
|
|
280
|
+
type: "data" | "blocking" | "sequential";
|
|
281
|
+
depends_on: string;
|
|
282
|
+
}[];
|
|
283
|
+
tags: string[];
|
|
284
|
+
title: string;
|
|
285
|
+
complexity: "simple" | "moderate" | "complex" | "very_complex" | "trivial";
|
|
286
|
+
sub_objective_id: string;
|
|
287
|
+
parent_id: string | null;
|
|
288
|
+
depth: number;
|
|
289
|
+
is_atomic: boolean;
|
|
290
|
+
acceptance_criteria: string[];
|
|
291
|
+
}, {
|
|
292
|
+
description: string;
|
|
293
|
+
title: string;
|
|
294
|
+
sub_objective_id: string;
|
|
295
|
+
depth: number;
|
|
296
|
+
dependencies?: {
|
|
297
|
+
type: "data" | "blocking" | "sequential";
|
|
298
|
+
depends_on: string;
|
|
299
|
+
}[] | undefined;
|
|
300
|
+
tags?: string[] | undefined;
|
|
301
|
+
complexity?: "simple" | "moderate" | "complex" | "very_complex" | "trivial" | undefined;
|
|
302
|
+
parent_id?: string | null | undefined;
|
|
303
|
+
is_atomic?: boolean | undefined;
|
|
304
|
+
acceptance_criteria?: string[] | undefined;
|
|
305
|
+
}>, "many">;
|
|
306
|
+
/** Tree structure as adjacency list (parent -> children) */
|
|
307
|
+
tree_structure: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
308
|
+
/** Dependency graph as adjacency list */
|
|
309
|
+
dependency_graph: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
310
|
+
/** Analysis metadata */
|
|
311
|
+
analysis: z.ZodObject<{
|
|
312
|
+
/** Total number of sub-objectives */
|
|
313
|
+
total_sub_objectives: z.ZodNumber;
|
|
314
|
+
/** Maximum decomposition depth reached */
|
|
315
|
+
max_depth_reached: z.ZodNumber;
|
|
316
|
+
/** Number of atomic (leaf) sub-objectives */
|
|
317
|
+
atomic_count: z.ZodNumber;
|
|
318
|
+
/** Coverage assessment */
|
|
319
|
+
coverage_score: z.ZodNumber;
|
|
320
|
+
/** Complexity distribution */
|
|
321
|
+
complexity_distribution: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
322
|
+
/** Assumptions made during decomposition */
|
|
323
|
+
assumptions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
324
|
+
}, "strip", z.ZodTypeAny, {
|
|
325
|
+
assumptions: string[];
|
|
326
|
+
total_sub_objectives: number;
|
|
327
|
+
max_depth_reached: number;
|
|
328
|
+
atomic_count: number;
|
|
329
|
+
coverage_score: number;
|
|
330
|
+
complexity_distribution: Record<string, number>;
|
|
331
|
+
}, {
|
|
332
|
+
total_sub_objectives: number;
|
|
333
|
+
max_depth_reached: number;
|
|
334
|
+
atomic_count: number;
|
|
335
|
+
coverage_score: number;
|
|
336
|
+
complexity_distribution: Record<string, number>;
|
|
337
|
+
assumptions?: string[] | undefined;
|
|
338
|
+
}>;
|
|
339
|
+
/** Decomposition version */
|
|
340
|
+
version: z.ZodDefault<z.ZodString>;
|
|
341
|
+
}, "strip", z.ZodTypeAny, {
|
|
342
|
+
version: string;
|
|
343
|
+
dependency_graph: Record<string, string[]>;
|
|
344
|
+
analysis: {
|
|
345
|
+
assumptions: string[];
|
|
346
|
+
total_sub_objectives: number;
|
|
347
|
+
max_depth_reached: number;
|
|
348
|
+
atomic_count: number;
|
|
349
|
+
coverage_score: number;
|
|
350
|
+
complexity_distribution: Record<string, number>;
|
|
351
|
+
};
|
|
352
|
+
original_objective: string;
|
|
353
|
+
decomposition_id: string;
|
|
354
|
+
sub_objectives: {
|
|
355
|
+
description: string;
|
|
356
|
+
dependencies: {
|
|
357
|
+
type: "data" | "blocking" | "sequential";
|
|
358
|
+
depends_on: string;
|
|
359
|
+
}[];
|
|
360
|
+
tags: string[];
|
|
361
|
+
title: string;
|
|
362
|
+
complexity: "simple" | "moderate" | "complex" | "very_complex" | "trivial";
|
|
363
|
+
sub_objective_id: string;
|
|
364
|
+
parent_id: string | null;
|
|
365
|
+
depth: number;
|
|
366
|
+
is_atomic: boolean;
|
|
367
|
+
acceptance_criteria: string[];
|
|
368
|
+
}[];
|
|
369
|
+
tree_structure: Record<string, string[]>;
|
|
370
|
+
}, {
|
|
371
|
+
dependency_graph: Record<string, string[]>;
|
|
372
|
+
analysis: {
|
|
373
|
+
total_sub_objectives: number;
|
|
374
|
+
max_depth_reached: number;
|
|
375
|
+
atomic_count: number;
|
|
376
|
+
coverage_score: number;
|
|
377
|
+
complexity_distribution: Record<string, number>;
|
|
378
|
+
assumptions?: string[] | undefined;
|
|
379
|
+
};
|
|
380
|
+
original_objective: string;
|
|
381
|
+
decomposition_id: string;
|
|
382
|
+
sub_objectives: {
|
|
383
|
+
description: string;
|
|
384
|
+
title: string;
|
|
385
|
+
sub_objective_id: string;
|
|
386
|
+
depth: number;
|
|
387
|
+
dependencies?: {
|
|
388
|
+
type: "data" | "blocking" | "sequential";
|
|
389
|
+
depends_on: string;
|
|
390
|
+
}[] | undefined;
|
|
391
|
+
tags?: string[] | undefined;
|
|
392
|
+
complexity?: "simple" | "moderate" | "complex" | "very_complex" | "trivial" | undefined;
|
|
393
|
+
parent_id?: string | null | undefined;
|
|
394
|
+
is_atomic?: boolean | undefined;
|
|
395
|
+
acceptance_criteria?: string[] | undefined;
|
|
396
|
+
}[];
|
|
397
|
+
tree_structure: Record<string, string[]>;
|
|
398
|
+
version?: string | undefined;
|
|
399
|
+
}>;
|
|
400
|
+
export type DecomposerOutput = z.infer<typeof DecomposerOutputSchema>;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Decomposer Agent Schemas
|
|
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
|
+
* Must Never:
|
|
15
|
+
* - Execute sub-objectives
|
|
16
|
+
* - Assign agents
|
|
17
|
+
* - Allocate resources
|
|
18
|
+
* - Schedule execution
|
|
19
|
+
*/
|
|
20
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
+
exports.DecomposerOutputSchema = exports.DecomposerInputSchema = exports.SubObjectiveSchema = void 0;
|
|
22
|
+
const zod_1 = require("zod");
|
|
23
|
+
const pipeline_schemas_1 = require("./pipeline-schemas");
|
|
24
|
+
/**
|
|
25
|
+
* A single sub-objective produced by decomposition
|
|
26
|
+
*/
|
|
27
|
+
exports.SubObjectiveSchema = zod_1.z.object({
|
|
28
|
+
/** Unique identifier for this sub-objective */
|
|
29
|
+
sub_objective_id: zod_1.z.string().min(1),
|
|
30
|
+
/** Human-readable title */
|
|
31
|
+
title: zod_1.z.string().min(1).max(200),
|
|
32
|
+
/** Detailed description of the sub-objective */
|
|
33
|
+
description: zod_1.z.string().min(1),
|
|
34
|
+
/** Parent sub-objective ID (null for top-level) */
|
|
35
|
+
parent_id: zod_1.z.string().nullable().default(null),
|
|
36
|
+
/** Depth level in the decomposition tree (0 = top-level) */
|
|
37
|
+
depth: zod_1.z.number().int().nonnegative(),
|
|
38
|
+
/** Dependencies on other sub-objectives */
|
|
39
|
+
dependencies: zod_1.z.array(zod_1.z.object({
|
|
40
|
+
depends_on: zod_1.z.string(),
|
|
41
|
+
type: zod_1.z.enum(['blocking', 'data', 'sequential']),
|
|
42
|
+
})).default([]),
|
|
43
|
+
/** Classification tags */
|
|
44
|
+
tags: zod_1.z.array(zod_1.z.string()).default([]),
|
|
45
|
+
/** Estimated complexity */
|
|
46
|
+
complexity: zod_1.z.enum(['trivial', 'simple', 'moderate', 'complex', 'very_complex']).default('moderate'),
|
|
47
|
+
/** Whether this sub-objective can be further decomposed */
|
|
48
|
+
is_atomic: zod_1.z.boolean().default(false),
|
|
49
|
+
/** Acceptance criteria for this sub-objective */
|
|
50
|
+
acceptance_criteria: zod_1.z.array(zod_1.z.string()).default([]),
|
|
51
|
+
});
|
|
52
|
+
/**
|
|
53
|
+
* Decomposer Agent Input Schema
|
|
54
|
+
*/
|
|
55
|
+
exports.DecomposerInputSchema = zod_1.z.object({
|
|
56
|
+
/** The complex objective to decompose */
|
|
57
|
+
objective: zod_1.z.string().min(1).max(50000),
|
|
58
|
+
/** Optional context to aid decomposition */
|
|
59
|
+
context: zod_1.z.object({
|
|
60
|
+
/** Domain/industry context */
|
|
61
|
+
domain: zod_1.z.string().optional(),
|
|
62
|
+
/** Existing components or systems */
|
|
63
|
+
existing_components: zod_1.z.array(zod_1.z.string()).optional(),
|
|
64
|
+
/** Known constraints */
|
|
65
|
+
constraints: zod_1.z.array(zod_1.z.string()).optional(),
|
|
66
|
+
/** Maximum decomposition depth */
|
|
67
|
+
max_depth: zod_1.z.number().int().positive().max(10).optional(),
|
|
68
|
+
}).optional(),
|
|
69
|
+
/** Configuration for decomposition */
|
|
70
|
+
config: zod_1.z.object({
|
|
71
|
+
/** Target granularity for leaf sub-objectives */
|
|
72
|
+
target_granularity: zod_1.z.enum(['coarse', 'medium', 'fine']).optional(),
|
|
73
|
+
/** Maximum number of sub-objectives to produce */
|
|
74
|
+
max_sub_objectives: zod_1.z.number().int().positive().max(50).optional(),
|
|
75
|
+
}).optional(),
|
|
76
|
+
/** Request ID for tracing */
|
|
77
|
+
request_id: zod_1.z.string().uuid().optional(),
|
|
78
|
+
/** Optional pipeline context for multi-agent orchestration */
|
|
79
|
+
pipeline_context: pipeline_schemas_1.PipelineContextSchema.optional(),
|
|
80
|
+
});
|
|
81
|
+
/**
|
|
82
|
+
* Decomposer Agent Output Schema
|
|
83
|
+
*/
|
|
84
|
+
exports.DecomposerOutputSchema = zod_1.z.object({
|
|
85
|
+
/** Unique decomposition identifier */
|
|
86
|
+
decomposition_id: zod_1.z.string().uuid(),
|
|
87
|
+
/** Original objective (echoed for verification) */
|
|
88
|
+
original_objective: zod_1.z.string(),
|
|
89
|
+
/** List of sub-objectives produced */
|
|
90
|
+
sub_objectives: zod_1.z.array(exports.SubObjectiveSchema).min(1),
|
|
91
|
+
/** Tree structure as adjacency list (parent -> children) */
|
|
92
|
+
tree_structure: zod_1.z.record(zod_1.z.array(zod_1.z.string())),
|
|
93
|
+
/** Dependency graph as adjacency list */
|
|
94
|
+
dependency_graph: zod_1.z.record(zod_1.z.array(zod_1.z.string())),
|
|
95
|
+
/** Analysis metadata */
|
|
96
|
+
analysis: zod_1.z.object({
|
|
97
|
+
/** Total number of sub-objectives */
|
|
98
|
+
total_sub_objectives: zod_1.z.number().int().nonnegative(),
|
|
99
|
+
/** Maximum decomposition depth reached */
|
|
100
|
+
max_depth_reached: zod_1.z.number().int().nonnegative(),
|
|
101
|
+
/** Number of atomic (leaf) sub-objectives */
|
|
102
|
+
atomic_count: zod_1.z.number().int().nonnegative(),
|
|
103
|
+
/** Coverage assessment */
|
|
104
|
+
coverage_score: zod_1.z.number().min(0).max(1),
|
|
105
|
+
/** Complexity distribution */
|
|
106
|
+
complexity_distribution: zod_1.z.record(zod_1.z.number().int().nonnegative()),
|
|
107
|
+
/** Assumptions made during decomposition */
|
|
108
|
+
assumptions: zod_1.z.array(zod_1.z.string()).default([]),
|
|
109
|
+
}),
|
|
110
|
+
/** Decomposition version */
|
|
111
|
+
version: zod_1.z.string().default('1.0.0'),
|
|
112
|
+
});
|
|
113
|
+
//# sourceMappingURL=decomposer-schemas.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"decomposer-schemas.js","sourceRoot":"","sources":["../../../../../services/agents/contracts/decomposer-schemas.ts"],"names":[],"mappings":"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"}
|