codehere 0.3.0 → 0.5.0-alpha
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/LICENSE +1 -1
- package/README.md +329 -65
- package/dist/application/agents/documentation-agent.d.ts +24 -0
- package/dist/application/agents/documentation-agent.d.ts.map +1 -0
- package/dist/application/agents/documentation-agent.js +399 -0
- package/dist/application/agents/documentation-agent.js.map +1 -0
- package/dist/application/agents/execution-agent.d.ts +11 -0
- package/dist/application/agents/execution-agent.d.ts.map +1 -1
- package/dist/application/agents/execution-agent.js +289 -80
- package/dist/application/agents/execution-agent.js.map +1 -1
- package/dist/application/agents/multi-agent-orchestrator.d.ts +4 -0
- package/dist/application/agents/multi-agent-orchestrator.d.ts.map +1 -1
- package/dist/application/agents/multi-agent-orchestrator.js +95 -2
- package/dist/application/agents/multi-agent-orchestrator.js.map +1 -1
- package/dist/application/agents/planning-agent.d.ts +3 -0
- package/dist/application/agents/planning-agent.d.ts.map +1 -1
- package/dist/application/agents/planning-agent.js +151 -71
- package/dist/application/agents/planning-agent.js.map +1 -1
- package/dist/application/agents/product-requirements-agent.d.ts +21 -0
- package/dist/application/agents/product-requirements-agent.d.ts.map +1 -0
- package/dist/application/agents/product-requirements-agent.js +247 -0
- package/dist/application/agents/product-requirements-agent.js.map +1 -0
- package/dist/application/agents/validation-agent.d.ts +5 -1
- package/dist/application/agents/validation-agent.d.ts.map +1 -1
- package/dist/application/agents/validation-agent.js +156 -21
- package/dist/application/agents/validation-agent.js.map +1 -1
- package/dist/application/reasoning/multi-model-planning-strategy.d.ts +21 -0
- package/dist/application/reasoning/multi-model-planning-strategy.d.ts.map +1 -0
- package/dist/application/reasoning/multi-model-planning-strategy.js +158 -0
- package/dist/application/reasoning/multi-model-planning-strategy.js.map +1 -0
- package/dist/application/reasoning/reasoning-config.d.ts +15 -0
- package/dist/application/reasoning/reasoning-config.d.ts.map +1 -0
- package/dist/application/reasoning/reasoning-config.js +50 -0
- package/dist/application/reasoning/reasoning-config.js.map +1 -0
- package/dist/application/reasoning/reasoning-orchestrator.d.ts +18 -0
- package/dist/application/reasoning/reasoning-orchestrator.d.ts.map +1 -0
- package/dist/application/reasoning/reasoning-orchestrator.js +170 -0
- package/dist/application/reasoning/reasoning-orchestrator.js.map +1 -0
- package/dist/application/reasoning/reasoning-strategy.interface.d.ts +24 -0
- package/dist/application/reasoning/reasoning-strategy.interface.d.ts.map +1 -0
- package/dist/application/reasoning/reasoning-strategy.interface.js +6 -0
- package/dist/application/reasoning/reasoning-strategy.interface.js.map +1 -0
- package/dist/application/reasoning/role-provider-resolver.d.ts +36 -0
- package/dist/application/reasoning/role-provider-resolver.d.ts.map +1 -0
- package/dist/application/reasoning/role-provider-resolver.js +74 -0
- package/dist/application/reasoning/role-provider-resolver.js.map +1 -0
- package/dist/application/reasoning/simple-planning-strategy.d.ts +22 -0
- package/dist/application/reasoning/simple-planning-strategy.d.ts.map +1 -0
- package/dist/application/reasoning/simple-planning-strategy.js +217 -0
- package/dist/application/reasoning/simple-planning-strategy.js.map +1 -0
- package/dist/application/reasoning/types.d.ts +65 -0
- package/dist/application/reasoning/types.d.ts.map +1 -0
- package/dist/application/reasoning/types.js +6 -0
- package/dist/application/reasoning/types.js.map +1 -0
- package/dist/application/reasoning/validator-strategy.d.ts +56 -0
- package/dist/application/reasoning/validator-strategy.d.ts.map +1 -0
- package/dist/application/reasoning/validator-strategy.js +103 -0
- package/dist/application/reasoning/validator-strategy.js.map +1 -0
- package/dist/application/services/dependency-container.d.ts +46 -2
- package/dist/application/services/dependency-container.d.ts.map +1 -1
- package/dist/application/services/dependency-container.js +198 -8
- package/dist/application/services/dependency-container.js.map +1 -1
- package/dist/application/services/intelligent-router.d.ts +19 -0
- package/dist/application/services/intelligent-router.d.ts.map +1 -1
- package/dist/application/services/intelligent-router.js +393 -91
- package/dist/application/services/intelligent-router.js.map +1 -1
- package/dist/application/use-cases/ask-question-use-case.d.ts +20 -0
- package/dist/application/use-cases/ask-question-use-case.d.ts.map +1 -1
- package/dist/application/use-cases/ask-question-use-case.js +129 -49
- package/dist/application/use-cases/ask-question-use-case.js.map +1 -1
- package/dist/application/use-cases/edit-file-use-case.d.ts.map +1 -1
- package/dist/application/use-cases/edit-file-use-case.js +16 -1
- package/dist/application/use-cases/edit-file-use-case.js.map +1 -1
- package/dist/application/use-cases/planning-use-case.d.ts +14 -1
- package/dist/application/use-cases/planning-use-case.d.ts.map +1 -1
- package/dist/application/use-cases/planning-use-case.js +109 -2
- package/dist/application/use-cases/planning-use-case.js.map +1 -1
- package/dist/domain/entities/documentation.d.ts +35 -0
- package/dist/domain/entities/documentation.d.ts.map +1 -0
- package/dist/domain/entities/documentation.js +6 -0
- package/dist/domain/entities/documentation.js.map +1 -0
- package/dist/domain/entities/memory.d.ts.map +1 -1
- package/dist/domain/entities/product-requirements.d.ts +50 -0
- package/dist/domain/entities/product-requirements.d.ts.map +1 -0
- package/dist/domain/entities/product-requirements.js +6 -0
- package/dist/domain/entities/product-requirements.js.map +1 -0
- package/dist/domain/entities/task.d.ts +152 -0
- package/dist/domain/entities/task.d.ts.map +1 -0
- package/dist/domain/entities/task.js +61 -0
- package/dist/domain/entities/task.js.map +1 -0
- package/dist/domain/errors/embeddings-not-found-error.d.ts +9 -0
- package/dist/domain/errors/embeddings-not-found-error.d.ts.map +1 -0
- package/dist/domain/errors/embeddings-not-found-error.js +13 -0
- package/dist/domain/errors/embeddings-not-found-error.js.map +1 -0
- package/dist/domain/interfaces/agent.interface.d.ts +15 -0
- package/dist/domain/interfaces/agent.interface.d.ts.map +1 -0
- package/dist/domain/interfaces/agent.interface.js +6 -0
- package/dist/domain/interfaces/agent.interface.js.map +1 -0
- package/dist/domain/interfaces/embedding-repository.interface.d.ts +5 -0
- package/dist/domain/interfaces/embedding-repository.interface.d.ts.map +1 -1
- package/dist/domain/services/environment-mode-manager.d.ts +12 -0
- package/dist/domain/services/environment-mode-manager.d.ts.map +1 -0
- package/dist/domain/services/environment-mode-manager.js +22 -0
- package/dist/domain/services/environment-mode-manager.js.map +1 -0
- package/dist/domain/services/query-intent-classifier.d.ts.map +1 -1
- package/dist/domain/services/query-intent-classifier.js +20 -1
- package/dist/domain/services/query-intent-classifier.js.map +1 -1
- package/dist/domain/services/risk-tier-detector.d.ts +17 -0
- package/dist/domain/services/risk-tier-detector.d.ts.map +1 -0
- package/dist/domain/services/risk-tier-detector.js +78 -0
- package/dist/domain/services/risk-tier-detector.js.map +1 -0
- package/dist/embed.d.ts.map +1 -1
- package/dist/embed.js +18 -8
- package/dist/embed.js.map +1 -1
- package/dist/formatter.d.ts.map +1 -1
- package/dist/formatter.js +10 -3
- package/dist/formatter.js.map +1 -1
- package/dist/index.js +494 -167
- package/dist/index.js.map +1 -1
- package/dist/infrastructure/ai/cohere-ai-service.d.ts.map +1 -1
- package/dist/infrastructure/ai/cohere-ai-service.js +19 -6
- package/dist/infrastructure/ai/cohere-ai-service.js.map +1 -1
- package/dist/infrastructure/ai/fake-ai-service.d.ts +22 -0
- package/dist/infrastructure/ai/fake-ai-service.d.ts.map +1 -0
- package/dist/infrastructure/ai/fake-ai-service.js +59 -0
- package/dist/infrastructure/ai/fake-ai-service.js.map +1 -0
- package/dist/infrastructure/ai/provider-ai-service.d.ts +59 -0
- package/dist/infrastructure/ai/provider-ai-service.d.ts.map +1 -0
- package/dist/infrastructure/ai/provider-ai-service.js +477 -0
- package/dist/infrastructure/ai/provider-ai-service.js.map +1 -0
- package/dist/infrastructure/cache/embedding-cache.d.ts +13 -1
- package/dist/infrastructure/cache/embedding-cache.d.ts.map +1 -1
- package/dist/infrastructure/cache/embedding-cache.js +80 -9
- package/dist/infrastructure/cache/embedding-cache.js.map +1 -1
- package/dist/infrastructure/cache/query-result-cache.d.ts +14 -55
- package/dist/infrastructure/cache/query-result-cache.d.ts.map +1 -1
- package/dist/infrastructure/cache/query-result-cache.js +40 -112
- package/dist/infrastructure/cache/query-result-cache.js.map +1 -1
- package/dist/infrastructure/cache/response-cache.d.ts +18 -0
- package/dist/infrastructure/cache/response-cache.d.ts.map +1 -0
- package/dist/infrastructure/cache/response-cache.js +48 -0
- package/dist/infrastructure/cache/response-cache.js.map +1 -0
- package/dist/infrastructure/cache/security-scan-cache.d.ts +8 -49
- package/dist/infrastructure/cache/security-scan-cache.d.ts.map +1 -1
- package/dist/infrastructure/cache/security-scan-cache.js +25 -102
- package/dist/infrastructure/cache/security-scan-cache.js.map +1 -1
- package/dist/infrastructure/completion/bash-completion.d.ts +2 -3
- package/dist/infrastructure/completion/bash-completion.d.ts.map +1 -1
- package/dist/infrastructure/completion/bash-completion.js +11 -87
- package/dist/infrastructure/completion/bash-completion.js.map +1 -1
- package/dist/infrastructure/completion/fish-completion.d.ts +2 -3
- package/dist/infrastructure/completion/fish-completion.d.ts.map +1 -1
- package/dist/infrastructure/completion/fish-completion.js +15 -58
- package/dist/infrastructure/completion/fish-completion.js.map +1 -1
- package/dist/infrastructure/completion/zsh-completion.d.ts +2 -3
- package/dist/infrastructure/completion/zsh-completion.d.ts.map +1 -1
- package/dist/infrastructure/completion/zsh-completion.js +18 -73
- package/dist/infrastructure/completion/zsh-completion.js.map +1 -1
- package/dist/infrastructure/config/config-manager.d.ts +10 -0
- package/dist/infrastructure/config/config-manager.d.ts.map +1 -1
- package/dist/infrastructure/config/config-manager.js +13 -2
- package/dist/infrastructure/config/config-manager.js.map +1 -1
- package/dist/infrastructure/context/conversation-context.d.ts +54 -0
- package/dist/infrastructure/context/conversation-context.d.ts.map +1 -0
- package/dist/infrastructure/context/conversation-context.js +129 -0
- package/dist/infrastructure/context/conversation-context.js.map +1 -0
- package/dist/infrastructure/context/session-manager.d.ts +42 -0
- package/dist/infrastructure/context/session-manager.d.ts.map +1 -0
- package/dist/infrastructure/context/session-manager.js +94 -0
- package/dist/infrastructure/context/session-manager.js.map +1 -0
- package/dist/infrastructure/cost/cost-tracker.d.ts +1 -0
- package/dist/infrastructure/cost/cost-tracker.d.ts.map +1 -1
- package/dist/infrastructure/cost/cost-tracker.js +12 -5
- package/dist/infrastructure/cost/cost-tracker.js.map +1 -1
- package/dist/infrastructure/governance/nist-ai-rmf.d.ts +6 -8
- package/dist/infrastructure/governance/nist-ai-rmf.d.ts.map +1 -1
- package/dist/infrastructure/governance/nist-ai-rmf.js +6 -8
- package/dist/infrastructure/governance/nist-ai-rmf.js.map +1 -1
- package/dist/infrastructure/governance/policy-as-code.d.ts +6 -8
- package/dist/infrastructure/governance/policy-as-code.d.ts.map +1 -1
- package/dist/infrastructure/governance/policy-as-code.js +6 -8
- package/dist/infrastructure/governance/policy-as-code.js.map +1 -1
- package/dist/infrastructure/governance/prompt-to-code-lineage.d.ts +7 -9
- package/dist/infrastructure/governance/prompt-to-code-lineage.d.ts.map +1 -1
- package/dist/infrastructure/governance/prompt-to-code-lineage.js +7 -9
- package/dist/infrastructure/governance/prompt-to-code-lineage.js.map +1 -1
- package/dist/infrastructure/protocols/a2a-metadata.js +1 -1
- package/dist/infrastructure/protocols/mcp-oauth.js +1 -1
- package/dist/infrastructure/providers/cohere-provider.d.ts +39 -0
- package/dist/infrastructure/providers/cohere-provider.d.ts.map +1 -0
- package/dist/infrastructure/providers/cohere-provider.js +444 -0
- package/dist/infrastructure/providers/cohere-provider.js.map +1 -0
- package/dist/infrastructure/providers/fake-provider.d.ts +43 -0
- package/dist/infrastructure/providers/fake-provider.d.ts.map +1 -0
- package/dist/infrastructure/providers/fake-provider.js +130 -0
- package/dist/infrastructure/providers/fake-provider.js.map +1 -0
- package/dist/infrastructure/providers/local-llm-provider.d.ts +49 -0
- package/dist/infrastructure/providers/local-llm-provider.d.ts.map +1 -0
- package/dist/infrastructure/providers/local-llm-provider.js +330 -0
- package/dist/infrastructure/providers/local-llm-provider.js.map +1 -0
- package/dist/infrastructure/providers/model-config.types.d.ts +70 -0
- package/dist/infrastructure/providers/model-config.types.d.ts.map +1 -0
- package/dist/infrastructure/providers/model-config.types.js +9 -0
- package/dist/infrastructure/providers/model-config.types.js.map +1 -0
- package/dist/infrastructure/providers/model-provider.interface.d.ts +113 -0
- package/dist/infrastructure/providers/model-provider.interface.d.ts.map +1 -0
- package/dist/infrastructure/providers/model-provider.interface.js +8 -0
- package/dist/infrastructure/providers/model-provider.interface.js.map +1 -0
- package/dist/infrastructure/providers/openai-provider.d.ts +38 -0
- package/dist/infrastructure/providers/openai-provider.d.ts.map +1 -0
- package/dist/infrastructure/providers/openai-provider.js +413 -0
- package/dist/infrastructure/providers/openai-provider.js.map +1 -0
- package/dist/infrastructure/providers/openrouter-provider.d.ts +42 -0
- package/dist/infrastructure/providers/openrouter-provider.d.ts.map +1 -0
- package/dist/infrastructure/providers/openrouter-provider.js +401 -0
- package/dist/infrastructure/providers/openrouter-provider.js.map +1 -0
- package/dist/infrastructure/providers/operation-provider-resolver.d.ts +48 -0
- package/dist/infrastructure/providers/operation-provider-resolver.d.ts.map +1 -0
- package/dist/infrastructure/providers/operation-provider-resolver.js +131 -0
- package/dist/infrastructure/providers/operation-provider-resolver.js.map +1 -0
- package/dist/infrastructure/providers/provider-config-loader.d.ts +37 -0
- package/dist/infrastructure/providers/provider-config-loader.d.ts.map +1 -0
- package/dist/infrastructure/providers/provider-config-loader.js +120 -0
- package/dist/infrastructure/providers/provider-config-loader.js.map +1 -0
- package/dist/infrastructure/providers/provider-registry.d.ts +53 -0
- package/dist/infrastructure/providers/provider-registry.d.ts.map +1 -0
- package/dist/infrastructure/providers/provider-registry.js +88 -0
- package/dist/infrastructure/providers/provider-registry.js.map +1 -0
- package/dist/infrastructure/security/input-validator.d.ts.map +1 -1
- package/dist/infrastructure/security/input-validator.js +19 -6
- package/dist/infrastructure/security/input-validator.js.map +1 -1
- package/dist/infrastructure/serialization/toon-serializer.d.ts +45 -0
- package/dist/infrastructure/serialization/toon-serializer.d.ts.map +1 -0
- package/dist/infrastructure/serialization/toon-serializer.js +119 -0
- package/dist/infrastructure/serialization/toon-serializer.js.map +1 -0
- package/dist/infrastructure/storage/embeddings-path.d.ts +18 -0
- package/dist/infrastructure/storage/embeddings-path.d.ts.map +1 -0
- package/dist/infrastructure/storage/embeddings-path.js +37 -0
- package/dist/infrastructure/storage/embeddings-path.js.map +1 -0
- package/dist/infrastructure/storage/plan-repository.d.ts +2 -0
- package/dist/infrastructure/storage/plan-repository.d.ts.map +1 -1
- package/dist/infrastructure/storage/plan-repository.js +36 -73
- package/dist/infrastructure/storage/plan-repository.js.map +1 -1
- package/dist/infrastructure/storage/sqlite-embedding-repository.d.ts +10 -1
- package/dist/infrastructure/storage/sqlite-embedding-repository.d.ts.map +1 -1
- package/dist/infrastructure/storage/sqlite-embedding-repository.js +37 -3
- package/dist/infrastructure/storage/sqlite-embedding-repository.js.map +1 -1
- package/dist/infrastructure/storage/task-helpers.d.ts +69 -0
- package/dist/infrastructure/storage/task-helpers.d.ts.map +1 -0
- package/dist/infrastructure/storage/task-helpers.js +197 -0
- package/dist/infrastructure/storage/task-helpers.js.map +1 -0
- package/dist/infrastructure/storage/task-repository.d.ts +68 -0
- package/dist/infrastructure/storage/task-repository.d.ts.map +1 -0
- package/dist/infrastructure/storage/task-repository.js +216 -0
- package/dist/infrastructure/storage/task-repository.js.map +1 -0
- package/dist/infrastructure/telemetry/telemetry-service.d.ts +74 -0
- package/dist/infrastructure/telemetry/telemetry-service.d.ts.map +1 -0
- package/dist/infrastructure/telemetry/telemetry-service.js +167 -0
- package/dist/infrastructure/telemetry/telemetry-service.js.map +1 -0
- package/dist/infrastructure/ux/bi-directional-learning.d.ts +22 -0
- package/dist/infrastructure/ux/bi-directional-learning.d.ts.map +1 -1
- package/dist/infrastructure/ux/bi-directional-learning.js +144 -7
- package/dist/infrastructure/ux/bi-directional-learning.js.map +1 -1
- package/dist/infrastructure/ux/capability-boundaries.d.ts +22 -0
- package/dist/infrastructure/ux/capability-boundaries.d.ts.map +1 -0
- package/dist/infrastructure/ux/capability-boundaries.js +42 -0
- package/dist/infrastructure/ux/capability-boundaries.js.map +1 -0
- package/dist/infrastructure/ux/comprehensive-formatter.d.ts +21 -0
- package/dist/infrastructure/ux/comprehensive-formatter.d.ts.map +1 -0
- package/dist/infrastructure/ux/comprehensive-formatter.js +117 -0
- package/dist/infrastructure/ux/comprehensive-formatter.js.map +1 -0
- package/dist/infrastructure/ux/contextual-feature-discovery.d.ts +5 -18
- package/dist/infrastructure/ux/contextual-feature-discovery.d.ts.map +1 -1
- package/dist/infrastructure/ux/contextual-feature-discovery.js +5 -139
- package/dist/infrastructure/ux/contextual-feature-discovery.js.map +1 -1
- package/dist/infrastructure/ux/feature-discovery.d.ts +3 -33
- package/dist/infrastructure/ux/feature-discovery.d.ts.map +1 -1
- package/dist/infrastructure/ux/feature-discovery.js +5 -181
- package/dist/infrastructure/ux/feature-discovery.js.map +1 -1
- package/dist/infrastructure/ux/feedback-prompt.d.ts +26 -0
- package/dist/infrastructure/ux/feedback-prompt.d.ts.map +1 -0
- package/dist/infrastructure/ux/feedback-prompt.js +45 -0
- package/dist/infrastructure/ux/feedback-prompt.js.map +1 -0
- package/dist/infrastructure/ux/hitl-review-portal.d.ts.map +1 -1
- package/dist/infrastructure/ux/hitl-review-portal.js +4 -1
- package/dist/infrastructure/ux/hitl-review-portal.js.map +1 -1
- package/dist/infrastructure/ux/hitl-validation.d.ts +35 -0
- package/dist/infrastructure/ux/hitl-validation.d.ts.map +1 -1
- package/dist/infrastructure/ux/hitl-validation.js +86 -0
- package/dist/infrastructure/ux/hitl-validation.js.map +1 -1
- package/dist/infrastructure/ux/progress-indicator.d.ts +5 -6
- package/dist/infrastructure/ux/progress-indicator.d.ts.map +1 -1
- package/dist/infrastructure/ux/progress-indicator.js +36 -41
- package/dist/infrastructure/ux/progress-indicator.js.map +1 -1
- package/dist/infrastructure/ux/proportional-friction.d.ts +73 -0
- package/dist/infrastructure/ux/proportional-friction.d.ts.map +1 -0
- package/dist/infrastructure/ux/proportional-friction.js +200 -0
- package/dist/infrastructure/ux/proportional-friction.js.map +1 -0
- package/dist/infrastructure/ux/review-checkpoint.d.ts +3 -1
- package/dist/infrastructure/ux/review-checkpoint.d.ts.map +1 -1
- package/dist/infrastructure/ux/review-checkpoint.js +33 -80
- package/dist/infrastructure/ux/review-checkpoint.js.map +1 -1
- package/dist/infrastructure/ux/staged-feature-intro.d.ts +14 -39
- package/dist/infrastructure/ux/staged-feature-intro.d.ts.map +1 -1
- package/dist/infrastructure/ux/staged-feature-intro.js +12 -132
- package/dist/infrastructure/ux/staged-feature-intro.js.map +1 -1
- package/dist/infrastructure/ux/syntax-highlighter.d.ts +1 -2
- package/dist/infrastructure/ux/syntax-highlighter.d.ts.map +1 -1
- package/dist/infrastructure/ux/syntax-highlighter.js +67 -148
- package/dist/infrastructure/ux/syntax-highlighter.js.map +1 -1
- package/dist/infrastructure/validation/agent-feedback.d.ts +51 -0
- package/dist/infrastructure/validation/agent-feedback.d.ts.map +1 -0
- package/dist/infrastructure/validation/agent-feedback.js +55 -0
- package/dist/infrastructure/validation/agent-feedback.js.map +1 -0
- package/dist/infrastructure/validation/agent-validation-helper.d.ts +75 -0
- package/dist/infrastructure/validation/agent-validation-helper.d.ts.map +1 -0
- package/dist/infrastructure/validation/agent-validation-helper.js +137 -0
- package/dist/infrastructure/validation/agent-validation-helper.js.map +1 -0
- package/dist/infrastructure/validation/feedback-stats.d.ts +99 -0
- package/dist/infrastructure/validation/feedback-stats.d.ts.map +1 -0
- package/dist/infrastructure/validation/feedback-stats.js +173 -0
- package/dist/infrastructure/validation/feedback-stats.js.map +1 -0
- package/dist/infrastructure/validation/review-handler.d.ts +26 -0
- package/dist/infrastructure/validation/review-handler.d.ts.map +1 -0
- package/dist/infrastructure/validation/review-handler.js +40 -0
- package/dist/infrastructure/validation/review-handler.js.map +1 -0
- package/dist/infrastructure/validation/summary-aggregator.d.ts +45 -0
- package/dist/infrastructure/validation/summary-aggregator.d.ts.map +1 -0
- package/dist/infrastructure/validation/summary-aggregator.js +70 -0
- package/dist/infrastructure/validation/summary-aggregator.js.map +1 -0
- package/dist/infrastructure/validation/summary-extractor.d.ts +24 -0
- package/dist/infrastructure/validation/summary-extractor.d.ts.map +1 -0
- package/dist/infrastructure/validation/summary-extractor.js +45 -0
- package/dist/infrastructure/validation/summary-extractor.js.map +1 -0
- package/dist/infrastructure/validation/trace-summary.d.ts +45 -0
- package/dist/infrastructure/validation/trace-summary.d.ts.map +1 -0
- package/dist/infrastructure/validation/trace-summary.js +52 -0
- package/dist/infrastructure/validation/trace-summary.js.map +1 -0
- package/dist/infrastructure/validation/trust-config.d.ts +27 -0
- package/dist/infrastructure/validation/trust-config.d.ts.map +1 -0
- package/dist/infrastructure/validation/trust-config.js +113 -0
- package/dist/infrastructure/validation/trust-config.js.map +1 -0
- package/dist/infrastructure/xai/attention-visualizer.d.ts +6 -8
- package/dist/infrastructure/xai/attention-visualizer.d.ts.map +1 -1
- package/dist/infrastructure/xai/attention-visualizer.js +6 -8
- package/dist/infrastructure/xai/attention-visualizer.js.map +1 -1
- package/dist/infrastructure/xai/cot-visualizer.d.ts +6 -9
- package/dist/infrastructure/xai/cot-visualizer.d.ts.map +1 -1
- package/dist/infrastructure/xai/cot-visualizer.js +6 -9
- package/dist/infrastructure/xai/cot-visualizer.js.map +1 -1
- package/dist/infrastructure/xai/decision-tree-log.d.ts +6 -10
- package/dist/infrastructure/xai/decision-tree-log.d.ts.map +1 -1
- package/dist/infrastructure/xai/decision-tree-log.js +6 -10
- package/dist/infrastructure/xai/decision-tree-log.js.map +1 -1
- package/dist/infrastructure/xai/interactive-xai.d.ts +6 -8
- package/dist/infrastructure/xai/interactive-xai.d.ts.map +1 -1
- package/dist/infrastructure/xai/interactive-xai.js +6 -8
- package/dist/infrastructure/xai/interactive-xai.js.map +1 -1
- package/dist/infrastructure/xai/uncertainty-quantifier.d.ts +6 -9
- package/dist/infrastructure/xai/uncertainty-quantifier.d.ts.map +1 -1
- package/dist/infrastructure/xai/uncertainty-quantifier.js +6 -9
- package/dist/infrastructure/xai/uncertainty-quantifier.js.map +1 -1
- package/dist/monitoring.d.ts +1 -1
- package/dist/monitoring.d.ts.map +1 -1
- package/dist/monitoring.js +12 -9
- package/dist/monitoring.js.map +1 -1
- package/dist/parallel-processor.d.ts.map +1 -1
- package/dist/parallel-processor.js +124 -45
- package/dist/parallel-processor.js.map +1 -1
- package/dist/presentation/cli/commands/ask-command.d.ts +2 -0
- package/dist/presentation/cli/commands/ask-command.d.ts.map +1 -1
- package/dist/presentation/cli/commands/ask-command.js +356 -87
- package/dist/presentation/cli/commands/ask-command.js.map +1 -1
- package/dist/presentation/cli/commands/config-command.d.ts.map +1 -1
- package/dist/presentation/cli/commands/config-command.js +22 -8
- package/dist/presentation/cli/commands/config-command.js.map +1 -1
- package/dist/presentation/cli/commands/decision-command.js +23 -6
- package/dist/presentation/cli/commands/decision-command.js.map +1 -1
- package/dist/presentation/cli/commands/docs-command.d.ts +14 -0
- package/dist/presentation/cli/commands/docs-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/docs-command.js +25 -0
- package/dist/presentation/cli/commands/docs-command.js.map +1 -0
- package/dist/presentation/cli/commands/fix-command.d.ts +10 -0
- package/dist/presentation/cli/commands/fix-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/fix-command.js +94 -0
- package/dist/presentation/cli/commands/fix-command.js.map +1 -0
- package/dist/presentation/cli/commands/help-command.d.ts.map +1 -1
- package/dist/presentation/cli/commands/help-command.js +23 -1
- package/dist/presentation/cli/commands/help-command.js.map +1 -1
- package/dist/presentation/cli/commands/memory-command.d.ts +17 -0
- package/dist/presentation/cli/commands/memory-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/memory-command.js +252 -0
- package/dist/presentation/cli/commands/memory-command.js.map +1 -0
- package/dist/presentation/cli/commands/models-command.d.ts +13 -0
- package/dist/presentation/cli/commands/models-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/models-command.js +194 -0
- package/dist/presentation/cli/commands/models-command.js.map +1 -0
- package/dist/presentation/cli/commands/orchestrate-command.d.ts +2 -0
- package/dist/presentation/cli/commands/orchestrate-command.d.ts.map +1 -1
- package/dist/presentation/cli/commands/orchestrate-command.js +182 -14
- package/dist/presentation/cli/commands/orchestrate-command.js.map +1 -1
- package/dist/presentation/cli/commands/plan-command.d.ts +2 -0
- package/dist/presentation/cli/commands/plan-command.d.ts.map +1 -1
- package/dist/presentation/cli/commands/plan-command.js +212 -26
- package/dist/presentation/cli/commands/plan-command.js.map +1 -1
- package/dist/presentation/cli/commands/product-command.d.ts +14 -0
- package/dist/presentation/cli/commands/product-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/product-command.js +22 -0
- package/dist/presentation/cli/commands/product-command.js.map +1 -0
- package/dist/presentation/cli/commands/react-command.d.ts.map +1 -1
- package/dist/presentation/cli/commands/react-command.js +8 -2
- package/dist/presentation/cli/commands/react-command.js.map +1 -1
- package/dist/presentation/cli/commands/review-command.d.ts +14 -0
- package/dist/presentation/cli/commands/review-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/review-command.js +173 -0
- package/dist/presentation/cli/commands/review-command.js.map +1 -0
- package/dist/presentation/cli/commands/run-command.d.ts +13 -0
- package/dist/presentation/cli/commands/run-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/run-command.js +188 -0
- package/dist/presentation/cli/commands/run-command.js.map +1 -0
- package/dist/presentation/cli/commands/setup-command.d.ts.map +1 -1
- package/dist/presentation/cli/commands/setup-command.js +15 -0
- package/dist/presentation/cli/commands/setup-command.js.map +1 -1
- package/dist/presentation/cli/commands/smart-command.d.ts +3 -1
- package/dist/presentation/cli/commands/smart-command.d.ts.map +1 -1
- package/dist/presentation/cli/commands/smart-command.js +165 -11
- package/dist/presentation/cli/commands/smart-command.js.map +1 -1
- package/dist/presentation/cli/commands/status-command.d.ts +14 -0
- package/dist/presentation/cli/commands/status-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/status-command.js +171 -0
- package/dist/presentation/cli/commands/status-command.js.map +1 -0
- package/dist/presentation/cli/commands/suggest-command.d.ts +11 -0
- package/dist/presentation/cli/commands/suggest-command.d.ts.map +1 -0
- package/dist/presentation/cli/commands/suggest-command.js +138 -0
- package/dist/presentation/cli/commands/suggest-command.js.map +1 -0
- package/dist/presentation/cli/error-display.d.ts.map +1 -1
- package/dist/presentation/cli/error-display.js +118 -17
- package/dist/presentation/cli/error-display.js.map +1 -1
- package/dist/search.d.ts.map +1 -1
- package/dist/search.js +6 -1
- package/dist/search.js.map +1 -1
- package/dist/session.d.ts +1 -0
- package/dist/session.d.ts.map +1 -1
- package/dist/session.js +69 -4
- package/dist/session.js.map +1 -1
- package/dist/tools/bash.d.ts.map +1 -1
- package/dist/tools/bash.js +3 -0
- package/dist/tools/bash.js.map +1 -1
- package/dist/tools/git-tool.js +7 -7
- package/dist/tools/git-tool.js.map +1 -1
- package/dist/ui.d.ts +11 -0
- package/dist/ui.d.ts.map +1 -1
- package/dist/ui.js +62 -6
- package/dist/ui.js.map +1 -1
- package/package.json +22 -4
|
@@ -3,14 +3,29 @@
|
|
|
3
3
|
* Uses clean architecture - AskQuestionUseCase
|
|
4
4
|
*/
|
|
5
5
|
import { container } from '../../../application/services/dependency-container.js';
|
|
6
|
-
import { colors, sectionHeader, formatNumber, formatPath, formatScore, createTable, newline, warning, info, separator, } from '../../../ui.js';
|
|
6
|
+
import { colors, sectionHeader, formatNumber, formatPath, formatScore, createTable, newline, warning, info, separator, isMinimalStyle, printMinimalHeader, printSafetyNote, printContextSummary, getProviderDisplayName, } from '../../../ui.js';
|
|
7
7
|
import { cleanResponse } from '../../../formatter.js';
|
|
8
8
|
import { executionTracer } from '../../../infrastructure/observability/execution-tracer.js';
|
|
9
9
|
import { findCodebaseRoot } from '../../../domain/services/codebase-detector.js';
|
|
10
10
|
import { displayError } from '../error-display.js';
|
|
11
|
+
import { join } from 'path';
|
|
11
12
|
export async function executeAskCommand(question, options) {
|
|
12
13
|
// Track start time for summary statistics
|
|
13
14
|
const startTime = Date.now();
|
|
15
|
+
// Capability Boundaries: Check for unsupported operations
|
|
16
|
+
try {
|
|
17
|
+
const { CapabilityBoundaryDetector, displayCapabilityBoundary } = await import('../../../infrastructure/ux/capability-boundaries.js');
|
|
18
|
+
const detector = new CapabilityBoundaryDetector();
|
|
19
|
+
const boundary = detector.detectUnsupported(question);
|
|
20
|
+
if (boundary) {
|
|
21
|
+
displayCapabilityBoundary(boundary);
|
|
22
|
+
executionTracer.endRun();
|
|
23
|
+
return; // Don't proceed with unsupported operation
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
catch {
|
|
27
|
+
// Capability boundary check failed - continue anyway (non-blocking)
|
|
28
|
+
}
|
|
14
29
|
// Start execution tracing
|
|
15
30
|
const codebaseInfo = findCodebaseRoot(process.cwd());
|
|
16
31
|
const runId = executionTracer.startRun('ask', {
|
|
@@ -24,10 +39,10 @@ export async function executeAskCommand(question, options) {
|
|
|
24
39
|
if (progressiveDisclosure) {
|
|
25
40
|
progressiveDisclosure.recordFeatureUsage(userId, 'ask_question');
|
|
26
41
|
}
|
|
27
|
-
// Expectation Management: Assess capability
|
|
42
|
+
// Expectation Management: Assess capability (suppress output in JSON mode)
|
|
28
43
|
const expectationManagement = container.expectationManagement;
|
|
29
44
|
let capabilityAssessment = null;
|
|
30
|
-
if (expectationManagement) {
|
|
45
|
+
if (expectationManagement && !options?.json) {
|
|
31
46
|
// Show first-time AI disclaimer if needed
|
|
32
47
|
if (expectationManagement.shouldShowFirstTimeDisclaimer()) {
|
|
33
48
|
console.log(warning(expectationManagement.formatDisclaimerForConsole()));
|
|
@@ -45,11 +60,46 @@ export async function executeAskCommand(question, options) {
|
|
|
45
60
|
}
|
|
46
61
|
}
|
|
47
62
|
try {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
63
|
+
// Check if embeddings exist for this repository (skip check if using fake AI for testing)
|
|
64
|
+
if (process.env.CODEHERE_FAKE_AI !== '1') {
|
|
65
|
+
const embeddingRepo = container.getEmbeddingRepository(process.cwd());
|
|
66
|
+
const hasEmbeddings = await embeddingRepo.hasEmbeddings();
|
|
67
|
+
if (!hasEmbeddings) {
|
|
68
|
+
newline();
|
|
69
|
+
console.error(colors.red('No embeddings found for this repository.'));
|
|
70
|
+
newline();
|
|
71
|
+
console.log('Run:');
|
|
72
|
+
console.log(colors.cyan(' codehere index'));
|
|
73
|
+
console.log('');
|
|
74
|
+
console.log('then re-run this command.');
|
|
75
|
+
newline();
|
|
76
|
+
executionTracer.endRun();
|
|
77
|
+
process.exit(1);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
// Use per-repo embedding repository for codebase isolation
|
|
81
|
+
const useCase = container.getAskQuestionUseCase(process.cwd());
|
|
82
|
+
const minimal = isMinimalStyle();
|
|
83
|
+
if (!options?.json) {
|
|
84
|
+
// Print minimal header
|
|
85
|
+
if (minimal) {
|
|
86
|
+
printMinimalHeader('ask', question);
|
|
87
|
+
// Display provider as required by capability map (2.23)
|
|
88
|
+
const providerName = getProviderDisplayName(container.aiService);
|
|
89
|
+
console.log(colors.dim(`Provider: ${providerName}`));
|
|
90
|
+
console.log(colors.bold('Answer:'));
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
// Display provider in verbose mode too
|
|
94
|
+
const providerName = getProviderDisplayName(container.aiService);
|
|
95
|
+
console.log(colors.dim(`Provider: ${providerName}`));
|
|
96
|
+
newline();
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
// Enable streaming by default for better UX - disable in minimal mode and JSON mode
|
|
100
|
+
const enableStreaming = !minimal && !options?.json && options?.stream !== false;
|
|
51
101
|
let streamingAnswer = '';
|
|
52
|
-
// Set up streaming handler
|
|
102
|
+
// Set up streaming handler (only in verbose mode, not JSON)
|
|
53
103
|
const streamHandler = enableStreaming ? {
|
|
54
104
|
onToken: (token) => {
|
|
55
105
|
process.stdout.write(token);
|
|
@@ -62,118 +112,337 @@ export async function executeAskCommand(question, options) {
|
|
|
62
112
|
console.error(colors.red(`\nStreaming error: ${error.message}`));
|
|
63
113
|
},
|
|
64
114
|
} : undefined;
|
|
115
|
+
// Get conversation context and resolve references
|
|
116
|
+
const { conversationContextManager } = await import('../../../infrastructure/context/conversation-context.js');
|
|
117
|
+
const { sessionManager } = await import('../../../infrastructure/context/session-manager.js');
|
|
118
|
+
const sessionId = sessionManager.getSessionId(process.cwd());
|
|
119
|
+
const history = conversationContextManager.getHistory(sessionId, 5);
|
|
120
|
+
// Resolve references in query (e.g., "it", "that", "the previous")
|
|
121
|
+
const resolvedQuestion = conversationContextManager.resolveReferences(sessionId, question);
|
|
122
|
+
const entities = conversationContextManager.extractEntities(resolvedQuestion);
|
|
65
123
|
// Display search results first (before streaming answer)
|
|
124
|
+
// Pass json flag to use case to suppress progress output
|
|
66
125
|
const result = await useCase.execute({
|
|
67
|
-
query:
|
|
126
|
+
query: resolvedQuestion,
|
|
68
127
|
maxResults: 15,
|
|
69
128
|
streamHandler,
|
|
129
|
+
conversationHistory: history.map(turn => ({
|
|
130
|
+
query: turn.query,
|
|
131
|
+
response: turn.response,
|
|
132
|
+
timestamp: typeof turn.timestamp === 'string' ? Date.parse(turn.timestamp) : turn.timestamp,
|
|
133
|
+
})),
|
|
134
|
+
json: options?.json, // Pass json flag to suppress progress
|
|
70
135
|
});
|
|
71
136
|
// Check if this is a git status response (has answer but no chunks)
|
|
72
137
|
const isGitResponse = result.answer && result.answer.includes('Git Repository Status');
|
|
73
|
-
|
|
138
|
+
const retrievedFiles = [...new Set(result.chunks.map(r => r.filepath))];
|
|
139
|
+
// JSON output (capability map requirement 2.17)
|
|
140
|
+
if (options?.json) {
|
|
141
|
+
const jsonOutput = {
|
|
142
|
+
query: question,
|
|
143
|
+
answer: result.answer || '',
|
|
144
|
+
chunks: result.chunks.map(c => ({
|
|
145
|
+
filepath: c.filepath,
|
|
146
|
+
content: c.content.substring(0, 200) + '...',
|
|
147
|
+
score: c.score,
|
|
148
|
+
lineStart: c.lineStart,
|
|
149
|
+
lineEnd: c.lineEnd,
|
|
150
|
+
})),
|
|
151
|
+
files: retrievedFiles,
|
|
152
|
+
memoriesUsed: result.memories?.length || 0,
|
|
153
|
+
executionTime: ((Date.now() - startTime) / 1000).toFixed(2),
|
|
154
|
+
tokens: result.tokenEstimate || 0,
|
|
155
|
+
provider: container.aiService.provider?.name || container.aiService.provider?.id || 'unknown',
|
|
156
|
+
};
|
|
157
|
+
console.log(JSON.stringify(jsonOutput, null, 2));
|
|
158
|
+
executionTracer.endRun();
|
|
159
|
+
return;
|
|
160
|
+
}
|
|
161
|
+
// With FAKE_AI, we still want to show structured output even if chunks are empty
|
|
162
|
+
// Only show "No relevant code found" for real providers when there are truly no chunks
|
|
163
|
+
// BUT: In empty directories, provide helpful context-aware response instead of blocking error
|
|
164
|
+
if (result.chunks.length === 0 && !isGitResponse && process.env.CODEHERE_FAKE_AI !== '1') {
|
|
165
|
+
// Check if directory has code files (simple heuristic: check for common code file extensions)
|
|
166
|
+
const { readdirSync, statSync } = await import('fs');
|
|
167
|
+
let hasCodeFiles = false;
|
|
168
|
+
try {
|
|
169
|
+
const files = readdirSync(process.cwd());
|
|
170
|
+
const codeExtensions = ['.ts', '.js', '.tsx', '.jsx', '.py', '.java', '.go', '.rs', '.rb', '.php', '.vue', '.svelte'];
|
|
171
|
+
hasCodeFiles = files.some(file => {
|
|
172
|
+
const stats = statSync(join(process.cwd(), file));
|
|
173
|
+
if (stats.isFile()) {
|
|
174
|
+
return codeExtensions.some(ext => file.endsWith(ext));
|
|
175
|
+
}
|
|
176
|
+
return false;
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
catch {
|
|
180
|
+
// If we can't read directory, assume it's not empty
|
|
181
|
+
hasCodeFiles = true;
|
|
182
|
+
}
|
|
183
|
+
// If directory is truly empty (no code files), provide helpful response
|
|
184
|
+
if (!hasCodeFiles) {
|
|
185
|
+
// Provide context-aware response for empty directories
|
|
186
|
+
const helpfulResponse = `This directory appears to be empty or not yet indexed. I can still help you with:
|
|
187
|
+
• Planning and brainstorming (e.g., "plan a user authentication system")
|
|
188
|
+
• Product ideation (e.g., "build a micro SaaS")
|
|
189
|
+
• Architecture questions
|
|
190
|
+
• Code generation from scratch
|
|
191
|
+
|
|
192
|
+
To search existing code, run "codehere index" first.`;
|
|
193
|
+
console.log(helpfulResponse);
|
|
194
|
+
newline();
|
|
195
|
+
executionTracer.endRun();
|
|
196
|
+
return;
|
|
197
|
+
}
|
|
74
198
|
console.log('No relevant code found. Run "codehere index" first.');
|
|
75
199
|
return;
|
|
76
200
|
}
|
|
77
201
|
// If git response, display it directly
|
|
78
202
|
if (isGitResponse) {
|
|
79
|
-
|
|
203
|
+
if (!minimal)
|
|
204
|
+
sectionHeader('Response');
|
|
80
205
|
const formattedResponse = cleanResponse(result.answer);
|
|
81
206
|
console.log(formattedResponse);
|
|
82
207
|
newline();
|
|
83
208
|
return;
|
|
84
209
|
}
|
|
85
|
-
//
|
|
86
|
-
|
|
87
|
-
const
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
// Streaming already displayed, just add newline
|
|
210
|
+
// With FAKE_AI, show at least a placeholder context even if chunks are empty
|
|
211
|
+
// This ensures tests can verify the structured output format
|
|
212
|
+
const showContext = retrievedFiles.length > 0 || process.env.CODEHERE_FAKE_AI === '1';
|
|
213
|
+
// Minimal style: skip verbose search results table
|
|
214
|
+
if (!minimal) {
|
|
215
|
+
// Display search results
|
|
216
|
+
sectionHeader('Search Results');
|
|
217
|
+
const fileTable = createTable(['File', 'Relevance', 'Preview'], result.chunks.slice(0, 10).map(r => [
|
|
218
|
+
formatPath(r.filepath),
|
|
219
|
+
formatScore(r.score),
|
|
220
|
+
colors.dim(r.content.substring(0, 50) + '...'),
|
|
221
|
+
]));
|
|
222
|
+
console.log(fileTable.toString());
|
|
223
|
+
console.log(colors.dim(`\nFound ${formatNumber(result.chunks.length)} chunks from ${formatNumber(retrievedFiles.length)} file(s)`));
|
|
224
|
+
if (result.tokenEstimate) {
|
|
225
|
+
console.log(colors.dim(`Token estimate: ${formatNumber(result.tokenEstimate)}`));
|
|
226
|
+
}
|
|
103
227
|
console.log();
|
|
104
228
|
}
|
|
105
|
-
|
|
106
|
-
const formattedResponse = cleanResponse(result.answer);
|
|
107
|
-
console.log(formattedResponse);
|
|
108
|
-
}
|
|
109
|
-
newline();
|
|
110
|
-
// Show summary statistics
|
|
111
|
-
const executionTime = ((Date.now() - startTime) / 1000).toFixed(2);
|
|
112
|
-
const summaryRows = [];
|
|
113
|
-
summaryRows.push(['Execution Time', `${executionTime}s`]);
|
|
114
|
-
if (result.chunks.length > 0) {
|
|
115
|
-
summaryRows.push(['Files Found', formatNumber(result.chunks.length)]);
|
|
116
|
-
summaryRows.push(['Chunks Retrieved', formatNumber(result.chunks.length)]);
|
|
117
|
-
}
|
|
118
|
-
if (result.tokenEstimate) {
|
|
119
|
-
summaryRows.push(['Tokens', formatNumber(result.tokenEstimate)]);
|
|
120
|
-
}
|
|
229
|
+
// Show memory indicators (XAI: Show what Codehere remembers)
|
|
121
230
|
if (result.memories && result.memories.length > 0) {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
if (summaryRows.length > 1) {
|
|
130
|
-
console.log(separator('─', 80));
|
|
131
|
-
sectionHeader('Summary');
|
|
132
|
-
const summaryTable = createTable(['Metric', 'Value'], summaryRows);
|
|
133
|
-
console.log(summaryTable.toString());
|
|
134
|
-
newline();
|
|
135
|
-
}
|
|
136
|
-
// Expectation Management: Show warnings if uncertainty is high
|
|
137
|
-
if (result.uncertainty && expectationManagement) {
|
|
138
|
-
if (result.uncertainty.isHallucinationRisk) {
|
|
139
|
-
console.log(warning('\n⚠️ High uncertainty detected - please verify the response carefully.'));
|
|
140
|
-
}
|
|
141
|
-
// Update capability assessment with actual uncertainty
|
|
142
|
-
if (capabilityAssessment) {
|
|
143
|
-
const updatedAssessment = expectationManagement.assessCapability('ask_question', {
|
|
144
|
-
complexity: question.split(' ').length > 20 ? 'complex' : question.split(' ').length > 10 ? 'moderate' : 'simple',
|
|
145
|
-
uncertainty: result.uncertainty.combined.value,
|
|
231
|
+
const recentMemories = result.memories.slice(0, 3);
|
|
232
|
+
if (recentMemories.length > 0) {
|
|
233
|
+
console.log(colors.dim('💭 I remember from previous interactions:'));
|
|
234
|
+
recentMemories.forEach((memory, idx) => {
|
|
235
|
+
const desc = memory.description || memory;
|
|
236
|
+
const shortDesc = desc.length > 60 ? desc.substring(0, 60) + '...' : desc;
|
|
237
|
+
console.log(colors.dim(` ${idx + 1}. ${shortDesc}`));
|
|
146
238
|
});
|
|
147
|
-
if (
|
|
148
|
-
console.log(
|
|
239
|
+
if (result.memories.length > 3) {
|
|
240
|
+
console.log(colors.dim(` ... and ${result.memories.length - 3} more memories`));
|
|
149
241
|
}
|
|
242
|
+
console.log(colors.dim(` (View all: codehere memory --list)`));
|
|
243
|
+
newline();
|
|
150
244
|
}
|
|
151
245
|
}
|
|
152
|
-
//
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
246
|
+
// Display response
|
|
247
|
+
if (minimal) {
|
|
248
|
+
// In minimal mode, "Answer:" was already printed before the query
|
|
249
|
+
// Just print the response content
|
|
250
|
+
const formattedResponse = cleanResponse(result.answer || '');
|
|
251
|
+
console.log(formattedResponse);
|
|
156
252
|
newline();
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
253
|
+
if (showContext) {
|
|
254
|
+
// Show context even if empty (for FAKE_AI tests) or with actual files
|
|
255
|
+
if (retrievedFiles.length > 0) {
|
|
256
|
+
printContextSummary(retrievedFiles);
|
|
257
|
+
}
|
|
258
|
+
else if (process.env.CODEHERE_FAKE_AI === '1') {
|
|
259
|
+
// For FAKE_AI tests, show a placeholder context to maintain output structure
|
|
260
|
+
console.log(colors.dim('Context:'));
|
|
261
|
+
console.log(colors.dim(' - (Using test mode - no real embeddings)'));
|
|
262
|
+
}
|
|
263
|
+
newline();
|
|
264
|
+
}
|
|
265
|
+
printSafetyNote();
|
|
266
|
+
newline();
|
|
267
|
+
// Responsible AI: Show privacy and security indicators (minimal mode)
|
|
268
|
+
console.log(separator('─', 60));
|
|
269
|
+
console.log(colors.dim('🔒 Privacy: All data stored locally, no external transmission'));
|
|
270
|
+
console.log(colors.dim('🛡️ Security: Code analysis performed locally'));
|
|
271
|
+
if (result.chunks.length > 0) {
|
|
272
|
+
console.log(colors.dim('✅ Validation: Retrieved code verified from local index'));
|
|
273
|
+
}
|
|
160
274
|
newline();
|
|
161
275
|
}
|
|
162
276
|
else {
|
|
163
|
-
//
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
277
|
+
// Verbose mode
|
|
278
|
+
sectionHeader('Response');
|
|
279
|
+
if (enableStreaming && streamingAnswer) {
|
|
280
|
+
// Streaming already displayed, just add newline
|
|
281
|
+
console.log();
|
|
282
|
+
}
|
|
283
|
+
else {
|
|
284
|
+
const { formatContent } = await import('../../../infrastructure/ux/comprehensive-formatter.js');
|
|
285
|
+
const formattedResponse = formatContent(result.answer || '', { indent: 0, maxWidth: 76 });
|
|
286
|
+
console.log(formattedResponse);
|
|
287
|
+
}
|
|
288
|
+
newline();
|
|
289
|
+
}
|
|
290
|
+
// Verbose style: show summary statistics
|
|
291
|
+
if (!minimal) {
|
|
292
|
+
const executionTime = ((Date.now() - startTime) / 1000).toFixed(2);
|
|
293
|
+
const summaryRows = [];
|
|
294
|
+
summaryRows.push(['Execution Time', `${executionTime}s`]);
|
|
295
|
+
// Performance metrics breakdown (if available)
|
|
296
|
+
if (result.performanceMetrics) {
|
|
297
|
+
const pm = result.performanceMetrics;
|
|
298
|
+
if (pm.embeddingGenTime && pm.embeddingGenTime > 0) {
|
|
299
|
+
summaryRows.push([' Embedding Generation', `${(pm.embeddingGenTime / 1000).toFixed(2)}s`]);
|
|
300
|
+
}
|
|
301
|
+
if (pm.searchTime && pm.searchTime > 0) {
|
|
302
|
+
summaryRows.push([' Code Search', `${(pm.searchTime / 1000).toFixed(2)}s`]);
|
|
303
|
+
}
|
|
304
|
+
if (pm.rerankTime && pm.rerankTime > 0) {
|
|
305
|
+
summaryRows.push([' Rerank', `${(pm.rerankTime / 1000).toFixed(2)}s`]);
|
|
306
|
+
}
|
|
307
|
+
if (pm.chatTime && pm.chatTime > 0) {
|
|
308
|
+
summaryRows.push([' AI Chat', `${(pm.chatTime / 1000).toFixed(2)}s`]);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
if (result.chunks.length > 0) {
|
|
312
|
+
summaryRows.push(['Files Found', formatNumber(result.chunks.length)]);
|
|
313
|
+
summaryRows.push(['Chunks Retrieved', formatNumber(result.chunks.length)]);
|
|
314
|
+
}
|
|
315
|
+
if (result.tokenEstimate) {
|
|
316
|
+
summaryRows.push(['Tokens', formatNumber(result.tokenEstimate)]);
|
|
317
|
+
}
|
|
318
|
+
if (result.memories && result.memories.length > 0) {
|
|
319
|
+
summaryRows.push(['Memories Used', formatNumber(result.memories.length)]);
|
|
320
|
+
}
|
|
321
|
+
if (result.compressionMetrics && result.compressionMetrics.reductionPercent > 0) {
|
|
322
|
+
summaryRows.push(['Context Compression', `${result.compressionMetrics.reductionPercent.toFixed(1)}% reduction`]);
|
|
323
|
+
summaryRows.push([' Original Tokens', formatNumber(result.compressionMetrics.originalTokens)]);
|
|
324
|
+
summaryRows.push([' Compressed Tokens', formatNumber(result.compressionMetrics.compressedTokens)]);
|
|
325
|
+
}
|
|
326
|
+
if (summaryRows.length > 1) {
|
|
327
|
+
console.log(separator('─', 80));
|
|
328
|
+
sectionHeader('Summary');
|
|
329
|
+
const summaryTable = createTable(['Metric', 'Value'], summaryRows);
|
|
330
|
+
console.log(summaryTable.toString());
|
|
331
|
+
newline();
|
|
332
|
+
}
|
|
333
|
+
// XAI: Show reasoning if --explain flag is set
|
|
334
|
+
if (options?.explain) {
|
|
335
|
+
console.log(separator('─', 80));
|
|
336
|
+
sectionHeader('🔍 Explainable AI (XAI): How I Answered');
|
|
337
|
+
newline();
|
|
338
|
+
console.log(colors.bold('Query Analysis:'));
|
|
339
|
+
console.log(colors.dim(` • Intent: question`));
|
|
340
|
+
console.log(colors.dim(` • Complexity: ${question.split(' ').length > 20 ? 'complex' : question.split(' ').length > 10 ? 'moderate' : 'simple'}`));
|
|
341
|
+
if (result.chunks.length > 0) {
|
|
342
|
+
console.log(colors.dim(` • Retrieved ${result.chunks.length} relevant code chunks`));
|
|
343
|
+
console.log(colors.dim(` • From ${retrievedFiles.length} file(s)`));
|
|
344
|
+
}
|
|
345
|
+
if (result.memories && result.memories.length > 0) {
|
|
346
|
+
console.log(colors.dim(` • Used ${result.memories.length} relevant memories from past interactions`));
|
|
347
|
+
}
|
|
348
|
+
newline();
|
|
349
|
+
console.log(colors.bold('Reasoning Steps:'));
|
|
350
|
+
console.log(colors.dim(' 1. Searched codebase for relevant code'));
|
|
351
|
+
if (result.chunks.length > 0) {
|
|
352
|
+
console.log(colors.dim(' 2. Retrieved and ranked most relevant chunks'));
|
|
353
|
+
}
|
|
354
|
+
if (result.memories && result.memories.length > 0) {
|
|
355
|
+
console.log(colors.dim(' 3. Retrieved relevant memories from past interactions'));
|
|
356
|
+
}
|
|
357
|
+
console.log(colors.dim(' 4. Generated answer using retrieved context'));
|
|
358
|
+
newline();
|
|
359
|
+
}
|
|
360
|
+
// Responsible AI: Show privacy and security indicators
|
|
361
|
+
console.log(separator('─', 60));
|
|
362
|
+
console.log(colors.dim('🔒 Privacy: All data stored locally, no external transmission'));
|
|
363
|
+
console.log(colors.dim('🛡️ Security: Code analysis performed locally'));
|
|
364
|
+
if (result.chunks.length > 0) {
|
|
365
|
+
console.log(colors.dim('✅ Validation: Retrieved code verified from local index'));
|
|
366
|
+
}
|
|
367
|
+
newline();
|
|
368
|
+
// Expectation Management: Show warnings if uncertainty is high
|
|
369
|
+
if (result.uncertainty && expectationManagement) {
|
|
370
|
+
if (result.uncertainty.isHallucinationRisk) {
|
|
371
|
+
console.log(warning('\n⚠️ High uncertainty detected - please verify the response carefully.'));
|
|
372
|
+
}
|
|
373
|
+
// Update capability assessment with actual uncertainty
|
|
374
|
+
if (capabilityAssessment) {
|
|
375
|
+
const updatedAssessment = expectationManagement.assessCapability('ask_question', {
|
|
376
|
+
complexity: question.split(' ').length > 20 ? 'complex' : question.split(' ').length > 10 ? 'moderate' : 'simple',
|
|
377
|
+
uncertainty: result.uncertainty.combined.value,
|
|
378
|
+
});
|
|
379
|
+
if (updatedAssessment.warnings.length > 0 && updatedAssessment.capability === 'risky') {
|
|
380
|
+
console.log(warning(`\n⚠️ ${updatedAssessment.warnings[0]}\n`));
|
|
172
381
|
}
|
|
173
382
|
}
|
|
174
383
|
}
|
|
384
|
+
// Contextual Feature Discovery: Show relevant features based on query (Task 2.2)
|
|
385
|
+
const { shouldShowContextualSuggestion } = await import('../../../infrastructure/ux/contextual-feature-discovery.js');
|
|
386
|
+
const contextualSuggestion = shouldShowContextualSuggestion(question, 'ask');
|
|
387
|
+
if (contextualSuggestion) {
|
|
388
|
+
newline();
|
|
389
|
+
console.log(colors.bold(`💡 Tip: ${contextualSuggestion.reason}`));
|
|
390
|
+
console.log(colors.dim(` Try: ${colors.cyan(contextualSuggestion.command)}`));
|
|
391
|
+
console.log(colors.dim(` ${contextualSuggestion.description}`));
|
|
392
|
+
newline();
|
|
393
|
+
}
|
|
394
|
+
else {
|
|
395
|
+
// Progressive Disclosure: Suggest next features for beginner users (fallback)
|
|
396
|
+
if (progressiveDisclosure) {
|
|
397
|
+
const profile = progressiveDisclosure.getUserProfile(userId);
|
|
398
|
+
if (profile.level === 'beginner' || profile.level === 'intermediate') {
|
|
399
|
+
const nextFeatures = progressiveDisclosure.getNextSuggestedFeatures(userId, 1);
|
|
400
|
+
if (nextFeatures.length > 0) {
|
|
401
|
+
const feature = nextFeatures[0];
|
|
402
|
+
console.log(info(`💡 Tip: Try "${feature.featureName}" - ${feature.description}`));
|
|
403
|
+
console.log(colors.dim(` Run: codehere ${feature.featureId === 'edit_file' ? 'edit' : feature.featureId === 'react_loop' ? 'react' : 'help'} for more info\n`));
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
// Task 6.1: Explicit Feedback Mechanisms - Prompt for feedback after response
|
|
409
|
+
try {
|
|
410
|
+
const { promptForFeedback, storeFeedback, displayFeedbackConfirmation } = await import('../../../infrastructure/ux/feedback-prompt.js');
|
|
411
|
+
const { BiDirectionalLearning } = await import('../../../infrastructure/ux/bi-directional-learning.js');
|
|
412
|
+
// Get learning system from container (or create instance if not available)
|
|
413
|
+
const learningSystem = container.biDirectionalLearning || new BiDirectionalLearning();
|
|
414
|
+
const userId = process.env.USER || 'default-user';
|
|
415
|
+
const feedback = await promptForFeedback('ask', {
|
|
416
|
+
query: question,
|
|
417
|
+
response: result.answer,
|
|
418
|
+
sessionId: executionTracer.getCurrentRunId() || undefined,
|
|
419
|
+
});
|
|
420
|
+
if (feedback) {
|
|
421
|
+
storeFeedback(learningSystem, userId, feedback, {
|
|
422
|
+
operation: 'ask',
|
|
423
|
+
query: question,
|
|
424
|
+
response: result.answer,
|
|
425
|
+
sessionId: executionTracer.getCurrentRunId() || undefined,
|
|
426
|
+
});
|
|
427
|
+
displayFeedbackConfirmation(feedback);
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
catch (feedbackError) {
|
|
431
|
+
// Don't fail the command if feedback collection fails
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
// Store conversation turn for future reference resolution (always)
|
|
435
|
+
try {
|
|
436
|
+
const { conversationContextManager } = await import('../../../infrastructure/context/conversation-context.js');
|
|
437
|
+
const { sessionManager } = await import('../../../infrastructure/context/session-manager.js');
|
|
438
|
+
const sessionId = sessionManager.getSessionId(process.cwd());
|
|
439
|
+
const response = result.answer || 'No answer generated';
|
|
440
|
+
const entities = conversationContextManager.extractEntities(resolvedQuestion);
|
|
441
|
+
conversationContextManager.addTurn(sessionId, question, response, entities, 'ask');
|
|
442
|
+
}
|
|
443
|
+
catch (error) {
|
|
444
|
+
// Don't fail if conversation tracking fails
|
|
175
445
|
}
|
|
176
|
-
console.log();
|
|
177
446
|
}
|
|
178
447
|
catch (err) {
|
|
179
448
|
displayError(err, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ask-command.js","sourceRoot":"","sources":["../../../../src/presentation/cli/commands/ask-command.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,uDAAuD,CAAC;AAClF,OAAO,EACL,MAAM,EACN,aAAa,EACb,YAAY,EACZ,UAAU,EACV,WAAW,EACX,WAAW,EACX,OAAO,EACP,OAAO,EACP,IAAI,EACJ,SAAS,GACV,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,2DAA2D,CAAC;AAC5F,OAAO,EAAE,gBAAgB,EAAE,MAAM,+CAA+C,CAAC;AACjF,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,MAAM,CAAC,KAAK,UAAU,iBAAiB,CAAC,QAAgB,EAAE,OAA8B;IACtF,0CAA0C;IAC1C,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;IAE7B,0BAA0B;IAC1B,MAAM,YAAY,GAAG,gBAAgB,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IACrD,MAAM,KAAK,GAAG,eAAe,CAAC,QAAQ,CAAC,KAAK,EAAE;QAC5C,KAAK,EAAE,QAAQ;QACf,UAAU,EAAE,YAAY,EAAE,QAAQ,IAAI,OAAO,CAAC,GAAG,EAAE;KACpD,CAAC,CAAC;IAEH,wEAAwE;IACxE,MAAM,MAAM,GAAG,YAAY,EAAE,QAAQ,IAAI,OAAO,CAAC,GAAG,EAAE,IAAI,UAAU,CAAC;IAErE,+CAA+C;IAC/C,MAAM,qBAAqB,GAAG,SAAS,CAAC,qBAAqB,CAAC;IAC9D,IAAI,qBAAqB,EAAE,CAAC;QAC1B,qBAAqB,CAAC,kBAAkB,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IACnE,CAAC;IAED,iEAAiE;IACjE,MAAM,qBAAqB,GAAG,SAAS,CAAC,qBAAqB,CAAC;IAC9D,IAAI,oBAAoB,GAAG,IAAI,CAAC;IAChC,IAAI,qBAAqB,EAAE,CAAC;QAC1B,0CAA0C;QAC1C,IAAI,qBAAqB,CAAC,6BAA6B,EAAE,EAAE,CAAC;YAC1D,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,qBAAqB,CAAC,0BAA0B,EAAE,CAAC,CAAC,CAAC;YACzE,OAAO,EAAE,CAAC;YACV,qBAAqB,CAAC,mBAAmB,EAAE,CAAC;QAC9C,CAAC;QAED,oBAAoB,GAAG,qBAAqB,CAAC,gBAAgB,CAAC,cAAc,EAAE;YAC5E,UAAU,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,QAAQ;YACjH,WAAW,EAAE,SAAS,EAAE,0CAA0C;SACnE,CAAC,CAAC;QAEH,oDAAoD;QACpD,MAAM,kBAAkB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC,cAAc,CAAC,CAAC;QACvF,IAAI,kBAAkB,IAAI,kBAAkB,CAAC,QAAQ,KAAK,SAAS,EAAE,CAAC;YACpE,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,kBAAkB,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC;QAC5D,CAAC;IACH,CAAC;IAED,IAAI,CAAC;QACL,MAAM,OAAO,GAAG,SAAS,CAAC,kBAAkB,CAAC;QAE7C,4CAA4C;QAC5C,MAAM,eAAe,GAAG,OAAO,EAAE,MAAM,KAAK,KAAK,CAAC;QAClD,IAAI,eAAe,GAAG,EAAE,CAAC;QAEzB,2BAA2B;QAC3B,MAAM,aAAa,GAAG,eAAe,CAAC,CAAC,CAAC;YACtC,OAAO,EAAE,CAAC,KAAa,EAAE,EAAE;gBACzB,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;gBAC5B,eAAe,IAAI,KAAK,CAAC;YAC3B,CAAC;YACD,UAAU,EAAE,CAAC,QAAgB,EAAE,EAAE;gBAC/B,eAAe,GAAG,QAAQ,CAAC;YAC7B,CAAC;YACD,OAAO,EAAE,CAAC,KAAY,EAAE,EAAE;gBACxB,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,sBAAsB,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;YACnE,CAAC;SACF,CAAC,CAAC,CAAC,SAAS,CAAC;QAEd,yDAAyD;QACzD,MAAM,MAAM,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC;YACnC,KAAK,EAAE,QAAQ;YACf,UAAU,EAAE,EAAE;YACd,aAAa;SACd,CAAC,CAAC;QAEH,oEAAoE;QACpE,MAAM,aAAa,GAAG,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,uBAAuB,CAAC,CAAC;QAEvF,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC;YACjD,OAAO,CAAC,GAAG,CAAC,qDAAqD,CAAC,CAAC;YACnE,OAAO;QACT,CAAC;QAED,uCAAuC;QACvC,IAAI,aAAa,EAAE,CAAC;YAClB,aAAa,CAAC,UAAU,CAAC,CAAC;YAC1B,MAAM,iBAAiB,GAAG,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YACvD,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;YAC/B,OAAO,EAAE,CAAC;YACV,OAAO;QACT,CAAC;QAED,yBAAyB;QACzB,aAAa,CAAC,gBAAgB,CAAC,CAAC;QAChC,MAAM,SAAS,GAAG,WAAW,CAC3B,CAAC,MAAM,EAAE,WAAW,EAAE,SAAS,CAAC,EAChC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;YAClC,UAAU,CAAC,CAAC,CAAC,QAAQ,CAAC;YACtB,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC;YACpB,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,KAAK,CAAC;SAC/C,CAAC,CACH,CAAC;QACF,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,QAAQ,EAAE,CAAC,CAAC;QAElC,MAAM,cAAc,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;QACxE,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,WAAW,YAAY,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,gBAAgB,YAAY,CAAC,cAAc,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC;QACpI,IAAI,MAAM,CAAC,aAAa,EAAE,CAAC;YACzB,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,mBAAmB,YAAY,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,CAAC;QACnF,CAAC;QAED,OAAO,CAAC,GAAG,EAAE,CAAC;QAEd,+EAA+E;QAC/E,aAAa,CAAC,UAAU,CAAC,CAAC;QAC1B,IAAI,eAAe,IAAI,eAAe,EAAE,CAAC;YACvC,gDAAgD;YAChD,OAAO,CAAC,GAAG,EAAE,CAAC;QAChB,CAAC;aAAM,CAAC;YACN,MAAM,iBAAiB,GAAG,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YACvD,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;QACjC,CAAC;QACD,OAAO,EAAE,CAAC;QAEV,0BAA0B;QAC1B,MAAM,aAAa,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QACnE,MAAM,WAAW,GAAe,EAAE,CAAC;QACnC,WAAW,CAAC,IAAI,CAAC,CAAC,gBAAgB,EAAE,GAAG,aAAa,GAAG,CAAC,CAAC,CAAC;QAC1D,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAC7B,WAAW,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,YAAY,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YACtE,WAAW,CAAC,IAAI,CAAC,CAAC,kBAAkB,EAAE,YAAY,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QAC7E,CAAC;QACD,IAAI,MAAM,CAAC,aAAa,EAAE,CAAC;YACzB,WAAW,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,YAAY,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;QACnE,CAAC;QACD,IAAI,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAClD,WAAW,CAAC,IAAI,CAAC,CAAC,eAAe,EAAE,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;QAC5E,CAAC;QACD,IAAI,MAAM,CAAC,kBAAkB,IAAI,MAAM,CAAC,kBAAkB,CAAC,gBAAgB,GAAG,CAAC,EAAE,CAAC;YAChF,WAAW,CAAC,IAAI,CAAC,CAAC,qBAAqB,EAAE,GAAG,MAAM,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC;YACjH,WAAW,CAAC,IAAI,CAAC,CAAC,mBAAmB,EAAE,YAAY,CAAC,MAAM,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;YAChG,WAAW,CAAC,IAAI,CAAC,CAAC,qBAAqB,EAAE,YAAY,CAAC,MAAM,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;QACtG,CAAC;QAED,IAAI,WAAW,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAC3B,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC;YAChC,aAAa,CAAC,SAAS,CAAC,CAAC;YACzB,MAAM,YAAY,GAAG,WAAW,CAAC,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,WAAW,CAAC,CAAC;YACnE,OAAO,CAAC,GAAG,CAAC,YAAY,CAAC,QAAQ,EAAE,CAAC,CAAC;YACrC,OAAO,EAAE,CAAC;QACZ,CAAC;QAED,+DAA+D;QAC/D,IAAI,MAAM,CAAC,WAAW,IAAI,qBAAqB,EAAE,CAAC;YAChD,IAAI,MAAM,CAAC,WAAW,CAAC,mBAAmB,EAAE,CAAC;gBAC3C,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,yEAAyE,CAAC,CAAC,CAAC;YAClG,CAAC;YAED,uDAAuD;YACvD,IAAI,oBAAoB,EAAE,CAAC;gBACzB,MAAM,iBAAiB,GAAG,qBAAqB,CAAC,gBAAgB,CAAC,cAAc,EAAE;oBAC/E,UAAU,EAAE,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,QAAQ;oBACjH,WAAW,EAAE,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK;iBAC/C,CAAC,CAAC;gBAEH,IAAI,iBAAiB,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,IAAI,iBAAiB,CAAC,UAAU,KAAK,OAAO,EAAE,CAAC;oBACtF,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,SAAS,iBAAiB,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;gBACnE,CAAC;YACH,CAAC;QACH,CAAC;QAED,iFAAiF;QACjF,MAAM,EAAE,8BAA8B,EAAE,GAAG,MAAM,MAAM,CAAC,4DAA4D,CAAC,CAAC;QACtH,MAAM,oBAAoB,GAAG,8BAA8B,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;QAE7E,IAAI,oBAAoB,EAAE,CAAC;YACzB,OAAO,EAAE,CAAC;YACV,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,oBAAoB,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;YACnE,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,WAAW,MAAM,CAAC,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC;YAChF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,oBAAoB,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;YAClE,OAAO,EAAE,CAAC;QACZ,CAAC;aAAM,CAAC;YACN,8EAA8E;YAC9E,IAAI,qBAAqB,EAAE,CAAC;gBAC1B,MAAM,OAAO,GAAG,qBAAqB,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;gBAC7D,IAAI,OAAO,CAAC,KAAK,KAAK,UAAU,IAAI,OAAO,CAAC,KAAK,KAAK,cAAc,EAAE,CAAC;oBACrE,MAAM,YAAY,GAAG,qBAAqB,CAAC,wBAAwB,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;oBAC/E,IAAI,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;wBAC5B,MAAM,OAAO,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC;wBAChC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,gBAAgB,OAAO,CAAC,WAAW,OAAO,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;wBACnF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,oBAAoB,OAAO,CAAC,SAAS,KAAK,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,SAAS,KAAK,YAAY,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,kBAAkB,CAAC,CAAC,CAAC;oBACpK,CAAC;gBACH,CAAC;YACH,CAAC;QACH,CAAC;QAED,OAAO,CAAC,GAAG,EAAE,CAAC;IACd,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,YAAY,CAAC,GAAG,EAAE;YAChB,SAAS,EAAE,KAAK;YAChB,KAAK,EAAE,QAAQ;YACf,eAAe,EAAE,IAAI;SACtB,CAAC,CAAC;QACH,MAAM,GAAG,CAAC;IACZ,CAAC;YAAS,CAAC;QACT,eAAe,CAAC,MAAM,EAAE,CAAC;IAC3B,CAAC;AACH,CAAC"}
|
|
1
|
+
{"version":3,"file":"ask-command.js","sourceRoot":"","sources":["../../../../src/presentation/cli/commands/ask-command.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-command.d.ts","sourceRoot":"","sources":["../../../../src/presentation/cli/commands/config-command.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"config-command.d.ts","sourceRoot":"","sources":["../../../../src/presentation/cli/commands/config-command.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAsDH;;GAEG;AACH,wBAAsB,oBAAoB,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CA+FvG"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Config Command
|
|
3
3
|
* Manage Codehere configuration and preferences
|
|
4
4
|
*/
|
|
5
|
-
import { colors, separator, newline, sectionHeader, success, error, createTable, } from '../../../ui.js';
|
|
5
|
+
import { colors, separator, newline, sectionHeader, success, error, createTable, isMinimalStyle, } from '../../../ui.js';
|
|
6
6
|
import { getConfigManager } from '../../../infrastructure/config/config-manager.js';
|
|
7
7
|
import { executionTracer } from '../../../infrastructure/observability/execution-tracer.js';
|
|
8
8
|
import { findCodebaseRoot } from '../../../domain/services/codebase-detector.js';
|
|
@@ -41,17 +41,31 @@ function displayConfig(config) {
|
|
|
41
41
|
* Execute config command
|
|
42
42
|
*/
|
|
43
43
|
export async function executeConfigCommand(action, key, value) {
|
|
44
|
-
// Start execution tracing
|
|
45
|
-
|
|
44
|
+
// Start execution tracing (with timeout protection)
|
|
45
|
+
let codebaseInfo;
|
|
46
|
+
try {
|
|
47
|
+
codebaseInfo = await Promise.race([
|
|
48
|
+
Promise.resolve(findCodebaseRoot(process.cwd())),
|
|
49
|
+
new Promise((_, reject) => {
|
|
50
|
+
setTimeout(() => reject(new Error('Codebase detection timed out')), 5000);
|
|
51
|
+
}),
|
|
52
|
+
]);
|
|
53
|
+
}
|
|
54
|
+
catch {
|
|
55
|
+
// If codebase detection times out, continue with undefined
|
|
56
|
+
codebaseInfo = undefined;
|
|
57
|
+
}
|
|
46
58
|
const runId = executionTracer.startRun('config', {
|
|
47
59
|
codebaseId: codebaseInfo?.rootPath || process.cwd(),
|
|
48
60
|
});
|
|
49
61
|
try {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
62
|
+
if (!isMinimalStyle()) {
|
|
63
|
+
newline();
|
|
64
|
+
console.log(separator('═', 80));
|
|
65
|
+
console.log(colors.bold('Codehere - Configuration Manager'));
|
|
66
|
+
console.log(separator('═', 80));
|
|
67
|
+
newline();
|
|
68
|
+
}
|
|
55
69
|
const configManager = getConfigManager();
|
|
56
70
|
const config = configManager.getAll();
|
|
57
71
|
// No action - show current config
|