codehere 0.1.0 → 0.2.0
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 +51 -25
- package/dist/agents/base.d.ts +107 -0
- package/dist/agents/base.d.ts.map +1 -0
- package/dist/agents/base.js +101 -0
- package/dist/agents/base.js.map +1 -0
- package/dist/agents/orchestrator-model-driven.d.ts +41 -0
- package/dist/agents/orchestrator-model-driven.d.ts.map +1 -0
- package/dist/agents/orchestrator-model-driven.js +141 -0
- package/dist/agents/orchestrator-model-driven.js.map +1 -0
- package/dist/agents/react-orchestrator-agent.d.ts +15 -0
- package/dist/agents/react-orchestrator-agent.d.ts.map +1 -0
- package/dist/agents/react-orchestrator-agent.js +54 -0
- package/dist/agents/react-orchestrator-agent.js.map +1 -0
- package/dist/application/agents/execution-agent.d.ts +68 -0
- package/dist/application/agents/execution-agent.d.ts.map +1 -0
- package/dist/application/agents/execution-agent.js +299 -0
- package/dist/application/agents/execution-agent.js.map +1 -0
- package/dist/application/agents/multi-agent-orchestrator.d.ts +64 -0
- package/dist/application/agents/multi-agent-orchestrator.d.ts.map +1 -0
- package/dist/application/agents/multi-agent-orchestrator.js +209 -0
- package/dist/application/agents/multi-agent-orchestrator.js.map +1 -0
- package/dist/application/agents/planning-agent.d.ts +61 -0
- package/dist/application/agents/planning-agent.d.ts.map +1 -0
- package/dist/application/agents/planning-agent.js +357 -0
- package/dist/application/agents/planning-agent.js.map +1 -0
- package/dist/application/agents/validation-agent.d.ts +64 -0
- package/dist/application/agents/validation-agent.d.ts.map +1 -0
- package/dist/application/agents/validation-agent.js +182 -0
- package/dist/application/agents/validation-agent.js.map +1 -0
- package/dist/application/architectures/plan-and-act.d.ts +94 -0
- package/dist/application/architectures/plan-and-act.d.ts.map +1 -0
- package/dist/application/architectures/plan-and-act.js +242 -0
- package/dist/application/architectures/plan-and-act.js.map +1 -0
- package/dist/application/index.d.ts +12 -0
- package/dist/application/index.d.ts.map +1 -0
- package/dist/application/index.js +12 -0
- package/dist/application/index.js.map +1 -0
- package/dist/application/services/agent-factory.d.ts +9 -0
- package/dist/application/services/agent-factory.d.ts.map +1 -0
- package/dist/application/services/agent-factory.js +28 -0
- package/dist/application/services/agent-factory.js.map +1 -0
- package/dist/application/services/dependency-container.d.ts +140 -0
- package/dist/application/services/dependency-container.d.ts.map +1 -0
- package/dist/application/services/dependency-container.js +402 -0
- package/dist/application/services/dependency-container.js.map +1 -0
- package/dist/application/services/git-context-service.d.ts +30 -0
- package/dist/application/services/git-context-service.d.ts.map +1 -0
- package/dist/application/services/git-context-service.js +83 -0
- package/dist/application/services/git-context-service.js.map +1 -0
- package/dist/application/services/intelligent-router.d.ts +74 -0
- package/dist/application/services/intelligent-router.d.ts.map +1 -0
- package/dist/application/services/intelligent-router.js +711 -0
- package/dist/application/services/intelligent-router.js.map +1 -0
- package/dist/application/services/tool-executor-service.d.ts +14 -0
- package/dist/application/services/tool-executor-service.d.ts.map +1 -0
- package/dist/application/services/tool-executor-service.js +94 -0
- package/dist/application/services/tool-executor-service.js.map +1 -0
- package/dist/application/use-cases/ask-question-use-case.d.ts +36 -0
- package/dist/application/use-cases/ask-question-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/ask-question-use-case.js +150 -0
- package/dist/application/use-cases/ask-question-use-case.js.map +1 -0
- package/dist/application/use-cases/edit-file-use-case.d.ts +76 -0
- package/dist/application/use-cases/edit-file-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/edit-file-use-case.js +685 -0
- package/dist/application/use-cases/edit-file-use-case.js.map +1 -0
- package/dist/application/use-cases/explain-file-use-case.d.ts +21 -0
- package/dist/application/use-cases/explain-file-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/explain-file-use-case.js +50 -0
- package/dist/application/use-cases/explain-file-use-case.js.map +1 -0
- package/dist/application/use-cases/index-codebase-use-case.d.ts +46 -0
- package/dist/application/use-cases/index-codebase-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/index-codebase-use-case.js +113 -0
- package/dist/application/use-cases/index-codebase-use-case.js.map +1 -0
- package/dist/application/use-cases/planning-use-case.d.ts +46 -0
- package/dist/application/use-cases/planning-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/planning-use-case.js +267 -0
- package/dist/application/use-cases/planning-use-case.js.map +1 -0
- package/dist/application/use-cases/react-orchestration-use-case.d.ts +51 -0
- package/dist/application/use-cases/react-orchestration-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/react-orchestration-use-case.js +325 -0
- package/dist/application/use-cases/react-orchestration-use-case.js.map +1 -0
- package/dist/application/use-cases/reflexion-use-case.d.ts +24 -0
- package/dist/application/use-cases/reflexion-use-case.d.ts.map +1 -0
- package/dist/application/use-cases/reflexion-use-case.js +30 -0
- package/dist/application/use-cases/reflexion-use-case.js.map +1 -0
- package/dist/application/workflows/deterministic-workflows.d.ts +61 -0
- package/dist/application/workflows/deterministic-workflows.d.ts.map +1 -0
- package/dist/application/workflows/deterministic-workflows.js +189 -0
- package/dist/application/workflows/deterministic-workflows.js.map +1 -0
- package/dist/cache.d.ts.map +1 -1
- package/dist/cache.js +1 -3
- package/dist/cache.js.map +1 -1
- package/dist/chat.js +10 -10
- package/dist/chat.js.map +1 -1
- package/dist/docs.d.ts.map +1 -1
- package/dist/docs.js +1 -2
- package/dist/docs.js.map +1 -1
- package/dist/domain/entities/code-chunk.d.ts +26 -0
- package/dist/domain/entities/code-chunk.d.ts.map +1 -0
- package/dist/domain/entities/code-chunk.js +6 -0
- package/dist/domain/entities/code-chunk.js.map +1 -0
- package/dist/domain/entities/decision.d.ts +37 -0
- package/dist/domain/entities/decision.d.ts.map +1 -0
- package/dist/domain/entities/decision.js +9 -0
- package/dist/domain/entities/decision.js.map +1 -0
- package/dist/domain/entities/edit.d.ts +35 -0
- package/dist/domain/entities/edit.d.ts.map +1 -0
- package/dist/domain/entities/edit.js +6 -0
- package/dist/domain/entities/edit.js.map +1 -0
- package/dist/domain/entities/knowledge-node.d.ts +83 -0
- package/dist/domain/entities/knowledge-node.d.ts.map +1 -0
- package/dist/domain/entities/knowledge-node.js +9 -0
- package/dist/domain/entities/knowledge-node.js.map +1 -0
- package/dist/domain/entities/knowledge-preservation.d.ts +42 -0
- package/dist/domain/entities/knowledge-preservation.d.ts.map +1 -0
- package/dist/domain/entities/knowledge-preservation.js +10 -0
- package/dist/domain/entities/knowledge-preservation.js.map +1 -0
- package/dist/domain/entities/memory.d.ts +36 -0
- package/dist/domain/entities/memory.d.ts.map +1 -0
- package/dist/domain/entities/memory.js +6 -0
- package/dist/domain/entities/memory.js.map +1 -0
- package/dist/domain/entities/pattern.d.ts +49 -0
- package/dist/domain/entities/pattern.d.ts.map +1 -0
- package/dist/domain/entities/pattern.js +7 -0
- package/dist/domain/entities/pattern.js.map +1 -0
- package/dist/domain/entities/plan.d.ts +42 -0
- package/dist/domain/entities/plan.d.ts.map +1 -0
- package/dist/domain/entities/plan.js +6 -0
- package/dist/domain/entities/plan.js.map +1 -0
- package/dist/domain/entities/query.d.ts +17 -0
- package/dist/domain/entities/query.d.ts.map +1 -0
- package/dist/domain/entities/query.js +6 -0
- package/dist/domain/entities/query.js.map +1 -0
- package/dist/domain/index.d.ts +16 -0
- package/dist/domain/index.d.ts.map +1 -0
- package/dist/domain/index.js +19 -0
- package/dist/domain/index.js.map +1 -0
- package/dist/domain/interfaces/ai-service.interface.d.ts +62 -0
- package/dist/domain/interfaces/ai-service.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/ai-service.interface.js +6 -0
- package/dist/domain/interfaces/ai-service.interface.js.map +1 -0
- package/dist/domain/interfaces/code-analyzer.interface.d.ts +38 -0
- package/dist/domain/interfaces/code-analyzer.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/code-analyzer.interface.js +6 -0
- package/dist/domain/interfaces/code-analyzer.interface.js.map +1 -0
- package/dist/domain/interfaces/decision-repository.interface.d.ts +51 -0
- package/dist/domain/interfaces/decision-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/decision-repository.interface.js +9 -0
- package/dist/domain/interfaces/decision-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/embedding-repository.interface.d.ts +28 -0
- package/dist/domain/interfaces/embedding-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/embedding-repository.interface.js +6 -0
- package/dist/domain/interfaces/embedding-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/knowledge-graph-repository.interface.d.ts +91 -0
- package/dist/domain/interfaces/knowledge-graph-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/knowledge-graph-repository.interface.js +9 -0
- package/dist/domain/interfaces/knowledge-graph-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/knowledge-preservation-repository.interface.d.ts +50 -0
- package/dist/domain/interfaces/knowledge-preservation-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/knowledge-preservation-repository.interface.js +8 -0
- package/dist/domain/interfaces/knowledge-preservation-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/memory-repository.interface.d.ts +49 -0
- package/dist/domain/interfaces/memory-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/memory-repository.interface.js +6 -0
- package/dist/domain/interfaces/memory-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/pattern-repository.interface.d.ts +48 -0
- package/dist/domain/interfaces/pattern-repository.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/pattern-repository.interface.js +6 -0
- package/dist/domain/interfaces/pattern-repository.interface.js.map +1 -0
- package/dist/domain/interfaces/verification-service.interface.d.ts +20 -0
- package/dist/domain/interfaces/verification-service.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/verification-service.interface.js +6 -0
- package/dist/domain/interfaces/verification-service.interface.js.map +1 -0
- package/dist/domain/services/codebase-detector.d.ts +18 -0
- package/dist/domain/services/codebase-detector.d.ts.map +1 -0
- package/dist/domain/services/codebase-detector.js +91 -0
- package/dist/domain/services/codebase-detector.js.map +1 -0
- package/dist/domain/services/cross-team-pattern-sharing.d.ts +65 -0
- package/dist/domain/services/cross-team-pattern-sharing.d.ts.map +1 -0
- package/dist/domain/services/cross-team-pattern-sharing.js +125 -0
- package/dist/domain/services/cross-team-pattern-sharing.js.map +1 -0
- package/dist/domain/services/decision-recorder.d.ts +76 -0
- package/dist/domain/services/decision-recorder.d.ts.map +1 -0
- package/dist/domain/services/decision-recorder.js +223 -0
- package/dist/domain/services/decision-recorder.js.map +1 -0
- package/dist/domain/services/decision-retriever.d.ts +75 -0
- package/dist/domain/services/decision-retriever.d.ts.map +1 -0
- package/dist/domain/services/decision-retriever.js +133 -0
- package/dist/domain/services/decision-retriever.js.map +1 -0
- package/dist/domain/services/graded-memory-activation.d.ts +37 -0
- package/dist/domain/services/graded-memory-activation.d.ts.map +1 -0
- package/dist/domain/services/graded-memory-activation.js +69 -0
- package/dist/domain/services/graded-memory-activation.js.map +1 -0
- package/dist/domain/services/knowledge-access.d.ts +63 -0
- package/dist/domain/services/knowledge-access.d.ts.map +1 -0
- package/dist/domain/services/knowledge-access.js +132 -0
- package/dist/domain/services/knowledge-access.js.map +1 -0
- package/dist/domain/services/knowledge-extractor.d.ts +54 -0
- package/dist/domain/services/knowledge-extractor.d.ts.map +1 -0
- package/dist/domain/services/knowledge-extractor.js +247 -0
- package/dist/domain/services/knowledge-extractor.js.map +1 -0
- package/dist/domain/services/knowledge-graph-builder.d.ts +70 -0
- package/dist/domain/services/knowledge-graph-builder.d.ts.map +1 -0
- package/dist/domain/services/knowledge-graph-builder.js +268 -0
- package/dist/domain/services/knowledge-graph-builder.js.map +1 -0
- package/dist/domain/services/knowledge-graph-query.d.ts +69 -0
- package/dist/domain/services/knowledge-graph-query.d.ts.map +1 -0
- package/dist/domain/services/knowledge-graph-query.js +187 -0
- package/dist/domain/services/knowledge-graph-query.js.map +1 -0
- package/dist/domain/services/memory-retriever.d.ts +30 -0
- package/dist/domain/services/memory-retriever.d.ts.map +1 -0
- package/dist/domain/services/memory-retriever.js +82 -0
- package/dist/domain/services/memory-retriever.js.map +1 -0
- package/dist/domain/services/memory-synthesizer.d.ts +57 -0
- package/dist/domain/services/memory-synthesizer.d.ts.map +1 -0
- package/dist/domain/services/memory-synthesizer.js +91 -0
- package/dist/domain/services/memory-synthesizer.js.map +1 -0
- package/dist/domain/services/pattern-extractor.d.ts +108 -0
- package/dist/domain/services/pattern-extractor.d.ts.map +1 -0
- package/dist/domain/services/pattern-extractor.js +442 -0
- package/dist/domain/services/pattern-extractor.js.map +1 -0
- package/dist/domain/services/query-intent-classifier.d.ts +16 -0
- package/dist/domain/services/query-intent-classifier.d.ts.map +1 -0
- package/dist/domain/services/query-intent-classifier.js +140 -0
- package/dist/domain/services/query-intent-classifier.js.map +1 -0
- package/dist/domain/services/react-loop.d.ts +44 -0
- package/dist/domain/services/react-loop.d.ts.map +1 -0
- package/dist/domain/services/react-loop.js +110 -0
- package/dist/domain/services/react-loop.js.map +1 -0
- package/dist/edit.d.ts +0 -12
- package/dist/edit.d.ts.map +1 -1
- package/dist/edit.js +76 -351
- package/dist/edit.js.map +1 -1
- package/dist/embed.d.ts +0 -4
- package/dist/embed.d.ts.map +1 -1
- package/dist/embed.js +100 -174
- package/dist/embed.js.map +1 -1
- package/dist/error-handler.d.ts +1 -0
- package/dist/error-handler.d.ts.map +1 -1
- package/dist/error-handler.js +46 -3
- package/dist/error-handler.js.map +1 -1
- package/dist/index.js +228 -231
- package/dist/index.js.map +1 -1
- package/dist/infrastructure/ai/cohere-ai-service.d.ts +54 -0
- package/dist/infrastructure/ai/cohere-ai-service.d.ts.map +1 -0
- package/dist/infrastructure/ai/cohere-ai-service.js +547 -0
- package/dist/infrastructure/ai/cohere-ai-service.js.map +1 -0
- package/dist/infrastructure/ai/command-r-evaluation.d.ts +42 -0
- package/dist/infrastructure/ai/command-r-evaluation.d.ts.map +1 -0
- package/dist/infrastructure/ai/command-r-evaluation.js +206 -0
- package/dist/infrastructure/ai/command-r-evaluation.js.map +1 -0
- package/dist/infrastructure/ai/model-config.d.ts +47 -0
- package/dist/infrastructure/ai/model-config.d.ts.map +1 -0
- package/dist/infrastructure/ai/model-config.js +84 -0
- package/dist/infrastructure/ai/model-config.js.map +1 -0
- package/dist/infrastructure/cache/embedding-cache.d.ts +46 -0
- package/dist/infrastructure/cache/embedding-cache.d.ts.map +1 -0
- package/dist/infrastructure/cache/embedding-cache.js +104 -0
- package/dist/infrastructure/cache/embedding-cache.js.map +1 -0
- package/dist/infrastructure/chunking/ast-code-chunker.d.ts +12 -0
- package/dist/infrastructure/chunking/ast-code-chunker.d.ts.map +1 -0
- package/dist/infrastructure/chunking/ast-code-chunker.js +19 -0
- package/dist/infrastructure/chunking/ast-code-chunker.js.map +1 -0
- package/dist/infrastructure/chunking/code-aware-chunker.d.ts +63 -0
- package/dist/infrastructure/chunking/code-aware-chunker.d.ts.map +1 -0
- package/dist/infrastructure/chunking/code-aware-chunker.js +397 -0
- package/dist/infrastructure/chunking/code-aware-chunker.js.map +1 -0
- package/dist/infrastructure/config/config-manager.d.ts +79 -0
- package/dist/infrastructure/config/config-manager.d.ts.map +1 -0
- package/dist/infrastructure/config/config-manager.js +162 -0
- package/dist/infrastructure/config/config-manager.js.map +1 -0
- package/dist/infrastructure/cost/cost-tracker.d.ts +90 -0
- package/dist/infrastructure/cost/cost-tracker.d.ts.map +1 -0
- package/dist/infrastructure/cost/cost-tracker.js +353 -0
- package/dist/infrastructure/cost/cost-tracker.js.map +1 -0
- package/dist/infrastructure/file-scanner/file-scanner.d.ts +31 -0
- package/dist/infrastructure/file-scanner/file-scanner.d.ts.map +1 -0
- package/dist/infrastructure/file-scanner/file-scanner.js +106 -0
- package/dist/infrastructure/file-scanner/file-scanner.js.map +1 -0
- package/dist/infrastructure/governance/nist-ai-rmf.d.ts +107 -0
- package/dist/infrastructure/governance/nist-ai-rmf.d.ts.map +1 -0
- package/dist/infrastructure/governance/nist-ai-rmf.js +294 -0
- package/dist/infrastructure/governance/nist-ai-rmf.js.map +1 -0
- package/dist/infrastructure/governance/policy-as-code.d.ts +90 -0
- package/dist/infrastructure/governance/policy-as-code.d.ts.map +1 -0
- package/dist/infrastructure/governance/policy-as-code.js +244 -0
- package/dist/infrastructure/governance/policy-as-code.js.map +1 -0
- package/dist/infrastructure/governance/prompt-to-code-lineage.d.ts +138 -0
- package/dist/infrastructure/governance/prompt-to-code-lineage.d.ts.map +1 -0
- package/dist/infrastructure/governance/prompt-to-code-lineage.js +241 -0
- package/dist/infrastructure/governance/prompt-to-code-lineage.js.map +1 -0
- package/dist/infrastructure/index.d.ts +7 -0
- package/dist/infrastructure/index.d.ts.map +1 -0
- package/dist/infrastructure/index.js +7 -0
- package/dist/infrastructure/index.js.map +1 -0
- package/dist/infrastructure/observability/execution-tracer.d.ts +105 -0
- package/dist/infrastructure/observability/execution-tracer.d.ts.map +1 -0
- package/dist/infrastructure/observability/execution-tracer.js +190 -0
- package/dist/infrastructure/observability/execution-tracer.js.map +1 -0
- package/dist/infrastructure/observability/prompt-versioner.d.ts +67 -0
- package/dist/infrastructure/observability/prompt-versioner.d.ts.map +1 -0
- package/dist/infrastructure/observability/prompt-versioner.js +145 -0
- package/dist/infrastructure/observability/prompt-versioner.js.map +1 -0
- package/dist/infrastructure/protocols/a2a-metadata.d.ts +278 -0
- package/dist/infrastructure/protocols/a2a-metadata.d.ts.map +1 -0
- package/dist/infrastructure/protocols/a2a-metadata.js +137 -0
- package/dist/infrastructure/protocols/a2a-metadata.js.map +1 -0
- package/dist/infrastructure/protocols/a2a-protocol.d.ts +132 -0
- package/dist/infrastructure/protocols/a2a-protocol.d.ts.map +1 -0
- package/dist/infrastructure/protocols/a2a-protocol.js +314 -0
- package/dist/infrastructure/protocols/a2a-protocol.js.map +1 -0
- package/dist/infrastructure/protocols/mcp-oauth.d.ts +91 -0
- package/dist/infrastructure/protocols/mcp-oauth.d.ts.map +1 -0
- package/dist/infrastructure/protocols/mcp-oauth.js +184 -0
- package/dist/infrastructure/protocols/mcp-oauth.js.map +1 -0
- package/dist/infrastructure/protocols/mcp-server.d.ts +126 -0
- package/dist/infrastructure/protocols/mcp-server.d.ts.map +1 -0
- package/dist/infrastructure/protocols/mcp-server.js +333 -0
- package/dist/infrastructure/protocols/mcp-server.js.map +1 -0
- package/dist/infrastructure/protocols/streaming-handler.d.ts +57 -0
- package/dist/infrastructure/protocols/streaming-handler.d.ts.map +1 -0
- package/dist/infrastructure/protocols/streaming-handler.js +103 -0
- package/dist/infrastructure/protocols/streaming-handler.js.map +1 -0
- package/dist/infrastructure/security/ai-sast-scanner.d.ts +55 -0
- package/dist/infrastructure/security/ai-sast-scanner.d.ts.map +1 -0
- package/dist/infrastructure/security/ai-sast-scanner.js +163 -0
- package/dist/infrastructure/security/ai-sast-scanner.js.map +1 -0
- package/dist/infrastructure/security/docker-sandbox.d.ts +57 -0
- package/dist/infrastructure/security/docker-sandbox.d.ts.map +1 -0
- package/dist/infrastructure/security/docker-sandbox.js +178 -0
- package/dist/infrastructure/security/docker-sandbox.js.map +1 -0
- package/dist/infrastructure/security/enhanced-security-gate.d.ts +51 -0
- package/dist/infrastructure/security/enhanced-security-gate.d.ts.map +1 -0
- package/dist/infrastructure/security/enhanced-security-gate.js +92 -0
- package/dist/infrastructure/security/enhanced-security-gate.js.map +1 -0
- package/dist/infrastructure/security/input-validator.d.ts +33 -0
- package/dist/infrastructure/security/input-validator.d.ts.map +1 -0
- package/dist/infrastructure/security/input-validator.js +152 -0
- package/dist/infrastructure/security/input-validator.js.map +1 -0
- package/dist/infrastructure/security/license-scanner.d.ts +55 -0
- package/dist/infrastructure/security/license-scanner.d.ts.map +1 -0
- package/dist/infrastructure/security/license-scanner.js +167 -0
- package/dist/infrastructure/security/license-scanner.js.map +1 -0
- package/dist/infrastructure/security/provider-bias-detector.d.ts +53 -0
- package/dist/infrastructure/security/provider-bias-detector.d.ts.map +1 -0
- package/dist/infrastructure/security/provider-bias-detector.js +164 -0
- package/dist/infrastructure/security/provider-bias-detector.js.map +1 -0
- package/dist/infrastructure/security/sandbox-executor.d.ts +34 -0
- package/dist/infrastructure/security/sandbox-executor.d.ts.map +1 -0
- package/dist/infrastructure/security/sandbox-executor.js +64 -0
- package/dist/infrastructure/security/sandbox-executor.js.map +1 -0
- package/dist/infrastructure/storage/memory-stream-service.d.ts +47 -0
- package/dist/infrastructure/storage/memory-stream-service.d.ts.map +1 -0
- package/dist/infrastructure/storage/memory-stream-service.js +204 -0
- package/dist/infrastructure/storage/memory-stream-service.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-decision-repository.d.ts +29 -0
- package/dist/infrastructure/storage/sqlite-decision-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-decision-repository.js +232 -0
- package/dist/infrastructure/storage/sqlite-decision-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-embedding-repository.d.ts +24 -0
- package/dist/infrastructure/storage/sqlite-embedding-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-embedding-repository.js +162 -0
- package/dist/infrastructure/storage/sqlite-embedding-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-knowledge-graph-repository.d.ts +41 -0
- package/dist/infrastructure/storage/sqlite-knowledge-graph-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-knowledge-graph-repository.js +417 -0
- package/dist/infrastructure/storage/sqlite-knowledge-graph-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-knowledge-preservation-repository.d.ts +29 -0
- package/dist/infrastructure/storage/sqlite-knowledge-preservation-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-knowledge-preservation-repository.js +230 -0
- package/dist/infrastructure/storage/sqlite-knowledge-preservation-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-memory-repository.d.ts +40 -0
- package/dist/infrastructure/storage/sqlite-memory-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-memory-repository.js +229 -0
- package/dist/infrastructure/storage/sqlite-memory-repository.js.map +1 -0
- package/dist/infrastructure/storage/sqlite-pattern-repository.d.ts +25 -0
- package/dist/infrastructure/storage/sqlite-pattern-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/sqlite-pattern-repository.js +249 -0
- package/dist/infrastructure/storage/sqlite-pattern-repository.js.map +1 -0
- package/dist/infrastructure/ux/appropriate-friction.d.ts +77 -0
- package/dist/infrastructure/ux/appropriate-friction.d.ts.map +1 -0
- package/dist/infrastructure/ux/appropriate-friction.js +213 -0
- package/dist/infrastructure/ux/appropriate-friction.js.map +1 -0
- package/dist/infrastructure/ux/bi-directional-learning.d.ts +109 -0
- package/dist/infrastructure/ux/bi-directional-learning.d.ts.map +1 -0
- package/dist/infrastructure/ux/bi-directional-learning.js +200 -0
- package/dist/infrastructure/ux/bi-directional-learning.js.map +1 -0
- package/dist/infrastructure/ux/expectation-management.d.ts +65 -0
- package/dist/infrastructure/ux/expectation-management.d.ts.map +1 -0
- package/dist/infrastructure/ux/expectation-management.js +193 -0
- package/dist/infrastructure/ux/expectation-management.js.map +1 -0
- package/dist/infrastructure/ux/hitl-validation.d.ts +104 -0
- package/dist/infrastructure/ux/hitl-validation.d.ts.map +1 -0
- package/dist/infrastructure/ux/hitl-validation.js +211 -0
- package/dist/infrastructure/ux/hitl-validation.js.map +1 -0
- package/dist/infrastructure/ux/progressive-disclosure.d.ts +84 -0
- package/dist/infrastructure/ux/progressive-disclosure.d.ts.map +1 -0
- package/dist/infrastructure/ux/progressive-disclosure.js +235 -0
- package/dist/infrastructure/ux/progressive-disclosure.js.map +1 -0
- package/dist/infrastructure/ux/team-standards.d.ts +94 -0
- package/dist/infrastructure/ux/team-standards.d.ts.map +1 -0
- package/dist/infrastructure/ux/team-standards.js +196 -0
- package/dist/infrastructure/ux/team-standards.js.map +1 -0
- package/dist/infrastructure/verification/verification-service.d.ts +12 -0
- package/dist/infrastructure/verification/verification-service.d.ts.map +1 -0
- package/dist/infrastructure/verification/verification-service.js +47 -0
- package/dist/infrastructure/verification/verification-service.js.map +1 -0
- package/dist/infrastructure/xai/attention-visualizer.d.ts +73 -0
- package/dist/infrastructure/xai/attention-visualizer.d.ts.map +1 -0
- package/dist/infrastructure/xai/attention-visualizer.js +174 -0
- package/dist/infrastructure/xai/attention-visualizer.js.map +1 -0
- package/dist/infrastructure/xai/cot-visualizer.d.ts +105 -0
- package/dist/infrastructure/xai/cot-visualizer.d.ts.map +1 -0
- package/dist/infrastructure/xai/cot-visualizer.js +239 -0
- package/dist/infrastructure/xai/cot-visualizer.js.map +1 -0
- package/dist/infrastructure/xai/decision-tree-log.d.ts +104 -0
- package/dist/infrastructure/xai/decision-tree-log.d.ts.map +1 -0
- package/dist/infrastructure/xai/decision-tree-log.js +216 -0
- package/dist/infrastructure/xai/decision-tree-log.js.map +1 -0
- package/dist/infrastructure/xai/interactive-xai.d.ts +106 -0
- package/dist/infrastructure/xai/interactive-xai.d.ts.map +1 -0
- package/dist/infrastructure/xai/interactive-xai.js +262 -0
- package/dist/infrastructure/xai/interactive-xai.js.map +1 -0
- package/dist/infrastructure/xai/uncertainty-quantifier.d.ts +80 -0
- package/dist/infrastructure/xai/uncertainty-quantifier.d.ts.map +1 -0
- package/dist/infrastructure/xai/uncertainty-quantifier.js +201 -0
- package/dist/infrastructure/xai/uncertainty-quantifier.js.map +1 -0
- package/dist/intelligent-retrieval.d.ts.map +1 -1
- package/dist/intelligent-retrieval.js +8 -1
- package/dist/intelligent-retrieval.js.map +1 -1
- package/dist/intent/classifier.d.ts +6 -0
- package/dist/intent/classifier.d.ts.map +1 -0
- package/dist/intent/classifier.js +2 -0
- package/dist/intent/classifier.js.map +1 -0
- package/dist/intent/context.d.ts +4 -0
- package/dist/intent/context.d.ts.map +1 -0
- package/dist/intent/context.js +2 -0
- package/dist/intent/context.js.map +1 -0
- package/dist/iterative-refinement.d.ts.map +1 -1
- package/dist/iterative-refinement.js +20 -3
- package/dist/iterative-refinement.js.map +1 -1
- package/dist/learning.d.ts.map +1 -1
- package/dist/learning.js +1 -2
- package/dist/learning.js.map +1 -1
- package/dist/monitoring.d.ts.map +1 -1
- package/dist/monitoring.js +1 -2
- package/dist/monitoring.js.map +1 -1
- package/dist/parallel-processor.d.ts +3 -2
- package/dist/parallel-processor.d.ts.map +1 -1
- package/dist/parallel-processor.js +183 -56
- package/dist/parallel-processor.js.map +1 -1
- package/dist/presentation/cli/commands/ask-command.d.ts +8 -0
- package/dist/presentation/cli/commands/ask-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/ask-command.js +133 -0
- package/dist/presentation/cli/commands/ask-command.js.map +1 -0
- package/dist/presentation/cli/commands/config-command.d.ts +9 -0
- package/dist/presentation/cli/commands/config-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/config-command.js +123 -0
- package/dist/presentation/cli/commands/config-command.js.map +1 -0
- package/dist/presentation/cli/commands/cost-command.d.ts +8 -0
- package/dist/presentation/cli/commands/cost-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/cost-command.js +191 -0
- package/dist/presentation/cli/commands/cost-command.js.map +1 -0
- package/dist/presentation/cli/commands/decision-command.d.ts +12 -0
- package/dist/presentation/cli/commands/decision-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/decision-command.js +207 -0
- package/dist/presentation/cli/commands/decision-command.js.map +1 -0
- package/dist/presentation/cli/commands/help-command.d.ts +9 -0
- package/dist/presentation/cli/commands/help-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/help-command.js +281 -0
- package/dist/presentation/cli/commands/help-command.js.map +1 -0
- package/dist/presentation/cli/commands/knowledge-command.d.ts +13 -0
- package/dist/presentation/cli/commands/knowledge-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/knowledge-command.js +129 -0
- package/dist/presentation/cli/commands/knowledge-command.js.map +1 -0
- package/dist/presentation/cli/commands/learning-dashboard-command.d.ts +8 -0
- package/dist/presentation/cli/commands/learning-dashboard-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/learning-dashboard-command.js +183 -0
- package/dist/presentation/cli/commands/learning-dashboard-command.js.map +1 -0
- package/dist/presentation/cli/commands/orchestrate-command.d.ts +8 -0
- package/dist/presentation/cli/commands/orchestrate-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/orchestrate-command.js +112 -0
- package/dist/presentation/cli/commands/orchestrate-command.js.map +1 -0
- package/dist/presentation/cli/commands/plan-command.d.ts +8 -0
- package/dist/presentation/cli/commands/plan-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/plan-command.js +114 -0
- package/dist/presentation/cli/commands/plan-command.js.map +1 -0
- package/dist/presentation/cli/commands/react-command.d.ts +8 -0
- package/dist/presentation/cli/commands/react-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/react-command.js +99 -0
- package/dist/presentation/cli/commands/react-command.js.map +1 -0
- package/dist/presentation/cli/commands/setup-command.d.ts +10 -0
- package/dist/presentation/cli/commands/setup-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/setup-command.js +231 -0
- package/dist/presentation/cli/commands/setup-command.js.map +1 -0
- package/dist/presentation/cli/commands/smart-command.d.ts +6 -0
- package/dist/presentation/cli/commands/smart-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/smart-command.js +212 -0
- package/dist/presentation/cli/commands/smart-command.js.map +1 -0
- package/dist/presentation/cli/commands/trace-command.d.ts +8 -0
- package/dist/presentation/cli/commands/trace-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/trace-command.js +125 -0
- package/dist/presentation/cli/commands/trace-command.js.map +1 -0
- package/dist/presentation/cli/commands/undo-command.d.ts +8 -0
- package/dist/presentation/cli/commands/undo-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/undo-command.js +141 -0
- package/dist/presentation/cli/commands/undo-command.js.map +1 -0
- package/dist/presentation/cli/error-display.d.ts +23 -0
- package/dist/presentation/cli/error-display.d.ts.map +1 -0
- package/dist/presentation/cli/error-display.js +122 -0
- package/dist/presentation/cli/error-display.js.map +1 -0
- package/dist/refactor.d.ts.map +1 -1
- package/dist/refactor.js +2 -4
- package/dist/refactor.js.map +1 -1
- package/dist/search.d.ts.map +1 -1
- package/dist/search.js +2 -63
- package/dist/search.js.map +1 -1
- package/dist/session.d.ts.map +1 -1
- package/dist/session.js +52 -3
- package/dist/session.js.map +1 -1
- package/dist/testgen.d.ts.map +1 -1
- package/dist/testgen.js +1 -2
- package/dist/testgen.js.map +1 -1
- package/dist/tools/bash.d.ts +53 -0
- package/dist/tools/bash.d.ts.map +1 -0
- package/dist/tools/bash.js +213 -0
- package/dist/tools/bash.js.map +1 -0
- package/dist/tools/edit.d.ts +48 -0
- package/dist/tools/edit.d.ts.map +1 -0
- package/dist/tools/edit.js +235 -0
- package/dist/tools/edit.js.map +1 -0
- package/dist/tools/executor.d.ts +29 -0
- package/dist/tools/executor.d.ts.map +1 -0
- package/dist/tools/executor.js +153 -0
- package/dist/tools/executor.js.map +1 -0
- package/dist/tools/git-tool.d.ts +87 -0
- package/dist/tools/git-tool.d.ts.map +1 -0
- package/dist/tools/git-tool.js +292 -0
- package/dist/tools/git-tool.js.map +1 -0
- package/dist/tools/parser.d.ts +33 -0
- package/dist/tools/parser.d.ts.map +1 -0
- package/dist/tools/parser.js +158 -0
- package/dist/tools/parser.js.map +1 -0
- package/dist/tools/registry.d.ts +74 -0
- package/dist/tools/registry.d.ts.map +1 -0
- package/dist/tools/registry.js +302 -0
- package/dist/tools/registry.js.map +1 -0
- package/dist/tools/search.d.ts +41 -0
- package/dist/tools/search.d.ts.map +1 -0
- package/dist/tools/search.js +100 -0
- package/dist/tools/search.js.map +1 -0
- package/dist/ui.d.ts.map +1 -1
- package/dist/ui.js +4 -2
- package/dist/ui.js.map +1 -1
- package/dist/utils/check-api-status.d.ts +12 -0
- package/dist/utils/check-api-status.d.ts.map +1 -0
- package/dist/utils/check-api-status.js +82 -0
- package/dist/utils/check-api-status.js.map +1 -0
- package/dist/utils/diff-parser.d.ts +22 -0
- package/dist/utils/diff-parser.d.ts.map +1 -0
- package/dist/utils/diff-parser.js +160 -0
- package/dist/utils/diff-parser.js.map +1 -0
- package/dist/utils/logger.d.ts +34 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +56 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/version.d.ts +21 -0
- package/dist/utils/version.d.ts.map +1 -0
- package/dist/utils/version.js +52 -0
- package/dist/utils/version.js.map +1 -0
- package/dist/verification/backup.d.ts +30 -0
- package/dist/verification/backup.d.ts.map +1 -0
- package/dist/verification/backup.js +238 -0
- package/dist/verification/backup.js.map +1 -0
- package/dist/verification/compiler.d.ts +20 -0
- package/dist/verification/compiler.d.ts.map +1 -0
- package/dist/verification/compiler.js +228 -0
- package/dist/verification/compiler.js.map +1 -0
- package/dist/verification/index.d.ts +59 -0
- package/dist/verification/index.d.ts.map +1 -0
- package/dist/verification/index.js +273 -0
- package/dist/verification/index.js.map +1 -0
- package/dist/verification/test-runner.d.ts +27 -0
- package/dist/verification/test-runner.d.ts.map +1 -0
- package/dist/verification/test-runner.js +379 -0
- package/dist/verification/test-runner.js.map +1 -0
- package/package.json +39 -14
- package/ARCHITECTURE.md +0 -240
- package/CHANGELOG.md +0 -44
- package/CONTRIBUTING.md +0 -171
- package/dist/benchmark.d.ts +0 -39
- package/dist/benchmark.d.ts.map +0 -1
- package/dist/benchmark.js +0 -195
- package/dist/benchmark.js.map +0 -1
- package/dist/scaffold.d.ts +0 -14
- package/dist/scaffold.d.ts.map +0 -1
- package/dist/scaffold.js +0 -85
- package/dist/scaffold.js.map +0 -1
- package/templates/next-page/app/layout.tsx +0 -19
- package/templates/next-page/app/page.tsx +0 -10
- package/templates/next-page/package.json +0 -22
- package/templates/node-api/index.js +0 -57
- package/templates/node-api/package.json +0 -13
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execution-agent.d.ts","sourceRoot":"","sources":["../../../src/application/agents/execution-agent.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAClF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAChF,OAAO,KAAK,EAAE,IAAI,EAAW,MAAM,+BAA+B,CAAC;AACnE,OAAO,KAAK,EAAU,WAAW,EAAE,MAAM,qCAAqC,CAAC;AAG/E,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,IAAI,CAAC;IACX,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC/B;AAED,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,EAAE,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,eAAe,EAAE,CAAC;IAC3B,cAAc,EAAE,OAAO,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,qBAAa,cAAc;IAIvB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,GAAG;IALb,OAAO,CAAC,OAAO,CAAU;gBAGf,SAAS,EAAE,UAAU,EACrB,YAAY,EAAE,mBAAmB,EACjC,GAAG,GAAE,MAAsB;IAKrC;;OAEG;IACG,OAAO,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IA2GpE;;;OAGG;YACW,uBAAuB;IA+BrC;;OAEG;IACH,OAAO,CAAC,mBAAmB;IAoB3B;;OAEG;IACH,OAAO,CAAC,qBAAqB;IAY7B;;OAEG;YACW,cAAc;IA2E5B;;OAEG;IACH,OAAO,CAAC,uBAAuB;IA4B/B;;OAEG;IACH,OAAO,CAAC,iBAAiB;CAsD1B"}
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application Agent: Execution Agent (Code Migration)
|
|
3
|
+
* Specialized agent for performing mechanical changes across files
|
|
4
|
+
*
|
|
5
|
+
* Based on enterprise architecture: Separate Execution Agent
|
|
6
|
+
* Role: Executes plans created by Planning Agent
|
|
7
|
+
*/
|
|
8
|
+
import { GitTool } from '../../tools/git-tool.js';
|
|
9
|
+
export class ExecutionAgent {
|
|
10
|
+
aiService;
|
|
11
|
+
toolExecutor;
|
|
12
|
+
cwd;
|
|
13
|
+
gitTool;
|
|
14
|
+
constructor(aiService, toolExecutor, cwd = process.cwd()) {
|
|
15
|
+
this.aiService = aiService;
|
|
16
|
+
this.toolExecutor = toolExecutor;
|
|
17
|
+
this.cwd = cwd;
|
|
18
|
+
this.gitTool = new GitTool(cwd);
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Execute plan or specific sub-plan
|
|
22
|
+
*/
|
|
23
|
+
async execute(request) {
|
|
24
|
+
const { plan, subPlanId, context = {} } = request;
|
|
25
|
+
const results = [];
|
|
26
|
+
const updatedSubPlans = [...plan.subPlans];
|
|
27
|
+
// If executing specific sub-plan, do that and return
|
|
28
|
+
if (subPlanId) {
|
|
29
|
+
const subPlan = updatedSubPlans.find(sp => sp.id === subPlanId);
|
|
30
|
+
if (!subPlan) {
|
|
31
|
+
throw new Error(`Sub-plan ${subPlanId} not found`);
|
|
32
|
+
}
|
|
33
|
+
const result = await this.executeSubPlan(subPlan, plan, context);
|
|
34
|
+
const index = updatedSubPlans.findIndex(sp => sp.id === subPlanId);
|
|
35
|
+
if (index >= 0) {
|
|
36
|
+
updatedSubPlans[index] = {
|
|
37
|
+
...subPlan,
|
|
38
|
+
status: result.success ? 'completed' : 'failed',
|
|
39
|
+
result: result.result,
|
|
40
|
+
error: result.error,
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
results.push(result);
|
|
44
|
+
}
|
|
45
|
+
else {
|
|
46
|
+
// Iterative execution: Keep executing until all sub-plans are done
|
|
47
|
+
let hasProgress = true;
|
|
48
|
+
const maxIterations = 100; // Prevent infinite loops
|
|
49
|
+
let iteration = 0;
|
|
50
|
+
while (hasProgress && iteration < maxIterations) {
|
|
51
|
+
iteration++;
|
|
52
|
+
// Mark sub-plans with failed dependencies as failed
|
|
53
|
+
this.markBlockedSubPlans(updatedSubPlans);
|
|
54
|
+
// Get currently executable sub-plans (dependencies satisfied)
|
|
55
|
+
const executableSubPlans = this.getExecutableSubPlans({
|
|
56
|
+
...plan,
|
|
57
|
+
subPlans: updatedSubPlans,
|
|
58
|
+
});
|
|
59
|
+
if (executableSubPlans.length === 0) {
|
|
60
|
+
// No more executable sub-plans
|
|
61
|
+
hasProgress = false;
|
|
62
|
+
break;
|
|
63
|
+
}
|
|
64
|
+
// Execute all executable sub-plans
|
|
65
|
+
for (const subPlan of executableSubPlans) {
|
|
66
|
+
const result = await this.executeSubPlan(subPlan, plan, context);
|
|
67
|
+
// Update sub-plan status
|
|
68
|
+
const index = updatedSubPlans.findIndex(sp => sp.id === subPlan.id);
|
|
69
|
+
if (index >= 0) {
|
|
70
|
+
updatedSubPlans[index] = {
|
|
71
|
+
...subPlan,
|
|
72
|
+
status: result.success ? 'completed' : 'failed',
|
|
73
|
+
result: result.result,
|
|
74
|
+
error: result.error,
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
results.push(result);
|
|
78
|
+
// Stop if critical sub-plan fails
|
|
79
|
+
if (!result.success && subPlan.estimatedComplexity === 'high') {
|
|
80
|
+
hasProgress = false;
|
|
81
|
+
break;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
if (iteration >= maxIterations) {
|
|
86
|
+
console.warn('⚠️ Execution reached max iterations - some sub-plans may not have been executed');
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
// Update plan status
|
|
90
|
+
const completedCount = updatedSubPlans.filter(sp => sp.status === 'completed').length;
|
|
91
|
+
const planStatus = completedCount === updatedSubPlans.length
|
|
92
|
+
? 'completed'
|
|
93
|
+
: updatedSubPlans.some(sp => sp.status === 'failed')
|
|
94
|
+
? 'failed'
|
|
95
|
+
: 'active';
|
|
96
|
+
const updatedPlan = {
|
|
97
|
+
...plan,
|
|
98
|
+
subPlans: updatedSubPlans,
|
|
99
|
+
status: planStatus,
|
|
100
|
+
lastUpdated: new Date(),
|
|
101
|
+
};
|
|
102
|
+
// If execution was successful, commit changes (optional - can be disabled)
|
|
103
|
+
if (planStatus === 'completed' && results.length > 0) {
|
|
104
|
+
await this.commitSuccessfulChanges(plan, results);
|
|
105
|
+
}
|
|
106
|
+
return {
|
|
107
|
+
plan: updatedPlan,
|
|
108
|
+
results,
|
|
109
|
+
overallSuccess: planStatus === 'completed',
|
|
110
|
+
completedSubPlans: completedCount,
|
|
111
|
+
totalSubPlans: updatedSubPlans.length,
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Commit successful changes to Git
|
|
116
|
+
* Only commits if there are actual file modifications
|
|
117
|
+
*/
|
|
118
|
+
async commitSuccessfulChanges(plan, results) {
|
|
119
|
+
try {
|
|
120
|
+
// Check if we're in a git repo
|
|
121
|
+
const status = await this.gitTool.status();
|
|
122
|
+
const hasChanges = status.modified.length > 0 ||
|
|
123
|
+
status.staged.length > 0 ||
|
|
124
|
+
status.untracked.length > 0;
|
|
125
|
+
if (!hasChanges) {
|
|
126
|
+
return; // No changes to commit
|
|
127
|
+
}
|
|
128
|
+
// Generate commit message from plan
|
|
129
|
+
const commitMessage = `Codehere: ${plan.goal}\n\nCompleted ${results.length} sub-plan(s)`;
|
|
130
|
+
// Commit changes
|
|
131
|
+
const commitResult = await this.gitTool.commit(commitMessage);
|
|
132
|
+
if (!commitResult.success) {
|
|
133
|
+
// Log but don't fail - commit is optional
|
|
134
|
+
console.warn('⚠️ Failed to commit changes:', commitResult.error);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
catch (error) {
|
|
138
|
+
// Silently fail - Git operations are optional
|
|
139
|
+
// Not all repos are Git repos, and that's okay
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* Mark sub-plans with failed dependencies as failed
|
|
144
|
+
*/
|
|
145
|
+
markBlockedSubPlans(subPlans) {
|
|
146
|
+
const failed = new Set(subPlans.filter(sp => sp.status === 'failed').map(sp => sp.id));
|
|
147
|
+
subPlans.forEach((sp, index) => {
|
|
148
|
+
if (sp.status === 'pending') {
|
|
149
|
+
const failedDependencies = sp.dependencies.filter(depId => failed.has(depId));
|
|
150
|
+
if (failedDependencies.length > 0) {
|
|
151
|
+
// Mark as failed due to dependency failure
|
|
152
|
+
subPlans[index] = {
|
|
153
|
+
...sp,
|
|
154
|
+
status: 'failed',
|
|
155
|
+
error: `Blocked by failed dependency: ${failedDependencies.join(', ')}`,
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Get sub-plans ready for execution (dependencies satisfied)
|
|
163
|
+
*/
|
|
164
|
+
getExecutableSubPlans(plan) {
|
|
165
|
+
const completed = new Set(plan.subPlans.filter(sp => sp.status === 'completed').map(sp => sp.id));
|
|
166
|
+
return plan.subPlans.filter(sp => sp.status === 'pending' &&
|
|
167
|
+
sp.dependencies.every(depId => completed.has(depId)));
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* Execute a single sub-plan
|
|
171
|
+
*/
|
|
172
|
+
async executeSubPlan(subPlan, plan, context) {
|
|
173
|
+
const startTime = Date.now();
|
|
174
|
+
const observations = [];
|
|
175
|
+
try {
|
|
176
|
+
// For implement/edit/refactor sub-plans, use EditFileUseCase for better file creation support
|
|
177
|
+
if (subPlan.type === 'implement' || subPlan.type === 'edit' || subPlan.type === 'refactor') {
|
|
178
|
+
const params = this.extractParameters(subPlan, context);
|
|
179
|
+
if (params.filepath) {
|
|
180
|
+
// Use EditFileUseCase which handles both editing and file creation
|
|
181
|
+
const { EditFileUseCase } = await import('../use-cases/edit-file-use-case.js');
|
|
182
|
+
const { container } = await import('../services/dependency-container.js');
|
|
183
|
+
const editUseCase = new EditFileUseCase(this.aiService, container.verificationService, container.sastScanner);
|
|
184
|
+
const editResult = await editUseCase.execute({
|
|
185
|
+
filepath: params.filepath,
|
|
186
|
+
instruction: params.instruction || subPlan.description,
|
|
187
|
+
requirements: params.requirements || [],
|
|
188
|
+
});
|
|
189
|
+
const duration = Date.now() - startTime;
|
|
190
|
+
return {
|
|
191
|
+
subPlanId: subPlan.id,
|
|
192
|
+
success: editResult.success,
|
|
193
|
+
result: editResult.edit,
|
|
194
|
+
error: editResult.error,
|
|
195
|
+
observations: [{
|
|
196
|
+
result: editResult.edit ? `File ${editResult.edit.filepath} ${editResult.edit.oldContent ? 'edited' : 'created'} successfully` : null,
|
|
197
|
+
success: editResult.success,
|
|
198
|
+
error: editResult.error,
|
|
199
|
+
}],
|
|
200
|
+
duration,
|
|
201
|
+
};
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
// For other sub-plan types, use tool executor
|
|
205
|
+
const action = this.createActionFromSubPlan(subPlan, context);
|
|
206
|
+
const observation = await this.toolExecutor.executeAction(action);
|
|
207
|
+
observations.push(observation);
|
|
208
|
+
const duration = Date.now() - startTime;
|
|
209
|
+
return {
|
|
210
|
+
subPlanId: subPlan.id,
|
|
211
|
+
success: observation.success,
|
|
212
|
+
result: observation.result,
|
|
213
|
+
error: observation.error,
|
|
214
|
+
observations,
|
|
215
|
+
duration,
|
|
216
|
+
};
|
|
217
|
+
}
|
|
218
|
+
catch (error) {
|
|
219
|
+
const duration = Date.now() - startTime;
|
|
220
|
+
return {
|
|
221
|
+
subPlanId: subPlan.id,
|
|
222
|
+
success: false,
|
|
223
|
+
error: error instanceof Error ? error.message : String(error),
|
|
224
|
+
observations,
|
|
225
|
+
duration,
|
|
226
|
+
};
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* Create action from sub-plan
|
|
231
|
+
*/
|
|
232
|
+
createActionFromSubPlan(subPlan, context) {
|
|
233
|
+
// Map sub-plan type to tool action
|
|
234
|
+
const toolMap = {
|
|
235
|
+
search: 'search',
|
|
236
|
+
edit: 'edit_replace',
|
|
237
|
+
refactor: 'edit_replace',
|
|
238
|
+
review: 'search', // Review uses search to find code
|
|
239
|
+
analyze: 'search',
|
|
240
|
+
implement: 'edit_create',
|
|
241
|
+
test: 'bash',
|
|
242
|
+
debug: 'edit_replace',
|
|
243
|
+
};
|
|
244
|
+
const toolName = toolMap[subPlan.type] || 'search';
|
|
245
|
+
// Extract parameters from sub-plan description
|
|
246
|
+
const parameters = this.extractParameters(subPlan, context);
|
|
247
|
+
return {
|
|
248
|
+
type: 'tool',
|
|
249
|
+
name: toolName,
|
|
250
|
+
parameters,
|
|
251
|
+
};
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* Extract action parameters from sub-plan description
|
|
255
|
+
*/
|
|
256
|
+
extractParameters(subPlan, context) {
|
|
257
|
+
const params = {};
|
|
258
|
+
// Extract filepath if mentioned
|
|
259
|
+
const filepathMatch = subPlan.description.match(/(?:in|from|at|file)\s+([^\s]+\.(ts|js|tsx|jsx|py|java|go|rs|rb|php|vue|svelte|html|css|json|yaml|yml|md|txt|sh|bash))/i);
|
|
260
|
+
if (filepathMatch) {
|
|
261
|
+
params.filepath = filepathMatch[1];
|
|
262
|
+
}
|
|
263
|
+
// For search actions, use description as query
|
|
264
|
+
if (subPlan.type === 'search' || subPlan.type === 'analyze') {
|
|
265
|
+
params.query = subPlan.description;
|
|
266
|
+
}
|
|
267
|
+
// For edit/implement/refactor actions, extract instruction and filepath
|
|
268
|
+
if (subPlan.type === 'edit' || subPlan.type === 'implement' || subPlan.type === 'refactor') {
|
|
269
|
+
// Use the full description as instruction
|
|
270
|
+
params.instruction = subPlan.description;
|
|
271
|
+
// Try to extract filepath more intelligently - look for filepath at start or in description
|
|
272
|
+
if (!params.filepath) {
|
|
273
|
+
// Try pattern: "Create/Implement/Edit [filepath] to do X"
|
|
274
|
+
const filepathPatterns = [
|
|
275
|
+
/(?:create|implement|edit|add|update)\s+(?:file\s+)?([^\s]+\.(ts|js|tsx|jsx|py|java|go|rs|rb|php|vue|svelte|html|css|json|yaml|yml|md|txt|sh|bash))/i,
|
|
276
|
+
/(?:in|from|at|file)\s+([^\s]+\.(ts|js|tsx|jsx|py|java|go|rs|rb|php|vue|svelte|html|css|json|yaml|yml|md|txt|sh|bash))/i,
|
|
277
|
+
];
|
|
278
|
+
for (const pattern of filepathPatterns) {
|
|
279
|
+
const match = subPlan.description.match(pattern);
|
|
280
|
+
if (match) {
|
|
281
|
+
params.filepath = match[1];
|
|
282
|
+
break;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
// Extract requirements if mentioned
|
|
287
|
+
if (subPlan.description.includes('with') || subPlan.description.includes('including')) {
|
|
288
|
+
// Simple requirement extraction - can be enhanced
|
|
289
|
+
const requirementsMatch = subPlan.description.match(/with\s+(.+?)(?:\.|$)/i);
|
|
290
|
+
if (requirementsMatch) {
|
|
291
|
+
params.requirements = [requirementsMatch[1].trim()];
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
// Merge with context
|
|
296
|
+
return { ...context, ...params };
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
//# sourceMappingURL=execution-agent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execution-agent.js","sourceRoot":"","sources":["../../../src/application/agents/execution-agent.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application: Multi-Agent Orchestrator
|
|
3
|
+
* Coordinates Planning, Execution, and Validation agents
|
|
4
|
+
*
|
|
5
|
+
* Based on enterprise architecture: Coordinator Pattern with specialized agents
|
|
6
|
+
* Uses Command R+ as orchestrator (when available) or current AI service
|
|
7
|
+
*/
|
|
8
|
+
import type { IAIService } from '../../domain/interfaces/ai-service.interface.js';
|
|
9
|
+
import type { MemoryStreamService } from '../../infrastructure/storage/memory-stream-service.js';
|
|
10
|
+
import type { ToolExecutorService } from '../services/tool-executor-service.js';
|
|
11
|
+
import type { IMemoryRepository } from '../../domain/interfaces/memory-repository.interface.js';
|
|
12
|
+
import type { IVerificationService } from '../../domain/interfaces/verification-service.interface.js';
|
|
13
|
+
import type { Plan } from '../../domain/entities/plan.js';
|
|
14
|
+
import type { ExecutionResponse } from './execution-agent.js';
|
|
15
|
+
import type { ValidationResult } from './validation-agent.js';
|
|
16
|
+
import { AISASTScanner } from '../../infrastructure/security/ai-sast-scanner.js';
|
|
17
|
+
export interface OrchestrationRequest {
|
|
18
|
+
goal: string;
|
|
19
|
+
context?: {
|
|
20
|
+
files?: string[];
|
|
21
|
+
constraints?: string[];
|
|
22
|
+
requirements?: string[];
|
|
23
|
+
};
|
|
24
|
+
mode?: 'plan-only' | 'execute-only' | 'full';
|
|
25
|
+
}
|
|
26
|
+
export interface OrchestrationResponse {
|
|
27
|
+
plan?: Plan;
|
|
28
|
+
execution?: ExecutionResponse;
|
|
29
|
+
validation?: ValidationResult;
|
|
30
|
+
success: boolean;
|
|
31
|
+
message: string;
|
|
32
|
+
feedback?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare class MultiAgentOrchestrator {
|
|
35
|
+
private aiService;
|
|
36
|
+
private memoryStream;
|
|
37
|
+
private memoryRepository;
|
|
38
|
+
private toolExecutor;
|
|
39
|
+
private verificationService?;
|
|
40
|
+
private sastScanner?;
|
|
41
|
+
private cwd;
|
|
42
|
+
private planningAgent;
|
|
43
|
+
private executionAgent;
|
|
44
|
+
private validationAgent;
|
|
45
|
+
constructor(aiService: IAIService, memoryStream: MemoryStreamService, memoryRepository: IMemoryRepository, toolExecutor: ToolExecutorService, verificationService?: IVerificationService | undefined, sastScanner?: AISASTScanner | undefined, cwd?: string);
|
|
46
|
+
/**
|
|
47
|
+
* Orchestrate multi-agent workflow
|
|
48
|
+
* Coordinator Pattern: Plan → Execute → Validate → Feedback Loop
|
|
49
|
+
*/
|
|
50
|
+
orchestrate(request: OrchestrationRequest): Promise<OrchestrationResponse>;
|
|
51
|
+
/**
|
|
52
|
+
* Extract modified files from execution results
|
|
53
|
+
*/
|
|
54
|
+
private extractModifiedFiles;
|
|
55
|
+
/**
|
|
56
|
+
* Generate feedback for next iteration
|
|
57
|
+
*/
|
|
58
|
+
private generateFeedback;
|
|
59
|
+
/**
|
|
60
|
+
* Generate success message
|
|
61
|
+
*/
|
|
62
|
+
private generateSuccessMessage;
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=multi-agent-orchestrator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"multi-agent-orchestrator.d.ts","sourceRoot":"","sources":["../../../src/application/agents/multi-agent-orchestrator.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAIlF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uDAAuD,CAAC;AACjG,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAChF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wDAAwD,CAAC;AAChG,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAC;AACtG,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAC1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,kDAAkD,CAAC;AAEjF,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE;QACR,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;QACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;QACvB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;KACzB,CAAC;IACF,IAAI,CAAC,EAAE,WAAW,GAAG,cAAc,GAAG,MAAM,CAAC;CAC9C;AAED,MAAM,WAAW,qBAAqB;IACpC,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,UAAU,CAAC,EAAE,gBAAgB,CAAC;IAC9B,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,qBAAa,sBAAsB;IAM/B,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,mBAAmB,CAAC;IAC5B,OAAO,CAAC,WAAW,CAAC;IACpB,OAAO,CAAC,GAAG;IAXb,OAAO,CAAC,aAAa,CAAgB;IACrC,OAAO,CAAC,cAAc,CAAiB;IACvC,OAAO,CAAC,eAAe,CAAkB;gBAG/B,SAAS,EAAE,UAAU,EACrB,YAAY,EAAE,mBAAmB,EACjC,gBAAgB,EAAE,iBAAiB,EACnC,YAAY,EAAE,mBAAmB,EACjC,mBAAmB,CAAC,EAAE,oBAAoB,YAAA,EAC1C,WAAW,CAAC,EAAE,aAAa,YAAA,EAC3B,GAAG,GAAE,MAAsB;IAQrC;;;OAGG;IACG,WAAW,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAwIhF;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAc5B;;OAEG;IACH,OAAO,CAAC,gBAAgB;IA4BxB;;OAEG;IACH,OAAO,CAAC,sBAAsB;CAY/B"}
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application: Multi-Agent Orchestrator
|
|
3
|
+
* Coordinates Planning, Execution, and Validation agents
|
|
4
|
+
*
|
|
5
|
+
* Based on enterprise architecture: Coordinator Pattern with specialized agents
|
|
6
|
+
* Uses Command R+ as orchestrator (when available) or current AI service
|
|
7
|
+
*/
|
|
8
|
+
import { PlanningAgent } from './planning-agent.js';
|
|
9
|
+
import { ExecutionAgent } from './execution-agent.js';
|
|
10
|
+
import { ValidationAgent } from './validation-agent.js';
|
|
11
|
+
export class MultiAgentOrchestrator {
|
|
12
|
+
aiService;
|
|
13
|
+
memoryStream;
|
|
14
|
+
memoryRepository;
|
|
15
|
+
toolExecutor;
|
|
16
|
+
verificationService;
|
|
17
|
+
sastScanner;
|
|
18
|
+
cwd;
|
|
19
|
+
planningAgent;
|
|
20
|
+
executionAgent;
|
|
21
|
+
validationAgent;
|
|
22
|
+
constructor(aiService, memoryStream, memoryRepository, toolExecutor, verificationService, sastScanner, cwd = process.cwd()) {
|
|
23
|
+
this.aiService = aiService;
|
|
24
|
+
this.memoryStream = memoryStream;
|
|
25
|
+
this.memoryRepository = memoryRepository;
|
|
26
|
+
this.toolExecutor = toolExecutor;
|
|
27
|
+
this.verificationService = verificationService;
|
|
28
|
+
this.sastScanner = sastScanner;
|
|
29
|
+
this.cwd = cwd;
|
|
30
|
+
// Initialize specialized agents
|
|
31
|
+
this.planningAgent = new PlanningAgent(aiService, memoryStream, memoryRepository, cwd);
|
|
32
|
+
this.executionAgent = new ExecutionAgent(aiService, toolExecutor, cwd);
|
|
33
|
+
this.validationAgent = new ValidationAgent(aiService, verificationService);
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Orchestrate multi-agent workflow
|
|
37
|
+
* Coordinator Pattern: Plan → Execute → Validate → Feedback Loop
|
|
38
|
+
*/
|
|
39
|
+
async orchestrate(request) {
|
|
40
|
+
const mode = request.mode || 'full';
|
|
41
|
+
try {
|
|
42
|
+
// Phase 1: Planning (if needed)
|
|
43
|
+
let plan;
|
|
44
|
+
if (mode === 'full' || mode === 'plan-only') {
|
|
45
|
+
// Input validation
|
|
46
|
+
if (!request.goal || request.goal.trim().length === 0) {
|
|
47
|
+
return {
|
|
48
|
+
success: false,
|
|
49
|
+
message: 'Goal cannot be empty',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
let planningResponse;
|
|
53
|
+
try {
|
|
54
|
+
planningResponse = await this.planningAgent.createPlan({
|
|
55
|
+
goal: request.goal,
|
|
56
|
+
context: request.context,
|
|
57
|
+
});
|
|
58
|
+
plan = planningResponse.plan;
|
|
59
|
+
}
|
|
60
|
+
catch (error) {
|
|
61
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
62
|
+
console.error('Orchestrator: Planning failed:', errorMessage);
|
|
63
|
+
return {
|
|
64
|
+
success: false,
|
|
65
|
+
message: `Planning failed: ${errorMessage}`,
|
|
66
|
+
plan: undefined,
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
// Validate plan was generated
|
|
70
|
+
if (!plan) {
|
|
71
|
+
return {
|
|
72
|
+
success: false,
|
|
73
|
+
message: 'Planning agent returned no plan',
|
|
74
|
+
plan: undefined,
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
if (!plan.subPlans || plan.subPlans.length === 0) {
|
|
78
|
+
return {
|
|
79
|
+
success: false,
|
|
80
|
+
message: 'Planning agent returned plan with no sub-plans',
|
|
81
|
+
plan,
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
// If plan-only mode, return here
|
|
85
|
+
if (mode === 'plan-only') {
|
|
86
|
+
return {
|
|
87
|
+
plan,
|
|
88
|
+
success: true,
|
|
89
|
+
message: `Plan created with ${plan.subPlans.length} sub-plans (confidence: ${(planningResponse.confidence * 100).toFixed(0)}%)`,
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
if (!plan) {
|
|
94
|
+
return {
|
|
95
|
+
success: false,
|
|
96
|
+
message: 'No plan available for execution',
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
// Phase 2: Execution (if needed)
|
|
100
|
+
let execution;
|
|
101
|
+
if (mode === 'full' || mode === 'execute-only') {
|
|
102
|
+
execution = await this.executionAgent.execute({
|
|
103
|
+
plan,
|
|
104
|
+
context: request.context,
|
|
105
|
+
});
|
|
106
|
+
// If execute-only mode, return here
|
|
107
|
+
if (mode === 'execute-only') {
|
|
108
|
+
return {
|
|
109
|
+
plan,
|
|
110
|
+
execution,
|
|
111
|
+
success: execution.overallSuccess,
|
|
112
|
+
message: `Execution completed: ${execution.completedSubPlans}/${execution.totalSubPlans} sub-plans`,
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
if (!execution) {
|
|
117
|
+
return {
|
|
118
|
+
plan,
|
|
119
|
+
success: false,
|
|
120
|
+
message: 'Execution not performed',
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
// Phase 3: Validation
|
|
124
|
+
const filesModified = this.extractModifiedFiles(execution);
|
|
125
|
+
const validation = await this.validationAgent.validate({
|
|
126
|
+
plan,
|
|
127
|
+
executionResults: execution.results,
|
|
128
|
+
filesModified,
|
|
129
|
+
});
|
|
130
|
+
// Phase 4: Feedback Loop
|
|
131
|
+
// If validation fails, provide feedback for next iteration
|
|
132
|
+
let feedback;
|
|
133
|
+
if (!validation.success) {
|
|
134
|
+
feedback = this.generateFeedback(validation, execution);
|
|
135
|
+
}
|
|
136
|
+
// Record in memory stream
|
|
137
|
+
await this.memoryStream.recordObservation(`Multi-agent orchestration completed for: "${request.goal}"`, {
|
|
138
|
+
goal: request.goal,
|
|
139
|
+
planId: plan.id,
|
|
140
|
+
executionSuccess: execution.overallSuccess,
|
|
141
|
+
validationSuccess: validation.success,
|
|
142
|
+
qualityScore: validation.qualityScore,
|
|
143
|
+
});
|
|
144
|
+
return {
|
|
145
|
+
plan,
|
|
146
|
+
execution,
|
|
147
|
+
validation,
|
|
148
|
+
success: validation.success && execution.overallSuccess,
|
|
149
|
+
message: this.generateSuccessMessage(execution, validation),
|
|
150
|
+
feedback,
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
catch (error) {
|
|
154
|
+
return {
|
|
155
|
+
success: false,
|
|
156
|
+
message: error instanceof Error ? error.message : String(error),
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* Extract modified files from execution results
|
|
162
|
+
*/
|
|
163
|
+
extractModifiedFiles(execution) {
|
|
164
|
+
const files = [];
|
|
165
|
+
for (const result of execution.results) {
|
|
166
|
+
if (result.result && typeof result.result === 'object') {
|
|
167
|
+
if ('filepath' in result.result) {
|
|
168
|
+
files.push(result.result.filepath);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
return [...new Set(files)]; // Deduplicate
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* Generate feedback for next iteration
|
|
176
|
+
*/
|
|
177
|
+
generateFeedback(validation, execution) {
|
|
178
|
+
const feedback = [];
|
|
179
|
+
if (!validation.compilationSuccess) {
|
|
180
|
+
feedback.push(`Compilation errors: ${validation.compilationErrors?.slice(0, 2).join(', ')}`);
|
|
181
|
+
}
|
|
182
|
+
if (!validation.testsPassed) {
|
|
183
|
+
feedback.push('Tests are failing - review test results');
|
|
184
|
+
}
|
|
185
|
+
const failedSubPlans = execution.results.filter(r => !r.success);
|
|
186
|
+
if (failedSubPlans.length > 0) {
|
|
187
|
+
feedback.push(`${failedSubPlans.length} sub-plans failed: ${failedSubPlans.map(r => r.subPlanId).join(', ')}`);
|
|
188
|
+
}
|
|
189
|
+
if (validation.recommendations.length > 0) {
|
|
190
|
+
feedback.push(...validation.recommendations.slice(0, 3));
|
|
191
|
+
}
|
|
192
|
+
return feedback.join('. ');
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Generate success message
|
|
196
|
+
*/
|
|
197
|
+
generateSuccessMessage(execution, validation) {
|
|
198
|
+
if (validation.success && execution.overallSuccess) {
|
|
199
|
+
return `✅ Successfully completed: ${execution.completedSubPlans}/${execution.totalSubPlans} sub-plans executed, all tests passing (quality score: ${validation.qualityScore}/100)`;
|
|
200
|
+
}
|
|
201
|
+
else if (execution.overallSuccess) {
|
|
202
|
+
return `⚠️ Execution completed but validation issues: ${validation.recommendations.join(', ')}`;
|
|
203
|
+
}
|
|
204
|
+
else {
|
|
205
|
+
return `❌ Execution incomplete: ${execution.completedSubPlans}/${execution.totalSubPlans} sub-plans completed`;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
//# sourceMappingURL=multi-agent-orchestrator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"multi-agent-orchestrator.js","sourceRoot":"","sources":["../../../src/application/agents/multi-agent-orchestrator.ts"],"names":[],"mappings":"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"}
|