@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,134 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Card Entity - Kanban Aggregate Root
|
|
3
|
+
*
|
|
4
|
+
* Primary work unit: backlog -> grooming -> ready -> doing ->
|
|
5
|
+
* review -> tested -> done. State machine enforcement, review
|
|
6
|
+
* iteration tracking, gate tasks, blocking/unblocking.
|
|
7
|
+
*
|
|
8
|
+
* DDD: Aggregate Root with state machine invariants
|
|
9
|
+
* SOLID: SRP - card lifecycle management only
|
|
10
|
+
*/
|
|
11
|
+
import { WorkspaceId, Timestamp } from "../shared/value-objects.js";
|
|
12
|
+
import { CardId, CardStatus, CARD_TRANSITIONS, Priority, EpicId, SprintId, ScopeDocPath, GATED_PHASES } from "./value-objects.js";
|
|
13
|
+
import type { StoryPoints, GateTask, GateTaskDefinition } from "./value-objects.js";
|
|
14
|
+
import type { AcceptanceCriterion, CardProps } from "./card-props.js";
|
|
15
|
+
export { CardId, CardStatus, Priority, EpicId, SprintId, ScopeDocPath, WorkspaceId, CARD_TRANSITIONS, GATED_PHASES, };
|
|
16
|
+
export type { GateTask, GateTaskDefinition, AcceptanceCriterion, CardProps };
|
|
17
|
+
export declare class Card {
|
|
18
|
+
readonly id: CardId;
|
|
19
|
+
readonly workspace: WorkspaceId;
|
|
20
|
+
readonly createdAt: Timestamp;
|
|
21
|
+
private _title;
|
|
22
|
+
private _status;
|
|
23
|
+
private _priority;
|
|
24
|
+
private _description?;
|
|
25
|
+
private _epicId?;
|
|
26
|
+
private _sprintId?;
|
|
27
|
+
private _storyPoints?;
|
|
28
|
+
private _assignedAgent?;
|
|
29
|
+
private _acceptanceCriteria;
|
|
30
|
+
private _dependsOn;
|
|
31
|
+
private _blockedBy;
|
|
32
|
+
private _scopeDocPath?;
|
|
33
|
+
private _reviewIterations;
|
|
34
|
+
private _statusHistory;
|
|
35
|
+
private _groomingCompleted;
|
|
36
|
+
private _startedAt?;
|
|
37
|
+
private _completedAt?;
|
|
38
|
+
private _pipelineId?;
|
|
39
|
+
private _gateTasks;
|
|
40
|
+
private _lastTransitionAt?;
|
|
41
|
+
private constructor();
|
|
42
|
+
get title(): string;
|
|
43
|
+
get status(): CardStatus;
|
|
44
|
+
get priority(): Priority;
|
|
45
|
+
get description(): string | undefined;
|
|
46
|
+
get epicId(): EpicId | undefined;
|
|
47
|
+
get sprintId(): SprintId | undefined;
|
|
48
|
+
get storyPoints(): StoryPoints | undefined;
|
|
49
|
+
get assignedAgent(): string | undefined;
|
|
50
|
+
get acceptanceCriteria(): readonly AcceptanceCriterion[];
|
|
51
|
+
get dependsOn(): readonly CardId[];
|
|
52
|
+
get blockedBy(): readonly CardId[];
|
|
53
|
+
get scopeDocPath(): ScopeDocPath | undefined;
|
|
54
|
+
get reviewIterations(): number;
|
|
55
|
+
/** Full history of statuses the card has passed through, oldest first. */
|
|
56
|
+
get statusHistory(): readonly CardStatus[];
|
|
57
|
+
/** Most recent previous status (last entry in history before current), or undefined. */
|
|
58
|
+
get previousStatus(): CardStatus | undefined;
|
|
59
|
+
get groomingCompleted(): boolean;
|
|
60
|
+
get startedAt(): Timestamp | undefined;
|
|
61
|
+
get completedAt(): Timestamp | undefined;
|
|
62
|
+
/** Optional linked pipeline identifier. */
|
|
63
|
+
get pipelineId(): string | undefined;
|
|
64
|
+
/** Current gate tasks for the card's active phase. */
|
|
65
|
+
get gateTasks(): readonly GateTask[];
|
|
66
|
+
/** Timestamp of the last status transition (for cooldown enforcement). */
|
|
67
|
+
get lastTransitionAt(): Timestamp | undefined;
|
|
68
|
+
/** Link this card to a pipeline run. */
|
|
69
|
+
linkPipeline(pipelineId: string): void;
|
|
70
|
+
/** Create a new card in Backlog status. */
|
|
71
|
+
static create(params: {
|
|
72
|
+
id: CardId;
|
|
73
|
+
workspace: WorkspaceId;
|
|
74
|
+
title: string;
|
|
75
|
+
priority?: Priority;
|
|
76
|
+
description?: string;
|
|
77
|
+
epicId?: EpicId;
|
|
78
|
+
}): Card;
|
|
79
|
+
/** Reconstitute from persistence. */
|
|
80
|
+
static reconstitute(props: CardProps): Card;
|
|
81
|
+
/** Move card to a new status. Enforces state machine, review iterations, blocking. */
|
|
82
|
+
moveTo(newStatus: CardStatus): void;
|
|
83
|
+
/** Mark grooming as completed. Must be in Grooming status. */
|
|
84
|
+
completeGrooming(): void;
|
|
85
|
+
/**
|
|
86
|
+
* Initialize gate tasks from definitions for the current phase.
|
|
87
|
+
* Called when a card enters a gated phase (doing, review, tested).
|
|
88
|
+
* Replaces any existing gate tasks.
|
|
89
|
+
*/
|
|
90
|
+
initGateTasks(definitions: readonly GateTaskDefinition[]): void;
|
|
91
|
+
/**
|
|
92
|
+
* Mark a gate task as met with evidence.
|
|
93
|
+
* @param index 0-based index into the gateTasks array
|
|
94
|
+
* @param evidence Description of evidence (commit hash, test output, etc.)
|
|
95
|
+
*/
|
|
96
|
+
meetGateTask(index: number, evidence: string): void;
|
|
97
|
+
/**
|
|
98
|
+
* Auto-verify gate tasks that support automatic checking.
|
|
99
|
+
* Currently supports "ac-met" — checks if all acceptance criteria are met.
|
|
100
|
+
*/
|
|
101
|
+
autoVerifyGates(): void;
|
|
102
|
+
/**
|
|
103
|
+
* Check if all required gate tasks for the current phase are met.
|
|
104
|
+
* Returns true if there are no gate tasks or all required ones are met.
|
|
105
|
+
*/
|
|
106
|
+
allRequiredGatesMet(): boolean;
|
|
107
|
+
/**
|
|
108
|
+
* Get list of unmet required gate tasks (for error messaging).
|
|
109
|
+
*/
|
|
110
|
+
unmetRequiredGates(): readonly GateTask[];
|
|
111
|
+
setTitle(title: string): void;
|
|
112
|
+
setDescription(description: string): void;
|
|
113
|
+
assignToEpic(epicId: EpicId): void;
|
|
114
|
+
assignToSprint(sprintId: SprintId): void;
|
|
115
|
+
setStoryPoints(points: StoryPoints): void;
|
|
116
|
+
assignAgent(agent: string): void;
|
|
117
|
+
setPriority(priority: Priority): void;
|
|
118
|
+
/** Link this card's scope document in the vault. */
|
|
119
|
+
setScopeDocPath(path: ScopeDocPath): void;
|
|
120
|
+
/** Add a dependency: this card depends on the given card. */
|
|
121
|
+
addDependsOn(cardId: CardId): void;
|
|
122
|
+
/** Remove a dependency. */
|
|
123
|
+
removeDependsOn(cardId: CardId): void;
|
|
124
|
+
/** Mark this card as blocked by another card. */
|
|
125
|
+
addBlockedBy(cardId: CardId): void;
|
|
126
|
+
/** Remove a blocker. */
|
|
127
|
+
removeBlockedBy(cardId: CardId): void;
|
|
128
|
+
addAcceptanceCriterion(description: string): void;
|
|
129
|
+
meetAcceptanceCriterion(index: number): void;
|
|
130
|
+
get isTerminal(): boolean;
|
|
131
|
+
get isBlocked(): boolean;
|
|
132
|
+
get isActive(): boolean;
|
|
133
|
+
}
|
|
134
|
+
//# sourceMappingURL=entities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/domain/kanban/entities.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Card Entity - Kanban Aggregate Root
|
|
3
|
+
*
|
|
4
|
+
* Primary work unit: backlog -> grooming -> ready -> doing ->
|
|
5
|
+
* review -> tested -> done. State machine enforcement, review
|
|
6
|
+
* iteration tracking, gate tasks, blocking/unblocking.
|
|
7
|
+
*
|
|
8
|
+
* DDD: Aggregate Root with state machine invariants
|
|
9
|
+
* SOLID: SRP - card lifecycle management only
|
|
10
|
+
*/
|
|
11
|
+
import { WorkspaceId, Timestamp } from "../shared/value-objects.js";
|
|
12
|
+
import { CardId, CardStatus, CARD_TRANSITIONS, MAX_REVIEW_ITERATIONS, Priority, EpicId, SprintId, ScopeDocPath, GATED_PHASES, } from "./value-objects.js";
|
|
13
|
+
// Re-export for convenience (consumers import from entities)
|
|
14
|
+
export { CardId, CardStatus, Priority, EpicId, SprintId, ScopeDocPath, WorkspaceId, CARD_TRANSITIONS, GATED_PHASES, };
|
|
15
|
+
export class Card {
|
|
16
|
+
id;
|
|
17
|
+
workspace;
|
|
18
|
+
createdAt;
|
|
19
|
+
_title;
|
|
20
|
+
_status;
|
|
21
|
+
_priority;
|
|
22
|
+
_description;
|
|
23
|
+
_epicId;
|
|
24
|
+
_sprintId;
|
|
25
|
+
_storyPoints;
|
|
26
|
+
_assignedAgent;
|
|
27
|
+
_acceptanceCriteria;
|
|
28
|
+
_dependsOn;
|
|
29
|
+
_blockedBy;
|
|
30
|
+
_scopeDocPath;
|
|
31
|
+
_reviewIterations;
|
|
32
|
+
_statusHistory;
|
|
33
|
+
_groomingCompleted;
|
|
34
|
+
_startedAt;
|
|
35
|
+
_completedAt;
|
|
36
|
+
_pipelineId;
|
|
37
|
+
_gateTasks;
|
|
38
|
+
_lastTransitionAt;
|
|
39
|
+
constructor(props) {
|
|
40
|
+
this.id = props.id;
|
|
41
|
+
this.workspace = props.workspace;
|
|
42
|
+
this._title = props.title;
|
|
43
|
+
this._status = props.status;
|
|
44
|
+
this._priority = props.priority;
|
|
45
|
+
this._description = props.description;
|
|
46
|
+
this._epicId = props.epicId;
|
|
47
|
+
this._sprintId = props.sprintId;
|
|
48
|
+
this._storyPoints = props.storyPoints;
|
|
49
|
+
this._assignedAgent = props.assignedAgent;
|
|
50
|
+
this._acceptanceCriteria = [...props.acceptanceCriteria];
|
|
51
|
+
this._dependsOn = [...props.dependsOn];
|
|
52
|
+
this._blockedBy = [...props.blockedBy];
|
|
53
|
+
this._scopeDocPath = props.scopeDocPath;
|
|
54
|
+
this._reviewIterations = props.reviewIterations;
|
|
55
|
+
this._statusHistory = [...props.statusHistory];
|
|
56
|
+
this._groomingCompleted = props.groomingCompleted;
|
|
57
|
+
this.createdAt = props.createdAt;
|
|
58
|
+
this._startedAt = props.startedAt;
|
|
59
|
+
this._completedAt = props.completedAt;
|
|
60
|
+
this._pipelineId = props.pipelineId;
|
|
61
|
+
this._gateTasks = [...props.gateTasks];
|
|
62
|
+
this._lastTransitionAt = props.lastTransitionAt;
|
|
63
|
+
}
|
|
64
|
+
// ── Getters ─────────────────────────────────────────────────────
|
|
65
|
+
get title() {
|
|
66
|
+
return this._title;
|
|
67
|
+
}
|
|
68
|
+
get status() {
|
|
69
|
+
return this._status;
|
|
70
|
+
}
|
|
71
|
+
get priority() {
|
|
72
|
+
return this._priority;
|
|
73
|
+
}
|
|
74
|
+
get description() {
|
|
75
|
+
return this._description;
|
|
76
|
+
}
|
|
77
|
+
get epicId() {
|
|
78
|
+
return this._epicId;
|
|
79
|
+
}
|
|
80
|
+
get sprintId() {
|
|
81
|
+
return this._sprintId;
|
|
82
|
+
}
|
|
83
|
+
get storyPoints() {
|
|
84
|
+
return this._storyPoints;
|
|
85
|
+
}
|
|
86
|
+
get assignedAgent() {
|
|
87
|
+
return this._assignedAgent;
|
|
88
|
+
}
|
|
89
|
+
get acceptanceCriteria() {
|
|
90
|
+
return this._acceptanceCriteria;
|
|
91
|
+
}
|
|
92
|
+
get dependsOn() {
|
|
93
|
+
return this._dependsOn;
|
|
94
|
+
}
|
|
95
|
+
get blockedBy() {
|
|
96
|
+
return this._blockedBy;
|
|
97
|
+
}
|
|
98
|
+
get scopeDocPath() {
|
|
99
|
+
return this._scopeDocPath;
|
|
100
|
+
}
|
|
101
|
+
get reviewIterations() {
|
|
102
|
+
return this._reviewIterations;
|
|
103
|
+
}
|
|
104
|
+
/** Full history of statuses the card has passed through, oldest first. */
|
|
105
|
+
get statusHistory() {
|
|
106
|
+
return this._statusHistory;
|
|
107
|
+
}
|
|
108
|
+
/** Most recent previous status (last entry in history before current), or undefined. */
|
|
109
|
+
get previousStatus() {
|
|
110
|
+
return this._statusHistory.length > 0
|
|
111
|
+
? this._statusHistory[this._statusHistory.length - 1]
|
|
112
|
+
: undefined;
|
|
113
|
+
}
|
|
114
|
+
get groomingCompleted() {
|
|
115
|
+
return this._groomingCompleted;
|
|
116
|
+
}
|
|
117
|
+
get startedAt() {
|
|
118
|
+
return this._startedAt;
|
|
119
|
+
}
|
|
120
|
+
get completedAt() {
|
|
121
|
+
return this._completedAt;
|
|
122
|
+
}
|
|
123
|
+
/** Optional linked pipeline identifier. */
|
|
124
|
+
get pipelineId() {
|
|
125
|
+
return this._pipelineId;
|
|
126
|
+
}
|
|
127
|
+
/** Current gate tasks for the card's active phase. */
|
|
128
|
+
get gateTasks() {
|
|
129
|
+
return this._gateTasks;
|
|
130
|
+
}
|
|
131
|
+
/** Timestamp of the last status transition (for cooldown enforcement). */
|
|
132
|
+
get lastTransitionAt() {
|
|
133
|
+
return this._lastTransitionAt;
|
|
134
|
+
}
|
|
135
|
+
/** Link this card to a pipeline run. */
|
|
136
|
+
linkPipeline(pipelineId) {
|
|
137
|
+
this._pipelineId = pipelineId;
|
|
138
|
+
}
|
|
139
|
+
// ── Factory Methods ─────────────────────────────────────────────
|
|
140
|
+
/** Create a new card in Backlog status. */
|
|
141
|
+
static create(params) {
|
|
142
|
+
const trimmed = params.title.trim();
|
|
143
|
+
if (trimmed.length === 0) {
|
|
144
|
+
throw new Error("Card: title cannot be empty");
|
|
145
|
+
}
|
|
146
|
+
return new Card({
|
|
147
|
+
id: params.id,
|
|
148
|
+
workspace: params.workspace,
|
|
149
|
+
title: trimmed,
|
|
150
|
+
status: CardStatus.Backlog,
|
|
151
|
+
priority: params.priority ?? Priority.Medium,
|
|
152
|
+
...(params.description !== undefined
|
|
153
|
+
? { description: params.description }
|
|
154
|
+
: {}),
|
|
155
|
+
...(params.epicId !== undefined ? { epicId: params.epicId } : {}),
|
|
156
|
+
acceptanceCriteria: [],
|
|
157
|
+
dependsOn: [],
|
|
158
|
+
blockedBy: [],
|
|
159
|
+
gateTasks: [],
|
|
160
|
+
reviewIterations: 0,
|
|
161
|
+
statusHistory: [],
|
|
162
|
+
groomingCompleted: false,
|
|
163
|
+
createdAt: Timestamp.now(),
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
/** Reconstitute from persistence. */
|
|
167
|
+
static reconstitute(props) {
|
|
168
|
+
return new Card(props);
|
|
169
|
+
}
|
|
170
|
+
// ── State Transitions ───────────────────────────────────────────
|
|
171
|
+
/** Move card to a new status. Enforces state machine, review iterations, blocking. */
|
|
172
|
+
moveTo(newStatus) {
|
|
173
|
+
const allowed = CARD_TRANSITIONS[this._status];
|
|
174
|
+
if (!allowed.includes(newStatus)) {
|
|
175
|
+
throw new Error(`Card: invalid transition from "${this._status}" to "${newStatus}"`);
|
|
176
|
+
}
|
|
177
|
+
// Review iteration tracking
|
|
178
|
+
if (this._status === CardStatus.Review &&
|
|
179
|
+
newStatus === CardStatus.Doing) {
|
|
180
|
+
this._reviewIterations += 1;
|
|
181
|
+
if (this._reviewIterations > MAX_REVIEW_ITERATIONS) {
|
|
182
|
+
throw new Error(`Card: max review iterations (${MAX_REVIEW_ITERATIONS}) exceeded`);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
// Record every transition in the history (append current status before moving)
|
|
186
|
+
this._statusHistory.push(this._status);
|
|
187
|
+
// Reset grooming when card returns to backlog (needs re-grooming)
|
|
188
|
+
if (newStatus === CardStatus.Backlog) {
|
|
189
|
+
this._groomingCompleted = false;
|
|
190
|
+
}
|
|
191
|
+
// Track lifecycle timestamps
|
|
192
|
+
if (newStatus === CardStatus.Doing && this._startedAt === undefined) {
|
|
193
|
+
this._startedAt = Timestamp.now();
|
|
194
|
+
}
|
|
195
|
+
if (newStatus === CardStatus.Done) {
|
|
196
|
+
this._completedAt = Timestamp.now();
|
|
197
|
+
}
|
|
198
|
+
this._status = newStatus;
|
|
199
|
+
this._lastTransitionAt = Timestamp.now();
|
|
200
|
+
}
|
|
201
|
+
/** Mark grooming as completed. Must be in Grooming status. */
|
|
202
|
+
completeGrooming() {
|
|
203
|
+
if (this._status !== CardStatus.Grooming) {
|
|
204
|
+
throw new Error(`Card: grooming can only be completed in grooming status, current: "${this._status}"`);
|
|
205
|
+
}
|
|
206
|
+
this._groomingCompleted = true;
|
|
207
|
+
}
|
|
208
|
+
// ── Gate Task Operations ─────────────────────────────────────────
|
|
209
|
+
/**
|
|
210
|
+
* Initialize gate tasks from definitions for the current phase.
|
|
211
|
+
* Called when a card enters a gated phase (doing, review, tested).
|
|
212
|
+
* Replaces any existing gate tasks.
|
|
213
|
+
*/
|
|
214
|
+
initGateTasks(definitions) {
|
|
215
|
+
this._gateTasks = definitions.map((def) => ({
|
|
216
|
+
description: def.description,
|
|
217
|
+
phase: this._status,
|
|
218
|
+
required: def.required,
|
|
219
|
+
autoVerify: def.autoVerify,
|
|
220
|
+
met: false,
|
|
221
|
+
evidence: undefined,
|
|
222
|
+
metAt: undefined,
|
|
223
|
+
}));
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* Mark a gate task as met with evidence.
|
|
227
|
+
* @param index 0-based index into the gateTasks array
|
|
228
|
+
* @param evidence Description of evidence (commit hash, test output, etc.)
|
|
229
|
+
*/
|
|
230
|
+
meetGateTask(index, evidence) {
|
|
231
|
+
const gate = this._gateTasks[index];
|
|
232
|
+
if (gate === undefined) {
|
|
233
|
+
throw new Error(`Card: gate task at index ${index} not found`);
|
|
234
|
+
}
|
|
235
|
+
if (gate.met) {
|
|
236
|
+
throw new Error(`Card: gate task at index ${index} is already met`);
|
|
237
|
+
}
|
|
238
|
+
const trimmed = evidence.trim();
|
|
239
|
+
if (trimmed.length === 0) {
|
|
240
|
+
throw new Error("Card: gate task evidence cannot be empty");
|
|
241
|
+
}
|
|
242
|
+
this._gateTasks[index] = {
|
|
243
|
+
...gate,
|
|
244
|
+
met: true,
|
|
245
|
+
evidence: trimmed,
|
|
246
|
+
metAt: new Date().toISOString(),
|
|
247
|
+
};
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* Auto-verify gate tasks that support automatic checking.
|
|
251
|
+
* Currently supports "ac-met" — checks if all acceptance criteria are met.
|
|
252
|
+
*/
|
|
253
|
+
autoVerifyGates() {
|
|
254
|
+
const allAcMet = this._acceptanceCriteria.length > 0 &&
|
|
255
|
+
this._acceptanceCriteria.every((ac) => ac.met);
|
|
256
|
+
for (let i = 0; i < this._gateTasks.length; i++) {
|
|
257
|
+
const gate = this._gateTasks[i];
|
|
258
|
+
if (gate === undefined || gate.met)
|
|
259
|
+
continue;
|
|
260
|
+
if (gate.autoVerify === "ac-met" && allAcMet) {
|
|
261
|
+
this._gateTasks[i] = {
|
|
262
|
+
...gate,
|
|
263
|
+
met: true,
|
|
264
|
+
evidence: "Auto-verified: all acceptance criteria met",
|
|
265
|
+
metAt: new Date().toISOString(),
|
|
266
|
+
};
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* Check if all required gate tasks for the current phase are met.
|
|
272
|
+
* Returns true if there are no gate tasks or all required ones are met.
|
|
273
|
+
*/
|
|
274
|
+
allRequiredGatesMet() {
|
|
275
|
+
return this._gateTasks
|
|
276
|
+
.filter((g) => g.required)
|
|
277
|
+
.every((g) => g.met);
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* Get list of unmet required gate tasks (for error messaging).
|
|
281
|
+
*/
|
|
282
|
+
unmetRequiredGates() {
|
|
283
|
+
return this._gateTasks.filter((g) => g.required && !g.met);
|
|
284
|
+
}
|
|
285
|
+
// ── Mutators ────────────────────────────────────────────────────
|
|
286
|
+
setTitle(title) {
|
|
287
|
+
const trimmed = title.trim();
|
|
288
|
+
if (trimmed.length === 0) {
|
|
289
|
+
throw new Error("Card: title cannot be empty");
|
|
290
|
+
}
|
|
291
|
+
this._title = trimmed;
|
|
292
|
+
}
|
|
293
|
+
setDescription(description) {
|
|
294
|
+
this._description = description.trim();
|
|
295
|
+
}
|
|
296
|
+
assignToEpic(epicId) {
|
|
297
|
+
this._epicId = epicId;
|
|
298
|
+
}
|
|
299
|
+
assignToSprint(sprintId) {
|
|
300
|
+
this._sprintId = sprintId;
|
|
301
|
+
}
|
|
302
|
+
setStoryPoints(points) {
|
|
303
|
+
this._storyPoints = points;
|
|
304
|
+
}
|
|
305
|
+
assignAgent(agent) {
|
|
306
|
+
const trimmed = agent.trim();
|
|
307
|
+
if (trimmed.length === 0) {
|
|
308
|
+
throw new Error("Card: agent name cannot be empty");
|
|
309
|
+
}
|
|
310
|
+
this._assignedAgent = trimmed;
|
|
311
|
+
}
|
|
312
|
+
setPriority(priority) {
|
|
313
|
+
this._priority = priority;
|
|
314
|
+
}
|
|
315
|
+
/** Link this card's scope document in the vault. */
|
|
316
|
+
setScopeDocPath(path) {
|
|
317
|
+
this._scopeDocPath = path;
|
|
318
|
+
}
|
|
319
|
+
/** Add a dependency: this card depends on the given card. */
|
|
320
|
+
addDependsOn(cardId) {
|
|
321
|
+
if (cardId.equals(this.id)) {
|
|
322
|
+
throw new Error("Card: cannot depend on itself");
|
|
323
|
+
}
|
|
324
|
+
if (this._dependsOn.some((id) => id.equals(cardId))) {
|
|
325
|
+
throw new Error(`Card: already depends on ${cardId.value}`);
|
|
326
|
+
}
|
|
327
|
+
this._dependsOn.push(cardId);
|
|
328
|
+
}
|
|
329
|
+
/** Remove a dependency. */
|
|
330
|
+
removeDependsOn(cardId) {
|
|
331
|
+
const index = this._dependsOn.findIndex((id) => id.equals(cardId));
|
|
332
|
+
if (index === -1) {
|
|
333
|
+
throw new Error(`Card: dependency on ${cardId.value} not found`);
|
|
334
|
+
}
|
|
335
|
+
this._dependsOn.splice(index, 1);
|
|
336
|
+
}
|
|
337
|
+
/** Mark this card as blocked by another card. */
|
|
338
|
+
addBlockedBy(cardId) {
|
|
339
|
+
if (cardId.equals(this.id)) {
|
|
340
|
+
throw new Error("Card: cannot be blocked by itself");
|
|
341
|
+
}
|
|
342
|
+
if (this._blockedBy.some((id) => id.equals(cardId))) {
|
|
343
|
+
throw new Error(`Card: already blocked by ${cardId.value}`);
|
|
344
|
+
}
|
|
345
|
+
this._blockedBy.push(cardId);
|
|
346
|
+
}
|
|
347
|
+
/** Remove a blocker. */
|
|
348
|
+
removeBlockedBy(cardId) {
|
|
349
|
+
const index = this._blockedBy.findIndex((id) => id.equals(cardId));
|
|
350
|
+
if (index === -1) {
|
|
351
|
+
throw new Error(`Card: blocker ${cardId.value} not found`);
|
|
352
|
+
}
|
|
353
|
+
this._blockedBy.splice(index, 1);
|
|
354
|
+
}
|
|
355
|
+
addAcceptanceCriterion(description) {
|
|
356
|
+
const trimmed = description.trim();
|
|
357
|
+
if (trimmed.length === 0) {
|
|
358
|
+
throw new Error("Card: acceptance criterion cannot be empty");
|
|
359
|
+
}
|
|
360
|
+
this._acceptanceCriteria.push({ description: trimmed, met: false });
|
|
361
|
+
}
|
|
362
|
+
meetAcceptanceCriterion(index) {
|
|
363
|
+
// ACs can be marked met during any active phase, including grooming
|
|
364
|
+
// (agents verify AC during implementation) and blocked (partial progress).
|
|
365
|
+
const allowedStatuses = [
|
|
366
|
+
CardStatus.Grooming,
|
|
367
|
+
CardStatus.Doing,
|
|
368
|
+
CardStatus.Review,
|
|
369
|
+
CardStatus.Tested,
|
|
370
|
+
CardStatus.Blocked,
|
|
371
|
+
];
|
|
372
|
+
if (!allowedStatuses.includes(this._status)) {
|
|
373
|
+
throw new Error(`Card: acceptance criteria can only be met in grooming/doing/review/tested/blocked status, ` +
|
|
374
|
+
`current: "${this._status}"`);
|
|
375
|
+
}
|
|
376
|
+
const criterion = this._acceptanceCriteria[index];
|
|
377
|
+
if (criterion === undefined) {
|
|
378
|
+
throw new Error(`Card: acceptance criterion at index ${index} not found`);
|
|
379
|
+
}
|
|
380
|
+
this._acceptanceCriteria[index] = { ...criterion, met: true };
|
|
381
|
+
}
|
|
382
|
+
// ── Queries ─────────────────────────────────────────────────────
|
|
383
|
+
get isTerminal() {
|
|
384
|
+
return this._status === CardStatus.Done;
|
|
385
|
+
}
|
|
386
|
+
get isBlocked() {
|
|
387
|
+
return this._status === CardStatus.Blocked;
|
|
388
|
+
}
|
|
389
|
+
get isActive() {
|
|
390
|
+
return (this._status === CardStatus.Doing ||
|
|
391
|
+
this._status === CardStatus.Review ||
|
|
392
|
+
this._status === CardStatus.Blocked);
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
//# sourceMappingURL=entities.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entities.js","sourceRoot":"","sources":["../../../src/domain/kanban/entities.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kanban Enum Value Arrays
|
|
3
|
+
*
|
|
4
|
+
* Framework-agnostic string arrays derived from domain enums.
|
|
5
|
+
* These are the single source of truth for any layer that needs to
|
|
6
|
+
* validate, display, or constrain enum values — without coupling to
|
|
7
|
+
* any specific validation library (Zod, Joi, Yup, etc.).
|
|
8
|
+
*
|
|
9
|
+
* Usage in a Zod-based adapter:
|
|
10
|
+
* import { CARD_STATUS_VALUES } from "../../domain/kanban/enum-values.js";
|
|
11
|
+
* z.enum(CARD_STATUS_VALUES)
|
|
12
|
+
*
|
|
13
|
+
* Usage in a plain TypeScript validator:
|
|
14
|
+
* CARD_STATUS_VALUES.includes(value)
|
|
15
|
+
*
|
|
16
|
+
* DDD: Domain layer — zero external dependencies, pure TypeScript.
|
|
17
|
+
* SOLID: OCP — adding a new enum value in value-objects.ts propagates
|
|
18
|
+
* automatically; consumers never need to change.
|
|
19
|
+
* SOLID: DIP — consumers (tools, REST controllers, CLI adapters) depend
|
|
20
|
+
* on this abstraction, not on inline string literals.
|
|
21
|
+
*/
|
|
22
|
+
import { CardStatus, VALID_STORY_POINTS } from "./value-objects.js";
|
|
23
|
+
/**
|
|
24
|
+
* All valid card status strings as a non-empty tuple.
|
|
25
|
+
* Derived from `CardStatus` enum — framework-agnostic.
|
|
26
|
+
*/
|
|
27
|
+
export declare const CARD_STATUS_VALUES: [string, ...string[]];
|
|
28
|
+
/**
|
|
29
|
+
* All valid priority strings as a non-empty tuple.
|
|
30
|
+
* Derived from `Priority` enum — framework-agnostic.
|
|
31
|
+
*/
|
|
32
|
+
export declare const PRIORITY_VALUES: [string, ...string[]];
|
|
33
|
+
/**
|
|
34
|
+
* All valid sprint status strings as a non-empty tuple.
|
|
35
|
+
* Derived from `SprintStatus` enum — framework-agnostic.
|
|
36
|
+
*/
|
|
37
|
+
export declare const SPRINT_STATUS_VALUES: [string, ...string[]];
|
|
38
|
+
/**
|
|
39
|
+
* All valid epic status strings as a non-empty tuple.
|
|
40
|
+
* Derived from `EpicStatus` enum — framework-agnostic.
|
|
41
|
+
*/
|
|
42
|
+
export declare const EPIC_STATUS_VALUES: [string, ...string[]];
|
|
43
|
+
/**
|
|
44
|
+
* Valid Fibonacci story point numbers, re-exported for convenience.
|
|
45
|
+
* Consumers can use: VALID_STORY_POINTS.includes(value)
|
|
46
|
+
*/
|
|
47
|
+
export { VALID_STORY_POINTS };
|
|
48
|
+
/**
|
|
49
|
+
* Valid target statuses when unblocking a card.
|
|
50
|
+
* Subset of CardStatus: a blocked card can only be unblocked to doing or backlog.
|
|
51
|
+
*/
|
|
52
|
+
export declare const UNBLOCK_TARGET_VALUES: [CardStatus.Doing, CardStatus.Backlog];
|
|
53
|
+
//# sourceMappingURL=enum-values.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum-values.d.ts","sourceRoot":"","sources":["../../../src/domain/kanban/enum-values.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,OAAO,EACL,UAAU,EAIV,kBAAkB,EACnB,MAAM,oBAAoB,CAAC;AAI5B;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAgC,CAC7D,MAAM,EACN,GAAG,MAAM,EAAE,CACZ,CAAC;AAIF;;;GAGG;AACH,eAAO,MAAM,eAAe,EAA8B,CACxD,MAAM,EACN,GAAG,MAAM,EAAE,CACZ,CAAC;AAIF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAkC,CACjE,MAAM,EACN,GAAG,MAAM,EAAE,CACZ,CAAC;AAIF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAgC,CAC7D,MAAM,EACN,GAAG,MAAM,EAAE,CACZ,CAAC;AAIF;;;GAGG;AACH,OAAO,EAAE,kBAAkB,EAAE,CAAC;AAI9B;;;GAGG;AACH,eAAO,MAAM,qBAAqB,wCAGQ,CAAC"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kanban Enum Value Arrays
|
|
3
|
+
*
|
|
4
|
+
* Framework-agnostic string arrays derived from domain enums.
|
|
5
|
+
* These are the single source of truth for any layer that needs to
|
|
6
|
+
* validate, display, or constrain enum values — without coupling to
|
|
7
|
+
* any specific validation library (Zod, Joi, Yup, etc.).
|
|
8
|
+
*
|
|
9
|
+
* Usage in a Zod-based adapter:
|
|
10
|
+
* import { CARD_STATUS_VALUES } from "../../domain/kanban/enum-values.js";
|
|
11
|
+
* z.enum(CARD_STATUS_VALUES)
|
|
12
|
+
*
|
|
13
|
+
* Usage in a plain TypeScript validator:
|
|
14
|
+
* CARD_STATUS_VALUES.includes(value)
|
|
15
|
+
*
|
|
16
|
+
* DDD: Domain layer — zero external dependencies, pure TypeScript.
|
|
17
|
+
* SOLID: OCP — adding a new enum value in value-objects.ts propagates
|
|
18
|
+
* automatically; consumers never need to change.
|
|
19
|
+
* SOLID: DIP — consumers (tools, REST controllers, CLI adapters) depend
|
|
20
|
+
* on this abstraction, not on inline string literals.
|
|
21
|
+
*/
|
|
22
|
+
import { CardStatus, Priority, SprintStatus, EpicStatus, VALID_STORY_POINTS, } from "./value-objects.js";
|
|
23
|
+
// ── Card Status ───────────────────────────────────────────────────────
|
|
24
|
+
/**
|
|
25
|
+
* All valid card status strings as a non-empty tuple.
|
|
26
|
+
* Derived from `CardStatus` enum — framework-agnostic.
|
|
27
|
+
*/
|
|
28
|
+
export const CARD_STATUS_VALUES = Object.values(CardStatus);
|
|
29
|
+
// ── Priority ──────────────────────────────────────────────────────────
|
|
30
|
+
/**
|
|
31
|
+
* All valid priority strings as a non-empty tuple.
|
|
32
|
+
* Derived from `Priority` enum — framework-agnostic.
|
|
33
|
+
*/
|
|
34
|
+
export const PRIORITY_VALUES = Object.values(Priority);
|
|
35
|
+
// ── Sprint Status ─────────────────────────────────────────────────────
|
|
36
|
+
/**
|
|
37
|
+
* All valid sprint status strings as a non-empty tuple.
|
|
38
|
+
* Derived from `SprintStatus` enum — framework-agnostic.
|
|
39
|
+
*/
|
|
40
|
+
export const SPRINT_STATUS_VALUES = Object.values(SprintStatus);
|
|
41
|
+
// ── Epic Status ───────────────────────────────────────────────────────
|
|
42
|
+
/**
|
|
43
|
+
* All valid epic status strings as a non-empty tuple.
|
|
44
|
+
* Derived from `EpicStatus` enum — framework-agnostic.
|
|
45
|
+
*/
|
|
46
|
+
export const EPIC_STATUS_VALUES = Object.values(EpicStatus);
|
|
47
|
+
// ── Story Points ──────────────────────────────────────────────────────
|
|
48
|
+
/**
|
|
49
|
+
* Valid Fibonacci story point numbers, re-exported for convenience.
|
|
50
|
+
* Consumers can use: VALID_STORY_POINTS.includes(value)
|
|
51
|
+
*/
|
|
52
|
+
export { VALID_STORY_POINTS };
|
|
53
|
+
// ── Unblock Targets ───────────────────────────────────────────────────
|
|
54
|
+
/**
|
|
55
|
+
* Valid target statuses when unblocking a card.
|
|
56
|
+
* Subset of CardStatus: a blocked card can only be unblocked to doing or backlog.
|
|
57
|
+
*/
|
|
58
|
+
export const UNBLOCK_TARGET_VALUES = [
|
|
59
|
+
CardStatus.Doing,
|
|
60
|
+
CardStatus.Backlog,
|
|
61
|
+
];
|
|
62
|
+
//# sourceMappingURL=enum-values.js.map
|