@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,192 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sprint and Epic Entities
|
|
3
|
+
*
|
|
4
|
+
* Separate aggregate roots for sprint and epic management.
|
|
5
|
+
* Sprints are 2-week iterations containing cards.
|
|
6
|
+
* Epics are feature-level groupings spanning multiple sprints.
|
|
7
|
+
*
|
|
8
|
+
* DDD: Aggregate roots with their own lifecycle
|
|
9
|
+
* SOLID: SRP - sprint and epic lifecycle, split from Card (entities.ts)
|
|
10
|
+
*/
|
|
11
|
+
import { WorkspaceId, Timestamp } from "../shared/value-objects.js";
|
|
12
|
+
import { SprintId, SprintStatus, SPRINT_TRANSITIONS, EpicId, EpicStatus, Priority, } from "./value-objects.js";
|
|
13
|
+
// Re-export for convenience
|
|
14
|
+
export { SprintId, SprintStatus, EpicId, EpicStatus, Priority, WorkspaceId };
|
|
15
|
+
export class Sprint {
|
|
16
|
+
id;
|
|
17
|
+
workspace;
|
|
18
|
+
name;
|
|
19
|
+
createdAt;
|
|
20
|
+
_status;
|
|
21
|
+
_goal;
|
|
22
|
+
_startDate;
|
|
23
|
+
_endDate;
|
|
24
|
+
_velocityPlanned;
|
|
25
|
+
_velocityActual;
|
|
26
|
+
constructor(props) {
|
|
27
|
+
this.id = props.id;
|
|
28
|
+
this.workspace = props.workspace;
|
|
29
|
+
this.name = props.name;
|
|
30
|
+
this._status = props.status;
|
|
31
|
+
this._goal = props.goal;
|
|
32
|
+
this._startDate = props.startDate;
|
|
33
|
+
this._endDate = props.endDate;
|
|
34
|
+
this._velocityPlanned = props.velocityPlanned;
|
|
35
|
+
this._velocityActual = props.velocityActual;
|
|
36
|
+
this.createdAt = props.createdAt;
|
|
37
|
+
}
|
|
38
|
+
get status() {
|
|
39
|
+
return this._status;
|
|
40
|
+
}
|
|
41
|
+
get goal() {
|
|
42
|
+
return this._goal;
|
|
43
|
+
}
|
|
44
|
+
get startDate() {
|
|
45
|
+
return this._startDate;
|
|
46
|
+
}
|
|
47
|
+
get endDate() {
|
|
48
|
+
return this._endDate;
|
|
49
|
+
}
|
|
50
|
+
get velocityPlanned() {
|
|
51
|
+
return this._velocityPlanned;
|
|
52
|
+
}
|
|
53
|
+
get velocityActual() {
|
|
54
|
+
return this._velocityActual;
|
|
55
|
+
}
|
|
56
|
+
static create(params) {
|
|
57
|
+
const trimmed = params.name.trim();
|
|
58
|
+
if (trimmed.length === 0) {
|
|
59
|
+
throw new Error("Sprint: name cannot be empty");
|
|
60
|
+
}
|
|
61
|
+
return new Sprint({
|
|
62
|
+
id: params.id,
|
|
63
|
+
workspace: params.workspace,
|
|
64
|
+
name: trimmed,
|
|
65
|
+
status: SprintStatus.Planning,
|
|
66
|
+
...(params.goal !== undefined ? { goal: params.goal } : {}),
|
|
67
|
+
...(params.velocityPlanned !== undefined
|
|
68
|
+
? { velocityPlanned: params.velocityPlanned }
|
|
69
|
+
: {}),
|
|
70
|
+
createdAt: Timestamp.now(),
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
static reconstitute(props) {
|
|
74
|
+
return new Sprint(props);
|
|
75
|
+
}
|
|
76
|
+
/** Activate the sprint. Sets start date. */
|
|
77
|
+
activate() {
|
|
78
|
+
this.transitionTo(SprintStatus.Active);
|
|
79
|
+
this._startDate = Timestamp.now();
|
|
80
|
+
}
|
|
81
|
+
/** Close the sprint. Sets end date and actual velocity. */
|
|
82
|
+
close(velocityActual) {
|
|
83
|
+
this.transitionTo(SprintStatus.Closed);
|
|
84
|
+
this._endDate = Timestamp.now();
|
|
85
|
+
if (velocityActual !== undefined) {
|
|
86
|
+
this._velocityActual = velocityActual;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
/** Cancel the sprint. */
|
|
90
|
+
cancel() {
|
|
91
|
+
this.transitionTo(SprintStatus.Cancelled);
|
|
92
|
+
this._endDate = Timestamp.now();
|
|
93
|
+
}
|
|
94
|
+
setGoal(goal) {
|
|
95
|
+
this._goal = goal.trim();
|
|
96
|
+
}
|
|
97
|
+
setPlannedVelocity(velocity) {
|
|
98
|
+
if (velocity < 0) {
|
|
99
|
+
throw new Error("Sprint: velocity cannot be negative");
|
|
100
|
+
}
|
|
101
|
+
this._velocityPlanned = velocity;
|
|
102
|
+
}
|
|
103
|
+
get isActive() {
|
|
104
|
+
return this._status === SprintStatus.Active;
|
|
105
|
+
}
|
|
106
|
+
get isTerminal() {
|
|
107
|
+
return (this._status === SprintStatus.Closed ||
|
|
108
|
+
this._status === SprintStatus.Cancelled);
|
|
109
|
+
}
|
|
110
|
+
transitionTo(newStatus) {
|
|
111
|
+
const allowed = SPRINT_TRANSITIONS[this._status];
|
|
112
|
+
if (!allowed.includes(newStatus)) {
|
|
113
|
+
throw new Error(`Sprint: invalid transition from "${this._status}" to "${newStatus}"`);
|
|
114
|
+
}
|
|
115
|
+
this._status = newStatus;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
export class Epic {
|
|
119
|
+
id;
|
|
120
|
+
workspace;
|
|
121
|
+
title;
|
|
122
|
+
createdAt;
|
|
123
|
+
_status;
|
|
124
|
+
_priority;
|
|
125
|
+
_description;
|
|
126
|
+
_owner;
|
|
127
|
+
constructor(props) {
|
|
128
|
+
this.id = props.id;
|
|
129
|
+
this.workspace = props.workspace;
|
|
130
|
+
this.title = props.title;
|
|
131
|
+
this._status = props.status;
|
|
132
|
+
this._priority = props.priority;
|
|
133
|
+
this._description = props.description;
|
|
134
|
+
this._owner = props.owner;
|
|
135
|
+
this.createdAt = props.createdAt;
|
|
136
|
+
}
|
|
137
|
+
get status() {
|
|
138
|
+
return this._status;
|
|
139
|
+
}
|
|
140
|
+
get priority() {
|
|
141
|
+
return this._priority;
|
|
142
|
+
}
|
|
143
|
+
get description() {
|
|
144
|
+
return this._description;
|
|
145
|
+
}
|
|
146
|
+
get owner() {
|
|
147
|
+
return this._owner;
|
|
148
|
+
}
|
|
149
|
+
static create(params) {
|
|
150
|
+
const trimmed = params.title.trim();
|
|
151
|
+
if (trimmed.length === 0) {
|
|
152
|
+
throw new Error("Epic: title cannot be empty");
|
|
153
|
+
}
|
|
154
|
+
return new Epic({
|
|
155
|
+
id: params.id,
|
|
156
|
+
workspace: params.workspace,
|
|
157
|
+
title: trimmed,
|
|
158
|
+
status: EpicStatus.Backlog,
|
|
159
|
+
priority: params.priority ?? Priority.Medium,
|
|
160
|
+
...(params.description !== undefined
|
|
161
|
+
? { description: params.description }
|
|
162
|
+
: {}),
|
|
163
|
+
...(params.owner !== undefined ? { owner: params.owner } : {}),
|
|
164
|
+
createdAt: Timestamp.now(),
|
|
165
|
+
});
|
|
166
|
+
}
|
|
167
|
+
static reconstitute(props) {
|
|
168
|
+
return new Epic(props);
|
|
169
|
+
}
|
|
170
|
+
startWork() {
|
|
171
|
+
if (this._status !== EpicStatus.Backlog) {
|
|
172
|
+
throw new Error(`Epic: can only start work from backlog, current: "${this._status}"`);
|
|
173
|
+
}
|
|
174
|
+
this._status = EpicStatus.InProgress;
|
|
175
|
+
}
|
|
176
|
+
complete() {
|
|
177
|
+
if (this._status !== EpicStatus.InProgress) {
|
|
178
|
+
throw new Error(`Epic: can only complete from in_progress, current: "${this._status}"`);
|
|
179
|
+
}
|
|
180
|
+
this._status = EpicStatus.Done;
|
|
181
|
+
}
|
|
182
|
+
setDescription(description) {
|
|
183
|
+
this._description = description.trim();
|
|
184
|
+
}
|
|
185
|
+
setOwner(owner) {
|
|
186
|
+
this._owner = owner.trim();
|
|
187
|
+
}
|
|
188
|
+
setPriority(priority) {
|
|
189
|
+
this._priority = priority;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
//# sourceMappingURL=sprint.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sprint.js","sourceRoot":"","sources":["../../../src/domain/kanban/sprint.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kanban Value Objects
|
|
3
|
+
*
|
|
4
|
+
* Identity types and enums for the kanban bounded context.
|
|
5
|
+
* All are immutable, compared by value.
|
|
6
|
+
*
|
|
7
|
+
* DDD: Value Objects - no identity lifecycle, equality by value
|
|
8
|
+
* SOLID: SRP - each type handles one concern
|
|
9
|
+
*/
|
|
10
|
+
import { EntityId } from "../shared/value-objects.js";
|
|
11
|
+
/**
|
|
12
|
+
* Card status in the kanban pipeline.
|
|
13
|
+
*
|
|
14
|
+
* State machine:
|
|
15
|
+
* backlog -> grooming
|
|
16
|
+
* grooming -> ready, backlog (rejected)
|
|
17
|
+
* ready -> doing
|
|
18
|
+
* doing -> review, blocked
|
|
19
|
+
* blocked -> doing, backlog
|
|
20
|
+
* review -> tested, doing (changes requested, max 4 iterations)
|
|
21
|
+
* tested -> done, review (test failed)
|
|
22
|
+
* done -> (terminal)
|
|
23
|
+
*/
|
|
24
|
+
export declare enum CardStatus {
|
|
25
|
+
Backlog = "backlog",
|
|
26
|
+
Grooming = "grooming",
|
|
27
|
+
Ready = "ready",
|
|
28
|
+
Doing = "doing",
|
|
29
|
+
Review = "review",
|
|
30
|
+
Blocked = "blocked",
|
|
31
|
+
Tested = "tested",
|
|
32
|
+
Done = "done"
|
|
33
|
+
}
|
|
34
|
+
/** Valid card status transitions. */
|
|
35
|
+
export declare const CARD_TRANSITIONS: Record<CardStatus, readonly CardStatus[]>;
|
|
36
|
+
export declare enum SprintStatus {
|
|
37
|
+
Planning = "planning",
|
|
38
|
+
Active = "active",
|
|
39
|
+
Closed = "closed",
|
|
40
|
+
Cancelled = "cancelled"
|
|
41
|
+
}
|
|
42
|
+
/** Valid sprint status transitions. */
|
|
43
|
+
export declare const SPRINT_TRANSITIONS: Record<SprintStatus, readonly SprintStatus[]>;
|
|
44
|
+
export declare enum EpicStatus {
|
|
45
|
+
Backlog = "backlog",
|
|
46
|
+
InProgress = "in_progress",
|
|
47
|
+
Done = "done"
|
|
48
|
+
}
|
|
49
|
+
/** Valid epic status transitions. */
|
|
50
|
+
export declare const EPIC_TRANSITIONS: Record<EpicStatus, readonly EpicStatus[]>;
|
|
51
|
+
export declare enum Priority {
|
|
52
|
+
High = "high",
|
|
53
|
+
Medium = "medium",
|
|
54
|
+
Low = "low"
|
|
55
|
+
}
|
|
56
|
+
/** Valid Fibonacci-based story points. */
|
|
57
|
+
export declare const VALID_STORY_POINTS: readonly [1, 2, 3, 5, 8, 13, 21];
|
|
58
|
+
export type StoryPoints = (typeof VALID_STORY_POINTS)[number];
|
|
59
|
+
export declare function isValidStoryPoints(value: number): value is StoryPoints;
|
|
60
|
+
/**
|
|
61
|
+
* Minimum character length for each acceptance criterion description.
|
|
62
|
+
* Prevents vague, one-word criteria like "works" or "tests pass".
|
|
63
|
+
* Criteria should be specific and measurable.
|
|
64
|
+
*/
|
|
65
|
+
export declare const MIN_AC_DESCRIPTION_LENGTH = 10;
|
|
66
|
+
/** Maximum number of review iterations before escalation. */
|
|
67
|
+
export declare const MAX_REVIEW_ITERATIONS = 4;
|
|
68
|
+
/** Default WIP limits per column. null = no limit. */
|
|
69
|
+
export declare const DEFAULT_WIP_LIMITS: Record<CardStatus, number | null>;
|
|
70
|
+
/**
|
|
71
|
+
* Validated relative vault path to a card's scope document.
|
|
72
|
+
* Must be a non-empty string ending in .md, relative to the vault root.
|
|
73
|
+
*
|
|
74
|
+
* Examples: "03-Scope-Docs/CD-009-Grooming-Enhancement.md"
|
|
75
|
+
*
|
|
76
|
+
* DDD: Value Object - immutable, compared by value
|
|
77
|
+
*/
|
|
78
|
+
export declare class ScopeDocPath {
|
|
79
|
+
readonly value: string;
|
|
80
|
+
private constructor();
|
|
81
|
+
static create(path: string): ScopeDocPath;
|
|
82
|
+
static from(value: string): ScopeDocPath;
|
|
83
|
+
equals(other: ScopeDocPath): boolean;
|
|
84
|
+
toString(): string;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Auto-verification strategy for a gate task.
|
|
88
|
+
* - "ac-met": auto-verifies when all acceptance criteria are met
|
|
89
|
+
* - "none": requires manual evidence
|
|
90
|
+
*/
|
|
91
|
+
export type AutoVerifyType = "ac-met" | "none";
|
|
92
|
+
/**
|
|
93
|
+
* Definition of a single gate task for a kanban phase.
|
|
94
|
+
* Gate tasks are process exit-criteria (separate from product AC).
|
|
95
|
+
* @see docs/kanban/gate-tasks.md
|
|
96
|
+
*/
|
|
97
|
+
export interface GateTaskDefinition {
|
|
98
|
+
readonly description: string;
|
|
99
|
+
readonly required: boolean;
|
|
100
|
+
readonly autoVerify: AutoVerifyType;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Runtime gate task instance attached to a card.
|
|
104
|
+
* Created from GateTaskDefinition when a card enters a phase.
|
|
105
|
+
* Immutable once met — tracks evidence of completion.
|
|
106
|
+
*
|
|
107
|
+
* DDD: Value Object — no identity, compared by value
|
|
108
|
+
*/
|
|
109
|
+
export interface GateTask {
|
|
110
|
+
readonly description: string;
|
|
111
|
+
readonly phase: string;
|
|
112
|
+
readonly required: boolean;
|
|
113
|
+
readonly autoVerify: "ac-met" | "none";
|
|
114
|
+
readonly met: boolean;
|
|
115
|
+
readonly evidence: string | undefined;
|
|
116
|
+
readonly metAt: string | undefined;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Phases that support gate tasks (exit criteria before promotion).
|
|
120
|
+
* Only forward-moving active phases — not backlog, grooming, ready, or done.
|
|
121
|
+
*/
|
|
122
|
+
export declare const GATED_PHASES: readonly CardStatus[];
|
|
123
|
+
/**
|
|
124
|
+
* Card identifier. Format: CD-{NNN}
|
|
125
|
+
*/
|
|
126
|
+
export declare class CardId extends EntityId {
|
|
127
|
+
private constructor();
|
|
128
|
+
static create(sequence: number): CardId;
|
|
129
|
+
static from(value: string): CardId;
|
|
130
|
+
get sequence(): number;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Sprint identifier. Format: SP-{NNN}
|
|
134
|
+
*/
|
|
135
|
+
export declare class SprintId extends EntityId {
|
|
136
|
+
private constructor();
|
|
137
|
+
static create(sequence: number): SprintId;
|
|
138
|
+
static from(value: string): SprintId;
|
|
139
|
+
get sequence(): number;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* Epic identifier. Format: EP-{NNN}
|
|
143
|
+
*/
|
|
144
|
+
export declare class EpicId extends EntityId {
|
|
145
|
+
private constructor();
|
|
146
|
+
static create(sequence: number): EpicId;
|
|
147
|
+
static from(value: string): EpicId;
|
|
148
|
+
get sequence(): number;
|
|
149
|
+
}
|
|
150
|
+
//# sourceMappingURL=value-objects.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"value-objects.d.ts","sourceRoot":"","sources":["../../../src/domain/kanban/value-objects.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kanban Value Objects
|
|
3
|
+
*
|
|
4
|
+
* Identity types and enums for the kanban bounded context.
|
|
5
|
+
* All are immutable, compared by value.
|
|
6
|
+
*
|
|
7
|
+
* DDD: Value Objects - no identity lifecycle, equality by value
|
|
8
|
+
* SOLID: SRP - each type handles one concern
|
|
9
|
+
*/
|
|
10
|
+
import { EntityId } from "../shared/value-objects.js";
|
|
11
|
+
// ── Card Status ───────────────────────────────────────────────────────
|
|
12
|
+
/**
|
|
13
|
+
* Card status in the kanban pipeline.
|
|
14
|
+
*
|
|
15
|
+
* State machine:
|
|
16
|
+
* backlog -> grooming
|
|
17
|
+
* grooming -> ready, backlog (rejected)
|
|
18
|
+
* ready -> doing
|
|
19
|
+
* doing -> review, blocked
|
|
20
|
+
* blocked -> doing, backlog
|
|
21
|
+
* review -> tested, doing (changes requested, max 4 iterations)
|
|
22
|
+
* tested -> done, review (test failed)
|
|
23
|
+
* done -> (terminal)
|
|
24
|
+
*/
|
|
25
|
+
export var CardStatus;
|
|
26
|
+
(function (CardStatus) {
|
|
27
|
+
CardStatus["Backlog"] = "backlog";
|
|
28
|
+
CardStatus["Grooming"] = "grooming";
|
|
29
|
+
CardStatus["Ready"] = "ready";
|
|
30
|
+
CardStatus["Doing"] = "doing";
|
|
31
|
+
CardStatus["Review"] = "review";
|
|
32
|
+
CardStatus["Blocked"] = "blocked";
|
|
33
|
+
CardStatus["Tested"] = "tested";
|
|
34
|
+
CardStatus["Done"] = "done";
|
|
35
|
+
})(CardStatus || (CardStatus = {}));
|
|
36
|
+
/** Valid card status transitions. */
|
|
37
|
+
export const CARD_TRANSITIONS = {
|
|
38
|
+
[CardStatus.Backlog]: [CardStatus.Grooming],
|
|
39
|
+
[CardStatus.Grooming]: [CardStatus.Ready, CardStatus.Backlog],
|
|
40
|
+
[CardStatus.Ready]: [CardStatus.Doing],
|
|
41
|
+
[CardStatus.Doing]: [CardStatus.Review, CardStatus.Blocked],
|
|
42
|
+
[CardStatus.Blocked]: [CardStatus.Doing, CardStatus.Backlog],
|
|
43
|
+
[CardStatus.Review]: [CardStatus.Tested, CardStatus.Doing],
|
|
44
|
+
[CardStatus.Tested]: [CardStatus.Done, CardStatus.Review],
|
|
45
|
+
[CardStatus.Done]: [],
|
|
46
|
+
};
|
|
47
|
+
// ── Sprint Status ─────────────────────────────────────────────────────
|
|
48
|
+
export var SprintStatus;
|
|
49
|
+
(function (SprintStatus) {
|
|
50
|
+
SprintStatus["Planning"] = "planning";
|
|
51
|
+
SprintStatus["Active"] = "active";
|
|
52
|
+
SprintStatus["Closed"] = "closed";
|
|
53
|
+
SprintStatus["Cancelled"] = "cancelled";
|
|
54
|
+
})(SprintStatus || (SprintStatus = {}));
|
|
55
|
+
/** Valid sprint status transitions. */
|
|
56
|
+
export const SPRINT_TRANSITIONS = {
|
|
57
|
+
[SprintStatus.Planning]: [SprintStatus.Active, SprintStatus.Cancelled],
|
|
58
|
+
[SprintStatus.Active]: [SprintStatus.Closed, SprintStatus.Cancelled],
|
|
59
|
+
[SprintStatus.Closed]: [],
|
|
60
|
+
[SprintStatus.Cancelled]: [],
|
|
61
|
+
};
|
|
62
|
+
// ── Epic Status ───────────────────────────────────────────────────────
|
|
63
|
+
export var EpicStatus;
|
|
64
|
+
(function (EpicStatus) {
|
|
65
|
+
EpicStatus["Backlog"] = "backlog";
|
|
66
|
+
EpicStatus["InProgress"] = "in_progress";
|
|
67
|
+
EpicStatus["Done"] = "done";
|
|
68
|
+
})(EpicStatus || (EpicStatus = {}));
|
|
69
|
+
/** Valid epic status transitions. */
|
|
70
|
+
export const EPIC_TRANSITIONS = {
|
|
71
|
+
[EpicStatus.Backlog]: [EpicStatus.InProgress],
|
|
72
|
+
[EpicStatus.InProgress]: [EpicStatus.Done],
|
|
73
|
+
[EpicStatus.Done]: [],
|
|
74
|
+
};
|
|
75
|
+
// ── Priority ──────────────────────────────────────────────────────────
|
|
76
|
+
export var Priority;
|
|
77
|
+
(function (Priority) {
|
|
78
|
+
Priority["High"] = "high";
|
|
79
|
+
Priority["Medium"] = "medium";
|
|
80
|
+
Priority["Low"] = "low";
|
|
81
|
+
})(Priority || (Priority = {}));
|
|
82
|
+
// ── Story Points ──────────────────────────────────────────────────────
|
|
83
|
+
/** Valid Fibonacci-based story points. */
|
|
84
|
+
export const VALID_STORY_POINTS = [1, 2, 3, 5, 8, 13, 21];
|
|
85
|
+
export function isValidStoryPoints(value) {
|
|
86
|
+
return VALID_STORY_POINTS.includes(value);
|
|
87
|
+
}
|
|
88
|
+
// ── Acceptance Criteria Quality ───────────────────────────────────────
|
|
89
|
+
/**
|
|
90
|
+
* Minimum character length for each acceptance criterion description.
|
|
91
|
+
* Prevents vague, one-word criteria like "works" or "tests pass".
|
|
92
|
+
* Criteria should be specific and measurable.
|
|
93
|
+
*/
|
|
94
|
+
export const MIN_AC_DESCRIPTION_LENGTH = 10;
|
|
95
|
+
// ── Review Iterations ─────────────────────────────────────────────────
|
|
96
|
+
/** Maximum number of review iterations before escalation. */
|
|
97
|
+
export const MAX_REVIEW_ITERATIONS = 4;
|
|
98
|
+
// ── WIP Limits ────────────────────────────────────────────────────────
|
|
99
|
+
/** Default WIP limits per column. null = no limit. */
|
|
100
|
+
export const DEFAULT_WIP_LIMITS = {
|
|
101
|
+
[CardStatus.Backlog]: null,
|
|
102
|
+
[CardStatus.Grooming]: 5,
|
|
103
|
+
[CardStatus.Ready]: 10,
|
|
104
|
+
[CardStatus.Doing]: 3,
|
|
105
|
+
[CardStatus.Review]: 5,
|
|
106
|
+
[CardStatus.Blocked]: null,
|
|
107
|
+
[CardStatus.Tested]: null,
|
|
108
|
+
[CardStatus.Done]: null,
|
|
109
|
+
};
|
|
110
|
+
// ── Scope Document Path ───────────────────────────────────────────────
|
|
111
|
+
/**
|
|
112
|
+
* Validated relative vault path to a card's scope document.
|
|
113
|
+
* Must be a non-empty string ending in .md, relative to the vault root.
|
|
114
|
+
*
|
|
115
|
+
* Examples: "03-Scope-Docs/CD-009-Grooming-Enhancement.md"
|
|
116
|
+
*
|
|
117
|
+
* DDD: Value Object - immutable, compared by value
|
|
118
|
+
*/
|
|
119
|
+
export class ScopeDocPath {
|
|
120
|
+
value;
|
|
121
|
+
constructor(value) {
|
|
122
|
+
this.value = value;
|
|
123
|
+
}
|
|
124
|
+
static create(path) {
|
|
125
|
+
const trimmed = path.trim();
|
|
126
|
+
if (trimmed.length === 0) {
|
|
127
|
+
throw new Error("ScopeDocPath: path cannot be empty");
|
|
128
|
+
}
|
|
129
|
+
if (!trimmed.endsWith(".md")) {
|
|
130
|
+
throw new Error("ScopeDocPath: path must end with .md");
|
|
131
|
+
}
|
|
132
|
+
if (trimmed.startsWith("/")) {
|
|
133
|
+
throw new Error("ScopeDocPath: path must be relative (no leading /)");
|
|
134
|
+
}
|
|
135
|
+
return new ScopeDocPath(trimmed);
|
|
136
|
+
}
|
|
137
|
+
static from(value) {
|
|
138
|
+
return new ScopeDocPath(value);
|
|
139
|
+
}
|
|
140
|
+
equals(other) {
|
|
141
|
+
return this.value === other.value;
|
|
142
|
+
}
|
|
143
|
+
toString() {
|
|
144
|
+
return this.value;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Phases that support gate tasks (exit criteria before promotion).
|
|
149
|
+
* Only forward-moving active phases — not backlog, grooming, ready, or done.
|
|
150
|
+
*/
|
|
151
|
+
export const GATED_PHASES = [
|
|
152
|
+
CardStatus.Doing,
|
|
153
|
+
CardStatus.Review,
|
|
154
|
+
CardStatus.Tested,
|
|
155
|
+
];
|
|
156
|
+
// ── Identity Types ────────────────────────────────────────────────────
|
|
157
|
+
/**
|
|
158
|
+
* Card identifier. Format: CD-{NNN}
|
|
159
|
+
*/
|
|
160
|
+
export class CardId extends EntityId {
|
|
161
|
+
constructor(value) {
|
|
162
|
+
super(value);
|
|
163
|
+
}
|
|
164
|
+
static create(sequence) {
|
|
165
|
+
if (!Number.isInteger(sequence) || sequence <= 0) {
|
|
166
|
+
throw new Error("CardId: sequence must be a positive integer");
|
|
167
|
+
}
|
|
168
|
+
return new CardId(`CD-${String(sequence).padStart(3, "0")}`);
|
|
169
|
+
}
|
|
170
|
+
static from(value) {
|
|
171
|
+
return new CardId(value);
|
|
172
|
+
}
|
|
173
|
+
get sequence() {
|
|
174
|
+
const parts = this.value.split("-");
|
|
175
|
+
return Number(parts[1] ?? 0);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Sprint identifier. Format: SP-{NNN}
|
|
180
|
+
*/
|
|
181
|
+
export class SprintId extends EntityId {
|
|
182
|
+
constructor(value) {
|
|
183
|
+
super(value);
|
|
184
|
+
}
|
|
185
|
+
static create(sequence) {
|
|
186
|
+
if (!Number.isInteger(sequence) || sequence <= 0) {
|
|
187
|
+
throw new Error("SprintId: sequence must be a positive integer");
|
|
188
|
+
}
|
|
189
|
+
return new SprintId(`SP-${String(sequence).padStart(3, "0")}`);
|
|
190
|
+
}
|
|
191
|
+
static from(value) {
|
|
192
|
+
return new SprintId(value);
|
|
193
|
+
}
|
|
194
|
+
get sequence() {
|
|
195
|
+
const parts = this.value.split("-");
|
|
196
|
+
return Number(parts[1] ?? 0);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Epic identifier. Format: EP-{NNN}
|
|
201
|
+
*/
|
|
202
|
+
export class EpicId extends EntityId {
|
|
203
|
+
constructor(value) {
|
|
204
|
+
super(value);
|
|
205
|
+
}
|
|
206
|
+
static create(sequence) {
|
|
207
|
+
if (!Number.isInteger(sequence) || sequence <= 0) {
|
|
208
|
+
throw new Error("EpicId: sequence must be a positive integer");
|
|
209
|
+
}
|
|
210
|
+
return new EpicId(`EP-${String(sequence).padStart(3, "0")}`);
|
|
211
|
+
}
|
|
212
|
+
static from(value) {
|
|
213
|
+
return new EpicId(value);
|
|
214
|
+
}
|
|
215
|
+
get sequence() {
|
|
216
|
+
const parts = this.value.split("-");
|
|
217
|
+
return Number(parts[1] ?? 0);
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
//# sourceMappingURL=value-objects.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"value-objects.js","sourceRoot":"","sources":["../../../src/domain/kanban/value-objects.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Enum Value Arrays
|
|
3
|
+
*
|
|
4
|
+
* Framework-agnostic string arrays derived from domain as-const arrays.
|
|
5
|
+
* Zero external dependencies — pure TypeScript.
|
|
6
|
+
*
|
|
7
|
+
* Usage in a Zod adapter: z.enum(PIPELINE_STATUS_VALUES)
|
|
8
|
+
* Usage in plain validator: PIPELINE_STATUS_VALUES.includes(value)
|
|
9
|
+
*
|
|
10
|
+
* DDD: Domain layer — single source of truth for pipeline enum values.
|
|
11
|
+
* SOLID: OCP — new values propagate automatically to all consumers.
|
|
12
|
+
* SOLID: DIP — adapters depend on these constants, not on inline string literals.
|
|
13
|
+
*/
|
|
14
|
+
/** All valid gate type strings. Derived from {@link GATE_TYPES}. */
|
|
15
|
+
export declare const GATE_TYPE_VALUES: [string, ...string[]];
|
|
16
|
+
/** All valid gate status strings. Derived from {@link GATE_STATUSES}. */
|
|
17
|
+
export declare const GATE_STATUS_VALUES: [string, ...string[]];
|
|
18
|
+
/** All valid pipeline status strings. Derived from {@link PIPELINE_STATUSES}. */
|
|
19
|
+
export declare const PIPELINE_STATUS_VALUES: [string, ...string[]];
|
|
20
|
+
/** All valid pipeline scope strings. Derived from {@link PIPELINE_SCOPES}. */
|
|
21
|
+
export declare const PIPELINE_SCOPE_VALUES: [string, ...string[]];
|
|
22
|
+
/** All valid stack template strings. Derived from {@link STACK_TEMPLATES}. */
|
|
23
|
+
export declare const STACK_TEMPLATE_VALUES: [string, ...string[]];
|
|
24
|
+
/**
|
|
25
|
+
* Valid pipeline query operation types.
|
|
26
|
+
* These are tool-layer query verbs, defined here for co-location with
|
|
27
|
+
* other pipeline enum values.
|
|
28
|
+
*/
|
|
29
|
+
export declare const PIPELINE_QUERY_VALUES: ["get-pipeline", "list-pipelines", "list-templates"];
|
|
30
|
+
//# sourceMappingURL=enum-values.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum-values.d.ts","sourceRoot":"","sources":["../../../src/domain/pipeline/enum-values.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAUH,oEAAoE;AACpE,eAAO,MAAM,gBAAgB,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAmB,CAAC;AAEvE,yEAAyE;AACzE,eAAO,MAAM,kBAAkB,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAsB,CAAC;AAE5E,iFAAiF;AACjF,eAAO,MAAM,sBAAsB,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAExD,CAAC;AAEF,8EAA8E;AAC9E,eAAO,MAAM,qBAAqB,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAEvD,CAAC;AAEF,8EAA8E;AAC9E,eAAO,MAAM,qBAAqB,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAEvD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,sDAIQ,CAAC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Enum Value Arrays
|
|
3
|
+
*
|
|
4
|
+
* Framework-agnostic string arrays derived from domain as-const arrays.
|
|
5
|
+
* Zero external dependencies — pure TypeScript.
|
|
6
|
+
*
|
|
7
|
+
* Usage in a Zod adapter: z.enum(PIPELINE_STATUS_VALUES)
|
|
8
|
+
* Usage in plain validator: PIPELINE_STATUS_VALUES.includes(value)
|
|
9
|
+
*
|
|
10
|
+
* DDD: Domain layer — single source of truth for pipeline enum values.
|
|
11
|
+
* SOLID: OCP — new values propagate automatically to all consumers.
|
|
12
|
+
* SOLID: DIP — adapters depend on these constants, not on inline string literals.
|
|
13
|
+
*/
|
|
14
|
+
import { GATE_TYPES, GATE_STATUSES, PIPELINE_STATUSES, PIPELINE_SCOPES, STACK_TEMPLATES, } from "./value-objects.js";
|
|
15
|
+
/** All valid gate type strings. Derived from {@link GATE_TYPES}. */
|
|
16
|
+
export const GATE_TYPE_VALUES = [...GATE_TYPES];
|
|
17
|
+
/** All valid gate status strings. Derived from {@link GATE_STATUSES}. */
|
|
18
|
+
export const GATE_STATUS_VALUES = [...GATE_STATUSES];
|
|
19
|
+
/** All valid pipeline status strings. Derived from {@link PIPELINE_STATUSES}. */
|
|
20
|
+
export const PIPELINE_STATUS_VALUES = [
|
|
21
|
+
...PIPELINE_STATUSES,
|
|
22
|
+
];
|
|
23
|
+
/** All valid pipeline scope strings. Derived from {@link PIPELINE_SCOPES}. */
|
|
24
|
+
export const PIPELINE_SCOPE_VALUES = [
|
|
25
|
+
...PIPELINE_SCOPES,
|
|
26
|
+
];
|
|
27
|
+
/** All valid stack template strings. Derived from {@link STACK_TEMPLATES}. */
|
|
28
|
+
export const STACK_TEMPLATE_VALUES = [
|
|
29
|
+
...STACK_TEMPLATES,
|
|
30
|
+
];
|
|
31
|
+
/**
|
|
32
|
+
* Valid pipeline query operation types.
|
|
33
|
+
* These are tool-layer query verbs, defined here for co-location with
|
|
34
|
+
* other pipeline enum values.
|
|
35
|
+
*/
|
|
36
|
+
export const PIPELINE_QUERY_VALUES = [
|
|
37
|
+
"get-pipeline",
|
|
38
|
+
"list-pipelines",
|
|
39
|
+
"list-templates",
|
|
40
|
+
];
|
|
41
|
+
//# sourceMappingURL=enum-values.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum-values.js","sourceRoot":"","sources":["../../../src/domain/pipeline/enum-values.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EACL,UAAU,EACV,aAAa,EACb,iBAAiB,EACjB,eAAe,EACf,eAAe,GAChB,MAAM,oBAAoB,CAAC;AAE5B,oEAAoE;AACpE,MAAM,CAAC,MAAM,gBAAgB,GAA0B,CAAC,GAAG,UAAU,CAAC,CAAC;AAEvE,yEAAyE;AACzE,MAAM,CAAC,MAAM,kBAAkB,GAA0B,CAAC,GAAG,aAAa,CAAC,CAAC;AAE5E,iFAAiF;AACjF,MAAM,CAAC,MAAM,sBAAsB,GAA0B;IAC3D,GAAG,iBAAiB;CACrB,CAAC;AAEF,8EAA8E;AAC9E,MAAM,CAAC,MAAM,qBAAqB,GAA0B;IAC1D,GAAG,eAAe;CACnB,CAAC;AAEF,8EAA8E;AAC9E,MAAM,CAAC,MAAM,qBAAqB,GAA0B;IAC1D,GAAG,eAAe;CACnB,CAAC;AAEF;;;;GAIG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,cAAc;IACd,gBAAgB;IAChB,gBAAgB;CACwB,CAAC"}
|