@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,210 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Azure Sync Application — DTOs
|
|
3
|
+
*
|
|
4
|
+
* Request/Response data transfer objects for azure-sync use cases.
|
|
5
|
+
* Flat, serializable structures with no domain types.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — DTO definitions only
|
|
8
|
+
* DDD: Application layer boundary objects
|
|
9
|
+
*/
|
|
10
|
+
export interface DiscoverRequest {
|
|
11
|
+
readonly org: string;
|
|
12
|
+
readonly project: string;
|
|
13
|
+
}
|
|
14
|
+
export interface DiscoverResponse {
|
|
15
|
+
readonly projectName: string;
|
|
16
|
+
readonly projectId: string;
|
|
17
|
+
readonly processTemplate: string;
|
|
18
|
+
readonly workItemTypes: readonly string[];
|
|
19
|
+
readonly existingWorkItems: readonly WorkItemSummary[];
|
|
20
|
+
readonly iterations: readonly IterationSummary[];
|
|
21
|
+
}
|
|
22
|
+
export interface WorkItemSummary {
|
|
23
|
+
readonly id: number;
|
|
24
|
+
readonly title: string;
|
|
25
|
+
readonly type: string;
|
|
26
|
+
readonly state: string;
|
|
27
|
+
readonly tags: string;
|
|
28
|
+
}
|
|
29
|
+
export interface IterationSummary {
|
|
30
|
+
readonly name: string;
|
|
31
|
+
readonly path: string;
|
|
32
|
+
readonly startDate: string | undefined;
|
|
33
|
+
readonly finishDate: string | undefined;
|
|
34
|
+
}
|
|
35
|
+
export interface PushRequest {
|
|
36
|
+
readonly workspace: string;
|
|
37
|
+
readonly org: string;
|
|
38
|
+
readonly project: string;
|
|
39
|
+
readonly entityType: string;
|
|
40
|
+
readonly entityId?: string;
|
|
41
|
+
readonly dryRun?: boolean;
|
|
42
|
+
}
|
|
43
|
+
export interface PushResponse {
|
|
44
|
+
readonly pushed: readonly PushResultItem[];
|
|
45
|
+
readonly skipped: readonly PushSkippedItem[];
|
|
46
|
+
readonly errors: readonly PushErrorItem[];
|
|
47
|
+
readonly summary: string;
|
|
48
|
+
}
|
|
49
|
+
export interface PushResultItem {
|
|
50
|
+
readonly localId: string;
|
|
51
|
+
readonly localTitle: string;
|
|
52
|
+
readonly azureWorkItemId: number;
|
|
53
|
+
readonly action: "created" | "updated";
|
|
54
|
+
readonly url: string;
|
|
55
|
+
}
|
|
56
|
+
export interface PushSkippedItem {
|
|
57
|
+
readonly localId: string;
|
|
58
|
+
readonly reason: string;
|
|
59
|
+
}
|
|
60
|
+
export interface PushErrorItem {
|
|
61
|
+
readonly localId: string;
|
|
62
|
+
readonly error: string;
|
|
63
|
+
}
|
|
64
|
+
export interface SyncStatusRequest {
|
|
65
|
+
readonly workspace: string;
|
|
66
|
+
readonly org: string;
|
|
67
|
+
readonly project: string;
|
|
68
|
+
}
|
|
69
|
+
export interface SyncStatusResponse {
|
|
70
|
+
readonly mappings: readonly MappingStatusItem[];
|
|
71
|
+
readonly unmappedLocal: readonly UnmappedLocalItem[];
|
|
72
|
+
readonly unmappedAzure: readonly UnmappedAzureItem[];
|
|
73
|
+
readonly summary: string;
|
|
74
|
+
}
|
|
75
|
+
export interface MappingStatusItem {
|
|
76
|
+
readonly localId: string;
|
|
77
|
+
readonly localTitle: string;
|
|
78
|
+
readonly azureWorkItemId: number;
|
|
79
|
+
readonly syncStatus: string;
|
|
80
|
+
readonly lastSyncedAt: string;
|
|
81
|
+
readonly localModifiedAt: string;
|
|
82
|
+
readonly azureModifiedAt: string;
|
|
83
|
+
}
|
|
84
|
+
export interface UnmappedLocalItem {
|
|
85
|
+
readonly localId: string;
|
|
86
|
+
readonly localTitle: string;
|
|
87
|
+
readonly entityType: string;
|
|
88
|
+
}
|
|
89
|
+
export interface UnmappedAzureItem {
|
|
90
|
+
readonly azureWorkItemId: number;
|
|
91
|
+
readonly title: string;
|
|
92
|
+
readonly type: string;
|
|
93
|
+
readonly state: string;
|
|
94
|
+
}
|
|
95
|
+
export interface PullRequest {
|
|
96
|
+
readonly workspace: string;
|
|
97
|
+
readonly org: string;
|
|
98
|
+
readonly project: string;
|
|
99
|
+
readonly entityType: string;
|
|
100
|
+
readonly entityId?: number;
|
|
101
|
+
readonly dryRun?: boolean;
|
|
102
|
+
}
|
|
103
|
+
export interface PullResponse {
|
|
104
|
+
readonly created: readonly PullCreatedItem[];
|
|
105
|
+
readonly updated: readonly PullUpdatedItem[];
|
|
106
|
+
readonly conflicts: readonly PullConflictItem[];
|
|
107
|
+
readonly skipped: readonly PullSkippedItem[];
|
|
108
|
+
readonly errors: readonly PushErrorItem[];
|
|
109
|
+
readonly summary: string;
|
|
110
|
+
}
|
|
111
|
+
export interface PullCreatedItem {
|
|
112
|
+
readonly azureWorkItemId: number;
|
|
113
|
+
readonly azureTitle: string;
|
|
114
|
+
readonly localId: string;
|
|
115
|
+
readonly entityType: string;
|
|
116
|
+
}
|
|
117
|
+
export interface PullUpdatedItem {
|
|
118
|
+
readonly azureWorkItemId: number;
|
|
119
|
+
readonly localId: string;
|
|
120
|
+
readonly changes: readonly string[];
|
|
121
|
+
}
|
|
122
|
+
export interface PullConflictItem {
|
|
123
|
+
readonly azureWorkItemId: number;
|
|
124
|
+
readonly localId: string;
|
|
125
|
+
readonly winner: string;
|
|
126
|
+
readonly reason: string;
|
|
127
|
+
}
|
|
128
|
+
export interface PullSkippedItem {
|
|
129
|
+
readonly azureWorkItemId: number;
|
|
130
|
+
readonly reason: string;
|
|
131
|
+
}
|
|
132
|
+
export interface BidiSyncRequest {
|
|
133
|
+
readonly workspace: string;
|
|
134
|
+
readonly org: string;
|
|
135
|
+
readonly project: string;
|
|
136
|
+
readonly dryRun?: boolean;
|
|
137
|
+
}
|
|
138
|
+
export interface BidiSyncResponse {
|
|
139
|
+
readonly pushResult: PushResponse;
|
|
140
|
+
readonly pullResult: PullResponse;
|
|
141
|
+
readonly summary: string;
|
|
142
|
+
}
|
|
143
|
+
export interface CreatePrRequest {
|
|
144
|
+
readonly org: string;
|
|
145
|
+
readonly project: string;
|
|
146
|
+
readonly repository: string;
|
|
147
|
+
readonly title: string;
|
|
148
|
+
readonly description: string;
|
|
149
|
+
readonly sourceBranch: string;
|
|
150
|
+
readonly targetBranch?: string;
|
|
151
|
+
readonly workItemIds?: readonly number[];
|
|
152
|
+
readonly reviewers?: readonly string[];
|
|
153
|
+
}
|
|
154
|
+
export interface PrResponse {
|
|
155
|
+
readonly pullRequestId: number;
|
|
156
|
+
readonly title: string;
|
|
157
|
+
readonly description: string;
|
|
158
|
+
readonly status: string;
|
|
159
|
+
readonly sourceBranch: string;
|
|
160
|
+
readonly targetBranch: string;
|
|
161
|
+
readonly createdBy: string;
|
|
162
|
+
readonly creationDate: string;
|
|
163
|
+
readonly mergeStatus: string;
|
|
164
|
+
readonly url: string;
|
|
165
|
+
readonly workItemIds: readonly number[];
|
|
166
|
+
readonly reviewers: readonly PrReviewerInfo[];
|
|
167
|
+
}
|
|
168
|
+
export interface PrReviewerInfo {
|
|
169
|
+
readonly displayName: string;
|
|
170
|
+
readonly uniqueName: string;
|
|
171
|
+
readonly vote: number;
|
|
172
|
+
readonly voteLabel: string;
|
|
173
|
+
}
|
|
174
|
+
export interface ListPrRequest {
|
|
175
|
+
readonly org: string;
|
|
176
|
+
readonly project: string;
|
|
177
|
+
readonly repository: string;
|
|
178
|
+
readonly status?: string;
|
|
179
|
+
readonly pullRequestId?: number;
|
|
180
|
+
readonly top?: number;
|
|
181
|
+
}
|
|
182
|
+
export interface ListPrResponse {
|
|
183
|
+
readonly pullRequests: readonly PrResponse[];
|
|
184
|
+
readonly summary: string;
|
|
185
|
+
}
|
|
186
|
+
export interface CommentRequest {
|
|
187
|
+
readonly org: string;
|
|
188
|
+
readonly project: string;
|
|
189
|
+
readonly workItemId: number;
|
|
190
|
+
readonly commentType: "push-summary" | "pr-link" | "custom";
|
|
191
|
+
readonly pushSummary?: PushResponse;
|
|
192
|
+
readonly prUrl?: string;
|
|
193
|
+
readonly prTitle?: string;
|
|
194
|
+
readonly customText?: string;
|
|
195
|
+
}
|
|
196
|
+
export interface CommentResponse {
|
|
197
|
+
readonly workItemId: number;
|
|
198
|
+
readonly success: boolean;
|
|
199
|
+
readonly error?: string;
|
|
200
|
+
}
|
|
201
|
+
export interface ConfigStatusResponse {
|
|
202
|
+
readonly organization: string;
|
|
203
|
+
readonly project: string;
|
|
204
|
+
readonly repository: string;
|
|
205
|
+
readonly authMethod: string;
|
|
206
|
+
readonly defaultSyncDirection: string;
|
|
207
|
+
readonly autoDetectTemplate: boolean;
|
|
208
|
+
readonly connectionStatus: string;
|
|
209
|
+
}
|
|
210
|
+
//# sourceMappingURL=dtos.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dtos.d.ts","sourceRoot":"","sources":["../../../src/application/azure-sync/dtos.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Azure Sync Application — DTOs
|
|
3
|
+
*
|
|
4
|
+
* Request/Response data transfer objects for azure-sync use cases.
|
|
5
|
+
* Flat, serializable structures with no domain types.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — DTO definitions only
|
|
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/azure-sync/dtos.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Azure Sync Application — Field Builders
|
|
3
|
+
*
|
|
4
|
+
* Builds Azure DevOps work item patch operations from local entity data.
|
|
5
|
+
* Handles template-aware field mapping for different process templates.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — field building/mapping only
|
|
8
|
+
* DDD: Application-layer transformation between local and Azure representations
|
|
9
|
+
*/
|
|
10
|
+
import type { WorkItemPatchOp } from "../../domain/azure-sync/ports.js";
|
|
11
|
+
import type { ProcessTemplate, LocalKanbanState } from "../../domain/azure-sync/value-objects.js";
|
|
12
|
+
import { FieldMapper } from "../../domain/azure-sync/services.js";
|
|
13
|
+
/** Minimal epic shape needed for field building. */
|
|
14
|
+
export interface EpicFieldInput {
|
|
15
|
+
readonly title: string;
|
|
16
|
+
readonly description: string | undefined;
|
|
17
|
+
readonly priority: string;
|
|
18
|
+
}
|
|
19
|
+
/** Minimal card shape needed for field building. */
|
|
20
|
+
export interface CardFieldInput {
|
|
21
|
+
readonly title: string;
|
|
22
|
+
readonly description: string | undefined;
|
|
23
|
+
readonly priority: string;
|
|
24
|
+
readonly status: LocalKanbanState;
|
|
25
|
+
readonly storyPoints: number | undefined;
|
|
26
|
+
readonly acceptanceCriteria: readonly {
|
|
27
|
+
description: string;
|
|
28
|
+
met: boolean;
|
|
29
|
+
}[];
|
|
30
|
+
readonly iterationPath: string | undefined;
|
|
31
|
+
}
|
|
32
|
+
/** Minimal task shape for building Azure DevOps Task work items from AC. */
|
|
33
|
+
export interface TaskFieldInput {
|
|
34
|
+
readonly title: string;
|
|
35
|
+
readonly met: boolean;
|
|
36
|
+
readonly iterationPath: string | undefined;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Builds Azure DevOps work item patch operations from local entities.
|
|
40
|
+
* Template-aware: adapts field placement based on process template capabilities.
|
|
41
|
+
*/
|
|
42
|
+
export declare class AzureFieldBuilder {
|
|
43
|
+
private readonly fieldMapper;
|
|
44
|
+
constructor(fieldMapper: FieldMapper);
|
|
45
|
+
/** Build patch ops for an epic work item. */
|
|
46
|
+
buildEpicFields(epic: EpicFieldInput, _template: ProcessTemplate): readonly WorkItemPatchOp[];
|
|
47
|
+
/** Build patch ops for a card/issue work item. */
|
|
48
|
+
buildCardFields(card: CardFieldInput, template: ProcessTemplate): readonly WorkItemPatchOp[];
|
|
49
|
+
/** Build patch ops for a Task work item derived from an acceptance criterion. */
|
|
50
|
+
buildTaskFields(task: TaskFieldInput, template: ProcessTemplate): readonly WorkItemPatchOp[];
|
|
51
|
+
private appendDescriptionAndAc;
|
|
52
|
+
private appendStoryPoints;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=field-builders.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"field-builders.d.ts","sourceRoot":"","sources":["../../../src/application/azure-sync/field-builders.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACxE,OAAO,KAAK,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAElG,OAAO,EAAE,WAAW,EAAgB,MAAM,qCAAqC,CAAC;AAYhF,oDAAoD;AACpD,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,GAAG,SAAS,CAAC;IACzC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;CAC3B;AAED,oDAAoD;AACpD,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,GAAG,SAAS,CAAC;IACzC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,MAAM,EAAE,gBAAgB,CAAC;IAClC,QAAQ,CAAC,WAAW,EAAE,MAAM,GAAG,SAAS,CAAC;IACzC,QAAQ,CAAC,kBAAkB,EAAE,SAAS;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,OAAO,CAAA;KAAE,EAAE,CAAC;IAC9E,QAAQ,CAAC,aAAa,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5C;AAED,4EAA4E;AAC5E,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,GAAG,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,aAAa,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5C;AAID;;;GAGG;AACH,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAc;gBAE9B,WAAW,EAAE,WAAW;IAIpC,6CAA6C;IAC7C,eAAe,CAAC,IAAI,EAAE,cAAc,EAAE,SAAS,EAAE,eAAe,GAAG,SAAS,eAAe,EAAE;IAyB7F,kDAAkD;IAClD,eAAe,CAAC,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,eAAe,GAAG,SAAS,eAAe,EAAE;IAyC5F,iFAAiF;IACjF,eAAe,CAAC,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,eAAe,GAAG,SAAS,eAAe,EAAE;IA2B5F,OAAO,CAAC,sBAAsB;IA2C9B,OAAO,CAAC,iBAAiB;CA0B1B"}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Azure Sync Application — Field Builders
|
|
3
|
+
*
|
|
4
|
+
* Builds Azure DevOps work item patch operations from local entity data.
|
|
5
|
+
* Handles template-aware field mapping for different process templates.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — field building/mapping only
|
|
8
|
+
* DDD: Application-layer transformation between local and Azure representations
|
|
9
|
+
*/
|
|
10
|
+
import { TASK_STATE_FOR_MET } from "../../domain/azure-sync/value-objects.js";
|
|
11
|
+
import { AZURE_FIELDS } from "../../domain/azure-sync/services.js";
|
|
12
|
+
// ─── Priority Map ─────────────────────────────────────────────────────────────
|
|
13
|
+
const PRIORITY_MAP = {
|
|
14
|
+
high: 1,
|
|
15
|
+
medium: 2,
|
|
16
|
+
low: 3,
|
|
17
|
+
};
|
|
18
|
+
// ─── Field Builder ────────────────────────────────────────────────────────────
|
|
19
|
+
/**
|
|
20
|
+
* Builds Azure DevOps work item patch operations from local entities.
|
|
21
|
+
* Template-aware: adapts field placement based on process template capabilities.
|
|
22
|
+
*/
|
|
23
|
+
export class AzureFieldBuilder {
|
|
24
|
+
fieldMapper;
|
|
25
|
+
constructor(fieldMapper) {
|
|
26
|
+
this.fieldMapper = fieldMapper;
|
|
27
|
+
}
|
|
28
|
+
/** Build patch ops for an epic work item. */
|
|
29
|
+
buildEpicFields(epic, _template) {
|
|
30
|
+
const fields = [
|
|
31
|
+
{ op: "add", path: `/fields/${AZURE_FIELDS.TITLE}`, value: epic.title },
|
|
32
|
+
];
|
|
33
|
+
if (epic.description !== undefined) {
|
|
34
|
+
fields.push({
|
|
35
|
+
op: "add",
|
|
36
|
+
path: `/fields/${AZURE_FIELDS.DESCRIPTION}`,
|
|
37
|
+
value: epic.description,
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
const prio = PRIORITY_MAP[epic.priority];
|
|
41
|
+
if (prio !== undefined) {
|
|
42
|
+
fields.push({
|
|
43
|
+
op: "add",
|
|
44
|
+
path: `/fields/${AZURE_FIELDS.PRIORITY}`,
|
|
45
|
+
value: prio,
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
return fields;
|
|
49
|
+
}
|
|
50
|
+
/** Build patch ops for a card/issue work item. */
|
|
51
|
+
buildCardFields(card, template) {
|
|
52
|
+
const fields = [
|
|
53
|
+
{ op: "add", path: `/fields/${AZURE_FIELDS.TITLE}`, value: card.title },
|
|
54
|
+
];
|
|
55
|
+
// State mapping
|
|
56
|
+
const azureState = this.fieldMapper.mapStateToAzure(template, card.status);
|
|
57
|
+
fields.push({
|
|
58
|
+
op: "add",
|
|
59
|
+
path: `/fields/${AZURE_FIELDS.STATE}`,
|
|
60
|
+
value: azureState,
|
|
61
|
+
});
|
|
62
|
+
// Priority
|
|
63
|
+
const prio = PRIORITY_MAP[card.priority];
|
|
64
|
+
if (prio !== undefined) {
|
|
65
|
+
fields.push({
|
|
66
|
+
op: "add",
|
|
67
|
+
path: `/fields/${AZURE_FIELDS.PRIORITY}`,
|
|
68
|
+
value: prio,
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
// Description + AC (template-aware)
|
|
72
|
+
this.appendDescriptionAndAc(fields, card, template);
|
|
73
|
+
// Story points (template-aware)
|
|
74
|
+
this.appendStoryPoints(fields, card, template);
|
|
75
|
+
// Iteration path (sprint assignment)
|
|
76
|
+
if (card.iterationPath !== undefined) {
|
|
77
|
+
fields.push({
|
|
78
|
+
op: "add",
|
|
79
|
+
path: `/fields/${AZURE_FIELDS.ITERATION_PATH}`,
|
|
80
|
+
value: card.iterationPath,
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
return fields;
|
|
84
|
+
}
|
|
85
|
+
/** Build patch ops for a Task work item derived from an acceptance criterion. */
|
|
86
|
+
buildTaskFields(task, template) {
|
|
87
|
+
const fields = [
|
|
88
|
+
{ op: "add", path: `/fields/${AZURE_FIELDS.TITLE}`, value: task.title },
|
|
89
|
+
];
|
|
90
|
+
// Task state: met=true → done state, met=false → todo state
|
|
91
|
+
const taskStates = TASK_STATE_FOR_MET[template];
|
|
92
|
+
fields.push({
|
|
93
|
+
op: "add",
|
|
94
|
+
path: `/fields/${AZURE_FIELDS.STATE}`,
|
|
95
|
+
value: task.met ? taskStates.done : taskStates.todo,
|
|
96
|
+
});
|
|
97
|
+
// Iteration path (inherit from parent card)
|
|
98
|
+
if (task.iterationPath !== undefined) {
|
|
99
|
+
fields.push({
|
|
100
|
+
op: "add",
|
|
101
|
+
path: `/fields/${AZURE_FIELDS.ITERATION_PATH}`,
|
|
102
|
+
value: task.iterationPath,
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
return fields;
|
|
106
|
+
}
|
|
107
|
+
// ── Private Helpers ─────────────────────────────────────────────
|
|
108
|
+
appendDescriptionAndAc(fields, card, template) {
|
|
109
|
+
const acTexts = card.acceptanceCriteria.map((ac) => `${ac.met ? "[x]" : "[ ]"} ${ac.description}`);
|
|
110
|
+
const mappings = this.fieldMapper.getFieldMappings(template);
|
|
111
|
+
const acMapping = mappings.find((m) => m.localField === "acceptanceCriteria");
|
|
112
|
+
if (acMapping && acMapping.fallback === "description") {
|
|
113
|
+
// Basic/CMMI: embed AC in description
|
|
114
|
+
const desc = card.description ?? "";
|
|
115
|
+
const html = this.fieldMapper.buildAcceptanceCriteriaHtml(desc, acTexts);
|
|
116
|
+
fields.push({
|
|
117
|
+
op: "add",
|
|
118
|
+
path: `/fields/${AZURE_FIELDS.DESCRIPTION}`,
|
|
119
|
+
value: html,
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
else {
|
|
123
|
+
// Agile/Scrum: separate fields
|
|
124
|
+
if (card.description !== undefined) {
|
|
125
|
+
fields.push({
|
|
126
|
+
op: "add",
|
|
127
|
+
path: `/fields/${AZURE_FIELDS.DESCRIPTION}`,
|
|
128
|
+
value: card.description,
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
if (acTexts.length > 0 && acMapping) {
|
|
132
|
+
const acHtml = acTexts
|
|
133
|
+
.map((t) => `<li>${t}</li>`)
|
|
134
|
+
.join("");
|
|
135
|
+
fields.push({
|
|
136
|
+
op: "add",
|
|
137
|
+
path: `/fields/${acMapping.azureField}`,
|
|
138
|
+
value: `<ul>${acHtml}</ul>`,
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
appendStoryPoints(fields, card, template) {
|
|
144
|
+
const mappings = this.fieldMapper.getFieldMappings(template);
|
|
145
|
+
const spMapping = mappings.find((m) => m.localField === "storyPoints");
|
|
146
|
+
if (card.storyPoints !== undefined && spMapping) {
|
|
147
|
+
if (spMapping.fallback === "tag") {
|
|
148
|
+
// Basic/CMMI: add SP as tag
|
|
149
|
+
fields.push({
|
|
150
|
+
op: "add",
|
|
151
|
+
path: `/fields/${AZURE_FIELDS.TAGS}`,
|
|
152
|
+
value: this.fieldMapper.buildStoryPointsTag(card.storyPoints, ""),
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
else {
|
|
156
|
+
// Agile/Scrum: native field
|
|
157
|
+
fields.push({
|
|
158
|
+
op: "add",
|
|
159
|
+
path: `/fields/${spMapping.azureField}`,
|
|
160
|
+
value: card.storyPoints,
|
|
161
|
+
});
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
//# sourceMappingURL=field-builders.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"field-builders.js","sourceRoot":"","sources":["../../../src/application/azure-sync/field-builders.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Intent Executor
|
|
3
|
+
*
|
|
4
|
+
* Executes the kanban or context-memory action resolved by the LLM
|
|
5
|
+
* for a classified comment intent.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — action execution only; no LLM calls, no reply building
|
|
8
|
+
* SOLID: DIP — depends on KanbanCardPort and NoteUseCases abstractions
|
|
9
|
+
* DDD: Application service; coordinates across kanban and context-memory
|
|
10
|
+
* bounded contexts via their port interfaces (no direct imports)
|
|
11
|
+
*/
|
|
12
|
+
import type { Result } from "../../domain/shared/value-objects.js";
|
|
13
|
+
import type { IntentResult } from "../../domain/azure-sync/llm-port.js";
|
|
14
|
+
import type { KanbanCardPort } from "./kanban-sync-ports.js";
|
|
15
|
+
import type { NoteUseCases } from "../context-memory/note-use-cases.js";
|
|
16
|
+
/**
|
|
17
|
+
* Runtime context for intent execution.
|
|
18
|
+
* Carries the identifiers needed to resolve the target card without
|
|
19
|
+
* requiring the user to specify them in every comment.
|
|
20
|
+
*/
|
|
21
|
+
export interface ExecutionContext {
|
|
22
|
+
/** Local card ID inferred from the SyncMapping (e.g., "CD-005"). Undefined if unmapped. */
|
|
23
|
+
readonly localCardId?: string;
|
|
24
|
+
/** Workspace ID for card creation and note logging. */
|
|
25
|
+
readonly workspaceId: string;
|
|
26
|
+
}
|
|
27
|
+
export interface ExecutionResult {
|
|
28
|
+
/** True when a concrete kanban or context-memory action was performed. */
|
|
29
|
+
readonly actionPerformed: boolean;
|
|
30
|
+
/** The card ID that was created or modified, if any. */
|
|
31
|
+
readonly affectedCardId?: string;
|
|
32
|
+
/** Human-readable summary of the action (for reply and logs). */
|
|
33
|
+
readonly summary: string;
|
|
34
|
+
}
|
|
35
|
+
export interface IntentExecutorDeps {
|
|
36
|
+
readonly cardPort: KanbanCardPort;
|
|
37
|
+
readonly noteUseCases: NoteUseCases;
|
|
38
|
+
}
|
|
39
|
+
export declare class IntentExecutor {
|
|
40
|
+
private readonly deps;
|
|
41
|
+
constructor(deps: IntentExecutorDeps);
|
|
42
|
+
/**
|
|
43
|
+
* Execute the action described by an IntentResult.
|
|
44
|
+
*
|
|
45
|
+
* For `reply-plan` and `unknown` no kanban/note action is performed —
|
|
46
|
+
* the reply is handled by CommentIntentService via IntentReplyBuilder.
|
|
47
|
+
*/
|
|
48
|
+
execute(intent: IntentResult, ctx: ExecutionContext): Promise<Result<ExecutionResult>>;
|
|
49
|
+
private executeCreateCard;
|
|
50
|
+
private executeMoveCard;
|
|
51
|
+
private executeAddAc;
|
|
52
|
+
private executeAddNote;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=intent-executor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"intent-executor.d.ts","sourceRoot":"","sources":["../../../src/application/azure-sync/intent-executor.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAEnE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACxE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAIxE;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC/B,2FAA2F;IAC3F,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,uDAAuD;IACvD,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAID,MAAM,WAAW,eAAe;IAC9B,0EAA0E;IAC1E,QAAQ,CAAC,eAAe,EAAE,OAAO,CAAC;IAClC,wDAAwD;IACxD,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IACjC,iEAAiE;IACjE,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;CAC1B;AAID,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,QAAQ,EAAE,cAAc,CAAC;IAClC,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC;CACrC;AAID,qBAAa,cAAc;IACzB,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAqB;gBAE9B,IAAI,EAAE,kBAAkB;IAIpC;;;;;OAKG;IACG,OAAO,CACX,MAAM,EAAE,YAAY,EACpB,GAAG,EAAE,gBAAgB,GACpB,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;YAqBrB,iBAAiB;YA8BjB,eAAe;YAqCf,YAAY;YAmCZ,cAAc;CA4B7B"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Intent Executor
|
|
3
|
+
*
|
|
4
|
+
* Executes the kanban or context-memory action resolved by the LLM
|
|
5
|
+
* for a classified comment intent.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — action execution only; no LLM calls, no reply building
|
|
8
|
+
* SOLID: DIP — depends on KanbanCardPort and NoteUseCases abstractions
|
|
9
|
+
* DDD: Application service; coordinates across kanban and context-memory
|
|
10
|
+
* bounded contexts via their port interfaces (no direct imports)
|
|
11
|
+
*/
|
|
12
|
+
import { ok, fail } from "../../domain/shared/value-objects.js";
|
|
13
|
+
// ─── Executor ─────────────────────────────────────────────────────────────────
|
|
14
|
+
export class IntentExecutor {
|
|
15
|
+
deps;
|
|
16
|
+
constructor(deps) {
|
|
17
|
+
this.deps = deps;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Execute the action described by an IntentResult.
|
|
21
|
+
*
|
|
22
|
+
* For `reply-plan` and `unknown` no kanban/note action is performed —
|
|
23
|
+
* the reply is handled by CommentIntentService via IntentReplyBuilder.
|
|
24
|
+
*/
|
|
25
|
+
async execute(intent, ctx) {
|
|
26
|
+
switch (intent.action) {
|
|
27
|
+
case "create-card":
|
|
28
|
+
return this.executeCreateCard(intent, ctx);
|
|
29
|
+
case "move-card":
|
|
30
|
+
return this.executeMoveCard(intent, ctx);
|
|
31
|
+
case "add-ac":
|
|
32
|
+
return this.executeAddAc(intent, ctx);
|
|
33
|
+
case "add-note":
|
|
34
|
+
return this.executeAddNote(intent, ctx);
|
|
35
|
+
case "reply-plan":
|
|
36
|
+
case "unknown":
|
|
37
|
+
return ok({
|
|
38
|
+
actionPerformed: false,
|
|
39
|
+
summary: `No kanban action for intent "${intent.action}". Reply will be posted.`,
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
// ─── Action handlers ──────────────────────────────────────────────────────
|
|
44
|
+
async executeCreateCard(intent, ctx) {
|
|
45
|
+
const { title, description } = intent.params;
|
|
46
|
+
if (!title || title.trim().length === 0) {
|
|
47
|
+
return fail("create-card intent: LLM did not provide a card title. Cannot create card.");
|
|
48
|
+
}
|
|
49
|
+
const result = await this.deps.cardPort.createCard({
|
|
50
|
+
title: title.trim(),
|
|
51
|
+
workspace: ctx.workspaceId,
|
|
52
|
+
...(description ? { description: description.trim() } : {}),
|
|
53
|
+
});
|
|
54
|
+
if (!result.success) {
|
|
55
|
+
return fail(`create-card failed: ${result.error}`);
|
|
56
|
+
}
|
|
57
|
+
const cardId = result.data.id;
|
|
58
|
+
return ok({
|
|
59
|
+
actionPerformed: true,
|
|
60
|
+
affectedCardId: cardId,
|
|
61
|
+
summary: `Created card ${cardId}: "${title}"`,
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
async executeMoveCard(intent, ctx) {
|
|
65
|
+
// Resolve card ID: prefer explicit from LLM, fall back to SyncMapping context
|
|
66
|
+
const cardId = intent.params.cardId ?? ctx.localCardId;
|
|
67
|
+
if (!cardId) {
|
|
68
|
+
return fail("move-card intent: no card ID available (not in comment and work item is not mapped).");
|
|
69
|
+
}
|
|
70
|
+
const targetStatus = intent.params.status;
|
|
71
|
+
if (!targetStatus || targetStatus.trim().length === 0) {
|
|
72
|
+
return fail("move-card intent: LLM did not provide a target status.");
|
|
73
|
+
}
|
|
74
|
+
const result = await this.deps.cardPort.moveCard({
|
|
75
|
+
cardId,
|
|
76
|
+
targetStatus: targetStatus.trim(),
|
|
77
|
+
justification: `Moved via Azure DevOps comment (intent: move-card, confidence: ${intent.confidence.toFixed(2)})`,
|
|
78
|
+
});
|
|
79
|
+
if (!result.success) {
|
|
80
|
+
return fail(`move-card failed: ${result.error}`);
|
|
81
|
+
}
|
|
82
|
+
return ok({
|
|
83
|
+
actionPerformed: true,
|
|
84
|
+
affectedCardId: cardId,
|
|
85
|
+
summary: `Moved card ${cardId} to "${targetStatus}"`,
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
async executeAddAc(intent, ctx) {
|
|
89
|
+
const cardId = intent.params.cardId ?? ctx.localCardId;
|
|
90
|
+
if (!cardId) {
|
|
91
|
+
return fail("add-ac intent: no card ID available (not in comment and work item is not mapped).");
|
|
92
|
+
}
|
|
93
|
+
const criterion = intent.params.criterion;
|
|
94
|
+
if (!criterion || criterion.trim().length === 0) {
|
|
95
|
+
return fail("add-ac intent: LLM did not provide an acceptance criterion description.");
|
|
96
|
+
}
|
|
97
|
+
const result = await this.deps.cardPort.addAcceptanceCriterion({
|
|
98
|
+
cardId,
|
|
99
|
+
description: criterion.trim(),
|
|
100
|
+
});
|
|
101
|
+
if (!result.success) {
|
|
102
|
+
return fail(`add-ac failed: ${result.error}`);
|
|
103
|
+
}
|
|
104
|
+
return ok({
|
|
105
|
+
actionPerformed: true,
|
|
106
|
+
affectedCardId: cardId,
|
|
107
|
+
summary: `Added AC to ${cardId}: "${criterion}"`,
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
async executeAddNote(intent, ctx) {
|
|
111
|
+
const content = intent.params.description ?? intent.params.title;
|
|
112
|
+
if (!content || content.trim().length === 0) {
|
|
113
|
+
return fail("add-note intent: LLM did not provide note content.");
|
|
114
|
+
}
|
|
115
|
+
const result = await this.deps.noteUseCases.addNote({
|
|
116
|
+
content: content.trim(),
|
|
117
|
+
workspace: ctx.workspaceId,
|
|
118
|
+
type: "note",
|
|
119
|
+
tags: ["azure-comment", ...(ctx.localCardId ? [ctx.localCardId] : [])],
|
|
120
|
+
});
|
|
121
|
+
if (!result.success) {
|
|
122
|
+
return fail(`add-note failed: ${result.error}`);
|
|
123
|
+
}
|
|
124
|
+
return ok({
|
|
125
|
+
actionPerformed: true,
|
|
126
|
+
summary: `Note logged: "${content.slice(0, 60)}${content.length > 60 ? "..." : ""}"`,
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
//# sourceMappingURL=intent-executor.js.map
|