@mc1global/opencode-jarvis 0.13.1 → 0.14.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/CHANGELOG.md +391 -0
- package/LICENSE +7 -123
- package/QUICK-GUIDE.md +67 -0
- package/README.md +417 -351
- package/dist/application/agent-registry/dtos.d.ts +66 -0
- package/dist/application/agent-registry/dtos.d.ts.map +1 -0
- package/dist/application/agent-registry/dtos.js +11 -0
- package/dist/application/agent-registry/dtos.js.map +1 -0
- package/dist/application/agent-registry/use-cases.d.ts +25 -0
- package/dist/application/agent-registry/use-cases.d.ts.map +1 -0
- package/dist/application/agent-registry/use-cases.js +223 -0
- package/dist/application/agent-registry/use-cases.js.map +1 -0
- package/dist/application/azure-sync/comment-intent-service.d.ts +73 -0
- package/dist/application/azure-sync/comment-intent-service.d.ts.map +1 -0
- package/dist/application/azure-sync/comment-intent-service.js +105 -0
- package/dist/application/azure-sync/comment-intent-service.js.map +1 -0
- package/dist/application/azure-sync/dtos.d.ts +210 -0
- package/dist/application/azure-sync/dtos.d.ts.map +1 -0
- package/dist/application/azure-sync/dtos.js +11 -0
- package/dist/application/azure-sync/dtos.js.map +1 -0
- package/dist/application/azure-sync/field-builders.d.ts +54 -0
- package/dist/application/azure-sync/field-builders.d.ts.map +1 -0
- package/dist/application/azure-sync/field-builders.js +166 -0
- package/dist/application/azure-sync/field-builders.js.map +1 -0
- package/dist/application/azure-sync/intent-executor.d.ts +54 -0
- package/dist/application/azure-sync/intent-executor.d.ts.map +1 -0
- package/dist/application/azure-sync/intent-executor.js +130 -0
- package/dist/application/azure-sync/intent-executor.js.map +1 -0
- package/dist/application/azure-sync/intent-reply-builder.d.ts +41 -0
- package/dist/application/azure-sync/intent-reply-builder.d.ts.map +1 -0
- package/dist/application/azure-sync/intent-reply-builder.js +57 -0
- package/dist/application/azure-sync/intent-reply-builder.js.map +1 -0
- package/dist/application/azure-sync/kanban-card-sync-adapter.d.ts +39 -0
- package/dist/application/azure-sync/kanban-card-sync-adapter.d.ts.map +1 -0
- package/dist/application/azure-sync/kanban-card-sync-adapter.js +74 -0
- package/dist/application/azure-sync/kanban-card-sync-adapter.js.map +1 -0
- package/dist/application/azure-sync/kanban-sync-ports.d.ts +60 -0
- package/dist/application/azure-sync/kanban-sync-ports.d.ts.map +1 -0
- package/dist/application/azure-sync/kanban-sync-ports.js +17 -0
- package/dist/application/azure-sync/kanban-sync-ports.js.map +1 -0
- package/dist/application/azure-sync/poll-service.d.ts +96 -0
- package/dist/application/azure-sync/poll-service.d.ts.map +1 -0
- package/dist/application/azure-sync/poll-service.js +273 -0
- package/dist/application/azure-sync/poll-service.js.map +1 -0
- package/dist/application/azure-sync/pr-use-cases.d.ts +36 -0
- package/dist/application/azure-sync/pr-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/pr-use-cases.js +187 -0
- package/dist/application/azure-sync/pr-use-cases.js.map +1 -0
- package/dist/application/azure-sync/pull-use-cases.d.ts +43 -0
- package/dist/application/azure-sync/pull-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/pull-use-cases.js +355 -0
- package/dist/application/azure-sync/pull-use-cases.js.map +1 -0
- package/dist/application/azure-sync/push-entity-use-cases.d.ts +40 -0
- package/dist/application/azure-sync/push-entity-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/push-entity-use-cases.js +266 -0
- package/dist/application/azure-sync/push-entity-use-cases.js.map +1 -0
- package/dist/application/azure-sync/push-use-cases.d.ts +46 -0
- package/dist/application/azure-sync/push-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/push-use-cases.js +152 -0
- package/dist/application/azure-sync/push-use-cases.js.map +1 -0
- package/dist/application/azure-sync/reverse-field-builder.d.ts +52 -0
- package/dist/application/azure-sync/reverse-field-builder.d.ts.map +1 -0
- package/dist/application/azure-sync/reverse-field-builder.js +130 -0
- package/dist/application/azure-sync/reverse-field-builder.js.map +1 -0
- package/dist/application/azure-sync/task-push-use-cases.d.ts +68 -0
- package/dist/application/azure-sync/task-push-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/task-push-use-cases.js +163 -0
- package/dist/application/azure-sync/task-push-use-cases.js.map +1 -0
- package/dist/application/bootstrap/healthcheck-use-cases.d.ts +81 -0
- package/dist/application/bootstrap/healthcheck-use-cases.d.ts.map +1 -0
- package/dist/application/bootstrap/healthcheck-use-cases.js +302 -0
- package/dist/application/bootstrap/healthcheck-use-cases.js.map +1 -0
- package/dist/application/bootstrap/index.d.ts +12 -0
- package/dist/application/bootstrap/index.d.ts.map +1 -0
- package/dist/application/bootstrap/index.js +9 -0
- package/dist/application/bootstrap/index.js.map +1 -0
- package/dist/application/bootstrap/ports.d.ts +29 -0
- package/dist/application/bootstrap/ports.d.ts.map +1 -0
- package/dist/application/bootstrap/ports.js +12 -0
- package/dist/application/bootstrap/ports.js.map +1 -0
- package/dist/application/bootstrap/terminal-commands-use-cases.d.ts +72 -0
- package/dist/application/bootstrap/terminal-commands-use-cases.d.ts.map +1 -0
- package/dist/application/bootstrap/terminal-commands-use-cases.js +132 -0
- package/dist/application/bootstrap/terminal-commands-use-cases.js.map +1 -0
- package/dist/application/bootstrap/use-cases.d.ts +68 -0
- package/dist/application/bootstrap/use-cases.d.ts.map +1 -0
- package/dist/application/bootstrap/use-cases.js +209 -0
- package/dist/application/bootstrap/use-cases.js.map +1 -0
- package/dist/application/config/config-service.d.ts +54 -0
- package/dist/application/config/config-service.d.ts.map +1 -0
- package/dist/application/config/config-service.js +121 -0
- package/dist/application/config/config-service.js.map +1 -0
- package/dist/application/config/config-write-service.d.ts +67 -0
- package/dist/application/config/config-write-service.d.ts.map +1 -0
- package/dist/application/config/config-write-service.js +238 -0
- package/dist/application/config/config-write-service.js.map +1 -0
- package/dist/application/context-memory/dtos.d.ts +100 -0
- package/dist/application/context-memory/dtos.d.ts.map +1 -0
- package/dist/application/context-memory/dtos.js +11 -0
- package/dist/application/context-memory/dtos.js.map +1 -0
- package/dist/application/context-memory/execution-journal-use-cases.d.ts +69 -0
- package/dist/application/context-memory/execution-journal-use-cases.d.ts.map +1 -0
- package/dist/application/context-memory/execution-journal-use-cases.js +99 -0
- package/dist/application/context-memory/execution-journal-use-cases.js.map +1 -0
- package/dist/application/context-memory/note-use-cases.d.ts +22 -0
- package/dist/application/context-memory/note-use-cases.d.ts.map +1 -0
- package/dist/application/context-memory/note-use-cases.js +86 -0
- package/dist/application/context-memory/note-use-cases.js.map +1 -0
- package/dist/application/context-memory/session-use-cases.d.ts +23 -0
- package/dist/application/context-memory/session-use-cases.d.ts.map +1 -0
- package/dist/application/context-memory/session-use-cases.js +73 -0
- package/dist/application/context-memory/session-use-cases.js.map +1 -0
- package/dist/application/context-memory/todo-use-cases.d.ts +25 -0
- package/dist/application/context-memory/todo-use-cases.d.ts.map +1 -0
- package/dist/application/context-memory/todo-use-cases.js +110 -0
- package/dist/application/context-memory/todo-use-cases.js.map +1 -0
- package/dist/application/domain-map/dtos.d.ts +58 -0
- package/dist/application/domain-map/dtos.d.ts.map +1 -0
- package/dist/application/domain-map/dtos.js +11 -0
- package/dist/application/domain-map/dtos.js.map +1 -0
- package/dist/application/domain-map/use-cases.d.ts +44 -0
- package/dist/application/domain-map/use-cases.d.ts.map +1 -0
- package/dist/application/domain-map/use-cases.js +217 -0
- package/dist/application/domain-map/use-cases.js.map +1 -0
- package/dist/application/environment/use-cases.d.ts +98 -0
- package/dist/application/environment/use-cases.d.ts.map +1 -0
- package/dist/application/environment/use-cases.js +236 -0
- package/dist/application/environment/use-cases.js.map +1 -0
- package/dist/application/governance/dtos.d.ts +29 -0
- package/dist/application/governance/dtos.d.ts.map +1 -0
- package/dist/application/governance/dtos.js +11 -0
- package/dist/application/governance/dtos.js.map +1 -0
- package/dist/application/governance/validation-use-cases.d.ts +27 -0
- package/dist/application/governance/validation-use-cases.d.ts.map +1 -0
- package/dist/application/governance/validation-use-cases.js +62 -0
- package/dist/application/governance/validation-use-cases.js.map +1 -0
- package/dist/application/kanban/board-use-cases.d.ts +39 -0
- package/dist/application/kanban/board-use-cases.d.ts.map +1 -0
- package/dist/application/kanban/board-use-cases.js +111 -0
- package/dist/application/kanban/board-use-cases.js.map +1 -0
- package/dist/application/kanban/card-gate-use-cases.d.ts +24 -0
- package/dist/application/kanban/card-gate-use-cases.d.ts.map +1 -0
- package/dist/application/kanban/card-gate-use-cases.js +71 -0
- package/dist/application/kanban/card-gate-use-cases.js.map +1 -0
- package/dist/application/kanban/card-use-cases.d.ts +64 -0
- package/dist/application/kanban/card-use-cases.d.ts.map +1 -0
- package/dist/application/kanban/card-use-cases.js +364 -0
- package/dist/application/kanban/card-use-cases.js.map +1 -0
- package/dist/application/kanban/dtos.d.ts +238 -0
- package/dist/application/kanban/dtos.d.ts.map +1 -0
- package/dist/application/kanban/dtos.js +48 -0
- package/dist/application/kanban/dtos.js.map +1 -0
- package/dist/application/kanban/sprint-use-cases.d.ts +34 -0
- package/dist/application/kanban/sprint-use-cases.d.ts.map +1 -0
- package/dist/application/kanban/sprint-use-cases.js +253 -0
- package/dist/application/kanban/sprint-use-cases.js.map +1 -0
- package/dist/application/pipeline/dtos.d.ts +219 -0
- package/dist/application/pipeline/dtos.d.ts.map +1 -0
- package/dist/application/pipeline/dtos.js +11 -0
- package/dist/application/pipeline/dtos.js.map +1 -0
- package/dist/application/pipeline/use-cases.d.ts +64 -0
- package/dist/application/pipeline/use-cases.d.ts.map +1 -0
- package/dist/application/pipeline/use-cases.js +414 -0
- package/dist/application/pipeline/use-cases.js.map +1 -0
- package/dist/application/rag/dtos.d.ts +119 -0
- package/dist/application/rag/dtos.d.ts.map +1 -0
- package/dist/application/rag/dtos.js +11 -0
- package/dist/application/rag/dtos.js.map +1 -0
- package/dist/application/rag/oracle-use-cases.d.ts +30 -0
- package/dist/application/rag/oracle-use-cases.d.ts.map +1 -0
- package/dist/application/rag/oracle-use-cases.js +101 -0
- package/dist/application/rag/oracle-use-cases.js.map +1 -0
- package/dist/application/rag/rag-mutation-use-cases.d.ts +61 -0
- package/dist/application/rag/rag-mutation-use-cases.d.ts.map +1 -0
- package/dist/application/rag/rag-mutation-use-cases.js +155 -0
- package/dist/application/rag/rag-mutation-use-cases.js.map +1 -0
- package/dist/application/rag/use-cases.d.ts +50 -0
- package/dist/application/rag/use-cases.d.ts.map +1 -0
- package/dist/application/rag/use-cases.js +283 -0
- package/dist/application/rag/use-cases.js.map +1 -0
- package/dist/application/token-metrics/dtos.d.ts +138 -0
- package/dist/application/token-metrics/dtos.d.ts.map +1 -0
- package/dist/application/token-metrics/dtos.js +11 -0
- package/dist/application/token-metrics/dtos.js.map +1 -0
- package/dist/application/token-metrics/tracking-use-cases.d.ts +54 -0
- package/dist/application/token-metrics/tracking-use-cases.d.ts.map +1 -0
- package/dist/application/token-metrics/tracking-use-cases.js +298 -0
- package/dist/application/token-metrics/tracking-use-cases.js.map +1 -0
- package/dist/application/vault/dtos.d.ts +91 -0
- package/dist/application/vault/dtos.d.ts.map +1 -0
- package/dist/application/vault/dtos.js +11 -0
- package/dist/application/vault/dtos.js.map +1 -0
- package/dist/application/vault/use-cases.d.ts +30 -0
- package/dist/application/vault/use-cases.d.ts.map +1 -0
- package/dist/application/vault/use-cases.js +318 -0
- package/dist/application/vault/use-cases.js.map +1 -0
- package/dist/application/vault/vault-manager.d.ts +47 -0
- package/dist/application/vault/vault-manager.d.ts.map +1 -0
- package/dist/application/vault/vault-manager.js +292 -0
- package/dist/application/vault/vault-manager.js.map +1 -0
- package/dist/application/workspace-registry/dtos.d.ts +91 -0
- package/dist/application/workspace-registry/dtos.d.ts.map +1 -0
- package/dist/application/workspace-registry/dtos.js +11 -0
- package/dist/application/workspace-registry/dtos.js.map +1 -0
- package/dist/application/workspace-registry/use-cases.d.ts +79 -0
- package/dist/application/workspace-registry/use-cases.d.ts.map +1 -0
- package/dist/application/workspace-registry/use-cases.js +250 -0
- package/dist/application/workspace-registry/use-cases.js.map +1 -0
- package/dist/composition/hooks.d.ts +15 -0
- package/dist/composition/hooks.d.ts.map +1 -0
- package/dist/composition/hooks.js +113 -0
- package/dist/composition/hooks.js.map +1 -0
- package/dist/composition/infrastructure.d.ts +84 -0
- package/dist/composition/infrastructure.d.ts.map +1 -0
- package/dist/composition/infrastructure.js +140 -0
- package/dist/composition/infrastructure.js.map +1 -0
- package/dist/composition/services.d.ts +78 -0
- package/dist/composition/services.d.ts.map +1 -0
- package/dist/composition/services.js +335 -0
- package/dist/composition/services.js.map +1 -0
- package/dist/composition/tools.d.ts +15 -0
- package/dist/composition/tools.d.ts.map +1 -0
- package/dist/composition/tools.js +136 -0
- package/dist/composition/tools.js.map +1 -0
- package/dist/domain/agent-registry/entities.d.ts +68 -0
- package/dist/domain/agent-registry/entities.d.ts.map +1 -0
- package/dist/domain/agent-registry/entities.js +177 -0
- package/dist/domain/agent-registry/entities.js.map +1 -0
- package/dist/domain/agent-registry/enum-values.d.ts +15 -0
- package/dist/domain/agent-registry/enum-values.d.ts.map +1 -0
- package/dist/domain/agent-registry/enum-values.js +15 -0
- package/dist/domain/agent-registry/enum-values.js.map +1 -0
- package/dist/domain/agent-registry/repositories.d.ts +56 -0
- package/dist/domain/agent-registry/repositories.d.ts.map +1 -0
- package/dist/domain/agent-registry/repositories.js +12 -0
- package/dist/domain/agent-registry/repositories.js.map +1 -0
- package/dist/domain/agent-registry/services.d.ts +87 -0
- package/dist/domain/agent-registry/services.d.ts.map +1 -0
- package/dist/domain/agent-registry/services.js +188 -0
- package/dist/domain/agent-registry/services.js.map +1 -0
- package/dist/domain/agent-registry/value-objects.d.ts +145 -0
- package/dist/domain/agent-registry/value-objects.d.ts.map +1 -0
- package/dist/domain/agent-registry/value-objects.js +339 -0
- package/dist/domain/agent-registry/value-objects.js.map +1 -0
- package/dist/domain/azure-sync/entities.d.ts +140 -0
- package/dist/domain/azure-sync/entities.d.ts.map +1 -0
- package/dist/domain/azure-sync/entities.js +173 -0
- package/dist/domain/azure-sync/entities.js.map +1 -0
- package/dist/domain/azure-sync/enum-values.d.ts +25 -0
- package/dist/domain/azure-sync/enum-values.d.ts.map +1 -0
- package/dist/domain/azure-sync/enum-values.js +33 -0
- package/dist/domain/azure-sync/enum-values.js.map +1 -0
- package/dist/domain/azure-sync/llm-port.d.ts +85 -0
- package/dist/domain/azure-sync/llm-port.d.ts.map +1 -0
- package/dist/domain/azure-sync/llm-port.js +12 -0
- package/dist/domain/azure-sync/llm-port.js.map +1 -0
- package/dist/domain/azure-sync/ports.d.ts +128 -0
- package/dist/domain/azure-sync/ports.d.ts.map +1 -0
- package/dist/domain/azure-sync/ports.js +13 -0
- package/dist/domain/azure-sync/ports.js.map +1 -0
- package/dist/domain/azure-sync/repositories.d.ts +73 -0
- package/dist/domain/azure-sync/repositories.d.ts.map +1 -0
- package/dist/domain/azure-sync/repositories.js +11 -0
- package/dist/domain/azure-sync/repositories.js.map +1 -0
- package/dist/domain/azure-sync/services.d.ts +107 -0
- package/dist/domain/azure-sync/services.d.ts.map +1 -0
- package/dist/domain/azure-sync/services.js +316 -0
- package/dist/domain/azure-sync/services.js.map +1 -0
- package/dist/domain/azure-sync/sync-log-entities.d.ts +124 -0
- package/dist/domain/azure-sync/sync-log-entities.d.ts.map +1 -0
- package/dist/domain/azure-sync/sync-log-entities.js +129 -0
- package/dist/domain/azure-sync/sync-log-entities.js.map +1 -0
- package/dist/domain/azure-sync/sync-state-maps.d.ts +44 -0
- package/dist/domain/azure-sync/sync-state-maps.d.ts.map +1 -0
- package/dist/domain/azure-sync/sync-state-maps.js +134 -0
- package/dist/domain/azure-sync/sync-state-maps.js.map +1 -0
- package/dist/domain/azure-sync/value-objects.d.ts +122 -0
- package/dist/domain/azure-sync/value-objects.d.ts.map +1 -0
- package/dist/domain/azure-sync/value-objects.js +272 -0
- package/dist/domain/azure-sync/value-objects.js.map +1 -0
- package/dist/domain/config/repositories.d.ts +56 -0
- package/dist/domain/config/repositories.d.ts.map +1 -0
- package/dist/domain/config/repositories.js +12 -0
- package/dist/domain/config/repositories.js.map +1 -0
- package/dist/domain/config/value-objects.d.ts +129 -0
- package/dist/domain/config/value-objects.d.ts.map +1 -0
- package/dist/domain/config/value-objects.js +129 -0
- package/dist/domain/config/value-objects.js.map +1 -0
- package/dist/domain/context-memory/entities.d.ts +5 -0
- package/dist/domain/context-memory/entities.d.ts.map +1 -0
- package/dist/domain/context-memory/entities.js +6 -0
- package/dist/domain/context-memory/entities.js.map +1 -0
- package/dist/domain/context-memory/enum-values.d.ts +22 -0
- package/dist/domain/context-memory/enum-values.d.ts.map +1 -0
- package/dist/domain/context-memory/enum-values.js +23 -0
- package/dist/domain/context-memory/enum-values.js.map +1 -0
- package/dist/domain/context-memory/execution-entry.d.ts +41 -0
- package/dist/domain/context-memory/execution-entry.d.ts.map +1 -0
- package/dist/domain/context-memory/execution-entry.js +82 -0
- package/dist/domain/context-memory/execution-entry.js.map +1 -0
- package/dist/domain/context-memory/note.d.ts +31 -0
- package/dist/domain/context-memory/note.d.ts.map +1 -0
- package/dist/domain/context-memory/note.js +42 -0
- package/dist/domain/context-memory/note.js.map +1 -0
- package/dist/domain/context-memory/repositories.d.ts +59 -0
- package/dist/domain/context-memory/repositories.d.ts.map +1 -0
- package/dist/domain/context-memory/repositories.js +9 -0
- package/dist/domain/context-memory/repositories.js.map +1 -0
- package/dist/domain/context-memory/services.d.ts +62 -0
- package/dist/domain/context-memory/services.d.ts.map +1 -0
- package/dist/domain/context-memory/services.js +176 -0
- package/dist/domain/context-memory/services.js.map +1 -0
- package/dist/domain/context-memory/session.d.ts +39 -0
- package/dist/domain/context-memory/session.d.ts.map +1 -0
- package/dist/domain/context-memory/session.js +81 -0
- package/dist/domain/context-memory/session.js.map +1 -0
- package/dist/domain/context-memory/todo.d.ts +46 -0
- package/dist/domain/context-memory/todo.d.ts.map +1 -0
- package/dist/domain/context-memory/todo.js +96 -0
- package/dist/domain/context-memory/todo.js.map +1 -0
- package/dist/domain/context-memory/value-objects.d.ts +82 -0
- package/dist/domain/context-memory/value-objects.d.ts.map +1 -0
- package/dist/domain/context-memory/value-objects.js +143 -0
- package/dist/domain/context-memory/value-objects.js.map +1 -0
- package/dist/domain/data/ports.d.ts +18 -0
- package/dist/domain/data/ports.d.ts.map +1 -0
- package/dist/domain/data/ports.js +11 -0
- package/dist/domain/data/ports.js.map +1 -0
- package/dist/domain/domain-map/ports.d.ts +106 -0
- package/dist/domain/domain-map/ports.d.ts.map +1 -0
- package/dist/domain/domain-map/ports.js +12 -0
- package/dist/domain/domain-map/ports.js.map +1 -0
- package/dist/domain/domain-map/services.d.ts +108 -0
- package/dist/domain/domain-map/services.d.ts.map +1 -0
- package/dist/domain/domain-map/services.js +350 -0
- package/dist/domain/domain-map/services.js.map +1 -0
- package/dist/domain/domain-map/value-objects.d.ts +186 -0
- package/dist/domain/domain-map/value-objects.d.ts.map +1 -0
- package/dist/domain/domain-map/value-objects.js +215 -0
- package/dist/domain/domain-map/value-objects.js.map +1 -0
- package/dist/domain/environment/entities.d.ts +93 -0
- package/dist/domain/environment/entities.d.ts.map +1 -0
- package/dist/domain/environment/entities.js +207 -0
- package/dist/domain/environment/entities.js.map +1 -0
- package/dist/domain/environment/enum-values.d.ts +23 -0
- package/dist/domain/environment/enum-values.d.ts.map +1 -0
- package/dist/domain/environment/enum-values.js +31 -0
- package/dist/domain/environment/enum-values.js.map +1 -0
- package/dist/domain/environment/ports.d.ts +41 -0
- package/dist/domain/environment/ports.d.ts.map +1 -0
- package/dist/domain/environment/ports.js +12 -0
- package/dist/domain/environment/ports.js.map +1 -0
- package/dist/domain/environment/renderers.d.ts +30 -0
- package/dist/domain/environment/renderers.d.ts.map +1 -0
- package/dist/domain/environment/renderers.js +139 -0
- package/dist/domain/environment/renderers.js.map +1 -0
- package/dist/domain/environment/repositories.d.ts +73 -0
- package/dist/domain/environment/repositories.d.ts.map +1 -0
- package/dist/domain/environment/repositories.js +16 -0
- package/dist/domain/environment/repositories.js.map +1 -0
- package/dist/domain/environment/services.d.ts +62 -0
- package/dist/domain/environment/services.d.ts.map +1 -0
- package/dist/domain/environment/services.js +282 -0
- package/dist/domain/environment/services.js.map +1 -0
- package/dist/domain/environment/value-objects.d.ts +127 -0
- package/dist/domain/environment/value-objects.d.ts.map +1 -0
- package/dist/domain/environment/value-objects.js +179 -0
- package/dist/domain/environment/value-objects.js.map +1 -0
- package/dist/domain/governance/policies.d.ts +42 -0
- package/dist/domain/governance/policies.d.ts.map +1 -0
- package/dist/domain/governance/policies.js +376 -0
- package/dist/domain/governance/policies.js.map +1 -0
- package/dist/domain/governance/services.d.ts +38 -0
- package/dist/domain/governance/services.d.ts.map +1 -0
- package/dist/domain/governance/services.js +53 -0
- package/dist/domain/governance/services.js.map +1 -0
- package/dist/domain/kanban/card-props.d.ts +39 -0
- package/dist/domain/kanban/card-props.d.ts.map +1 -0
- package/dist/domain/kanban/card-props.js +9 -0
- package/dist/domain/kanban/card-props.js.map +1 -0
- package/dist/domain/kanban/entities.d.ts +134 -0
- package/dist/domain/kanban/entities.d.ts.map +1 -0
- package/dist/domain/kanban/entities.js +395 -0
- package/dist/domain/kanban/entities.js.map +1 -0
- package/dist/domain/kanban/enum-values.d.ts +53 -0
- package/dist/domain/kanban/enum-values.d.ts.map +1 -0
- package/dist/domain/kanban/enum-values.js +62 -0
- package/dist/domain/kanban/enum-values.js.map +1 -0
- package/dist/domain/kanban/grooming.d.ts +60 -0
- package/dist/domain/kanban/grooming.d.ts.map +1 -0
- package/dist/domain/kanban/grooming.js +113 -0
- package/dist/domain/kanban/grooming.js.map +1 -0
- package/dist/domain/kanban/repositories.d.ts +41 -0
- package/dist/domain/kanban/repositories.d.ts.map +1 -0
- package/dist/domain/kanban/repositories.js +9 -0
- package/dist/domain/kanban/repositories.js.map +1 -0
- package/dist/domain/kanban/services.d.ts +63 -0
- package/dist/domain/kanban/services.d.ts.map +1 -0
- package/dist/domain/kanban/services.js +192 -0
- package/dist/domain/kanban/services.js.map +1 -0
- package/dist/domain/kanban/sprint.d.ts +103 -0
- package/dist/domain/kanban/sprint.d.ts.map +1 -0
- package/dist/domain/kanban/sprint.js +192 -0
- package/dist/domain/kanban/sprint.js.map +1 -0
- package/dist/domain/kanban/value-objects.d.ts +150 -0
- package/dist/domain/kanban/value-objects.d.ts.map +1 -0
- package/dist/domain/kanban/value-objects.js +220 -0
- package/dist/domain/kanban/value-objects.js.map +1 -0
- package/dist/domain/pipeline/enum-values.d.ts +30 -0
- package/dist/domain/pipeline/enum-values.d.ts.map +1 -0
- package/dist/domain/pipeline/enum-values.js +41 -0
- package/dist/domain/pipeline/enum-values.js.map +1 -0
- package/dist/domain/pipeline/gate.d.ts +75 -0
- package/dist/domain/pipeline/gate.d.ts.map +1 -0
- package/dist/domain/pipeline/gate.js +158 -0
- package/dist/domain/pipeline/gate.js.map +1 -0
- package/dist/domain/pipeline/index.d.ts +13 -0
- package/dist/domain/pipeline/index.d.ts.map +1 -0
- package/dist/domain/pipeline/index.js +11 -0
- package/dist/domain/pipeline/index.js.map +1 -0
- package/dist/domain/pipeline/pipeline.d.ts +99 -0
- package/dist/domain/pipeline/pipeline.d.ts.map +1 -0
- package/dist/domain/pipeline/pipeline.js +262 -0
- package/dist/domain/pipeline/pipeline.js.map +1 -0
- package/dist/domain/pipeline/ports.d.ts +120 -0
- package/dist/domain/pipeline/ports.d.ts.map +1 -0
- package/dist/domain/pipeline/ports.js +12 -0
- package/dist/domain/pipeline/ports.js.map +1 -0
- package/dist/domain/pipeline/repositories.d.ts +66 -0
- package/dist/domain/pipeline/repositories.d.ts.map +1 -0
- package/dist/domain/pipeline/repositories.js +11 -0
- package/dist/domain/pipeline/repositories.js.map +1 -0
- package/dist/domain/pipeline/services.d.ts +77 -0
- package/dist/domain/pipeline/services.d.ts.map +1 -0
- package/dist/domain/pipeline/services.js +158 -0
- package/dist/domain/pipeline/services.js.map +1 -0
- package/dist/domain/pipeline/value-objects.d.ts +117 -0
- package/dist/domain/pipeline/value-objects.d.ts.map +1 -0
- package/dist/domain/pipeline/value-objects.js +312 -0
- package/dist/domain/pipeline/value-objects.js.map +1 -0
- package/dist/domain/rag/enum-values.d.ts +19 -0
- package/dist/domain/rag/enum-values.d.ts.map +1 -0
- package/dist/domain/rag/enum-values.js +24 -0
- package/dist/domain/rag/enum-values.js.map +1 -0
- package/dist/domain/rag/repositories.d.ts +194 -0
- package/dist/domain/rag/repositories.d.ts.map +1 -0
- package/dist/domain/rag/repositories.js +12 -0
- package/dist/domain/rag/repositories.js.map +1 -0
- package/dist/domain/rag/services.d.ts +67 -0
- package/dist/domain/rag/services.d.ts.map +1 -0
- package/dist/domain/rag/services.js +262 -0
- package/dist/domain/rag/services.js.map +1 -0
- package/dist/domain/rag/value-objects.d.ts +125 -0
- package/dist/domain/rag/value-objects.d.ts.map +1 -0
- package/dist/domain/rag/value-objects.js +120 -0
- package/dist/domain/rag/value-objects.js.map +1 -0
- package/dist/domain/shared/value-objects.d.ts +56 -0
- package/dist/domain/shared/value-objects.d.ts.map +1 -0
- package/dist/domain/shared/value-objects.js +89 -0
- package/dist/domain/shared/value-objects.js.map +1 -0
- package/dist/domain/token-metrics/entities.d.ts +90 -0
- package/dist/domain/token-metrics/entities.d.ts.map +1 -0
- package/dist/domain/token-metrics/entities.js +114 -0
- package/dist/domain/token-metrics/entities.js.map +1 -0
- package/dist/domain/token-metrics/ports.d.ts +79 -0
- package/dist/domain/token-metrics/ports.d.ts.map +1 -0
- package/dist/domain/token-metrics/ports.js +71 -0
- package/dist/domain/token-metrics/ports.js.map +1 -0
- package/dist/domain/token-metrics/repositories.d.ts +93 -0
- package/dist/domain/token-metrics/repositories.d.ts.map +1 -0
- package/dist/domain/token-metrics/repositories.js +12 -0
- package/dist/domain/token-metrics/repositories.js.map +1 -0
- package/dist/domain/token-metrics/value-objects.d.ts +81 -0
- package/dist/domain/token-metrics/value-objects.d.ts.map +1 -0
- package/dist/domain/token-metrics/value-objects.js +144 -0
- package/dist/domain/token-metrics/value-objects.js.map +1 -0
- package/dist/domain/vault/document.d.ts +71 -0
- package/dist/domain/vault/document.d.ts.map +1 -0
- package/dist/domain/vault/document.js +268 -0
- package/dist/domain/vault/document.js.map +1 -0
- package/dist/domain/vault/repositories.d.ts +35 -0
- package/dist/domain/vault/repositories.d.ts.map +1 -0
- package/dist/domain/vault/repositories.js +12 -0
- package/dist/domain/vault/repositories.js.map +1 -0
- package/dist/domain/vault/section.d.ts +33 -0
- package/dist/domain/vault/section.d.ts.map +1 -0
- package/dist/domain/vault/section.js +49 -0
- package/dist/domain/vault/section.js.map +1 -0
- package/dist/domain/vault/services.d.ts +59 -0
- package/dist/domain/vault/services.d.ts.map +1 -0
- package/dist/domain/vault/services.js +274 -0
- package/dist/domain/vault/services.js.map +1 -0
- package/dist/domain/vault/table.d.ts +59 -0
- package/dist/domain/vault/table.d.ts.map +1 -0
- package/dist/domain/vault/table.js +206 -0
- package/dist/domain/vault/table.js.map +1 -0
- package/dist/domain/vault/value-objects.d.ts +45 -0
- package/dist/domain/vault/value-objects.d.ts.map +1 -0
- package/dist/domain/vault/value-objects.js +91 -0
- package/dist/domain/vault/value-objects.js.map +1 -0
- package/dist/domain/workspace-registry/entities.d.ts +78 -0
- package/dist/domain/workspace-registry/entities.d.ts.map +1 -0
- package/dist/domain/workspace-registry/entities.js +148 -0
- package/dist/domain/workspace-registry/entities.js.map +1 -0
- package/dist/domain/workspace-registry/enum-values.d.ts +19 -0
- package/dist/domain/workspace-registry/enum-values.d.ts.map +1 -0
- package/dist/domain/workspace-registry/enum-values.js +23 -0
- package/dist/domain/workspace-registry/enum-values.js.map +1 -0
- package/dist/domain/workspace-registry/ports.d.ts +16 -0
- package/dist/domain/workspace-registry/ports.d.ts.map +1 -0
- package/dist/domain/workspace-registry/ports.js +16 -0
- package/dist/domain/workspace-registry/ports.js.map +1 -0
- package/dist/domain/workspace-registry/repositories.d.ts +57 -0
- package/dist/domain/workspace-registry/repositories.d.ts.map +1 -0
- package/dist/domain/workspace-registry/repositories.js +12 -0
- package/dist/domain/workspace-registry/repositories.js.map +1 -0
- package/dist/domain/workspace-registry/services.d.ts +57 -0
- package/dist/domain/workspace-registry/services.d.ts.map +1 -0
- package/dist/domain/workspace-registry/services.js +283 -0
- package/dist/domain/workspace-registry/services.js.map +1 -0
- package/dist/domain/workspace-registry/value-objects.d.ts +82 -0
- package/dist/domain/workspace-registry/value-objects.d.ts.map +1 -0
- package/dist/domain/workspace-registry/value-objects.js +234 -0
- package/dist/domain/workspace-registry/value-objects.js.map +1 -0
- package/dist/hooks/config-command.d.ts +37 -0
- package/dist/hooks/config-command.d.ts.map +1 -0
- package/dist/hooks/config-command.js +68 -0
- package/dist/hooks/config-command.js.map +1 -0
- package/dist/hooks/context-compacting.d.ts +35 -0
- package/dist/hooks/context-compacting.d.ts.map +1 -0
- package/dist/hooks/context-compacting.js +62 -0
- package/dist/hooks/context-compacting.js.map +1 -0
- package/dist/hooks/event-handlers.d.ts +48 -0
- package/dist/hooks/event-handlers.d.ts.map +1 -0
- package/dist/hooks/event-handlers.js +120 -0
- package/dist/hooks/event-handlers.js.map +1 -0
- package/dist/hooks/execution-journal.d.ts +40 -0
- package/dist/hooks/execution-journal.d.ts.map +1 -0
- package/dist/hooks/execution-journal.js +118 -0
- package/dist/hooks/execution-journal.js.map +1 -0
- package/dist/hooks/first-run-guide.d.ts +35 -0
- package/dist/hooks/first-run-guide.d.ts.map +1 -0
- package/dist/hooks/first-run-guide.js +99 -0
- package/dist/hooks/first-run-guide.js.map +1 -0
- package/dist/hooks/guardrails.d.ts +33 -0
- package/dist/hooks/guardrails.d.ts.map +1 -0
- package/dist/hooks/guardrails.js +38 -0
- package/dist/hooks/guardrails.js.map +1 -0
- package/dist/hooks/logger.d.ts +46 -0
- package/dist/hooks/logger.d.ts.map +1 -0
- package/dist/hooks/logger.js +81 -0
- package/dist/hooks/logger.js.map +1 -0
- package/dist/hooks/shell-env.d.ts +28 -0
- package/dist/hooks/shell-env.d.ts.map +1 -0
- package/dist/hooks/shell-env.js +29 -0
- package/dist/hooks/shell-env.js.map +1 -0
- package/dist/hooks/slash-commands.d.ts +36 -0
- package/dist/hooks/slash-commands.d.ts.map +1 -0
- package/dist/hooks/slash-commands.js +148 -0
- package/dist/hooks/slash-commands.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +91 -0
- package/dist/index.js.map +1 -0
- package/dist/infrastructure/agent-registry/agent-profile-repository.d.ts +13 -0
- package/dist/infrastructure/agent-registry/agent-profile-repository.d.ts.map +1 -0
- package/dist/infrastructure/agent-registry/agent-profile-repository.js +110 -0
- package/dist/infrastructure/agent-registry/agent-profile-repository.js.map +1 -0
- package/dist/infrastructure/agent-registry/agent-session-adapter.d.ts +11 -0
- package/dist/infrastructure/agent-registry/agent-session-adapter.d.ts.map +1 -0
- package/dist/infrastructure/agent-registry/agent-session-adapter.js +62 -0
- package/dist/infrastructure/agent-registry/agent-session-adapter.js.map +1 -0
- package/dist/infrastructure/agent-registry/built-in-profiles.d.ts +28 -0
- package/dist/infrastructure/agent-registry/built-in-profiles.d.ts.map +1 -0
- package/dist/infrastructure/agent-registry/built-in-profiles.js +211 -0
- package/dist/infrastructure/agent-registry/built-in-profiles.js.map +1 -0
- package/dist/infrastructure/azure-sync/azure-auth.d.ts +40 -0
- package/dist/infrastructure/azure-sync/azure-auth.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/azure-auth.js +94 -0
- package/dist/infrastructure/azure-sync/azure-auth.js.map +1 -0
- package/dist/infrastructure/azure-sync/azure-devops-client.d.ts +45 -0
- package/dist/infrastructure/azure-sync/azure-devops-client.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/azure-devops-client.js +326 -0
- package/dist/infrastructure/azure-sync/azure-devops-client.js.map +1 -0
- package/dist/infrastructure/azure-sync/ollama-llm-adapter.d.ts +30 -0
- package/dist/infrastructure/azure-sync/ollama-llm-adapter.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/ollama-llm-adapter.js +162 -0
- package/dist/infrastructure/azure-sync/ollama-llm-adapter.js.map +1 -0
- package/dist/infrastructure/azure-sync/sqlite-event-repository.d.ts +31 -0
- package/dist/infrastructure/azure-sync/sqlite-event-repository.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/sqlite-event-repository.js +120 -0
- package/dist/infrastructure/azure-sync/sqlite-event-repository.js.map +1 -0
- package/dist/infrastructure/azure-sync/sqlite-sync-repository.d.ts +39 -0
- package/dist/infrastructure/azure-sync/sqlite-sync-repository.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/sqlite-sync-repository.js +210 -0
- package/dist/infrastructure/azure-sync/sqlite-sync-repository.js.map +1 -0
- package/dist/infrastructure/bootstrap/bootstrap-fs-adapter.d.ts +19 -0
- package/dist/infrastructure/bootstrap/bootstrap-fs-adapter.d.ts.map +1 -0
- package/dist/infrastructure/bootstrap/bootstrap-fs-adapter.js +41 -0
- package/dist/infrastructure/bootstrap/bootstrap-fs-adapter.js.map +1 -0
- package/dist/infrastructure/config/yaml-config-repository.d.ts +24 -0
- package/dist/infrastructure/config/yaml-config-repository.d.ts.map +1 -0
- package/dist/infrastructure/config/yaml-config-repository.js +69 -0
- package/dist/infrastructure/config/yaml-config-repository.js.map +1 -0
- package/dist/infrastructure/config/yaml-config-writer.d.ts +15 -0
- package/dist/infrastructure/config/yaml-config-writer.d.ts.map +1 -0
- package/dist/infrastructure/config/yaml-config-writer.js +50 -0
- package/dist/infrastructure/config/yaml-config-writer.js.map +1 -0
- package/dist/infrastructure/context-memory/execution-journal-repository.d.ts +26 -0
- package/dist/infrastructure/context-memory/execution-journal-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/execution-journal-repository.js +122 -0
- package/dist/infrastructure/context-memory/execution-journal-repository.js.map +1 -0
- package/dist/infrastructure/context-memory/note-repository.d.ts +26 -0
- package/dist/infrastructure/context-memory/note-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/note-repository.js +97 -0
- package/dist/infrastructure/context-memory/note-repository.js.map +1 -0
- package/dist/infrastructure/context-memory/search-repository.d.ts +20 -0
- package/dist/infrastructure/context-memory/search-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/search-repository.js +44 -0
- package/dist/infrastructure/context-memory/search-repository.js.map +1 -0
- package/dist/infrastructure/context-memory/session-repository.d.ts +26 -0
- package/dist/infrastructure/context-memory/session-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/session-repository.js +89 -0
- package/dist/infrastructure/context-memory/session-repository.js.map +1 -0
- package/dist/infrastructure/context-memory/todo-repository.d.ts +26 -0
- package/dist/infrastructure/context-memory/todo-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/todo-repository.js +114 -0
- package/dist/infrastructure/context-memory/todo-repository.js.map +1 -0
- package/dist/infrastructure/data/data-file-adapter.d.ts +15 -0
- package/dist/infrastructure/data/data-file-adapter.d.ts.map +1 -0
- package/dist/infrastructure/data/data-file-adapter.js +27 -0
- package/dist/infrastructure/data/data-file-adapter.js.map +1 -0
- package/dist/infrastructure/database/sqlite-adapter.d.ts +72 -0
- package/dist/infrastructure/database/sqlite-adapter.d.ts.map +1 -0
- package/dist/infrastructure/database/sqlite-adapter.js +107 -0
- package/dist/infrastructure/database/sqlite-adapter.js.map +1 -0
- package/dist/infrastructure/domain-map/llm-analyzer.d.ts +66 -0
- package/dist/infrastructure/domain-map/llm-analyzer.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/llm-analyzer.js +250 -0
- package/dist/infrastructure/domain-map/llm-analyzer.js.map +1 -0
- package/dist/infrastructure/domain-map/llm-prompt-factory.d.ts +6 -0
- package/dist/infrastructure/domain-map/llm-prompt-factory.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/llm-prompt-factory.js +50 -0
- package/dist/infrastructure/domain-map/llm-prompt-factory.js.map +1 -0
- package/dist/infrastructure/domain-map/lsp-adapter.d.ts +79 -0
- package/dist/infrastructure/domain-map/lsp-adapter.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/lsp-adapter.js +211 -0
- package/dist/infrastructure/domain-map/lsp-adapter.js.map +1 -0
- package/dist/infrastructure/domain-map/lsp-configs.d.ts +63 -0
- package/dist/infrastructure/domain-map/lsp-configs.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/lsp-configs.js +275 -0
- package/dist/infrastructure/domain-map/lsp-configs.js.map +1 -0
- package/dist/infrastructure/domain-map/lsp-json-rpc.d.ts +92 -0
- package/dist/infrastructure/domain-map/lsp-json-rpc.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/lsp-json-rpc.js +321 -0
- package/dist/infrastructure/domain-map/lsp-json-rpc.js.map +1 -0
- package/dist/infrastructure/domain-map/project-scanner.d.ts +44 -0
- package/dist/infrastructure/domain-map/project-scanner.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/project-scanner.js +194 -0
- package/dist/infrastructure/domain-map/project-scanner.js.map +1 -0
- package/dist/infrastructure/environment/environment-repository.d.ts +18 -0
- package/dist/infrastructure/environment/environment-repository.d.ts.map +1 -0
- package/dist/infrastructure/environment/environment-repository.js +162 -0
- package/dist/infrastructure/environment/environment-repository.js.map +1 -0
- package/dist/infrastructure/environment/scanner-adapter.d.ts +12 -0
- package/dist/infrastructure/environment/scanner-adapter.d.ts.map +1 -0
- package/dist/infrastructure/environment/scanner-adapter.js +103 -0
- package/dist/infrastructure/environment/scanner-adapter.js.map +1 -0
- package/dist/infrastructure/kanban/card-repository.d.ts +47 -0
- package/dist/infrastructure/kanban/card-repository.d.ts.map +1 -0
- package/dist/infrastructure/kanban/card-repository.js +280 -0
- package/dist/infrastructure/kanban/card-repository.js.map +1 -0
- package/dist/infrastructure/kanban/sprint-repository.d.ts +40 -0
- package/dist/infrastructure/kanban/sprint-repository.d.ts.map +1 -0
- package/dist/infrastructure/kanban/sprint-repository.js +199 -0
- package/dist/infrastructure/kanban/sprint-repository.js.map +1 -0
- package/dist/infrastructure/pipeline/dagger-adapter.d.ts +17 -0
- package/dist/infrastructure/pipeline/dagger-adapter.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/dagger-adapter.js +154 -0
- package/dist/infrastructure/pipeline/dagger-adapter.js.map +1 -0
- package/dist/infrastructure/pipeline/dagger-scaffold-generator.d.ts +39 -0
- package/dist/infrastructure/pipeline/dagger-scaffold-generator.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/dagger-scaffold-generator.js +133 -0
- package/dist/infrastructure/pipeline/dagger-scaffold-generator.js.map +1 -0
- package/dist/infrastructure/pipeline/index.d.ts +19 -0
- package/dist/infrastructure/pipeline/index.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/index.js +19 -0
- package/dist/infrastructure/pipeline/index.js.map +1 -0
- package/dist/infrastructure/pipeline/pipeline-template-registry.d.ts +8 -0
- package/dist/infrastructure/pipeline/pipeline-template-registry.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/pipeline-template-registry.js +64 -0
- package/dist/infrastructure/pipeline/pipeline-template-registry.js.map +1 -0
- package/dist/infrastructure/pipeline/scaffold-templates-extra.d.ts +9 -0
- package/dist/infrastructure/pipeline/scaffold-templates-extra.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/scaffold-templates-extra.js +468 -0
- package/dist/infrastructure/pipeline/scaffold-templates-extra.js.map +1 -0
- package/dist/infrastructure/pipeline/scaffold-templates.d.ts +23 -0
- package/dist/infrastructure/pipeline/scaffold-templates.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/scaffold-templates.js +477 -0
- package/dist/infrastructure/pipeline/scaffold-templates.js.map +1 -0
- package/dist/infrastructure/pipeline/sqlite-pipeline-repository.d.ts +15 -0
- package/dist/infrastructure/pipeline/sqlite-pipeline-repository.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/sqlite-pipeline-repository.js +198 -0
- package/dist/infrastructure/pipeline/sqlite-pipeline-repository.js.map +1 -0
- package/dist/infrastructure/rag/file-discovery.d.ts +30 -0
- package/dist/infrastructure/rag/file-discovery.d.ts.map +1 -0
- package/dist/infrastructure/rag/file-discovery.js +203 -0
- package/dist/infrastructure/rag/file-discovery.js.map +1 -0
- package/dist/infrastructure/rag/file-index-registry.d.ts +31 -0
- package/dist/infrastructure/rag/file-index-registry.d.ts.map +1 -0
- package/dist/infrastructure/rag/file-index-registry.js +67 -0
- package/dist/infrastructure/rag/file-index-registry.js.map +1 -0
- package/dist/infrastructure/rag/ollama-embeddings.d.ts +28 -0
- package/dist/infrastructure/rag/ollama-embeddings.d.ts.map +1 -0
- package/dist/infrastructure/rag/ollama-embeddings.js +54 -0
- package/dist/infrastructure/rag/ollama-embeddings.js.map +1 -0
- package/dist/infrastructure/rag/text-splitter.d.ts +29 -0
- package/dist/infrastructure/rag/text-splitter.d.ts.map +1 -0
- package/dist/infrastructure/rag/text-splitter.js +41 -0
- package/dist/infrastructure/rag/text-splitter.js.map +1 -0
- package/dist/infrastructure/rag/vectra-adapter.d.ts +48 -0
- package/dist/infrastructure/rag/vectra-adapter.d.ts.map +1 -0
- package/dist/infrastructure/rag/vectra-adapter.js +275 -0
- package/dist/infrastructure/rag/vectra-adapter.js.map +1 -0
- package/dist/infrastructure/token-metrics/token-metrics-repository.d.ts +29 -0
- package/dist/infrastructure/token-metrics/token-metrics-repository.d.ts.map +1 -0
- package/dist/infrastructure/token-metrics/token-metrics-repository.js +265 -0
- package/dist/infrastructure/token-metrics/token-metrics-repository.js.map +1 -0
- package/dist/infrastructure/vault/markdown-parser.d.ts +45 -0
- package/dist/infrastructure/vault/markdown-parser.d.ts.map +1 -0
- package/dist/infrastructure/vault/markdown-parser.js +145 -0
- package/dist/infrastructure/vault/markdown-parser.js.map +1 -0
- package/dist/infrastructure/vault/vault-fs-adapter.d.ts +28 -0
- package/dist/infrastructure/vault/vault-fs-adapter.d.ts.map +1 -0
- package/dist/infrastructure/vault/vault-fs-adapter.js +105 -0
- package/dist/infrastructure/vault/vault-fs-adapter.js.map +1 -0
- package/dist/infrastructure/workspace-registry/dependency-repository.d.ts +13 -0
- package/dist/infrastructure/workspace-registry/dependency-repository.d.ts.map +1 -0
- package/dist/infrastructure/workspace-registry/dependency-repository.js +90 -0
- package/dist/infrastructure/workspace-registry/dependency-repository.js.map +1 -0
- package/dist/infrastructure/workspace-registry/workspace-repository.d.ts +13 -0
- package/dist/infrastructure/workspace-registry/workspace-repository.d.ts.map +1 -0
- package/dist/infrastructure/workspace-registry/workspace-repository.js +109 -0
- package/dist/infrastructure/workspace-registry/workspace-repository.js.map +1 -0
- package/dist/tools/agent-registry-tools.d.ts +27 -0
- package/dist/tools/agent-registry-tools.d.ts.map +1 -0
- package/dist/tools/agent-registry-tools.js +209 -0
- package/dist/tools/agent-registry-tools.js.map +1 -0
- package/dist/tools/agent-tools.d.ts +24 -0
- package/dist/tools/agent-tools.d.ts.map +1 -0
- package/dist/tools/agent-tools.js +190 -0
- package/dist/tools/agent-tools.js.map +1 -0
- package/dist/tools/azure-sync-event-tools.d.ts +29 -0
- package/dist/tools/azure-sync-event-tools.d.ts.map +1 -0
- package/dist/tools/azure-sync-event-tools.js +289 -0
- package/dist/tools/azure-sync-event-tools.js.map +1 -0
- package/dist/tools/azure-sync-pr-tools.d.ts +21 -0
- package/dist/tools/azure-sync-pr-tools.d.ts.map +1 -0
- package/dist/tools/azure-sync-pr-tools.js +146 -0
- package/dist/tools/azure-sync-pr-tools.js.map +1 -0
- package/dist/tools/azure-sync-tools.d.ts +29 -0
- package/dist/tools/azure-sync-tools.d.ts.map +1 -0
- package/dist/tools/azure-sync-tools.js +313 -0
- package/dist/tools/azure-sync-tools.js.map +1 -0
- package/dist/tools/bootstrap-tools.d.ts +27 -0
- package/dist/tools/bootstrap-tools.d.ts.map +1 -0
- package/dist/tools/bootstrap-tools.js +151 -0
- package/dist/tools/bootstrap-tools.js.map +1 -0
- package/dist/tools/config-tools.d.ts +27 -0
- package/dist/tools/config-tools.d.ts.map +1 -0
- package/dist/tools/config-tools.js +166 -0
- package/dist/tools/config-tools.js.map +1 -0
- package/dist/tools/context-memory-tools.d.ts +31 -0
- package/dist/tools/context-memory-tools.d.ts.map +1 -0
- package/dist/tools/context-memory-tools.js +243 -0
- package/dist/tools/context-memory-tools.js.map +1 -0
- package/dist/tools/data-tools.d.ts +17 -0
- package/dist/tools/data-tools.d.ts.map +1 -0
- package/dist/tools/data-tools.js +337 -0
- package/dist/tools/data-tools.js.map +1 -0
- package/dist/tools/data-write-tools.d.ts +20 -0
- package/dist/tools/data-write-tools.d.ts.map +1 -0
- package/dist/tools/data-write-tools.js +144 -0
- package/dist/tools/data-write-tools.js.map +1 -0
- package/dist/tools/domain-map-tools.d.ts +24 -0
- package/dist/tools/domain-map-tools.d.ts.map +1 -0
- package/dist/tools/domain-map-tools.js +130 -0
- package/dist/tools/domain-map-tools.js.map +1 -0
- package/dist/tools/environment-tools.d.ts +28 -0
- package/dist/tools/environment-tools.d.ts.map +1 -0
- package/dist/tools/environment-tools.js +235 -0
- package/dist/tools/environment-tools.js.map +1 -0
- package/dist/tools/governance-tools.d.ts +20 -0
- package/dist/tools/governance-tools.d.ts.map +1 -0
- package/dist/tools/governance-tools.js +73 -0
- package/dist/tools/governance-tools.js.map +1 -0
- package/dist/tools/kanban-board-tools.d.ts +20 -0
- package/dist/tools/kanban-board-tools.d.ts.map +1 -0
- package/dist/tools/kanban-board-tools.js +144 -0
- package/dist/tools/kanban-board-tools.js.map +1 -0
- package/dist/tools/kanban-card-mutation-tools.d.ts +16 -0
- package/dist/tools/kanban-card-mutation-tools.d.ts.map +1 -0
- package/dist/tools/kanban-card-mutation-tools.js +168 -0
- package/dist/tools/kanban-card-mutation-tools.js.map +1 -0
- package/dist/tools/kanban-card-query-tools.d.ts +25 -0
- package/dist/tools/kanban-card-query-tools.d.ts.map +1 -0
- package/dist/tools/kanban-card-query-tools.js +191 -0
- package/dist/tools/kanban-card-query-tools.js.map +1 -0
- package/dist/tools/kanban-card-tools.d.ts +24 -0
- package/dist/tools/kanban-card-tools.d.ts.map +1 -0
- package/dist/tools/kanban-card-tools.js +274 -0
- package/dist/tools/kanban-card-tools.js.map +1 -0
- package/dist/tools/kanban-gate-tools.d.ts +19 -0
- package/dist/tools/kanban-gate-tools.d.ts.map +1 -0
- package/dist/tools/kanban-gate-tools.js +107 -0
- package/dist/tools/kanban-gate-tools.js.map +1 -0
- package/dist/tools/kanban-grooming-tools.d.ts +19 -0
- package/dist/tools/kanban-grooming-tools.d.ts.map +1 -0
- package/dist/tools/kanban-grooming-tools.js +101 -0
- package/dist/tools/kanban-grooming-tools.js.map +1 -0
- package/dist/tools/kanban-sprint-tools.d.ts +35 -0
- package/dist/tools/kanban-sprint-tools.d.ts.map +1 -0
- package/dist/tools/kanban-sprint-tools.js +295 -0
- package/dist/tools/kanban-sprint-tools.js.map +1 -0
- package/dist/tools/pipeline-tools.d.ts +31 -0
- package/dist/tools/pipeline-tools.d.ts.map +1 -0
- package/dist/tools/pipeline-tools.js +406 -0
- package/dist/tools/pipeline-tools.js.map +1 -0
- package/dist/tools/rag-tools.d.ts +29 -0
- package/dist/tools/rag-tools.d.ts.map +1 -0
- package/dist/tools/rag-tools.js +343 -0
- package/dist/tools/rag-tools.js.map +1 -0
- package/dist/tools/token-metrics-tools.d.ts +28 -0
- package/dist/tools/token-metrics-tools.d.ts.map +1 -0
- package/dist/tools/token-metrics-tools.js +351 -0
- package/dist/tools/token-metrics-tools.js.map +1 -0
- package/dist/tools/vault-manage-tool.d.ts +25 -0
- package/dist/tools/vault-manage-tool.d.ts.map +1 -0
- package/dist/tools/vault-manage-tool.js +120 -0
- package/dist/tools/vault-manage-tool.js.map +1 -0
- package/dist/tools/vault-tools.d.ts +32 -0
- package/dist/tools/vault-tools.d.ts.map +1 -0
- package/dist/tools/vault-tools.js +405 -0
- package/dist/tools/vault-tools.js.map +1 -0
- package/dist/tools/workspace-registry-tools.d.ts +25 -0
- package/dist/tools/workspace-registry-tools.d.ts.map +1 -0
- package/dist/tools/workspace-registry-tools.js +212 -0
- package/dist/tools/workspace-registry-tools.js.map +1 -0
- package/package.json +57 -34
- package/scripts/setup/link-local.js +120 -0
- package/scripts/setup/setup-linux.sh +134 -0
- package/scripts/setup/setup-macos.sh +147 -0
- package/scripts/setup/setup-wsl.sh +189 -0
- package/templates/agents-md.template.md +130 -0
- package/templates/commands/jarvis-agents-md-file.md +7 -0
- package/.opencode/agents/_domain-agent-base.md +0 -131
- package/.opencode/agents/agent-integration.md +0 -197
- package/.opencode/agents/agent-invoker.md +0 -90
- package/.opencode/agents/ai-multimodal-integration-agent.md +0 -421
- package/.opencode/agents/beverage-domain-expert-agent.md +0 -470
- package/.opencode/agents/beverage-ocr-backend-agent.md +0 -314
- package/.opencode/agents/boilerplate-sync.md +0 -92
- package/.opencode/agents/code-management-agent-complex.md +0 -104
- package/.opencode/agents/code-management-agent-medium.md +0 -102
- package/.opencode/agents/code-management-agent-simple.md +0 -86
- package/.opencode/agents/code-reviewer.md +0 -138
- package/.opencode/agents/context-memory-domain-agent-complex.md +0 -48
- package/.opencode/agents/context-memory-domain-agent-medium.md +0 -49
- package/.opencode/agents/context-memory-domain-agent-simple.md +0 -48
- package/.opencode/agents/data-engineer.md +0 -114
- package/.opencode/agents/explore.md +0 -123
- package/.opencode/agents/jarvis-installer.md +0 -123
- package/.opencode/agents/jarvis.md +0 -209
- package/.opencode/agents/kanban-domain-agent-complex.md +0 -113
- package/.opencode/agents/kanban-domain-agent-medium.md +0 -98
- package/.opencode/agents/kanban-domain-agent-simple.md +0 -94
- package/.opencode/agents/mindfulness.md +0 -112
- package/.opencode/agents/mobile-tester.md +0 -306
- package/.opencode/agents/ollama-model-finder.md +0 -119
- package/.opencode/agents/plan.md +0 -152
- package/.opencode/agents/product-owner.md +0 -113
- package/.opencode/agents/rag-domain-agent-complex.md +0 -48
- package/.opencode/agents/rag-domain-agent-medium.md +0 -49
- package/.opencode/agents/rag-domain-agent-simple.md +0 -48
- package/.opencode/agents/script-developer-optimized.md +0 -62
- package/.opencode/agents/script-developer.md +0 -57
- package/.opencode/agents/scrum-master.md +0 -60
- package/.opencode/agents/solution-architect.md +0 -45
- package/.opencode/commands/azure-push-with-pr.md +0 -158
- package/.opencode/commands/devlog-current.md +0 -63
- package/.opencode/commands/devlog-end.md +0 -84
- package/.opencode/commands/devlog-help.md +0 -79
- package/.opencode/commands/devlog-list.md +0 -63
- package/.opencode/commands/devlog-start.md +0 -64
- package/.opencode/commands/devlog-update.md +0 -66
- package/.opencode/commands/domain-map.md +0 -120
- package/.opencode/commands/jarvis-config.md +0 -52
- package/.opencode/commands/jarvis-plan.md +0 -53
- package/.opencode/commands/reindex-rag.md +0 -98
- package/.opencode/commands/workflow-reinforcement.md +0 -73
- package/.opencode/devlogs/Backlog Audit & Cleanup/.current-devlog +0 -1
- package/.opencode/devlogs/Backlog Audit & Cleanup/2026-02-10-1054-neural-agents.md +0 -30
- package/.opencode/devlogs/BrainWaves-iPad-Support-continued/.current-devlog +0 -0
- package/.opencode/devlogs/BrainWaves-iPad-Support-continued/2026-02-09-1938-jarvis-opencode.md +0 -34
- package/.opencode/devlogs/EP-005 Sprint 6: SSE Streaming Implementation/.current-devlog +0 -1
- package/.opencode/devlogs/EP-005 Sprint 6: SSE Streaming Implementation/2026-02-09-2332-neural-agents.md +0 -26
- package/.opencode/devlogs/JARVIS/.current-devlog +0 -0
- package/.opencode/devlogs/JARVIS/2026-01-14-2315-agents-skills-review.md +0 -270
- package/.opencode/devlogs/JARVIS/2026-01-15-0052-check-python-scripts-skills.md +0 -25
- package/.opencode/devlogs/JARVIS/2026-01-15-1036-fix-canonical-paths-for-core-content.md +0 -261
- package/.opencode/devlogs/JARVIS/2026-01-15-1103-review-rag-pipeline-and-commands.md +0 -204
- package/.opencode/devlogs/JARVIS/2026-01-15-1133-review-command-intelligence.md +0 -172
- package/.opencode/devlogs/JARVIS/2026-01-15-1251-review-command-intelligence-phase2.md +0 -160
- package/.opencode/devlogs/JARVIS/2026-01-15-1302-review-duplicatas.md +0 -106
- package/.opencode/devlogs/JARVIS/2026-01-15-1312-review-kanban-planning-pipeline.md +0 -243
- package/.opencode/devlogs/JARVIS/2026-01-15-1439-review-code-intelligence-kanban.md +0 -143
- package/.opencode/devlogs/JARVIS/2026-01-15-1806-revire-rag-chunks-metadata.md +0 -27
- package/.opencode/devlogs/JARVIS/2026-01-16-1145-building-helpers-for-agents.md +0 -393
- package/.opencode/devlogs/JARVIS/2026-01-17-1656-JARVIS.md +0 -142
- package/.opencode/devlogs/JARVIS/2026-01-17-1814-JARVIS.md +0 -173
- package/.opencode/devlogs/brain_v1/.current-devlog +0 -0
- package/.opencode/devlogs/brain_v1/2026-01-18-1818-pattern-context-integration.md +0 -526
- package/.opencode/devlogs/dash-david/.current-devlog +0 -1
- package/.opencode/devlogs/dash-david/2026-01-26-1836-planning-azure-devops-automation.md +0 -115
- package/.opencode/devlogs/data-analysis/.current-devlog +0 -1
- package/.opencode/devlogs/data-analysis/2026-01-28-1700-ma-cpg-intelligence-analysis.md +0 -132
- package/.opencode/devlogs/ire-vision/.current-devlog +0 -1
- package/.opencode/devlogs/ire-vision/2026-01-25-2208-Integra/303/247/303/243o de DividerMergeService e UUID tracking do branch remoto.md" +0 -26
- package/.opencode/devlogs/jarvis-opencode/.current-devlog +0 -0
- package/.opencode/devlogs/jarvis-opencode/2026-02-03-1613-BrainWaves-iPad-Support.md +0 -219
- package/.opencode/devlogs/jarvis-opencode-plugin/.current-devlog +0 -1
- package/.opencode/devlogs/jarvis-opencode-plugin/2026-02-13-2330-Jarvis Framework to OpenCode Plugin Migration.md +0 -321
- package/.opencode/devlogs/menu-ocr/.current-devlog +0 -1
- package/.opencode/devlogs/menu-ocr/2026-01-31-0227-full-front-end-web-development.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-01-31-1601-phase-4-rest-apis.md +0 -279
- package/.opencode/devlogs/menu-ocr/2026-01-31-1701-phase-5-api-key-auth.md +0 -186
- package/.opencode/devlogs/menu-ocr/2026-01-31-2027-phase-6-next-steps.md +0 -26
- package/.opencode/devlogs/menu-ocr/2026-02-01-2228-phase-3-operations-audit-cli-notifications.md +0 -208
- package/.opencode/devlogs/menu-ocr/2026-02-02-1050-dev-environment-setup.md +0 -90
- package/.opencode/devlogs/menu-ocr/2026-02-02-1659-client-portal-refinements.md +0 -134
- package/.opencode/devlogs/menu-ocr/2026-02-03-1820-ep006-sprint2-admin-ui.md +0 -165
- package/.opencode/devlogs/menu-ocr/2026-02-03-2214-EP-006 Sprint 3 - Testing and Integration.md +0 -87
- package/.opencode/devlogs/menu-ocr/2026-02-03-2244-EP-007 Client Portal Analytics - AI-Powered Geomarketing Insights.md +0 -84
- package/.opencode/devlogs/menu-ocr/2026-02-03-2300-EP-008 Batch Image Processing with Resumable Upload.md +0 -133
- package/.opencode/devlogs/menu-ocr/2026-02-04-1249-GCP Deployment Automation.md +0 -75
- package/.opencode/devlogs/menu-ocr/2026-02-05-1535-Client Portal API Keys Management - Provider Plans.md +0 -552
- package/.opencode/devlogs/menu-ocr/2026-02-07-2044-Prompt Templates - Seed Data and Provider Model Selection.md +0 -451
- package/.opencode/devlogs/menu-ocr/2026-02-09-1853-secure-auth-architecture.md +0 -167
- package/.opencode/devlogs/menu-ocr/2026-02-11-1952-pipeline-config-consistency.md +0 -89
- package/.opencode/devlogs/menu-ocr/2026-02-13-2237-cd-258-fix-autocuration-entity-creation.md +0 -42
- package/.opencode/devlogs/menu-ocr/2026-02-13-2340-ep016-s1-foundation.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-14-1858-pipeline-activation-usermenu-fix.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-0240-ep017-cd303-types.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0242-ep017-cd304-resolution-builder.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0245-ep017-cd305-perplexity-client.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0253-ep017-cd306-initializer.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0256-ep017-cd307-resolution-applier.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0257-ep017-cd308-facade.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0310-ep017-cd309-verify-commit.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0315-ep018-knowledgebase-decomposition.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-1020-sp024-tech-debt-600-guardrail.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1023-ep019-referencedata-decomposition.md +0 -42
- package/.opencode/devlogs/menu-ocr/2026-02-15-1705-SP-025 EP-018: Decompose 12 domain files >600 lines.md +0 -46
- package/.opencode/devlogs/menu-ocr/2026-02-15-1746-Vault Documentation Update.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1754-Vault Restructure - Team-Oriented Documentation.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1759-Backend Module Guide v2 - Environments and Embeddings.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1835-Security hardening follow-up: cloudbuild.yaml fixes, Secrets Inventory update, production deploy prep.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1902-Security hardening session 2: localhost fallbacks, admin-seed cleanup, cloudbuild fix.md +0 -46
- package/.opencode/devlogs/menu-ocr/2026-02-15-1959-EP-023: Session Management /342/200/224 CD-359 backend 401 differentiation + CD-355 admin portal token refresh.md" +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-2113-EP-024: Unified Admin Auth /342/200/224 Route shadowing fix, Google OAuth button, token refresh consolidation.md" +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-2241-EP-021: Tenant Business Profile & Category Management /342/200/224 Client Portal Implementation.md" +0 -162
- package/.opencode/devlogs/menu-ocr/2026-02-15-2254-EP-021: Editable Onboarding Wizard /342/200/224 CategoryDraftEditor component, template preview endpoint, rewrite Step 2 from read-only to inline-editable draft.md" +0 -34
- package/.opencode/devlogs/neural-agents/.current-devlog +0 -1
- package/.opencode/devlogs/neural-agents/2026-01-17-1851-revisar-itera/303/247/303/243o-autom/303/241tica-entre-agentes.md +0 -3309
- package/.opencode/devlogs/neural-agents/2026-01-31-1756-a2a-protocol-review.md +0 -367
- package/.opencode/devlogs/neural-agents/2026-01-31-1805-a2a-security-hardening-implementation.md +0 -494
- package/.opencode/devlogs/neural-agents/2026-01-31-2034-sprint-2-observability-reliability-implementation.md +0 -114
- package/.opencode/devlogs/neural-agents/2026-01-31-2042-sprint-2-validation-final-summary.md +0 -101
- package/.opencode/devlogs/neural-agents/2026-01-31-2045-sprint-3-neural-feedback-loop-implementation.md +0 -96
- package/.opencode/devlogs/neural-agents/2026-01-31-2053-neural-intelligence-adaptive-evolution-jarvis-methodology.md +0 -257
- package/.opencode/devlogs/neural-agents/2026-01-31-2106-neural-intelligence-system-implementation.md +0 -72
- package/.opencode/devlogs/neural-agents/2026-02-09-1614-neural-feedback-loop-cd044.md +0 -99
- package/.opencode/devlogs/neural-agents/2026-02-09-2036-EP-004-grooming.md +0 -103
- package/.opencode/devlogs/neural-agents/2026-02-10-1530-EP-012 Neural Tables UI + EP-007 agent_worker Refactoring.md +0 -124
- package/.opencode/package-lock.json +0 -82
- package/.opencode/settings.json +0 -765
- package/.opencode/settings.local.json +0 -64
- package/.opencode/skills/bash-optimizer/EXAMPLES.md +0 -138
- package/.opencode/skills/bash-optimizer/REFERENCE.md +0 -288
- package/.opencode/skills/bash-optimizer/SKILL.md +0 -27
- package/.opencode/skills/bash-optimizer/TROUBLESHOOTING.md +0 -156
- package/.opencode/skills/code-block-manager/EXAMPLES.md +0 -223
- package/.opencode/skills/code-block-manager/REFERENCE.md +0 -321
- package/.opencode/skills/code-block-manager/SKILL.md +0 -46
- package/.opencode/skills/code-block-manager/TROUBLESHOOTING.md +0 -340
- package/.opencode/skills/code-intelligence/EXAMPLES.md +0 -250
- package/.opencode/skills/code-intelligence/REFERENCE.md +0 -177
- package/.opencode/skills/code-intelligence/SKILL.md +0 -25
- package/.opencode/skills/code-validator/SKILL.md +0 -26
- package/.opencode/skills/command-intelligence/SKILL.md +0 -159
- package/.opencode/skills/component-generator/SKILL.md +0 -26
- package/.opencode/skills/config-manager/SKILL.md +0 -27
- package/.opencode/skills/config-manager/examples.md +0 -457
- package/.opencode/skills/config-manager/reference.md +0 -416
- package/.opencode/skills/config-manager/scripts/__pycache__/config_base.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_base.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_cli.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_cli.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_manager.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_manager.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_operations.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_operations.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_validator.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_validator.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/config_base.py +0 -189
- package/.opencode/skills/config-manager/scripts/config_cli.py +0 -230
- package/.opencode/skills/config-manager/scripts/config_manager.py +0 -76
- package/.opencode/skills/config-manager/scripts/config_manager_v2.py +0 -390
- package/.opencode/skills/config-manager/scripts/config_operations.py +0 -476
- package/.opencode/skills/config-manager/scripts/config_validator.py +0 -280
- package/.opencode/skills/context-memory-guide/EXAMPLES.md +0 -5
- package/.opencode/skills/context-memory-guide/REFERENCE.md +0 -5
- package/.opencode/skills/context-memory-guide/SKILL.md +0 -28
- package/.opencode/skills/csv-manager/EXAMPLES.md +0 -84
- package/.opencode/skills/csv-manager/SKILL.md +0 -29
- package/.opencode/skills/data-validator/SKILL.md +0 -27
- package/.opencode/skills/data-validator/scripts/__pycache__/data_validator.cpython-313.pyc +0 -0
- package/.opencode/skills/data-validator/scripts/data_validator.py +0 -254
- package/.opencode/skills/doc-generator/EXAMPLES.md +0 -33
- package/.opencode/skills/doc-generator/REFERENCE.md +0 -37
- package/.opencode/skills/doc-generator/SKILL.md +0 -26
- package/.opencode/skills/doc-generator/TROUBLESHOOTING.md +0 -26
- package/.opencode/skills/e2e-tester.md +0 -206
- package/.opencode/skills/env-manager/README.md +0 -246
- package/.opencode/skills/env-manager/SKILL.md +0 -26
- package/.opencode/skills/env-manager/examples.md +0 -584
- package/.opencode/skills/env-manager/reference.md +0 -717
- package/.opencode/skills/file-manager/SKILL.md +0 -28
- package/.opencode/skills/git-repo-manager/EXAMPLES.md +0 -5
- package/.opencode/skills/git-repo-manager/REFERENCE.md +0 -5
- package/.opencode/skills/git-repo-manager/SKILL.md +0 -32
- package/.opencode/skills/jarvis-config/REFERENCE.md +0 -116
- package/.opencode/skills/jarvis-config/SKILL.md +0 -78
- package/.opencode/skills/jarvis-helper/INTEGRATION_VERIFICATION.md +0 -508
- package/.opencode/skills/jarvis-helper/ORACLE_AGENT_INTEGRATION.md +0 -573
- package/.opencode/skills/jarvis-helper/REFERENCE.md +0 -380
- package/.opencode/skills/jarvis-helper/SKILL.md +0 -549
- package/.opencode/skills/jarvis-helper/scripts/__pycache__/oracle_helper.cpython-311.pyc +0 -0
- package/.opencode/skills/jarvis-helper/scripts/__pycache__/oracle_helper.cpython-313.pyc +0 -0
- package/.opencode/skills/jarvis-helper/scripts/__pycache__/oracle_rag_integration.cpython-311.pyc +0 -0
- package/.opencode/skills/jarvis-helper/scripts/__pycache__/oracle_rag_integration.cpython-313.pyc +0 -0
- package/.opencode/skills/jarvis-helper/scripts/oracle_helper.py +0 -639
- package/.opencode/skills/jarvis-helper/scripts/oracle_rag_integration.py +0 -511
- package/.opencode/skills/json-manager/EXAMPLES.md +0 -366
- package/.opencode/skills/json-manager/REFERENCE_JQ.md +0 -3
- package/.opencode/skills/json-manager/SKILL.md +0 -30
- package/.opencode/skills/llm-manager/SKILL.md +0 -28
- package/.opencode/skills/lsp-navigator/EXAMPLES.md +0 -204
- package/.opencode/skills/lsp-navigator/REFERENCE.md +0 -177
- package/.opencode/skills/lsp-navigator/SKILL.md +0 -58
- package/.opencode/skills/markdown-manager/EXAMPLES.md +0 -235
- package/.opencode/skills/markdown-manager/REFERENCE.md +0 -82
- package/.opencode/skills/markdown-manager/SKILL.md +0 -28
- package/.opencode/skills/migration-manager/EXAMPLES.md +0 -5
- package/.opencode/skills/migration-manager/REFERENCE.md +0 -5
- package/.opencode/skills/migration-manager/SKILL.md +0 -28
- package/.opencode/skills/migration-manager/scripts/__pycache__/migration_manager.cpython-313.pyc +0 -0
- package/.opencode/skills/migration-manager/scripts/migration_manager.py +0 -432
- package/.opencode/skills/model-router/EXAMPLES.md +0 -5
- package/.opencode/skills/model-router/REFERENCE.md +0 -5
- package/.opencode/skills/model-router/SKILL.md +0 -27
- package/.opencode/skills/model-router/routing_config.json +0 -144
- package/.opencode/skills/perplexity-research/REFERENCE.md +0 -236
- package/.opencode/skills/perplexity-research/skill.md +0 -27
- package/.opencode/skills/policy-manager/EXAMPLES.md +0 -332
- package/.opencode/skills/policy-manager/README.md +0 -75
- package/.opencode/skills/policy-manager/REFERENCE.md +0 -510
- package/.opencode/skills/policy-manager/SKILL.md +0 -26
- package/.opencode/skills/policy-manager/TROUBLESHOOTING.md +0 -566
- package/.opencode/skills/process-manager/EXAMPLES.md +0 -318
- package/.opencode/skills/process-manager/REFERENCE.md +0 -237
- package/.opencode/skills/process-manager/SKILL.md +0 -28
- package/.opencode/skills/reporting-framework/EXAMPLES.md +0 -507
- package/.opencode/skills/reporting-framework/REFERENCE.md +0 -303
- package/.opencode/skills/reporting-framework/SKILL.md +0 -26
- package/.opencode/skills/safe-script-development/EXAMPLES.md +0 -268
- package/.opencode/skills/safe-script-development/REFERENCE.md +0 -273
- package/.opencode/skills/safe-script-development/SKILL.md +0 -28
- package/.opencode/skills/schema-mapper/SKILL.md +0 -27
- package/.opencode/skills/schema-mapper/examples.md +0 -574
- package/.opencode/skills/schema-mapper/reference.md +0 -494
- package/.opencode/skills/schema-mapper/scripts/__pycache__/schema_mapper.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__init__.py +0 -25
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/__init__.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/__init__.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/cli.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/cli.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/introspector.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/introspector.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/models.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/models.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/serializers.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/serializers.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/validator.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/validator.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/cli.py +0 -179
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/introspector.py +0 -151
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/models.py +0 -48
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/serializers.py +0 -139
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/validator.py +0 -64
- package/.opencode/skills/schema-mapper/scripts/schema_mapper.py +0 -17
- package/.opencode/skills/session-startup/EXAMPLES.md +0 -0
- package/.opencode/skills/session-startup/REFERENCE.md +0 -5
- package/.opencode/skills/session-startup/SKILL.md +0 -45
- package/.opencode/skills/snapshot-manager/QUICK_REFERENCE.md +0 -147
- package/.opencode/skills/snapshot-manager/SKILL.md +0 -27
- package/.opencode/skills/snapshot-manager/__pycache__/agent_integration.cpython-313.pyc +0 -0
- package/.opencode/skills/snapshot-manager/agent_integration.py +0 -269
- package/.opencode/skills/snapshot-manager/metadata.json +0 -83
- package/.opencode/skills/task-complexity-analyzer/SKILL.md +0 -27
- package/.opencode/skills/toon-manager/EXAMPLES.md +0 -175
- package/.opencode/skills/toon-manager/REFERENCE.md +0 -171
- package/.opencode/skills/toon-manager/SKILL.md +0 -27
- package/.opencode/skills/user-story-chat/EXAMPLES.md +0 -54
- package/.opencode/skills/user-story-chat/REFERENCE.md +0 -58
- package/.opencode/skills/user-story-chat/SKILL.md +0 -25
- package/.opencode/skills/user-story-chat/TROUBLESHOOTING.md +0 -71
- package/.opencode/skills/user-story-dev/EXAMPLES.md +0 -5
- package/.opencode/skills/user-story-dev/REFERENCE.md +0 -5
- package/.opencode/skills/user-story-dev/SKILL.md +0 -27
- package/.opencode/skills/user-story-manager/EXAMPLES.md +0 -219
- package/.opencode/skills/user-story-manager/REFERENCE.md +0 -192
- package/.opencode/skills/user-story-manager/SKILL.md +0 -27
- package/.opencode/skills/workspace-agents-mcp/SKILL.md +0 -26
- package/.opencode/skills/workspace-manager/SKILL.md +0 -27
- package/.opencode/skills/yaml-manager/IMPLEMENTATION_SUMMARY.md +0 -478
- package/.opencode/skills/yaml-manager/QUICK_REFERENCE.md +0 -319
- package/.opencode/skills/yaml-manager/README.md +0 -274
- package/.opencode/skills/yaml-manager/SKILL.md +0 -28
- package/.opencode/skills/yaml-manager/examples/basic_usage.md +0 -452
- package/.opencode/skills/yaml-manager/templates/telegram_bot.yaml +0 -62
- package/.opencode/skills/yaml-manager/templates/trading_strategy.yaml +0 -75
- package/.opencode/skills/yaml-manager/templates/workspace_metadata.yaml +0 -64
- package/.opencode/tools/DOMAIN_MAP_TOOLS.md +0 -331
- package/.opencode/tools/README.md +0 -179
- package/.opencode/tools/USER_STORY_MANAGER_IMPLEMENTATION.md +0 -318
- package/.opencode/tools/cardboard-setup.ts +0 -423
- package/.opencode/tools/code-block-extract.ts +0 -33
- package/.opencode/tools/code-block-update.ts +0 -23
- package/.opencode/tools/code-get-class.ts +0 -25
- package/.opencode/tools/code-get-function.ts +0 -27
- package/.opencode/tools/code-get-imports.ts +0 -24
- package/.opencode/tools/code-list-classes.ts +0 -26
- package/.opencode/tools/code-list-functions.ts +0 -27
- package/.opencode/tools/code-update-function.ts +0 -29
- package/.opencode/tools/context-note-add.ts +0 -24
- package/.opencode/tools/context-search.ts +0 -25
- package/.opencode/tools/csv-manager.ts +0 -36
- package/.opencode/tools/devlog-manager.ts +0 -45
- package/.opencode/tools/domain-map-analyze.ts +0 -249
- package/.opencode/tools/domain-map-compare.ts +0 -228
- package/.opencode/tools/domain-map-generate.ts +0 -156
- package/.opencode/tools/domain-map-index.ts +0 -31
- package/.opencode/tools/domain-map-update.ts +0 -129
- package/.opencode/tools/file-manager.ts +0 -36
- package/.opencode/tools/git-repo-manager.ts +0 -43
- package/.opencode/tools/json-manager.ts +0 -41
- package/.opencode/tools/kanban-card-create.ts +0 -21
- package/.opencode/tools/kanban-card-get.ts +0 -19
- package/.opencode/tools/kanban-card-list.ts +0 -26
- package/.opencode/tools/kanban-card-move.ts +0 -25
- package/.opencode/tools/lsp-navigator.ts +0 -42
- package/.opencode/tools/markdown-add.ts +0 -30
- package/.opencode/tools/markdown-get.ts +0 -24
- package/.opencode/tools/markdown-list.ts +0 -23
- package/.opencode/tools/markdown-manager.ts +0 -42
- package/.opencode/tools/markdown-meta.ts +0 -21
- package/.opencode/tools/markdown-navigate.ts +0 -26
- package/.opencode/tools/markdown-search.ts +0 -24
- package/.opencode/tools/markdown-set.ts +0 -25
- package/.opencode/tools/markdown-validate.ts +0 -21
- package/.opencode/tools/milestone-create.ts +0 -30
- package/.opencode/tools/obsidian-setup.ts +0 -18
- package/.opencode/tools/obsidian-sync.ts +0 -310
- package/.opencode/tools/oracle-query.ts +0 -29
- package/.opencode/tools/package-lock.json +0 -119
- package/.opencode/tools/rag-delete.ts +0 -29
- package/.opencode/tools/rag-detect-project.ts +0 -29
- package/.opencode/tools/rag-index.ts +0 -45
- package/.opencode/tools/rag-search.ts +0 -35
- package/.opencode/tools/rag-smart-index.ts +0 -37
- package/.opencode/tools/rag-snippet.ts +0 -35
- package/.opencode/tools/rag-status.ts +0 -28
- package/.opencode/tools/rag-update.ts +0 -29
- package/.opencode/tools/release-create.ts +0 -37
- package/.opencode/tools/release-list.ts +0 -27
- package/.opencode/tools/roadmap-create.ts +0 -32
- package/.opencode/tools/roadmap-list.ts +0 -23
- package/.opencode/tools/roadmap-status.ts +0 -18
- package/.opencode/tools/session-start.ts +0 -20
- package/.opencode/tools/src/application/user-stories/dtos.ts +0 -100
- package/.opencode/tools/src/application/user-stories/feature-use-cases.ts +0 -181
- package/.opencode/tools/src/application/user-stories/story-use-cases.ts +0 -254
- package/.opencode/tools/src/application/user-stories/use-cases.ts +0 -212
- package/.opencode/tools/src/domain/code-management/README.md +0 -259
- package/.opencode/tools/src/domain/code-management/entities.ts +0 -516
- package/.opencode/tools/src/domain/code-management/index.ts +0 -283
- package/.opencode/tools/src/domain/code-management/repositories.ts +0 -454
- package/.opencode/tools/src/domain/code-management/services.ts +0 -545
- package/.opencode/tools/src/domain/code-management/value-objects.ts +0 -595
- package/.opencode/tools/src/domain/user-stories/entities.ts +0 -403
- package/.opencode/tools/src/domain/user-stories/services.ts +0 -408
- package/.opencode/tools/src/domain/user-stories/value-objects.ts +0 -391
- package/.opencode/tools/src/index.ts +0 -101
- package/.opencode/tools/src/infrastructure/user-stories/mock-repositories.ts +0 -427
- package/.opencode/tools/src/infrastructure/user-stories/repositories.ts +0 -56
- package/.opencode/tools/todo-manager.ts +0 -42
- package/.opencode/tools/tsconfig.json +0 -21
- package/.opencode/tools/user-story-manager.ts +0 -578
- package/.opencode/tools/user-story-manager.ts-backup +0 -536
- package/.opencode/tools/workspace-create.ts +0 -43
- package/.opencode/tools/workspace-list.ts +0 -19
- package/.opencode/tools/workspace-manager.ts +0 -165
- package/.opencode/tools/yaml-add.ts +0 -20
- package/.opencode/tools/yaml-delete.ts +0 -19
- package/.opencode/tools/yaml-get.ts +0 -19
- package/.opencode/tools/yaml-list.ts +0 -18
- package/.opencode/tools/yaml-manager.ts +0 -41
- package/.opencode/tools/yaml-search.ts +0 -19
- package/.opencode/tools/yaml-set.ts +0 -20
- package/.opencode/tools/yaml-validate.ts +0 -18
- package/.opencode/tsconfig.json +0 -48
- package/OPENCODE.md +0 -61
- package/config/.yaml_backups/llm_prompts_20251125_124831.yaml +0 -215
- package/config/.yaml_backups/llm_prompts_20251125_124848.yaml +0 -216
- package/config/.yaml_backups/llm_prompts_20251125_133953.yaml +0 -226
- package/config/.yaml_backups/rag_20251125_122310.yaml +0 -307
- package/config/.yaml_backups/rag_20260109_121038.yaml +0 -323
- package/config/.yaml_backups/rag_20260110_182224.yaml +0 -323
- package/config/.yaml_backups/rag_20260110_182225.yaml +0 -323
- package/config/.yaml_backups/rag_20260110_183528.yaml +0 -323
- package/config/.yaml_backups/rag_20260115_230621.yaml +0 -384
- package/config/.yaml_backups/user_story_chat_20251125_011132.yaml +0 -16
- package/config/.yaml_backups/user_story_chat_20251125_011138.yaml +0 -19
- package/config/.yaml_backups/user_story_chat_20251125_011145.yaml +0 -19
- package/config/.yaml_backups/workspace_paths_20260112_022108.yaml +0 -22
- package/config/.yaml_backups/workspace_paths_20260112_022115.yaml +0 -22
- package/config/.yaml_backups/workspace_paths_20260112_022116.yaml +0 -23
- package/config/.yaml_backups/workspace_paths_20260114_001440.yaml +0 -22
- package/config/.yaml_backups/workspace_paths_20260114_204748.yaml +0 -23
- package/config/.yaml_backups/workspace_paths_20260121_162935.yaml +0 -66
- package/config/.yaml_backups/workspace_paths_20260121_162948.yaml +0 -71
- package/config/.yaml_backups/workspace_paths_20260123_155242.yaml +0 -78
- package/config/.yaml_backups/workspace_paths_20260201_152120.yaml +0 -33
- package/config/.yaml_backups/workspace_paths_20260201_180540.yaml +0 -39
- package/config/agents.default.yaml +0 -151
- package/config/command_intelligence/datasets/combined.jsonl +0 -8367
- package/config/command_intelligence/datasets/combined_enriched.jsonl +0 -3144
- package/config/command_intelligence/datasets/command.jsonl +0 -157
- package/config/command_intelligence/datasets/command_enriched.jsonl +0 -307
- package/config/command_intelligence/datasets/discovery.jsonl +0 -3850
- package/config/command_intelligence/datasets/discovery_enriched.jsonl +0 -983
- package/config/command_intelligence/datasets/example.jsonl +0 -3190
- package/config/command_intelligence/datasets/example_enriched.jsonl +0 -931
- package/config/command_intelligence/datasets/explanation.jsonl +0 -1170
- package/config/command_intelligence/datasets/explanation_enriched.jsonl +0 -923
- package/config/command_intelligence/models/Modelfile +0 -34
- package/config/command_intelligence.yaml +0 -779
- package/config/config.yaml +0 -66
- package/config/dacl_permissions.yaml +0 -159
- package/config/domain_mapper.yaml +0 -106
- package/config/file_types.yaml +0 -253
- package/config/jarvis.yaml +0 -45
- package/config/language_parsers.yaml +0 -123
- package/config/languages/cpp.yaml +0 -53
- package/config/languages/csharp_linux.yaml +0 -51
- package/config/languages/csharp_windows.yaml +0 -48
- package/config/languages/golang.yaml +0 -88
- package/config/languages/javascript.yaml +0 -92
- package/config/languages/kotlin_macos.yaml +0 -50
- package/config/languages/kotlin_windows.yaml +0 -49
- package/config/languages/pinescript.yaml +0 -134
- package/config/languages/python.yaml +0 -70
- package/config/languages/swift.yaml +0 -58
- package/config/languages/swiftui.yaml +0 -51
- package/config/llm_prompts.yaml +0 -238
- package/config/lsp_config.yaml +0 -98
- package/config/parameters.yaml +0 -234
- package/config/policies.yaml +0 -212
- package/config/rag.yaml +0 -499
- package/config/rag_external_sources.yaml +0 -57
- package/config/rag_ignore_templates.yaml +0 -90
- package/config/rag_templates/README.md +0 -207
- package/config/rag_templates/android.yaml +0 -66
- package/config/rag_templates/dotnet.yaml +0 -130
- package/config/rag_templates/go.yaml +0 -51
- package/config/rag_templates/java.yaml +0 -89
- package/config/rag_templates/nodejs.yaml +0 -96
- package/config/rag_templates/php.yaml +0 -68
- package/config/rag_templates/python.yaml +0 -102
- package/config/rag_templates/ruby.yaml +0 -69
- package/config/rag_templates/rust.yaml +0 -35
- package/config/rag_templates/xcode.yaml +0 -89
- package/config/templates/external_project_workspace.yaml +0 -101
- package/config/user_story_chat.yaml +0 -13
- package/config/user_story_schema.yaml +0 -171
- package/config/workspace_paths.yaml +0 -33
- package/pyproject.toml +0 -57
- package/requirements.txt +0 -139
- package/scripts/README.md +0 -160
- package/scripts/__pycache__/agent_invoker.cpython-311.pyc +0 -0
- package/scripts/__pycache__/audit_orphan_analysis.cpython-311.pyc +0 -0
- package/scripts/__pycache__/audit_orphan_files.cpython-311.pyc +0 -0
- package/scripts/__pycache__/change_detector.cpython-311.pyc +0 -0
- package/scripts/__pycache__/cli_executor.cpython-311.pyc +0 -0
- package/scripts/__pycache__/code_block_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/code_block_manager.cpython-313.pyc +0 -0
- package/scripts/__pycache__/context_active_context.cpython-311.pyc +0 -0
- package/scripts/__pycache__/context_memory_cli.cpython-311.pyc +0 -0
- package/scripts/__pycache__/context_memory_cli.cpython-313.pyc +0 -0
- package/scripts/__pycache__/cross_workspace_orchestrator.cpython-311.pyc +0 -0
- package/scripts/__pycache__/doc_generator.cpython-311.pyc +0 -0
- package/scripts/__pycache__/epic_completion_checker.cpython-311.pyc +0 -0
- package/scripts/__pycache__/error_router.cpython-311.pyc +0 -0
- package/scripts/__pycache__/file_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/file_manager.cpython-313.pyc +0 -0
- package/scripts/__pycache__/git_repo_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/impact_analyzer.cpython-311.pyc +0 -0
- package/scripts/__pycache__/kanban_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/kanban_manager.cpython-312.pyc +0 -0
- package/scripts/__pycache__/kanban_manager.cpython-313.pyc +0 -0
- package/scripts/__pycache__/lsp_navigator.cpython-311.pyc +0 -0
- package/scripts/__pycache__/lsp_navigator.cpython-313.pyc +0 -0
- package/scripts/__pycache__/scrum_master.cpython-313.pyc +0 -0
- package/scripts/__pycache__/session_auto_setup.cpython-311.pyc +0 -0
- package/scripts/__pycache__/user_story_chat.cpython-311.pyc +0 -0
- package/scripts/__pycache__/user_story_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/workspace_dependency_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/workspace_detector.cpython-311.pyc +0 -0
- package/scripts/__pycache__/workspace_manager.cpython-311.pyc +0 -0
- package/scripts/_help/.!13625!git_repo_manager.yaml +0 -31
- package/scripts/_help/code_block_manager.yaml +0 -82
- package/scripts/_help/context_memory_cli.yaml +0 -172
- package/scripts/_help/doc_generator.yaml +0 -49
- package/scripts/_help/file_manager.yaml +0 -42
- package/scripts/_help/git_repo_manager.yaml +0 -214
- package/scripts/_help/index_external_sources.yaml +0 -71
- package/scripts/_help/user_story_chat.yaml +0 -13
- package/scripts/_temp/__pycache__/check_rag_metadata.cpython-311.pyc +0 -0
- package/scripts/_temp/check_rag_metadata.py +0 -55
- package/scripts/admin/__pycache__/dacl_admin.cpython-313.pyc +0 -0
- package/scripts/admin/code_review_cli.py +0 -401
- package/scripts/admin/dacl_admin.py +0 -350
- package/scripts/admin/dacl_dashboard.py +0 -462
- package/scripts/agent_invoker.py +0 -192
- package/scripts/artifact_manager.py +0 -270
- package/scripts/audit_orphan_analysis.py +0 -278
- package/scripts/audit_orphan_files.py +0 -276
- package/scripts/azure_pr_workflow.sh +0 -134
- package/scripts/change_detector.py +0 -341
- package/scripts/cleanup_orphans_safe.sh +0 -183
- package/scripts/cli/__init__.py +0 -13
- package/scripts/cli/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/context_memory_base.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/database_cli.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/message_cli.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/search_cli.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/session_cli.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/todo_cli.cpython-311.pyc +0 -0
- package/scripts/cli/context_memory_base.py +0 -112
- package/scripts/cli/database_cli.py +0 -224
- package/scripts/cli/message_cli.py +0 -153
- package/scripts/cli/search_cli.py +0 -300
- package/scripts/cli/session_cli.py +0 -379
- package/scripts/cli/todo_cli.py +0 -226
- package/scripts/cli_executor.py +0 -457
- package/scripts/code_block_manager.py +0 -847
- package/scripts/code_management/__init__.py +0 -21
- package/scripts/code_management/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/ast_parser.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/code_block_base.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/code_block_cli.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/code_block_manager.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/lsp_integration.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/ollama_parser.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/rag_sync.cpython-311.pyc +0 -0
- package/scripts/code_management/ast_parser.py +0 -337
- package/scripts/code_management/code_block_base.py +0 -87
- package/scripts/code_management/code_block_cli.py +0 -205
- package/scripts/code_management/code_block_manager.py +0 -319
- package/scripts/code_management/lsp_integration.py +0 -268
- package/scripts/code_management/ollama_parser.py +0 -289
- package/scripts/code_management/rag_sync.py +0 -126
- package/scripts/command_discovery.py +0 -143
- package/scripts/context_active_context.py +0 -338
- package/scripts/context_memory_cli.py +0 -1093
- package/scripts/convert_cards_to_tasks.py +0 -85
- package/scripts/cross_workspace_orchestrator.py +0 -343
- package/scripts/devlog_manager.py +0 -320
- package/scripts/doc_generator.py +0 -357
- package/scripts/domain_mapping_monitor.py +0 -180
- package/scripts/e2e_tester/e2e_cli.py +0 -306
- package/scripts/e2e_tester/e2e_runner.js +0 -715
- package/scripts/e2e_tester/neural-network-demo.js +0 -235
- package/scripts/e2e_tester/neural-network-test.js +0 -241
- package/scripts/e2e_tester/package-lock.json +0 -1202
- package/scripts/e2e_tester/package.json +0 -17
- package/scripts/e2e_tester/tests/menu-ocr-admin-portal.json +0 -379
- package/scripts/e2e_tester/tests/menu-ocr-credits.json +0 -265
- package/scripts/e2e_tester/tests/menu-ocr-portfolio.json +0 -483
- package/scripts/emergency/emergency_access.py +0 -365
- package/scripts/epic_completion_checker.py +0 -122
- package/scripts/error_router.py +0 -467
- package/scripts/examples/__pycache__/example.cpython-311.pyc +0 -0
- package/scripts/examples/__pycache__/integration_example.cpython-311.pyc +0 -0
- package/scripts/examples/example.py +0 -166
- package/scripts/examples/integration_example.py +0 -175
- package/scripts/file_manager.py +0 -547
- package/scripts/git_repo_manager.py +0 -283
- package/scripts/helpers/command_intelligence/__init__.py +0 -12
- package/scripts/helpers/command_intelligence/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/inference.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/llm_dataset_enricher.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/models.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/models.cpython-312.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/script_extractor.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/skill_extractor.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/dataset_generator.py +0 -298
- package/scripts/helpers/command_intelligence/inference.py +0 -337
- package/scripts/helpers/command_intelligence/llm_dataset_enricher.py +0 -458
- package/scripts/helpers/command_intelligence/models.py +0 -220
- package/scripts/helpers/command_intelligence/script_extractor.py +0 -418
- package/scripts/helpers/command_intelligence/semantic_search.py +0 -165
- package/scripts/helpers/command_intelligence/skill_extractor.py +0 -338
- package/scripts/helpers/command_intelligence/training_pipeline.py +0 -377
- package/scripts/helpers/startup_protocol_reminder.py +0 -34
- package/scripts/helpers/verify_oracle_hierarchy.py +0 -225
- package/scripts/impact_analyzer.py +0 -314
- package/scripts/install_ollama_models.sh +0 -246
- package/scripts/jarvis_domain_mapper_tui.py +0 -33
- package/scripts/jarvis_mode.sh +0 -62
- package/scripts/jarvis_status.py +0 -57
- package/scripts/jarvis_tui.py +0 -31
- package/scripts/kanban_manager.py +0 -1771
- package/scripts/kanban_session_manager.py +0 -151
- package/scripts/llm/__pycache__/code_generator_with_governance.cpython-311.pyc +0 -0
- package/scripts/llm/__pycache__/llm_ops.cpython-311.pyc +0 -0
- package/scripts/llm/code_generator_with_governance.py +0 -318
- package/scripts/llm/llm_ops.py +0 -208
- package/scripts/llm/test_code_generation_pipeline.sh +0 -125
- package/scripts/log_manager.py +0 -203
- package/scripts/lsp/README_FALLBACK.md +0 -261
- package/scripts/lsp/__init__.py +0 -64
- package/scripts/lsp/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/enable_fallback.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/enable_fallback.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_base.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_base.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_base.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_cli.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_cli.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_cli.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_client.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_client.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_client.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_config_manager.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_config_manager.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_servers.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_servers.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_servers.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/tree_sitter_fallback.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/tree_sitter_fallback.cpython-313.pyc +0 -0
- package/scripts/lsp/enable_fallback.py +0 -147
- package/scripts/lsp/lsp_base.py +0 -177
- package/scripts/lsp/lsp_cli.py +0 -721
- package/scripts/lsp/lsp_client.py +0 -361
- package/scripts/lsp/lsp_config_manager.py +0 -314
- package/scripts/lsp/lsp_servers.py +0 -208
- package/scripts/lsp/lsp_servers_test.py +0 -157
- package/scripts/lsp/lsp_servers_test_kotlin.py +0 -50
- package/scripts/lsp/tree_sitter_fallback.py +0 -253
- package/scripts/lsp_navigator.py +0 -268
- package/scripts/maintenance/__pycache__/clean_context_memory.cpython-311.pyc +0 -0
- package/scripts/maintenance/__pycache__/fix_context_memory.cpython-311.pyc +0 -0
- package/scripts/maintenance/__pycache__/reindex_all_rag.cpython-311.pyc +0 -0
- package/scripts/maintenance/__pycache__/reset_context_memory.cpython-311.pyc +0 -0
- package/scripts/maintenance/__pycache__/simple_context_memory.cpython-311.pyc +0 -0
- package/scripts/maintenance/clean_context_memory.py +0 -182
- package/scripts/maintenance/fix_context_memory.py +0 -114
- package/scripts/maintenance/reindex_all_rag.py +0 -352
- package/scripts/maintenance/reset_context_memory.py +0 -138
- package/scripts/maintenance/simple_context_memory.py +0 -199
- package/scripts/managers/__pycache__/bash_optimizer.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/config_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/config_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/credential_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/csv_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/domain_map_db.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/env_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/json_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/json_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/markdown_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/markdown_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/markdown_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/migration_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/model_router.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/obsidian_config_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/obsidian_config_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/obsidian_markdown_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/obsidian_markdown_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/path_manager.cpython-310.pyc +0 -0
- package/scripts/managers/__pycache__/path_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/path_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/path_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/policy_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/process_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/schema_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/snapshot_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/toon_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/toon_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/toon_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/workspace_path_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/workspace_path_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/workspace_path_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/workspace_path_manager_v2.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/yaml_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/yaml_manager.cpython-313.pyc +0 -0
- package/scripts/managers/bash_optimizer.py +0 -209
- package/scripts/managers/config_manager.py +0 -229
- package/scripts/managers/credential_manager.py +0 -579
- package/scripts/managers/csv_manager.py +0 -515
- package/scripts/managers/domain_map_db.py +0 -422
- package/scripts/managers/env_manager.py +0 -732
- package/scripts/managers/json_manager.py +0 -22
- package/scripts/managers/markdown_manager.py +0 -893
- package/scripts/managers/migration_manager.py +0 -115
- package/scripts/managers/model_router.py +0 -436
- package/scripts/managers/obsidian_config_manager.py +0 -621
- package/scripts/managers/obsidian_markdown_manager.py +0 -601
- package/scripts/managers/path_manager.py +0 -164
- package/scripts/managers/policy_manager.py +0 -628
- package/scripts/managers/process_manager.py +0 -285
- package/scripts/managers/schema_manager.py +0 -292
- package/scripts/managers/snapshot_manager.py +0 -14
- package/scripts/managers/toon_manager.py +0 -407
- package/scripts/managers/workspace_path_manager.py +0 -299
- package/scripts/managers/workspace_path_manager_v2.py +0 -414
- package/scripts/managers/yaml_manager.py +0 -17
- package/scripts/markdown/__init__.py +0 -21
- package/scripts/markdown/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_base.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_base.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_base.cpython-313.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_cli.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_cli.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_cli.cpython-313.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_editor.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_editor.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_editor.cpython-313.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_manager.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_parser.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_parser.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_parser.cpython-313.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_validator.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_validator.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_validator.cpython-313.pyc +0 -0
- package/scripts/markdown/markdown_base.py +0 -118
- package/scripts/markdown/markdown_cli.py +0 -310
- package/scripts/markdown/markdown_editor.py +0 -321
- package/scripts/markdown/markdown_manager.py +0 -209
- package/scripts/markdown/markdown_parser.py +0 -378
- package/scripts/markdown/markdown_validator.py +0 -196
- package/scripts/migrate_artifacts.py +0 -237
- package/scripts/migration/__pycache__/workspace_structure_migration.cpython-313.pyc +0 -0
- package/scripts/migration/domain_map_v1_to_v2_migration.py +0 -363
- package/scripts/migration/test_single_workspace_migration.py +0 -83
- package/scripts/migration/workspace_structure_migration.py +0 -740
- package/scripts/mobile/README_maestro_runner.md +0 -101
- package/scripts/mobile/REQUIREMENTS_device_manager.md +0 -133
- package/scripts/mobile/REQUIREMENTS_mobile_cli.md +0 -185
- package/scripts/mobile/__init__.py +0 -1
- package/scripts/mobile/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/mobile/__pycache__/device_manager.cpython-313.pyc +0 -0
- package/scripts/mobile/__pycache__/maestro_runner.cpython-313.pyc +0 -0
- package/scripts/mobile/__pycache__/screenshot_manager.cpython-313.pyc +0 -0
- package/scripts/mobile/__pycache__/test_device_manager.cpython-313-pytest-9.0.2.pyc +0 -0
- package/scripts/mobile/device_manager.py +0 -312
- package/scripts/mobile/domain/__init__.py +0 -1
- package/scripts/mobile/domain/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/mobile/domain/__pycache__/device.cpython-313.pyc +0 -0
- package/scripts/mobile/domain/device.py +0 -128
- package/scripts/mobile/examples/config_example.py +0 -51
- package/scripts/mobile/examples/sample_test.yaml +0 -38
- package/scripts/mobile/infrastructure/__init__.py +0 -1
- package/scripts/mobile/infrastructure/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/mobile/infrastructure/__pycache__/connectors.cpython-313.pyc +0 -0
- package/scripts/mobile/infrastructure/connectors.py +0 -316
- package/scripts/mobile/maestro/__init__.py +0 -1
- package/scripts/mobile/maestro/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/mobile/maestro/__pycache__/test_executor.cpython-313.pyc +0 -0
- package/scripts/mobile/maestro/test_executor.py +0 -203
- package/scripts/mobile/maestro_runner.py +0 -336
- package/scripts/mobile/maestro_runner_complex.py +0 -329
- package/scripts/mobile/maestro_runner_original.py +0 -477
- package/scripts/mobile/mobile_cli.py +0 -339
- package/scripts/mobile/screenshot_manager.py +0 -595
- package/scripts/mobile/test_device_manager.py +0 -322
- package/scripts/obsidian_cardboard_sync.py +0 -454
- package/scripts/obsidian_diagnostic.py +0 -787
- package/scripts/obsidian_setup_tool.py +0 -619
- package/scripts/obsidian_sync_cli.py +0 -964
- package/scripts/obsidian_test_demo.py +0 -547
- package/scripts/parsers/__init__.py +0 -0
- package/scripts/parsers/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/parsers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/parsers/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/parsers/__pycache__/language_parsers.cpython-311.pyc +0 -0
- package/scripts/parsers/__pycache__/language_parsers.cpython-312.pyc +0 -0
- package/scripts/parsers/__pycache__/language_parsers.cpython-313.pyc +0 -0
- package/scripts/parsers/__pycache__/language_parsers_new.cpython-311.pyc +0 -0
- package/scripts/parsers/__pycache__/parser_base.cpython-311.pyc +0 -0
- package/scripts/parsers/__pycache__/parser_registry.cpython-311.pyc +0 -0
- package/scripts/parsers/language_parsers.py +0 -966
- package/scripts/parsers/parser_base.py +0 -93
- package/scripts/parsers/parser_registry.py +0 -127
- package/scripts/parsers/parsers/__init__.py +0 -17
- package/scripts/parsers/parsers/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/go_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/javascript_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/kotlin_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/python_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/swift_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/typescript_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/go_parser.py +0 -251
- package/scripts/parsers/parsers/javascript_parser.py +0 -285
- package/scripts/parsers/parsers/kotlin_parser.py +0 -282
- package/scripts/parsers/parsers/python_parser.py +0 -248
- package/scripts/parsers/parsers/swift_parser.py +0 -281
- package/scripts/parsers/parsers/typescript_parser.py +0 -127
- package/scripts/policy_check.sh +0 -126
- package/scripts/rag/CD-027_IMPLEMENTATION_SUMMARY.md +0 -347
- package/scripts/rag/FEATURE_COVERAGE.md +0 -393
- package/scripts/rag/MEASURE_PRECISION_REQUIREMENTS.md +0 -273
- package/scripts/rag/ORACLE_FILTERS.md +0 -317
- package/scripts/rag/QUICK_START.md +0 -173
- package/scripts/rag/REQUIREMENTS.md +0 -320
- package/scripts/rag/REQUIREMENTS_oracle_rag_integration.md +0 -115
- package/scripts/rag/__init__.py +0 -12
- package/scripts/rag/__pycache__/__init__.cpython-310.pyc +0 -0
- package/scripts/rag/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli_commands.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli_commands.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli_commands.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/project_type_detector.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/project_type_detector.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_commands.cpython-310.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_commands.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_commands.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_commands.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_search_commands.cpython-310.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_search_commands.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_search_commands.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_search_commands.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/rag_config.cpython-310.pyc +0 -0
- package/scripts/rag/__pycache__/rag_config.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/rag_config.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/rag_config.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/smart_rag_index.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/smart_rag_index_hybrid.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/smart_rag_index_tui.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/smart_rag_index_v2.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/suppress_logs.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/suppress_logs.cpython-313.pyc +0 -0
- package/scripts/rag/auto_reindex_oracle.py +0 -278
- package/scripts/rag/code_intelligence.py +0 -366
- package/scripts/rag/command_intelligence.py +0 -245
- package/scripts/rag/command_intelligence_cli.py +0 -360
- package/scripts/rag/command_intelligence_config.py +0 -258
- package/scripts/rag/command_intelligence_nlp.py +0 -324
- package/scripts/rag/command_intelligence_search.py +0 -288
- package/scripts/rag/detect_duplicates.py +0 -180
- package/scripts/rag/domain_mapper/__init__.py +0 -33
- package/scripts/rag/domain_mapper/__pycache__/__init__.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/cli.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/cli.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/config.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/config.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/config.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/config.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/discovery.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/discovery.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/discovery.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/discovery.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/llm.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/llm.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/llm.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/llm.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/mapper.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/mapper.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/mapper.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/mapper.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/models.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/models.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/models.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/models.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/parser.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/parser.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/parser.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/parser.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/persistence.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/persistence.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/persistence.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/persistence.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/vectorstore.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/vectorstore.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/vectorstore.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/vectorstore.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/cli.py +0 -181
- package/scripts/rag/domain_mapper/config.py +0 -185
- package/scripts/rag/domain_mapper/discovery.py +0 -284
- package/scripts/rag/domain_mapper/llm.py +0 -67
- package/scripts/rag/domain_mapper/mapper.py +0 -419
- package/scripts/rag/domain_mapper/models.py +0 -82
- package/scripts/rag/domain_mapper/parser.py +0 -123
- package/scripts/rag/domain_mapper/persistence.py +0 -167
- package/scripts/rag/domain_mapper/vectorstore.py +0 -82
- package/scripts/rag/index_external_sources.py +0 -268
- package/scripts/rag/index_menu_ocr_hybrid.sh +0 -191
- package/scripts/rag/index_menu_ocr_modular.sh +0 -195
- package/scripts/rag/measure_precision.py +0 -520
- package/scripts/rag/oracle_rag.py +0 -342
- package/scripts/rag/oracle_rag_cli.py +0 -440
- package/scripts/rag/oracle_rag_cli_commands.py +0 -425
- package/scripts/rag/project_type_detector.py +0 -424
- package/scripts/rag/rag_cli.py +0 -334
- package/scripts/rag/rag_cli_commands.py +0 -1431
- package/scripts/rag/rag_cli_commands.py.bak4 +0 -1557
- package/scripts/rag/rag_cli_search_commands.py +0 -616
- package/scripts/rag/rag_config.py +0 -414
- package/scripts/rag/rag_config_v2.py +0 -377
- package/scripts/rag/rag_hook.py +0 -46
- package/scripts/rag/rag_update_file.py +0 -271
- package/scripts/rag/reindex_all_workspaces.sh +0 -177
- package/scripts/rag/reindex_workspaces.sh +0 -79
- package/scripts/rag/smart_rag_index.py +0 -426
- package/scripts/rag/suppress_logs.py +0 -89
- package/scripts/rag/test_oracle_filters.py +0 -196
- package/scripts/rag_index_clean.py +0 -200
- package/scripts/rag_index_smart.py +0 -71
- package/scripts/rag_workflow/README.md +0 -142
- package/scripts/rag_workflow/__init__.py +0 -27
- package/scripts/rag_workflow/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/rag_workflow/core/__pycache__/exceptions.cpython-311.pyc +0 -0
- package/scripts/rag_workflow/core/__pycache__/interfaces.cpython-311.pyc +0 -0
- package/scripts/rag_workflow/core/exceptions.py +0 -381
- package/scripts/rag_workflow/core/interfaces.py +0 -534
- package/scripts/research/__pycache__/perplexity_research.cpython-311.pyc +0 -0
- package/scripts/research/perplexity_research.py +0 -390
- package/scripts/roadmap_manager.py +0 -369
- package/scripts/run_tests.sh +0 -5
- package/scripts/scrum_master.py +0 -733
- package/scripts/security/README.md +0 -373
- package/scripts/security/REQUIREMENTS.md +0 -278
- package/scripts/security/__init__.py +0 -20
- package/scripts/security/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/mobile_security_analyzer.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/mobsf_cli.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/mobsf_integration.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/mobsf_integration_runner.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/security_report_generator.cpython-313.pyc +0 -0
- package/scripts/security/mobile_security_analyzer.py +0 -369
- package/scripts/security/mobsf_cli.py +0 -365
- package/scripts/security/mobsf_integration.py +0 -534
- package/scripts/security/mobsf_integration_runner.py +0 -360
- package/scripts/security/security_report_generator.py +0 -474
- package/scripts/security/test_mobsf_integration.py +0 -152
- package/scripts/session_auto_setup.py +0 -217
- package/scripts/setup/Install-Global.ps1 +0 -167
- package/scripts/setup/__pycache__/configure_hybrid_routing.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/configure_ollama_only.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/init_database.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/install_rag_dependencies.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/install_rag_lite.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/jarvis_automated_installer.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/register_all_skills.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/setup_advanced.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/setup_dependencies.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/verify_package.cpython-311.pyc +0 -0
- package/scripts/setup/configure_hybrid_routing.py +0 -340
- package/scripts/setup/configure_ollama_only.py +0 -270
- package/scripts/setup/fix_workspace_kanban_schema.py +0 -240
- package/scripts/setup/index_initial_rag.py +0 -386
- package/scripts/setup/init_database.py +0 -358
- package/scripts/setup/install.sh +0 -171
- package/scripts/setup/install_global.sh +0 -115
- package/scripts/setup/install_ollama.py +0 -184
- package/scripts/setup/install_ollama_models.sh +0 -246
- package/scripts/setup/install_rag_dependencies.py +0 -162
- package/scripts/setup/install_rag_lite.py +0 -225
- package/scripts/setup/install_required_models.py +0 -178
- package/scripts/setup/jarvis.cmd +0 -49
- package/scripts/setup/jarvis_automated_installer.py +0 -959
- package/scripts/setup/jarvis_wrapper.sh +0 -49
- package/scripts/setup/policy_check.sh +0 -126
- package/scripts/setup/register_all_skills.py +0 -132
- package/scripts/setup/setup.sh +0 -184
- package/scripts/setup/setup_advanced.py +0 -158
- package/scripts/setup/setup_all.sh +0 -217
- package/scripts/setup/setup_complete.sh +0 -247
- package/scripts/setup/setup_dependencies.py +0 -460
- package/scripts/setup/setup_domain_map_v2.py +0 -452
- package/scripts/setup/setup_environment.sh +0 -296
- package/scripts/setup/setup_golang.sh +0 -80
- package/scripts/setup/setup_javascript.sh +0 -55
- package/scripts/setup/setup_python.sh +0 -64
- package/scripts/setup/validate_dependencies.py +0 -236
- package/scripts/setup/validate_installation.py +0 -166
- package/scripts/setup/validate_ollama_models.py +0 -233
- package/scripts/setup/validate_setup.sh +0 -347
- package/scripts/setup/verify_package.py +0 -220
- package/scripts/setup_cpp_unix.sh +0 -58
- package/scripts/setup_csharp_linux.sh +0 -61
- package/scripts/setup_csharp_windows.ps1 +0 -63
- package/scripts/setup_kotlin_macos.sh +0 -40
- package/scripts/setup_kotlin_windows.ps1 +0 -68
- package/scripts/setup_lsp.sh +0 -131
- package/scripts/setup_lsp_servers.sh +0 -252
- package/scripts/setup_python.sh +0 -64
- package/scripts/setup_swift_macos.sh +0 -77
- package/scripts/snapshot/ARCHITECTURE.md +0 -423
- package/scripts/snapshot/README.md +0 -180
- package/scripts/snapshot/__init__.py +0 -11
- package/scripts/snapshot/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/cli.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/database_repository.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/file_repository.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/git_repository.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/models.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/snapshot_lite.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/snapshot_service.cpython-311.pyc +0 -0
- package/scripts/snapshot/cli.py +0 -193
- package/scripts/snapshot/database_repository.py +0 -276
- package/scripts/snapshot/file_repository.py +0 -248
- package/scripts/snapshot/git_repository.py +0 -161
- package/scripts/snapshot/models.py +0 -97
- package/scripts/snapshot/snapshot_lite.py +0 -466
- package/scripts/snapshot/snapshot_service.py +0 -319
- package/scripts/sync/__pycache__/sync_improvements_to_boilerplate.cpython-311.pyc +0 -0
- package/scripts/sync/__pycache__/sync_to_boilerplate.cpython-311.pyc +0 -0
- package/scripts/sync/sync_improvements_to_boilerplate.py +0 -284
- package/scripts/sync/sync_to_boilerplate.py +0 -383
- package/scripts/test_domain_map_tools.py +0 -94
- package/scripts/test_domain_map_v2.py +0 -202
- package/scripts/test_domain_map_v2_no_llm.py +0 -97
- package/scripts/test_domain_map_v2_simple.py +0 -84
- package/scripts/test_local_installation.py +0 -436
- package/scripts/test_local_installation.sh +0 -201
- package/scripts/tests/README.md +0 -145
- package/scripts/tests/__pycache__/test_path_registry_workspace_rag.cpython-311-pytest-9.0.1.pyc +0 -0
- package/scripts/tests/__pycache__/test_rag_autosync.cpython-311.pyc +0 -0
- package/scripts/tests/__pycache__/test_rag_cli_workspace.cpython-311-pytest-9.0.1.pyc +0 -0
- package/scripts/tests/__pycache__/test_rag_config_workspace.cpython-311-pytest-9.0.1.pyc +0 -0
- package/scripts/tests/__pycache__/test_vector_store_workspace.cpython-311-pytest-9.0.1.pyc +0 -0
- package/scripts/tests/dry_run_session_integration.sh +0 -329
- package/scripts/tests/test_command_intelligence_coverage.sh +0 -102
- package/scripts/tests/test_epic_auto_injection.sh +0 -71
- package/scripts/tests/test_mcp_server.sh +0 -110
- package/scripts/tests/test_path_registry_workspace_rag.py +0 -146
- package/scripts/tests/test_permission_hook.sh +0 -118
- package/scripts/tests/test_rag_autosync.py +0 -318
- package/scripts/tests/test_rag_cli_workspace.py +0 -275
- package/scripts/tests/test_rag_config_workspace.py +0 -72
- package/scripts/tests/test_vector_store_workspace.py +0 -133
- package/scripts/tests/test_workspace_context.sh +0 -69
- package/scripts/token_metrics.py +0 -546
- package/scripts/user_story_chat.py +0 -271
- package/scripts/user_story_manager.py +0 -483
- package/scripts/utilities/WORKSPACE_ANALYZER_README.md +0 -307
- package/scripts/utilities/__pycache__/apply_toon_to_all.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/boilerplate_sync.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/check_skills_loaded.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/context_memory_toon.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/convert_skill_to_toon.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/help_loader.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/markdown_template_enforcer.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/optimize_markdown.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/optimize_md_preserve_header.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/remove_emojis_safe.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/report_generator.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/token_savings_monitor.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/workspace_analyzer.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/workspace_analyzer.cpython-312.pyc +0 -0
- package/scripts/utilities/apply_toon_to_all.py +0 -103
- package/scripts/utilities/boilerplate_sync.py +0 -359
- package/scripts/utilities/check_skills_loaded.py +0 -97
- package/scripts/utilities/context_memory_toon.py +0 -145
- package/scripts/utilities/convert_skill_to_toon.py +0 -671
- package/scripts/utilities/help_loader.py +0 -175
- package/scripts/utilities/markdown_template_enforcer.py +0 -570
- package/scripts/utilities/optimize_markdown.py +0 -188
- package/scripts/utilities/optimize_md_preserve_header.py +0 -192
- package/scripts/utilities/remove_emojis_safe.py +0 -85
- package/scripts/utilities/report_generator.py +0 -335
- package/scripts/utilities/token_savings_monitor.py +0 -307
- package/scripts/utilities/workspace_analyzer.py +0 -520
- package/scripts/validators/__pycache__/code_validator.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/file_governance_manager.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/operation_validator.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/policy_guard.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_code_operations.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_code_operations_v2.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_command.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_compliance.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_ddd_migration.cpython-311.pyc +0 -0
- package/scripts/validators/code_validator.py +0 -364
- package/scripts/validators/data_validator.py +0 -353
- package/scripts/validators/file_governance_manager.py +0 -22
- package/scripts/validators/operation_validator.py +0 -360
- package/scripts/validators/policy_guard.py +0 -248
- package/scripts/validators/schema_mapper.py +0 -348
- package/scripts/validators/validate_code_operations.py +0 -114
- package/scripts/validators/validate_code_operations_v2.py +0 -305
- package/scripts/validators/validate_command.py +0 -97
- package/scripts/validators/validate_compliance.py +0 -362
- package/scripts/validators/validate_ddd_migration.py +0 -384
- package/scripts/workspace_dependency_manager.py +0 -417
- package/scripts/workspace_detector.py +0 -179
- package/scripts/workspace_manager.py +0 -17
- package/src/__init__.py +0 -1
- package/src/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/adapters/__init__.py +0 -0
- package/src/adapters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/adapters/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/adapters/__pycache__/context_memory_adapter.cpython-312.pyc +0 -0
- package/src/adapters/__pycache__/context_memory_adapter.cpython-313.pyc +0 -0
- package/src/adapters/context_memory_adapter.py +0 -356
- package/src/application/__init__.py +0 -18
- package/src/application/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/application/code_management/use_cases/extract_function_use_case.py +0 -309
- package/src/application/context_memory/__init__.py +0 -10
- package/src/application/context_memory/context_memory_service.py +0 -154
- package/src/application/context_memory/use_cases/__init__.py +0 -15
- package/src/application/context_memory/use_cases/add_todo_use_case.py +0 -99
- package/src/application/context_memory/use_cases/complete_todo_use_case.py +0 -73
- package/src/application/context_memory/use_cases/list_todos_use_case.py +0 -86
- package/src/application/context_memory/use_cases/read_messages_use_case.py +0 -105
- package/src/application/context_memory/use_cases/send_message_use_case.py +0 -107
- package/src/application/domain_maps/__init__.py +0 -10
- package/src/application/domain_maps/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/domain_maps/__pycache__/domain_map_service.cpython-312.pyc +0 -0
- package/src/application/domain_maps/__pycache__/domain_map_service_v2.cpython-312.pyc +0 -0
- package/src/application/domain_maps/__pycache__/input_validators.cpython-312.pyc +0 -0
- package/src/application/domain_maps/domain_map_service.py +0 -496
- package/src/application/domain_maps/domain_map_service_v2.py +0 -790
- package/src/application/domain_maps/input_validators.py +0 -63
- package/src/application/file_governance/__init__.py +0 -9
- package/src/application/file_governance/file_governance_service.py +0 -163
- package/src/application/file_governance/use_cases/__init__.py +0 -11
- package/src/application/file_governance/use_cases/apply_rules_use_case.py +0 -118
- package/src/application/file_governance/use_cases/list_violations_use_case.py +0 -102
- package/src/application/file_governance/use_cases/validate_file_access_use_case.py +0 -109
- package/src/application/git_repository/__init__.py +0 -10
- package/src/application/git_repository/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/git_repository/__pycache__/git_repo_service.cpython-312.pyc +0 -0
- package/src/application/git_repository/__pycache__/git_repository_service.cpython-312.pyc +0 -0
- package/src/application/git_repository/git_repo_service.py +0 -407
- package/src/application/git_repository/git_repository_service.py +0 -92
- package/src/application/git_repository/use_cases/__init__.py +0 -9
- package/src/application/git_repository/use_cases/commit_use_case.py +0 -97
- package/src/application/git_repository/use_cases/status_use_case.py +0 -76
- package/src/application/governance/__init__.py +0 -16
- package/src/application/governance/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/governance/__pycache__/artifact_service.cpython-312.pyc +0 -0
- package/src/application/governance/artifact_service.py +0 -482
- package/src/application/kanban/__init__.py +0 -19
- package/src/application/kanban/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/artifact_service.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/artifact_service.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/context_bridge.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/context_bridge.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/grooming_validator.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/kanban_service.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/kanban_service.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/migration_runner.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/session_integration.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/session_integration.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/token_metrics_service.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/token_metrics_service.cpython-313.pyc +0 -0
- package/src/application/kanban/artifact_service.py +0 -326
- package/src/application/kanban/batch_service.py +0 -601
- package/src/application/kanban/context_bridge.py +0 -244
- package/src/application/kanban/grooming_validator.py +0 -219
- package/src/application/kanban/kanban_service.py +0 -553
- package/src/application/kanban/migration_runner.py +0 -278
- package/src/application/kanban/session_integration.py +0 -135
- package/src/application/kanban/token_metrics_service.py +0 -495
- package/src/application/orchestration/__init__.py +0 -9
- package/src/application/orchestration/scrum_master_service.py +0 -993
- package/src/application/quality/code_review_system.py +0 -573
- package/src/application/rag/__init__.py +0 -6
- package/src/application/rag/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/__init__.py +0 -5
- package/src/application/rag/use_cases/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/__pycache__/index_code_use_case.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/__pycache__/semantic_search_use_case.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/__pycache__/snippet_retrieval_use_case.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/index_code_use_case.py +0 -134
- package/src/application/rag/use_cases/semantic_search_use_case.py +0 -92
- package/src/application/rag/use_cases/snippet_retrieval_use_case.py +0 -92
- package/src/application/user_stories/__init__.py +0 -9
- package/src/application/user_stories/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/user_stories/__pycache__/user_story_service.cpython-312.pyc +0 -0
- package/src/application/user_stories/user_story_service.py +0 -437
- package/src/application/user_story_chat/__init__.py +0 -9
- package/src/application/user_story_chat/user_story_chat_service.py +0 -250
- package/src/application/workspace/__init__.py +0 -32
- package/src/application/workspace/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/workspace/__pycache__/cross_workspace_orchestrator.cpython-312.pyc +0 -0
- package/src/application/workspace/__pycache__/mcp_integration_service.cpython-312.pyc +0 -0
- package/src/application/workspace/__pycache__/workspace_service.cpython-312.pyc +0 -0
- package/src/application/workspace/change_detector.py +0 -360
- package/src/application/workspace/context_switcher.py +0 -294
- package/src/application/workspace/cross_workspace_orchestrator.py +0 -410
- package/src/application/workspace/error_router.py +0 -325
- package/src/application/workspace/impact_analyzer.py +0 -434
- package/src/application/workspace/mcp_integration_service.py +0 -305
- package/src/application/workspace/rag_client.py +0 -89
- package/src/application/workspace/use_cases/__init__.py +0 -9
- package/src/application/workspace/use_cases/create_workspace_use_case.py +0 -98
- package/src/application/workspace/use_cases/list_workspaces_use_case.py +0 -92
- package/src/application/workspace/workspace_service.py +0 -668
- package/src/context_memory/__init__.py +0 -22
- package/src/context_memory/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/context_memory/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/context_memory/__pycache__/manager.cpython-312.pyc +0 -0
- package/src/context_memory/__pycache__/manager.cpython-313.pyc +0 -0
- package/src/context_memory/__pycache__/models.cpython-312.pyc +0 -0
- package/src/context_memory/__pycache__/models.cpython-313.pyc +0 -0
- package/src/context_memory/manager.py +0 -635
- package/src/context_memory/models.py +0 -223
- package/src/context_memory/schema.sql +0 -64
- package/src/domain/__init__.py +0 -12
- package/src/domain/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/architecture/__pycache__/pattern_detector.cpython-312.pyc +0 -0
- package/src/domain/architecture/pattern_detector.py +0 -641
- package/src/domain/code_management/README.md +0 -112
- package/src/domain/code_management/__init__.py +0 -9
- package/src/domain/code_management/entities/code_block.py +0 -131
- package/src/domain/code_management/events.py +0 -393
- package/src/domain/code_management/repositories.py +0 -145
- package/src/domain/code_management/services.py +0 -377
- package/src/domain/code_management/validators.py +0 -53
- package/src/domain/code_management/value_objects.py +0 -212
- package/src/domain/context_memory/README.md +0 -80
- package/src/domain/context_memory/__init__.py +0 -9
- package/src/domain/context_memory/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/context_entry.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/context_entry.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/context_entry_query_service.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/context_entry_query_service.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/entities.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/repositories.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/services.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/services.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/session.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/session.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/session_coordinator.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/session_coordinator.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/todo.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/todo.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/todo_query_service.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/todo_query_service.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/value_objects.cpython-313.pyc +0 -0
- package/src/domain/context_memory/context_entry.py +0 -125
- package/src/domain/context_memory/context_entry_query_service.py +0 -116
- package/src/domain/context_memory/entities.py +0 -12
- package/src/domain/context_memory/events.py +0 -254
- package/src/domain/context_memory/repositories.py +0 -324
- package/src/domain/context_memory/services.py +0 -17
- package/src/domain/context_memory/session.py +0 -282
- package/src/domain/context_memory/session_coordinator.py +0 -77
- package/src/domain/context_memory/session_marker_manager.py +0 -419
- package/src/domain/context_memory/todo.py +0 -155
- package/src/domain/context_memory/todo_query_service.py +0 -237
- package/src/domain/context_memory/value_objects.py +0 -287
- package/src/domain/domain_maps/__init__.py +0 -33
- package/src/domain/domain_maps/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/domain_map.json +0 -783
- package/src/domain/domain_maps/entities/__init__.py +0 -6
- package/src/domain/domain_maps/entities/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/entities/__pycache__/bounded_context.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/entities/__pycache__/domain_map.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/entities/bounded_context.py +0 -176
- package/src/domain/domain_maps/entities/domain_map.py +0 -194
- package/src/domain/domain_maps/events.py +0 -159
- package/src/domain/domain_maps/repositories.py +0 -179
- package/src/domain/domain_maps/services.py +0 -197
- package/src/domain/domain_maps/value_objects.py +0 -138
- package/src/domain/entities/__pycache__/entity_extractor.cpython-312.pyc +0 -0
- package/src/domain/entities/entity_extractor.py +0 -556
- package/src/domain/file_governance/README.md +0 -70
- package/src/domain/file_governance/__init__.py +0 -9
- package/src/domain/file_governance/entities/__init__.py +0 -15
- package/src/domain/file_governance/entities/file_operation.py +0 -135
- package/src/domain/file_governance/entities/file_policy.py +0 -127
- package/src/domain/file_governance/entities/file_rule.py +0 -157
- package/src/domain/file_governance/events.py +0 -192
- package/src/domain/file_governance/repositories.py +0 -220
- package/src/domain/file_governance/services.py +0 -372
- package/src/domain/file_governance/value_objects.py +0 -307
- package/src/domain/git_repository/README.md +0 -94
- package/src/domain/git_repository/__init__.py +0 -45
- package/src/domain/git_repository/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/git_repository/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/git_repository/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/git_repository/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/git_repository/entities.py +0 -271
- package/src/domain/git_repository/repositories.py +0 -73
- package/src/domain/git_repository/value_objects.py +0 -377
- package/src/domain/governance/__init__.py +0 -83
- package/src/domain/governance/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/artifact_frontmatter.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/artifact_frontmatter.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/artifact_path.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/artifact_path.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/location_rules.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/location_rules.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/path_governance.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/path_governance.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/path_keys.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/path_keys.cpython-313.pyc +0 -0
- package/src/domain/governance/artifact_frontmatter.py +0 -380
- package/src/domain/governance/artifact_path.py +0 -346
- package/src/domain/governance/location_rules.py +0 -157
- package/src/domain/governance/path_governance.py +0 -331
- package/src/domain/governance/path_keys.py +0 -52
- package/src/domain/kanban/__init__.py +0 -30
- package/src/domain/kanban/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/kanban/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/kanban/__pycache__/schema_provider.cpython-312.pyc +0 -0
- package/src/domain/kanban/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/kanban/__pycache__/value_objects.cpython-313.pyc +0 -0
- package/src/domain/kanban/schema.sql +0 -340
- package/src/domain/kanban/schema_provider.py +0 -347
- package/src/domain/kanban/value_objects.py +0 -242
- package/src/domain/mobile_testing/__init__.py +0 -54
- package/src/domain/mobile_testing/device_repository.py +0 -240
- package/src/domain/mobile_testing/entities.py +0 -450
- package/src/domain/mobile_testing/test_repository.py +0 -499
- package/src/domain/mobile_testing/value_objects.py +0 -232
- package/src/domain/orchestration/__init__.py +0 -38
- package/src/domain/orchestration/agent_config_schema.py +0 -398
- package/src/domain/orchestration/config_validator.py +0 -572
- package/src/domain/rag/README.md +0 -66
- package/src/domain/rag/__init__.py +0 -43
- package/src/domain/rag/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/rag/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/rag/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/rag/__pycache__/services.cpython-312.pyc +0 -0
- package/src/domain/rag/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/rag/domain_map.json +0 -90
- package/src/domain/rag/entities.py +0 -154
- package/src/domain/rag/events.py +0 -107
- package/src/domain/rag/file_splitter_service.py +0 -312
- package/src/domain/rag/indexing_strategy_service.py +0 -133
- package/src/domain/rag/repositories.py +0 -192
- package/src/domain/rag/services.py +0 -240
- package/src/domain/rag/value_objects.py +0 -177
- package/src/domain/relationships/__pycache__/relationship_mapper.cpython-312.pyc +0 -0
- package/src/domain/relationships/relationship_mapper.py +0 -712
- package/src/domain/shared/README.md +0 -95
- package/src/domain/shared/__init__.py +0 -108
- package/src/domain/shared/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/shared/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/shared/__pycache__/toon_formatter.cpython-312.pyc +0 -0
- package/src/domain/shared/toon_formatter.py +0 -365
- package/src/domain/user_stories/README.md +0 -129
- package/src/domain/user_stories/__init__.py +0 -46
- package/src/domain/user_stories/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/user_stories/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/user_stories/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/user_stories/__pycache__/entities.cpython-313.pyc +0 -0
- package/src/domain/user_stories/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/user_stories/__pycache__/repositories.cpython-313.pyc +0 -0
- package/src/domain/user_stories/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/user_stories/__pycache__/value_objects.cpython-313.pyc +0 -0
- package/src/domain/user_stories/entities.py +0 -385
- package/src/domain/user_stories/repositories.py +0 -333
- package/src/domain/user_stories/value_objects.py +0 -383
- package/src/domain/user_story_chat/README.md +0 -83
- package/src/domain/user_story_chat/__init__.py +0 -34
- package/src/domain/user_story_chat/entities.py +0 -171
- package/src/domain/user_story_chat/repositories.py +0 -74
- package/src/domain/user_story_chat/value_objects.py +0 -140
- package/src/domain/workspace/README.md +0 -114
- package/src/domain/workspace/__init__.py +0 -74
- package/src/domain/workspace/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/event_handlers.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/events.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/workspace.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/workspace_repository.cpython-312.pyc +0 -0
- package/src/domain/workspace/change_detection_vos.py +0 -331
- package/src/domain/workspace/entities.py +0 -184
- package/src/domain/workspace/event_handlers.py +0 -140
- package/src/domain/workspace/events.py +0 -294
- package/src/domain/workspace/value_objects.py +0 -493
- package/src/domain/workspace/workspace.py +0 -282
- package/src/domain/workspace/workspace_repository.py +0 -238
- package/src/infrastructure/README.md +0 -310
- package/src/infrastructure/__init__.py +0 -0
- package/src/infrastructure/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/infrastructure/__pycache__/workspace_cli.cpython-312.pyc +0 -0
- package/src/infrastructure/cli/__init__.py +0 -1
- package/src/infrastructure/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/cli/commands/__init__.py +0 -1
- package/src/infrastructure/cli/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/cli/commands/__pycache__/yaml_commands.cpython-312.pyc +0 -0
- package/src/infrastructure/cli/commands/yaml_commands.py +0 -577
- package/src/infrastructure/code_management/__init__.py +0 -31
- package/src/infrastructure/code_management/code_analysis_repository.py +0 -399
- package/src/infrastructure/code_management/converters.py +0 -206
- package/src/infrastructure/code_management/examples.py +0 -362
- package/src/infrastructure/code_management/ollama_semantic_repository.py +0 -409
- package/src/infrastructure/code_management/sqlite_code_repository.py +0 -341
- package/src/infrastructure/context_memory/__init__.py +0 -0
- package/src/infrastructure/context_memory/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/converters.cpython-312.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/converters.cpython-313.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/sqlite_session_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/sqlite_session_repository.cpython-313.pyc +0 -0
- package/src/infrastructure/context_memory/converters.py +0 -220
- package/src/infrastructure/context_memory/sqlite_context_entry_repository.py +0 -422
- package/src/infrastructure/context_memory/sqlite_session_repository.py +0 -448
- package/src/infrastructure/context_memory/sqlite_todo_repository.py +0 -442
- package/src/infrastructure/domain_maps/__init__.py +0 -17
- package/src/infrastructure/domain_maps/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/domain_maps/__pycache__/converters.cpython-312.pyc +0 -0
- package/src/infrastructure/domain_maps/__pycache__/sqlite_domain_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/domain_maps/__pycache__/sqlite_workspace_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/domain_maps/converters.py +0 -214
- package/src/infrastructure/domain_maps/sqlite_domain_repository.py +0 -293
- package/src/infrastructure/domain_maps/sqlite_workspace_repository.py +0 -377
- package/src/infrastructure/event_adapters/__init__.py +0 -10
- package/src/infrastructure/event_adapters/hybrid_adapter.py +0 -181
- package/src/infrastructure/event_adapters/memory_adapter.py +0 -234
- package/src/infrastructure/event_bus/README.md +0 -284
- package/src/infrastructure/event_bus/__init__.py +0 -27
- package/src/infrastructure/event_bus/base.py +0 -263
- package/src/infrastructure/event_bus/decorators.py +0 -351
- package/src/infrastructure/event_bus/event_persistence.py +0 -131
- package/src/infrastructure/event_bus/event_queries.py +0 -210
- package/src/infrastructure/event_bus/event_reconstruction.py +0 -111
- package/src/infrastructure/event_bus/event_sourcing_operations.py +0 -180
- package/src/infrastructure/event_bus/examples.py +0 -411
- package/src/infrastructure/event_bus/hybrid_event_bus.py +0 -360
- package/src/infrastructure/event_bus/in_memory_event_bus.py +0 -328
- package/src/infrastructure/event_bus/sqlite_event_store.py +0 -310
- package/src/infrastructure/event_bus_adapter.py +0 -320
- package/src/infrastructure/file_governance/__init__.py +0 -0
- package/src/infrastructure/file_governance/converters.py +0 -182
- package/src/infrastructure/file_governance/sqlite_file_rule_repository.py +0 -410
- package/src/infrastructure/git_repo_cli.py +0 -368
- package/src/infrastructure/git_repository/__init__.py +0 -0
- package/src/infrastructure/git_repository/converters.py +0 -139
- package/src/infrastructure/git_repository/git_repository_impl.py +0 -333
- package/src/infrastructure/git_repository/git_stats_operations.py +0 -127
- package/src/infrastructure/git_repository/git_status_operations.py +0 -165
- package/src/infrastructure/governance/__init__.py +0 -20
- package/src/infrastructure/governance/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/governance/__pycache__/artifact_storage.cpython-312.pyc +0 -0
- package/src/infrastructure/governance/artifact_storage.py +0 -584
- package/src/infrastructure/kanban/__init__.py +0 -9
- package/src/infrastructure/kanban/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/kanban/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/infrastructure/kanban/__pycache__/sqlite_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/kanban/__pycache__/sqlite_repository.cpython-313.pyc +0 -0
- package/src/infrastructure/kanban/sqlite_repository.py +0 -960
- package/src/infrastructure/llm/__pycache__/domain_map_llm.cpython-312.pyc +0 -0
- package/src/infrastructure/llm/domain_map_llm.py +0 -649
- package/src/infrastructure/lsp/__pycache__/language_server_manager.cpython-312.pyc +0 -0
- package/src/infrastructure/lsp/language_server_manager.py +0 -706
- package/src/infrastructure/mobile/__init__.py +0 -19
- package/src/infrastructure/mobile/adb_adapter.py +0 -687
- package/src/infrastructure/mobile/xcrun_adapter.py +0 -621
- package/src/infrastructure/orchestration/__init__.py +0 -15
- package/src/infrastructure/orchestration/config_loader.py +0 -416
- package/src/infrastructure/rag/REQUIREMENTS_cli_metadata_loader.md +0 -315
- package/src/infrastructure/rag/__init__.py +0 -9
- package/src/infrastructure/rag/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/document_loader_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/domain_map_loader.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/gitignore_aware_loader.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/hierarchical_domain_inference.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/oracle_document_loader.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/oracle_governance_loader.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/vector_store_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/vector_store_repository.cpython-313.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/vector_store_repository_observable.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/workspace_utils.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/cli_metadata_loader.py +0 -456
- package/src/infrastructure/rag/document_loader_repository.py +0 -1495
- package/src/infrastructure/rag/domain_map_loader.py +0 -117
- package/src/infrastructure/rag/domain_map_repository.py +0 -207
- package/src/infrastructure/rag/extractors/__init__.py +0 -13
- package/src/infrastructure/rag/extractors/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/__pycache__/category_extractor.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/__pycache__/command_extractor.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/__pycache__/intent_classifier.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/__pycache__/skill_extractor.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/category_extractor.py +0 -89
- package/src/infrastructure/rag/extractors/command_extractor.py +0 -138
- package/src/infrastructure/rag/extractors/intent_classifier.py +0 -181
- package/src/infrastructure/rag/extractors/skill_extractor.py +0 -115
- package/src/infrastructure/rag/gitignore_aware_loader.py +0 -709
- package/src/infrastructure/rag/hierarchical_domain_inference.py +0 -385
- package/src/infrastructure/rag/llm_content_optimizer.py +0 -93
- package/src/infrastructure/rag/oracle_document_loader.py +0 -228
- package/src/infrastructure/rag/oracle_governance_loader.py +0 -285
- package/src/infrastructure/rag/project_structure_detector.py +0 -662
- package/src/infrastructure/rag/strategic_document_loader.py +0 -259
- package/src/infrastructure/rag/subprocess_rag_client.py +0 -348
- package/src/infrastructure/rag/template_repository.py +0 -192
- package/src/infrastructure/rag/type_filter_aliases.py +0 -234
- package/src/infrastructure/rag/vector_store_repository.py +0 -490
- package/src/infrastructure/rag/vector_store_repository_observable.py +0 -417
- package/src/infrastructure/rag/workspace_utils.py +0 -155
- package/src/infrastructure/roadmap/__init__.py +0 -5
- package/src/infrastructure/roadmap/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/roadmap/__pycache__/sqlite_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/roadmap/schema.sql +0 -123
- package/src/infrastructure/roadmap/sqlite_repository.py +0 -497
- package/src/infrastructure/security/README.md +0 -164
- package/src/infrastructure/security/__init__.py +0 -5
- package/src/infrastructure/security/dacl_kanban_repository.py +0 -456
- package/src/infrastructure/security/database_access_control.py +0 -423
- package/src/infrastructure/security/privilege_system.py +0 -215
- package/src/infrastructure/security/workflow_enforcer.py +0 -326
- package/src/infrastructure/tui/__init__.py +0 -9
- package/src/infrastructure/tui/jarvis_integrated_tui.py +0 -582
- package/src/infrastructure/user_stories/__init__.py +0 -31
- package/src/infrastructure/user_stories/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/user_stories/__pycache__/converters.cpython-312.pyc +0 -0
- package/src/infrastructure/user_stories/__pycache__/yaml_user_story_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/user_stories/converters.py +0 -316
- package/src/infrastructure/user_stories/yaml_user_story_repository.py +0 -551
- package/src/infrastructure/user_story_chat/__init__.py +0 -9
- package/src/infrastructure/user_story_chat/langchain_adapter.py +0 -22
- package/src/infrastructure/user_story_chat/langchain_chat_repository.py +0 -190
- package/src/infrastructure/workspace/__init__.py +0 -15
- package/src/infrastructure/workspace/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/__pycache__/converters.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/__pycache__/event_bus.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/__pycache__/sqlite_workspace_dependency_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/__pycache__/sqlite_workspace_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/change_detection_handler.py +0 -119
- package/src/infrastructure/workspace/converters.py +0 -71
- package/src/infrastructure/workspace/error_detection_handler.py +0 -284
- package/src/infrastructure/workspace/event_bus.py +0 -217
- package/src/infrastructure/workspace/jarvis_rag_client.py +0 -288
- package/src/infrastructure/workspace/sqlite_workspace_dependency_repository.py +0 -419
- package/src/infrastructure/workspace/sqlite_workspace_repository.py +0 -358
- package/src/infrastructure/workspace_cli.py +0 -457
- package/src/jarvis_opencode.egg-info/PKG-INFO +0 -7
- package/src/jarvis_opencode.egg-info/SOURCES.txt +0 -279
- package/src/jarvis_opencode.egg-info/dependency_links.txt +0 -1
- package/src/jarvis_opencode.egg-info/top_level.txt +0 -7
- package/src/shared/__init__.py +0 -1
- package/src/shared/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/shared/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/shared/__pycache__/jarvis_home.cpython-312.pyc +0 -0
- package/src/shared/__pycache__/jarvis_home.cpython-313.pyc +0 -0
- package/src/shared/__pycache__/paths.cpython-312.pyc +0 -0
- package/src/shared/__pycache__/paths.cpython-313.pyc +0 -0
- package/src/shared/__pycache__/workspace_paths.cpython-312.pyc +0 -0
- package/src/shared/cli/__init__.py +0 -23
- package/src/shared/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/shared/cli/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/shared/cli/__pycache__/output_mode.cpython-312.pyc +0 -0
- package/src/shared/cli/__pycache__/output_mode.cpython-313.pyc +0 -0
- package/src/shared/cli/output_mode.py +0 -139
- package/src/shared/jarvis_home.py +0 -138
- package/src/shared/logging_config.py +0 -76
- package/src/shared/ollama_config.py +0 -75
- package/src/shared/paths.py +0 -332
- package/src/shared/ui/__pycache__/kanban_ui.cpython-312.pyc +0 -0
- package/src/shared/ui/__pycache__/kanban_ui.cpython-313.pyc +0 -0
- package/src/shared/ui/__pycache__/terminal_ui.cpython-312.pyc +0 -0
- package/src/shared/ui/domain_ui.py +0 -410
- package/src/shared/ui/kanban_ui.py +0 -660
- package/src/shared/ui/rag_ui.py +0 -571
- package/src/shared/ui/terminal_ui.py +0 -219
- package/src/shared/workspace_ollama_config.py +0 -270
- package/src/shared/workspace_paths.py +0 -379
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"note-use-cases.js","sourceRoot":"","sources":["../../../src/application/context-memory/note-use-cases.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAGH,OAAO,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,sCAAsC,CAAC;AAM7E,OAAO,EACL,QAAQ,EACR,SAAS,GACV,MAAM,8CAA8C,CAAC;AAStD,gDAAgD;AAChD,SAAS,cAAc,CAAC,IAAU;IAChC,OAAO;QACL,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,KAAK;QACjB,OAAO,EAAE,IAAI,CAAC,OAAO;QACrB,IAAI,EAAE,IAAI,CAAC,IAAI;QACf,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,KAAK;QAC/B,SAAS,EAAE,IAAI,CAAC,SAAS,EAAE,KAAK;QAChC,IAAI,EAAE,IAAI,CAAC,IAAI;QACf,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE;KAClC,CAAC;AACJ,CAAC;AAED,yDAAyD;AACzD,SAAS,aAAa,CAAC,IAAY;IACjC,MAAM,KAAK,GAA6B;QACtC,IAAI,EAAE,QAAQ,CAAC,IAAI;QACnB,QAAQ,EAAE,QAAQ,CAAC,QAAQ;QAC3B,SAAS,EAAE,QAAQ,CAAC,SAAS;QAC7B,OAAO,EAAE,QAAQ,CAAC,OAAO;KAC1B,CAAC;IACF,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC;AAC7B,CAAC;AAED,MAAM,OAAO,YAAY;IACN,WAAW,CAAoB;IAC/B,aAAa,CAAuB;IAErD,YACE,WAA8B,EAC9B,aAAmC;QAEnC,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;IACrC,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,OAAuB;QACnC,MAAM,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;QAExD,IAAI,QAA8B,CAAC;QACnC,IAAI,OAAO,CAAC,IAAI,KAAK,SAAS,EAAE,CAAC;YAC/B,MAAM,MAAM,GAAG,aAAa,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YAC3C,IAAI,MAAM,KAAK,IAAI,EAAE,CAAC;gBACpB,OAAO,IAAI,CACT,sBAAsB,OAAO,CAAC,IAAI,6CAA6C,CAChF,CAAC;YACJ,CAAC;YACD,QAAQ,GAAG,MAAM,CAAC;QACpB,CAAC;QAED,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC;YAC5C,OAAO,EAAE,OAAO,CAAC,OAAO;YACxB,SAAS;YACT,GAAG,CAAC,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YACrD,GAAG,CAAC,OAAO,CAAC,SAAS,KAAK,SAAS;gBACjC,CAAC,CAAC,EAAE,SAAS,EAAE,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE;gBAClD,CAAC,CAAC,EAAE,CAAC;YACP,GAAG,CAAC,OAAO,CAAC,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;SAC9D,CAAC,CAAC;QAEH,IAAI,CAAC,MAAM,CAAC,OAAO;YAAE,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC/C,OAAO,EAAE,CAAC,cAAc,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;IACzC,CAAC;IAED,KAAK,CAAC,cAAc,CAClB,OAA8B;QAE9B,MAAM,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;QACxD,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,EAAE,CAAC;QAClC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,cAAc,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;QAEvE,IAAI,CAAC,MAAM,CAAC,OAAO;YAAE,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC/C,OAAO,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,CAAC;IAC7C,CAAC;IAED,KAAK,CAAC,aAAa,CACjB,OAA6B;QAE7B,MAAM,SAAS,GAAG,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;QACxD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;QAEzE,IAAI,CAAC,MAAM,CAAC,OAAO;YAAE,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC/C,OAAO,EAAE,CACP,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;YACtB,UAAU,EAAE,CAAC,CAAC,UAAU;YACxB,QAAQ,EAAE,CAAC,CAAC,QAAQ;YACpB,OAAO,EAAE,CAAC,CAAC,OAAO;YAClB,SAAS,EAAE,CAAC,CAAC,SAAS;SACvB,CAAC,CAAC,CACJ,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Session Use Cases
|
|
3
|
+
*
|
|
4
|
+
* Application layer orchestration for session lifecycle.
|
|
5
|
+
* Converts DTOs <-> domain types, delegates to domain services.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP - session operations only
|
|
8
|
+
* SOLID: DIP - depends on domain service abstractions
|
|
9
|
+
* DDD: Application Service pattern
|
|
10
|
+
*/
|
|
11
|
+
import type { Result } from "../../domain/shared/value-objects.js";
|
|
12
|
+
import type { SessionDomainService } from "../../domain/context-memory/services.js";
|
|
13
|
+
import type { StartSessionRequest, FinishSessionRequest, CancelSessionRequest, SessionResponse, ListSessionsRequest, GetActiveSessionRequest } from "./dtos.js";
|
|
14
|
+
export declare class SessionUseCases {
|
|
15
|
+
private readonly sessionService;
|
|
16
|
+
constructor(sessionService: SessionDomainService);
|
|
17
|
+
startSession(request: StartSessionRequest): Promise<Result<SessionResponse>>;
|
|
18
|
+
finishSession(request: FinishSessionRequest): Promise<Result<SessionResponse>>;
|
|
19
|
+
cancelSession(request: CancelSessionRequest): Promise<Result<SessionResponse>>;
|
|
20
|
+
listSessions(request: ListSessionsRequest): Promise<Result<readonly SessionResponse[]>>;
|
|
21
|
+
getActiveSession(request: GetActiveSessionRequest): Promise<Result<SessionResponse | null>>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=session-use-cases.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"session-use-cases.d.ts","sourceRoot":"","sources":["../../../src/application/context-memory/session-use-cases.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAC;AAGpF,OAAO,KAAK,EACV,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,eAAe,EACf,mBAAmB,EACnB,uBAAuB,EACxB,MAAM,WAAW,CAAC;AAgBnB,qBAAa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAuB;gBAE1C,cAAc,EAAE,oBAAoB;IAI1C,YAAY,CAChB,OAAO,EAAE,mBAAmB,GAC3B,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;IAc7B,aAAa,CACjB,OAAO,EAAE,oBAAoB,GAC5B,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;IAW7B,aAAa,CACjB,OAAO,EAAE,oBAAoB,GAC5B,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;IAQ7B,YAAY,CAChB,OAAO,EAAE,mBAAmB,GAC3B,OAAO,CAAC,MAAM,CAAC,SAAS,eAAe,EAAE,CAAC,CAAC;IAQxC,gBAAgB,CACpB,OAAO,EAAE,uBAAuB,GAC/B,OAAO,CAAC,MAAM,CAAC,eAAe,GAAG,IAAI,CAAC,CAAC;CAO3C"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Session Use Cases
|
|
3
|
+
*
|
|
4
|
+
* Application layer orchestration for session lifecycle.
|
|
5
|
+
* Converts DTOs <-> domain types, delegates to domain services.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP - session operations only
|
|
8
|
+
* SOLID: DIP - depends on domain service abstractions
|
|
9
|
+
* DDD: Application Service pattern
|
|
10
|
+
*/
|
|
11
|
+
import { WorkspaceId, ok, fail } from "../../domain/shared/value-objects.js";
|
|
12
|
+
import { SessionId } from "../../domain/context-memory/value-objects.js";
|
|
13
|
+
/** Maps a Session entity to a SessionResponse DTO. */
|
|
14
|
+
function toResponse(session) {
|
|
15
|
+
return {
|
|
16
|
+
id: session.id.value,
|
|
17
|
+
workspace: session.workspace.value,
|
|
18
|
+
purpose: session.purpose,
|
|
19
|
+
state: session.state,
|
|
20
|
+
agentName: session.agentName,
|
|
21
|
+
startedAt: session.startedAt.toISO(),
|
|
22
|
+
finishedAt: session.finishedAt?.toISO(),
|
|
23
|
+
summary: session.summary,
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
export class SessionUseCases {
|
|
27
|
+
sessionService;
|
|
28
|
+
constructor(sessionService) {
|
|
29
|
+
this.sessionService = sessionService;
|
|
30
|
+
}
|
|
31
|
+
async startSession(request) {
|
|
32
|
+
const workspace = WorkspaceId.create(request.workspace);
|
|
33
|
+
const result = await this.sessionService.startSession({
|
|
34
|
+
purpose: request.purpose,
|
|
35
|
+
workspace,
|
|
36
|
+
...(request.agentName !== undefined
|
|
37
|
+
? { agentName: request.agentName }
|
|
38
|
+
: {}),
|
|
39
|
+
});
|
|
40
|
+
if (!result.success)
|
|
41
|
+
return fail(result.error);
|
|
42
|
+
return ok(toResponse(result.data));
|
|
43
|
+
}
|
|
44
|
+
async finishSession(request) {
|
|
45
|
+
const sessionId = SessionId.from(request.sessionId);
|
|
46
|
+
const result = await this.sessionService.finishSession(sessionId, request.summary);
|
|
47
|
+
if (!result.success)
|
|
48
|
+
return fail(result.error);
|
|
49
|
+
return ok(toResponse(result.data));
|
|
50
|
+
}
|
|
51
|
+
async cancelSession(request) {
|
|
52
|
+
const sessionId = SessionId.from(request.sessionId);
|
|
53
|
+
const result = await this.sessionService.cancelSession(sessionId);
|
|
54
|
+
if (!result.success)
|
|
55
|
+
return fail(result.error);
|
|
56
|
+
return ok(toResponse(result.data));
|
|
57
|
+
}
|
|
58
|
+
async listSessions(request) {
|
|
59
|
+
const workspace = WorkspaceId.create(request.workspace);
|
|
60
|
+
const result = await this.sessionService.listSessions(workspace);
|
|
61
|
+
if (!result.success)
|
|
62
|
+
return fail(result.error);
|
|
63
|
+
return ok(result.data.map(toResponse));
|
|
64
|
+
}
|
|
65
|
+
async getActiveSession(request) {
|
|
66
|
+
const workspace = WorkspaceId.create(request.workspace);
|
|
67
|
+
const result = await this.sessionService.getActiveSession(workspace);
|
|
68
|
+
if (!result.success)
|
|
69
|
+
return fail(result.error);
|
|
70
|
+
return ok(result.data ? toResponse(result.data) : null);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
//# sourceMappingURL=session-use-cases.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"session-use-cases.js","sourceRoot":"","sources":["../../../src/application/context-memory/session-use-cases.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Todo Use Cases
|
|
3
|
+
*
|
|
4
|
+
* Application layer orchestration for todo lifecycle.
|
|
5
|
+
* Converts DTOs <-> domain types, delegates to domain services.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP - todo operations only
|
|
8
|
+
* SOLID: DIP - depends on domain service abstractions
|
|
9
|
+
* DDD: Application Service pattern
|
|
10
|
+
*/
|
|
11
|
+
import type { Result } from "../../domain/shared/value-objects.js";
|
|
12
|
+
import type { TodoDomainService } from "../../domain/context-memory/services.js";
|
|
13
|
+
import type { TodoRepository } from "../../domain/context-memory/repositories.js";
|
|
14
|
+
import type { CreateTodoRequest, CompleteTodoRequest, StartTodoRequest, CancelTodoRequest, ListTodosRequest, TodoResponse } from "./dtos.js";
|
|
15
|
+
export declare class TodoUseCases {
|
|
16
|
+
private readonly todoService;
|
|
17
|
+
private readonly todoRepo;
|
|
18
|
+
constructor(todoService: TodoDomainService, todoRepo: TodoRepository);
|
|
19
|
+
createTodo(request: CreateTodoRequest): Promise<Result<TodoResponse>>;
|
|
20
|
+
completeTodo(request: CompleteTodoRequest): Promise<Result<TodoResponse>>;
|
|
21
|
+
startTodo(request: StartTodoRequest): Promise<Result<TodoResponse>>;
|
|
22
|
+
cancelTodo(request: CancelTodoRequest): Promise<Result<TodoResponse>>;
|
|
23
|
+
listTodos(request: ListTodosRequest): Promise<Result<readonly TodoResponse[]>>;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=todo-use-cases.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"todo-use-cases.d.ts","sourceRoot":"","sources":["../../../src/application/context-memory/todo-use-cases.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yCAAyC,CAAC;AACjF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6CAA6C,CAAC;AAOlF,OAAO,KAAK,EACV,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EAChB,YAAY,EACb,MAAM,WAAW,CAAC;AA6BnB,qBAAa,YAAY;IACvB,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAoB;IAChD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAiB;gBAE9B,WAAW,EAAE,iBAAiB,EAAE,QAAQ,EAAE,cAAc;IAK9D,UAAU,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;IAgBrE,YAAY,CAChB,OAAO,EAAE,mBAAmB,GAC3B,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;IAS1B,SAAS,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;IAanE,UAAU,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;IAarE,SAAS,CACb,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,MAAM,CAAC,SAAS,YAAY,EAAE,CAAC,CAAC;CAoB5C"}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Todo Use Cases
|
|
3
|
+
*
|
|
4
|
+
* Application layer orchestration for todo lifecycle.
|
|
5
|
+
* Converts DTOs <-> domain types, delegates to domain services.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP - todo operations only
|
|
8
|
+
* SOLID: DIP - depends on domain service abstractions
|
|
9
|
+
* DDD: Application Service pattern
|
|
10
|
+
*/
|
|
11
|
+
import { WorkspaceId, ok, fail } from "../../domain/shared/value-objects.js";
|
|
12
|
+
import { TodoId, TodoStatus, SessionId, } from "../../domain/context-memory/value-objects.js";
|
|
13
|
+
/** Maps a Todo entity to a TodoResponse DTO. */
|
|
14
|
+
function toResponse(todo) {
|
|
15
|
+
return {
|
|
16
|
+
id: todo.id.value,
|
|
17
|
+
content: todo.content,
|
|
18
|
+
status: todo.status,
|
|
19
|
+
priority: todo.priority,
|
|
20
|
+
workspace: todo.workspace.value,
|
|
21
|
+
sessionId: todo.sessionId?.value,
|
|
22
|
+
tags: todo.tags,
|
|
23
|
+
createdAt: todo.createdAt.toISO(),
|
|
24
|
+
updatedAt: todo.updatedAt?.toISO(),
|
|
25
|
+
completedAt: todo.completedAt?.toISO(),
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
/** Validate and convert status string to TodoStatus enum. */
|
|
29
|
+
function parseStatus(status) {
|
|
30
|
+
const valid = {
|
|
31
|
+
pending: TodoStatus.Pending,
|
|
32
|
+
in_progress: TodoStatus.InProgress,
|
|
33
|
+
completed: TodoStatus.Completed,
|
|
34
|
+
cancelled: TodoStatus.Cancelled,
|
|
35
|
+
};
|
|
36
|
+
return valid[status] ?? null;
|
|
37
|
+
}
|
|
38
|
+
export class TodoUseCases {
|
|
39
|
+
todoService;
|
|
40
|
+
todoRepo;
|
|
41
|
+
constructor(todoService, todoRepo) {
|
|
42
|
+
this.todoService = todoService;
|
|
43
|
+
this.todoRepo = todoRepo;
|
|
44
|
+
}
|
|
45
|
+
async createTodo(request) {
|
|
46
|
+
const workspace = WorkspaceId.create(request.workspace);
|
|
47
|
+
const result = await this.todoService.createTodo({
|
|
48
|
+
content: request.content,
|
|
49
|
+
workspace,
|
|
50
|
+
...(request.priority !== undefined ? { priority: request.priority } : {}),
|
|
51
|
+
...(request.sessionId !== undefined
|
|
52
|
+
? { sessionId: SessionId.from(request.sessionId) }
|
|
53
|
+
: {}),
|
|
54
|
+
...(request.tags !== undefined ? { tags: request.tags } : {}),
|
|
55
|
+
});
|
|
56
|
+
if (!result.success)
|
|
57
|
+
return fail(result.error);
|
|
58
|
+
return ok(toResponse(result.data));
|
|
59
|
+
}
|
|
60
|
+
async completeTodo(request) {
|
|
61
|
+
const result = await this.todoService.completeTodo(TodoId.from(request.todoId));
|
|
62
|
+
if (!result.success)
|
|
63
|
+
return fail(result.error);
|
|
64
|
+
return ok(toResponse(result.data));
|
|
65
|
+
}
|
|
66
|
+
async startTodo(request) {
|
|
67
|
+
try {
|
|
68
|
+
const todo = await this.todoRepo.findById(TodoId.from(request.todoId));
|
|
69
|
+
if (todo === null)
|
|
70
|
+
return fail(`Todo not found: ${request.todoId}`);
|
|
71
|
+
todo.start();
|
|
72
|
+
await this.todoRepo.save(todo);
|
|
73
|
+
return ok(toResponse(todo));
|
|
74
|
+
}
|
|
75
|
+
catch (error) {
|
|
76
|
+
return fail(`Failed to start todo: ${String(error)}`);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
async cancelTodo(request) {
|
|
80
|
+
try {
|
|
81
|
+
const todo = await this.todoRepo.findById(TodoId.from(request.todoId));
|
|
82
|
+
if (todo === null)
|
|
83
|
+
return fail(`Todo not found: ${request.todoId}`);
|
|
84
|
+
todo.cancel();
|
|
85
|
+
await this.todoRepo.save(todo);
|
|
86
|
+
return ok(toResponse(todo));
|
|
87
|
+
}
|
|
88
|
+
catch (error) {
|
|
89
|
+
return fail(`Failed to cancel todo: ${String(error)}`);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
async listTodos(request) {
|
|
93
|
+
const workspace = WorkspaceId.create(request.workspace);
|
|
94
|
+
if (request.status !== undefined) {
|
|
95
|
+
const status = parseStatus(request.status);
|
|
96
|
+
if (status === null) {
|
|
97
|
+
return fail(`Invalid status: ${request.status}. Valid: pending, in_progress, completed, cancelled`);
|
|
98
|
+
}
|
|
99
|
+
const result = await this.todoService.listTodos(workspace, status);
|
|
100
|
+
if (!result.success)
|
|
101
|
+
return fail(result.error);
|
|
102
|
+
return ok(result.data.map(toResponse));
|
|
103
|
+
}
|
|
104
|
+
const result = await this.todoService.listTodos(workspace);
|
|
105
|
+
if (!result.success)
|
|
106
|
+
return fail(result.error);
|
|
107
|
+
return ok(result.data.map(toResponse));
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
//# sourceMappingURL=todo-use-cases.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"todo-use-cases.js","sourceRoot":"","sources":["../../../src/application/context-memory/todo-use-cases.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Domain Map Application — Data Transfer Objects
|
|
3
|
+
*
|
|
4
|
+
* Plain objects for crossing layer boundaries.
|
|
5
|
+
* Tools -> Use Cases (request DTOs), Use Cases -> Tools (response DTOs).
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — DTOs carry data, no logic
|
|
8
|
+
* DDD: Application layer boundary objects
|
|
9
|
+
*/
|
|
10
|
+
export interface DomainMapAnalyzeRequest {
|
|
11
|
+
/** Directory to analyze. */
|
|
12
|
+
readonly directory: string;
|
|
13
|
+
/** Override max file lines threshold (default: 500). */
|
|
14
|
+
readonly maxFileLines?: number;
|
|
15
|
+
/** Override max files to analyze (default: 200). */
|
|
16
|
+
readonly maxFiles?: number;
|
|
17
|
+
/** Force a specific analysis mode instead of auto-detection. */
|
|
18
|
+
readonly forceMode?: "greenfield" | "legacy";
|
|
19
|
+
/** LLM provider ID for legacy analysis (e.g. "anthropic", "openai"). */
|
|
20
|
+
readonly providerID?: string;
|
|
21
|
+
/** LLM model ID for legacy analysis (e.g. "claude-haiku-4-20250414"). */
|
|
22
|
+
readonly modelID?: string;
|
|
23
|
+
}
|
|
24
|
+
export interface DomainMapAnalyzeResponse {
|
|
25
|
+
readonly projectName: string;
|
|
26
|
+
readonly mode: "greenfield" | "legacy";
|
|
27
|
+
readonly primaryLanguage: string;
|
|
28
|
+
readonly filesAnalyzed: number;
|
|
29
|
+
readonly boundedContexts: readonly BoundedContextDto[];
|
|
30
|
+
readonly violations: readonly SrpViolationDto[];
|
|
31
|
+
readonly recommendedStructure: string;
|
|
32
|
+
readonly markdownReport: string;
|
|
33
|
+
readonly generatedAt: string;
|
|
34
|
+
}
|
|
35
|
+
export interface DomainMapViewRequest {
|
|
36
|
+
/** Directory whose domain map to retrieve. */
|
|
37
|
+
readonly directory: string;
|
|
38
|
+
}
|
|
39
|
+
export interface DomainMapViewResponse {
|
|
40
|
+
readonly available: boolean;
|
|
41
|
+
readonly markdownReport: string;
|
|
42
|
+
readonly generatedAt: string;
|
|
43
|
+
}
|
|
44
|
+
export interface BoundedContextDto {
|
|
45
|
+
readonly name: string;
|
|
46
|
+
readonly responsibility: string;
|
|
47
|
+
readonly fileCount: number;
|
|
48
|
+
readonly entities: readonly string[];
|
|
49
|
+
readonly aggregates: readonly string[];
|
|
50
|
+
readonly dependencies: readonly string[];
|
|
51
|
+
}
|
|
52
|
+
export interface SrpViolationDto {
|
|
53
|
+
readonly file: string;
|
|
54
|
+
readonly lines: number;
|
|
55
|
+
readonly issue: string;
|
|
56
|
+
readonly suggestedSplit: readonly string[];
|
|
57
|
+
}
|
|
58
|
+
//# sourceMappingURL=dtos.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dtos.d.ts","sourceRoot":"","sources":["../../../src/application/domain-map/dtos.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,MAAM,WAAW,uBAAuB;IACtC,4BAA4B;IAC5B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,wDAAwD;IACxD,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAC;IAC/B,oDAAoD;IACpD,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAC3B,gEAAgE;IAChE,QAAQ,CAAC,SAAS,CAAC,EAAE,YAAY,GAAG,QAAQ,CAAC;IAC7C,wEAAwE;IACxE,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B,yEAAyE;IACzE,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,IAAI,EAAE,YAAY,GAAG,QAAQ,CAAC;IACvC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;IACjC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,eAAe,EAAE,SAAS,iBAAiB,EAAE,CAAC;IACvD,QAAQ,CAAC,UAAU,EAAE,SAAS,eAAe,EAAE,CAAC;IAChD,QAAQ,CAAC,oBAAoB,EAAE,MAAM,CAAC;IACtC,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAED,MAAM,WAAW,oBAAoB;IACnC,8CAA8C;IAC9C,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;IACrC,QAAQ,CAAC,UAAU,EAAE,SAAS,MAAM,EAAE,CAAC;IACvC,QAAQ,CAAC,YAAY,EAAE,SAAS,MAAM,EAAE,CAAC;CAC1C;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,cAAc,EAAE,SAAS,MAAM,EAAE,CAAC;CAC5C"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Domain Map Application — Data Transfer Objects
|
|
3
|
+
*
|
|
4
|
+
* Plain objects for crossing layer boundaries.
|
|
5
|
+
* Tools -> Use Cases (request DTOs), Use Cases -> Tools (response DTOs).
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — DTOs carry data, no logic
|
|
8
|
+
* DDD: Application layer boundary objects
|
|
9
|
+
*/
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=dtos.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dtos.js","sourceRoot":"","sources":["../../../src/application/domain-map/dtos.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { type Result } from "../../domain/shared/value-objects.js";
|
|
2
|
+
import type { DomainMapDeps } from "../../domain/domain-map/ports.js";
|
|
3
|
+
import type { DomainMapAnalyzeRequest, DomainMapAnalyzeResponse, DomainMapViewRequest, DomainMapViewResponse } from "./dtos.js";
|
|
4
|
+
/**
|
|
5
|
+
* Application service for domain map analysis.
|
|
6
|
+
* Coordinates domain services with infrastructure adapters.
|
|
7
|
+
*/
|
|
8
|
+
export declare class DomainMapUseCases {
|
|
9
|
+
private readonly lsp;
|
|
10
|
+
private readonly llm;
|
|
11
|
+
private readonly scanner;
|
|
12
|
+
/** Cache of last generated map per directory. */
|
|
13
|
+
private readonly cache;
|
|
14
|
+
constructor(deps: DomainMapDeps);
|
|
15
|
+
/**
|
|
16
|
+
* Analyze a project directory and produce a domain map.
|
|
17
|
+
* Full pipeline: scan → detect mode → analyze → violations → render.
|
|
18
|
+
*/
|
|
19
|
+
analyze(request: DomainMapAnalyzeRequest): Promise<Result<DomainMapAnalyzeResponse>>;
|
|
20
|
+
/**
|
|
21
|
+
* Retrieve the last generated domain map for a directory.
|
|
22
|
+
*/
|
|
23
|
+
view(request: DomainMapViewRequest): Promise<Result<DomainMapViewResponse>>;
|
|
24
|
+
/**
|
|
25
|
+
* Path B: Legacy analysis using LSP + LLM.
|
|
26
|
+
* Spawns LSP server, extracts structure, then uses LLM for semantic analysis.
|
|
27
|
+
*/
|
|
28
|
+
private analyzeLegacy;
|
|
29
|
+
/**
|
|
30
|
+
* Legacy analysis with LSP structural extraction + LLM semantic analysis.
|
|
31
|
+
*/
|
|
32
|
+
private analyzeLegacyWithLsp;
|
|
33
|
+
/**
|
|
34
|
+
* Legacy analysis without LSP — LLM-only with code samples.
|
|
35
|
+
* Used when no LSP server is available for the primary language.
|
|
36
|
+
*/
|
|
37
|
+
private analyzeLegacyWithoutLsp;
|
|
38
|
+
/**
|
|
39
|
+
* Collect representative code samples from the scanned files.
|
|
40
|
+
* Picks largest files first (most likely to have multiple concerns).
|
|
41
|
+
*/
|
|
42
|
+
private collectCodeSamples;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=use-cases.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-cases.d.ts","sourceRoot":"","sources":["../../../src/application/domain-map/use-cases.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAI7E,OAAO,KAAK,EAAE,aAAa,EAAsD,MAAM,kCAAkC,CAAC;AAE1H,OAAO,KAAK,EACV,uBAAuB,EACvB,wBAAwB,EACxB,oBAAoB,EACpB,qBAAqB,EAGtB,MAAM,WAAW,CAAC;AAKnB;;;GAGG;AACH,qBAAa,iBAAiB;IAC1B,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAgB;IACpC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAkB;IACtC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAqB;IAC7C,iDAAiD;IACjD,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAwC;gBAClD,IAAI,EAAE,aAAa;IAK/B;;;OAGG;IACG,OAAO,CAAC,OAAO,EAAE,uBAAuB,GAAG,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC;IA2D1F;;OAEG;IACG,IAAI,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;IAejF;;;OAGG;YACW,aAAa;IAe3B;;OAEG;YACW,oBAAoB;IAqClC;;;OAGG;YACW,uBAAuB;IAarC;;;OAGG;YACW,kBAAkB;CAiBnC"}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import { ok, fail } from "../../domain/shared/value-objects.js";
|
|
2
|
+
import { DEFAULT_ANALYSIS_CONFIG } from "../../domain/domain-map/value-objects.js";
|
|
3
|
+
import { buildGreenfieldMap, buildStructuralGraph, detectAnalysisMode, detectSrpViolations, generateMapDocument, renderDocumentAsMarkdown, } from "../../domain/domain-map/services.js";
|
|
4
|
+
import { basename } from "node:path";
|
|
5
|
+
// ── Use Cases ─────────────────────────────────────────────────────────
|
|
6
|
+
/**
|
|
7
|
+
* Application service for domain map analysis.
|
|
8
|
+
* Coordinates domain services with infrastructure adapters.
|
|
9
|
+
*/
|
|
10
|
+
export class DomainMapUseCases {
|
|
11
|
+
lsp;
|
|
12
|
+
llm;
|
|
13
|
+
scanner;
|
|
14
|
+
/** Cache of last generated map per directory. */
|
|
15
|
+
cache = new Map();
|
|
16
|
+
constructor(deps) {
|
|
17
|
+
this.lsp = deps.lspClient;
|
|
18
|
+
this.llm = deps.llmAnalyzer;
|
|
19
|
+
this.scanner = deps.projectScanner;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Analyze a project directory and produce a domain map.
|
|
23
|
+
* Full pipeline: scan → detect mode → analyze → violations → render.
|
|
24
|
+
*/
|
|
25
|
+
async analyze(request) {
|
|
26
|
+
try {
|
|
27
|
+
// Build config from request overrides
|
|
28
|
+
const config = buildConfig(request);
|
|
29
|
+
// Step 1: Scan project
|
|
30
|
+
const scan = await this.scanner.scanProject(request.directory, config);
|
|
31
|
+
if (scan.files.length === 0) {
|
|
32
|
+
return fail("No source files found in directory");
|
|
33
|
+
}
|
|
34
|
+
// Step 2: Detect mode (or use forced mode)
|
|
35
|
+
const mode = request.forceMode ?? detectAnalysisMode(scan, config);
|
|
36
|
+
const projectName = basename(request.directory);
|
|
37
|
+
// Step 3: Analyze based on mode
|
|
38
|
+
let contexts;
|
|
39
|
+
let graph;
|
|
40
|
+
let recommendedStructure;
|
|
41
|
+
if (mode === "greenfield") {
|
|
42
|
+
// Path A: Fast directory-based inference
|
|
43
|
+
contexts = buildGreenfieldMap(scan, config);
|
|
44
|
+
graph = buildStructuralGraph(new Map(), []);
|
|
45
|
+
recommendedStructure =
|
|
46
|
+
contexts.length > 0
|
|
47
|
+
? "Project already follows DDD structure. Maintain current bounded context separation."
|
|
48
|
+
: "No clear bounded contexts detected. Consider organizing into domain/, application/, infrastructure/ layers.";
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
// Path B: LSP + LLM analysis
|
|
52
|
+
const modelPref = request.providerID !== undefined && request.modelID !== undefined
|
|
53
|
+
? { providerID: request.providerID, modelID: request.modelID }
|
|
54
|
+
: undefined;
|
|
55
|
+
const legacyResult = await this.analyzeLegacy(request.directory, scan, config, modelPref);
|
|
56
|
+
contexts = legacyResult.contexts;
|
|
57
|
+
graph = legacyResult.graph;
|
|
58
|
+
recommendedStructure = legacyResult.recommendedStructure;
|
|
59
|
+
}
|
|
60
|
+
// Step 4: Detect SRP violations
|
|
61
|
+
const violations = detectSrpViolations(scan.files, config);
|
|
62
|
+
// Step 5: Generate document
|
|
63
|
+
const doc = generateMapDocument(projectName, mode, scan.primaryLanguage, scan, contexts, graph, violations, recommendedStructure);
|
|
64
|
+
// Cache the result
|
|
65
|
+
this.cache.set(request.directory, doc);
|
|
66
|
+
// Step 6: Render and return
|
|
67
|
+
const markdownReport = renderDocumentAsMarkdown(doc);
|
|
68
|
+
return ok({
|
|
69
|
+
projectName: doc.projectName,
|
|
70
|
+
mode: doc.mode,
|
|
71
|
+
primaryLanguage: doc.language,
|
|
72
|
+
filesAnalyzed: doc.filesAnalyzed,
|
|
73
|
+
boundedContexts: doc.boundedContexts.map(toBoundedContextDto),
|
|
74
|
+
violations: doc.violations.map(toSrpViolationDto),
|
|
75
|
+
recommendedStructure: doc.recommendedStructure,
|
|
76
|
+
markdownReport,
|
|
77
|
+
generatedAt: doc.generatedAt,
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
catch (error) {
|
|
81
|
+
return fail(`Analysis failed: ${String(error)}`);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Retrieve the last generated domain map for a directory.
|
|
86
|
+
*/
|
|
87
|
+
async view(request) {
|
|
88
|
+
const cached = this.cache.get(request.directory);
|
|
89
|
+
if (cached === undefined) {
|
|
90
|
+
return ok({
|
|
91
|
+
available: false,
|
|
92
|
+
markdownReport: "",
|
|
93
|
+
generatedAt: "",
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
return ok({
|
|
97
|
+
available: true,
|
|
98
|
+
markdownReport: renderDocumentAsMarkdown(cached),
|
|
99
|
+
generatedAt: cached.generatedAt,
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Path B: Legacy analysis using LSP + LLM.
|
|
104
|
+
* Spawns LSP server, extracts structure, then uses LLM for semantic analysis.
|
|
105
|
+
*/
|
|
106
|
+
async analyzeLegacy(directory, scan, config, modelPreference) {
|
|
107
|
+
const rootUri = `file://${directory}`;
|
|
108
|
+
// Check if LSP is available for this language
|
|
109
|
+
const lspAvailable = await this.lsp.isAvailable(scan.primaryLanguage);
|
|
110
|
+
if (lspAvailable) {
|
|
111
|
+
return this.analyzeLegacyWithLsp(rootUri, scan, config, modelPreference);
|
|
112
|
+
}
|
|
113
|
+
// Fallback: LLM-only analysis with code samples (no LSP)
|
|
114
|
+
return this.analyzeLegacyWithoutLsp(scan, modelPreference);
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Legacy analysis with LSP structural extraction + LLM semantic analysis.
|
|
118
|
+
*/
|
|
119
|
+
async analyzeLegacyWithLsp(rootUri, scan, config, modelPreference) {
|
|
120
|
+
try {
|
|
121
|
+
// Stage 1: LSP structural extraction
|
|
122
|
+
await this.lsp.initialize(rootUri, scan.primaryLanguage);
|
|
123
|
+
const fileSymbols = new Map();
|
|
124
|
+
const filesToAnalyze = scan.files.slice(0, config.maxFiles);
|
|
125
|
+
for (const file of filesToAnalyze) {
|
|
126
|
+
const fileUri = `file://${file.absolutePath}`;
|
|
127
|
+
try {
|
|
128
|
+
const symbols = await this.lsp.documentSymbols(fileUri);
|
|
129
|
+
if (symbols.length > 0) {
|
|
130
|
+
fileSymbols.set(file.relativePath, symbols);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
catch {
|
|
134
|
+
// Skip files that fail LSP analysis
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
const graph = buildStructuralGraph(fileSymbols, []);
|
|
138
|
+
// Stage 2: LLM semantic analysis
|
|
139
|
+
const codeSamples = await this.collectCodeSamples(scan);
|
|
140
|
+
const semantic = await this.llm.analyzeStructure(graph, codeSamples, modelPreference);
|
|
141
|
+
return {
|
|
142
|
+
contexts: semantic.boundedContexts,
|
|
143
|
+
graph,
|
|
144
|
+
recommendedStructure: semantic.recommendedStructure,
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
finally {
|
|
148
|
+
await this.lsp.shutdown();
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* Legacy analysis without LSP — LLM-only with code samples.
|
|
153
|
+
* Used when no LSP server is available for the primary language.
|
|
154
|
+
*/
|
|
155
|
+
async analyzeLegacyWithoutLsp(scan, modelPreference) {
|
|
156
|
+
const emptyGraph = buildStructuralGraph(new Map(), []);
|
|
157
|
+
const codeSamples = await this.collectCodeSamples(scan);
|
|
158
|
+
const semantic = await this.llm.analyzeStructure(emptyGraph, codeSamples, modelPreference);
|
|
159
|
+
return {
|
|
160
|
+
contexts: semantic.boundedContexts,
|
|
161
|
+
graph: emptyGraph,
|
|
162
|
+
recommendedStructure: semantic.recommendedStructure,
|
|
163
|
+
};
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* Collect representative code samples from the scanned files.
|
|
167
|
+
* Picks largest files first (most likely to have multiple concerns).
|
|
168
|
+
*/
|
|
169
|
+
async collectCodeSamples(scan) {
|
|
170
|
+
// Sort by line count descending — largest files are most interesting
|
|
171
|
+
const sorted = [...scan.files].sort((a, b) => b.lineCount - a.lineCount);
|
|
172
|
+
const sampleFiles = sorted.slice(0, 10); // Max 10 samples
|
|
173
|
+
const samples = [];
|
|
174
|
+
for (const file of sampleFiles) {
|
|
175
|
+
const content = await this.scanner.readFile(file.absolutePath);
|
|
176
|
+
if (content !== null) {
|
|
177
|
+
samples.push({
|
|
178
|
+
filePath: file.relativePath,
|
|
179
|
+
content,
|
|
180
|
+
lineCount: file.lineCount,
|
|
181
|
+
});
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
return samples;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
// ── Config Builder ────────────────────────────────────────────────────
|
|
188
|
+
/** Build AnalysisConfig from request overrides. */
|
|
189
|
+
function buildConfig(request) {
|
|
190
|
+
return {
|
|
191
|
+
maxFileLines: request.maxFileLines ?? DEFAULT_ANALYSIS_CONFIG.maxFileLines,
|
|
192
|
+
maxFiles: request.maxFiles ?? DEFAULT_ANALYSIS_CONFIG.maxFiles,
|
|
193
|
+
legacyThresholdLines: DEFAULT_ANALYSIS_CONFIG.legacyThresholdLines,
|
|
194
|
+
legacyRatio: DEFAULT_ANALYSIS_CONFIG.legacyRatio,
|
|
195
|
+
};
|
|
196
|
+
}
|
|
197
|
+
// ── DTO Mappers ───────────────────────────────────────────────────────
|
|
198
|
+
function toBoundedContextDto(ctx) {
|
|
199
|
+
return {
|
|
200
|
+
name: ctx.name,
|
|
201
|
+
responsibility: ctx.responsibility,
|
|
202
|
+
fileCount: ctx.files.length,
|
|
203
|
+
entities: ctx.entities,
|
|
204
|
+
aggregates: ctx.aggregates,
|
|
205
|
+
dependencies: ctx.dependencies,
|
|
206
|
+
};
|
|
207
|
+
}
|
|
208
|
+
function toSrpViolationDto(v) {
|
|
209
|
+
return {
|
|
210
|
+
file: v.file,
|
|
211
|
+
lines: v.lines,
|
|
212
|
+
issue: v.issue,
|
|
213
|
+
suggestedSplit: v.suggestedSplit,
|
|
214
|
+
};
|
|
215
|
+
}
|
|
216
|
+
//# sourceMappingURL=use-cases.js.map
|
|
217
|
+
//# sourceMappingURL=use-cases.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-cases.js","sourceRoot":"","sources":["../../../src/application/domain-map/use-cases.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,IAAI,EAAe,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,uBAAuB,EAAE,MAAM,0CAA0C,CAAC;AAEnF,OAAO,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,wBAAwB,GAAG,MAAM,qCAAqC,CAAC;AAExL,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAYrC,yEAAyE;AACzE;;;GAGG;AACH,MAAM,OAAO,iBAAiB;IACT,GAAG,CAAgB;IACnB,GAAG,CAAkB;IACrB,OAAO,CAAqB;IAC7C,iDAAiD;IAChC,KAAK,GAAG,IAAI,GAAG,EAA6B,CAAC;IAC9D,YAAY,IAAmB;QAC3B,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC;QAC1B,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC;QAC5B,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,cAAc,CAAC;IACvC,CAAC;IACD;;;OAGG;IACH,KAAK,CAAC,OAAO,CAAC,OAAgC;QAC1C,IAAI,CAAC;YACD,sCAAsC;YACtC,MAAM,MAAM,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;YACpC,uBAAuB;YACvB,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YACvE,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBAC1B,OAAO,IAAI,CAAC,oCAAoC,CAAC,CAAC;YACtD,CAAC;YACD,2CAA2C;YAC3C,MAAM,IAAI,GAAG,OAAO,CAAC,SAAS,IAAI,kBAAkB,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;YACnE,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;YAChD,gCAAgC;YAChC,IAAI,QAAQ,CAAC;YACb,IAAI,KAAK,CAAC;YACV,IAAI,oBAAoB,CAAC;YACzB,IAAI,IAAI,KAAK,YAAY,EAAE,CAAC;gBACxB,yCAAyC;gBACzC,QAAQ,GAAG,kBAAkB,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;gBAC5C,KAAK,GAAG,oBAAoB,CAAC,IAAI,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC;gBAC5C,oBAAoB;oBAChB,QAAQ,CAAC,MAAM,GAAG,CAAC;wBACf,CAAC,CAAC,qFAAqF;wBACvF,CAAC,CAAC,6GAA6G,CAAC;YAC5H,CAAC;iBACI,CAAC;gBACF,6BAA6B;gBAC7B,MAAM,SAAS,GAAG,OAAO,CAAC,UAAU,KAAK,SAAS,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS;oBAC/E,CAAC,CAAC,EAAE,UAAU,EAAE,OAAO,CAAC,UAAU,EAAE,OAAO,EAAE,OAAO,CAAC,OAAO,EAAE;oBAC9D,CAAC,CAAC,SAAS,CAAC;gBAChB,MAAM,YAAY,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC;gBAC1F,QAAQ,GAAG,YAAY,CAAC,QAAQ,CAAC;gBACjC,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC;gBAC3B,oBAAoB,GAAG,YAAY,CAAC,oBAAoB,CAAC;YAC7D,CAAC;YACD,gCAAgC;YAChC,MAAM,UAAU,GAAG,mBAAmB,CAAC,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;YAC3D,4BAA4B;YAC5B,MAAM,GAAG,GAAG,mBAAmB,CAAC,WAAW,EAAE,IAAI,EAAE,IAAI,CAAC,eAAe,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,UAAU,EAAE,oBAAoB,CAAC,CAAC;YAClI,mBAAmB;YACnB,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC;YACvC,4BAA4B;YAC5B,MAAM,cAAc,GAAG,wBAAwB,CAAC,GAAG,CAAC,CAAC;YACrD,OAAO,EAAE,CAAC;gBACN,WAAW,EAAE,GAAG,CAAC,WAAW;gBAC5B,IAAI,EAAE,GAAG,CAAC,IAAI;gBACd,eAAe,EAAE,GAAG,CAAC,QAAQ;gBAC7B,aAAa,EAAE,GAAG,CAAC,aAAa;gBAChC,eAAe,EAAE,GAAG,CAAC,eAAe,CAAC,GAAG,CAAC,mBAAmB,CAAC;gBAC7D,UAAU,EAAE,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,iBAAiB,CAAC;gBACjD,oBAAoB,EAAE,GAAG,CAAC,oBAAoB;gBAC9C,cAAc;gBACd,WAAW,EAAE,GAAG,CAAC,WAAW;aAC/B,CAAC,CAAC;QACP,CAAC;QACD,OAAO,KAAK,EAAE,CAAC;YACX,OAAO,IAAI,CAAC,oBAAoB,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QACrD,CAAC;IACL,CAAC;IACD;;OAEG;IACH,KAAK,CAAC,IAAI,CAAC,OAA6B;QACpC,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;QACjD,IAAI,MAAM,KAAK,SAAS,EAAE,CAAC;YACvB,OAAO,EAAE,CAAC;gBACN,SAAS,EAAE,KAAK;gBAChB,cAAc,EAAE,EAAE;gBAClB,WAAW,EAAE,EAAE;aAClB,CAAC,CAAC;QACP,CAAC;QACD,OAAO,EAAE,CAAC;YACN,SAAS,EAAE,IAAI;YACf,cAAc,EAAE,wBAAwB,CAAC,MAAM,CAAC;YAChD,WAAW,EAAE,MAAM,CAAC,WAAW;SAClC,CAAC,CAAC;IACP,CAAC;IACD;;;OAGG;IACK,KAAK,CAAC,aAAa,CACvB,SAAiB,EACjB,IAAuB,EACvB,MAAsB,EACtB,eAA4C;QAE5C,MAAM,OAAO,GAAG,UAAU,SAAS,EAAE,CAAC;QACtC,8CAA8C;QAC9C,MAAM,YAAY,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QACtE,IAAI,YAAY,EAAE,CAAC;YACf,OAAO,IAAI,CAAC,oBAAoB,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,eAAe,CAAC,CAAC;QAC7E,CAAC;QACD,yDAAyD;QACzD,OAAO,IAAI,CAAC,uBAAuB,CAAC,IAAI,EAAE,eAAe,CAAC,CAAC;IAC/D,CAAC;IACD;;OAEG;IACK,KAAK,CAAC,oBAAoB,CAC9B,OAAe,EACf,IAAuB,EACvB,MAAsB,EACtB,eAA4C;QAE5C,IAAI,CAAC;YACD,qCAAqC;YACrC,MAAM,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;YACzD,MAAM,WAAW,GAAG,IAAI,GAAG,EAAoF,CAAC;YAChH,MAAM,cAAc,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,QAAQ,CAAC,CAAC;YAC5D,KAAK,MAAM,IAAI,IAAI,cAAc,EAAE,CAAC;gBAChC,MAAM,OAAO,GAAG,UAAU,IAAI,CAAC,YAAY,EAAE,CAAC;gBAC9C,IAAI,CAAC;oBACD,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC;oBACxD,IAAI,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;wBACrB,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;oBAChD,CAAC;gBACL,CAAC;gBACD,MAAM,CAAC;oBACH,oCAAoC;gBACxC,CAAC;YACL,CAAC;YACD,MAAM,KAAK,GAAG,oBAAoB,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC;YACpD,iCAAiC;YACjC,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;YACxD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,gBAAgB,CAAC,KAAK,EAAE,WAAW,EAAE,eAAe,CAAC,CAAC;YACtF,OAAO;gBACH,QAAQ,EAAE,QAAQ,CAAC,eAAe;gBAClC,KAAK;gBACL,oBAAoB,EAAE,QAAQ,CAAC,oBAAoB;aACtD,CAAC;QACN,CAAC;gBACO,CAAC;YACL,MAAM,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC9B,CAAC;IACL,CAAC;IACD;;;OAGG;IACK,KAAK,CAAC,uBAAuB,CACjC,IAAuB,EACvB,eAA4C;QAE5C,MAAM,UAAU,GAAG,oBAAoB,CAAC,IAAI,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC;QACvD,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;QACxD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,GAAG,CAAC,gBAAgB,CAAC,UAAU,EAAE,WAAW,EAAE,eAAe,CAAC,CAAC;QAC3F,OAAO;YACH,QAAQ,EAAE,QAAQ,CAAC,eAAe;YAClC,KAAK,EAAE,UAAU;YACjB,oBAAoB,EAAE,QAAQ,CAAC,oBAAoB;SACtD,CAAC;IACN,CAAC;IACD;;;OAGG;IACK,KAAK,CAAC,kBAAkB,CAAC,IAAuB;QACpD,qEAAqE;QACrE,MAAM,MAAM,GAAG,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,GAAG,CAAC,CAAC,SAAS,CAAC,CAAC;QACzE,MAAM,WAAW,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,iBAAiB;QAC1D,MAAM,OAAO,GAAiB,EAAE,CAAC;QACjC,KAAK,MAAM,IAAI,IAAI,WAAW,EAAE,CAAC;YAC7B,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;YAC/D,IAAI,OAAO,KAAK,IAAI,EAAE,CAAC;gBACnB,OAAO,CAAC,IAAI,CAAC;oBACT,QAAQ,EAAE,IAAI,CAAC,YAAY;oBAC3B,OAAO;oBACP,SAAS,EAAE,IAAI,CAAC,SAAS;iBAC5B,CAAC,CAAC;YACP,CAAC;QACL,CAAC;QACD,OAAO,OAAO,CAAC;IACnB,CAAC;CACJ;AAQD,yEAAyE;AACzE,mDAAmD;AACnD,SAAS,WAAW,CAAC,OAAgC;IACjD,OAAO;QACH,YAAY,EAAE,OAAO,CAAC,YAAY,IAAI,uBAAuB,CAAC,YAAY;QAC1E,QAAQ,EAAE,OAAO,CAAC,QAAQ,IAAI,uBAAuB,CAAC,QAAQ;QAC9D,oBAAoB,EAAE,uBAAuB,CAAC,oBAAoB;QAClE,WAAW,EAAE,uBAAuB,CAAC,WAAW;KACnD,CAAC;AACN,CAAC;AACD,yEAAyE;AACzE,SAAS,mBAAmB,CAAC,GAAmB;IAC5C,OAAO;QACH,IAAI,EAAE,GAAG,CAAC,IAAI;QACd,cAAc,EAAE,GAAG,CAAC,cAAc;QAClC,SAAS,EAAE,GAAG,CAAC,KAAK,CAAC,MAAM;QAC3B,QAAQ,EAAE,GAAG,CAAC,QAAQ;QACtB,UAAU,EAAE,GAAG,CAAC,UAAU;QAC1B,YAAY,EAAE,GAAG,CAAC,YAAY;KACjC,CAAC;AACN,CAAC;AACD,SAAS,iBAAiB,CAAC,CAAkE;IACzF,OAAO;QACH,IAAI,EAAE,CAAC,CAAC,IAAI;QACZ,KAAK,EAAE,CAAC,CAAC,KAAK;QACd,KAAK,EAAE,CAAC,CAAC,KAAK;QACd,cAAc,EAAE,CAAC,CAAC,cAAc;KACnC,CAAC;AACN,CAAC;AACD,qCAAqC"}
|