@mc1global/opencode-jarvis 0.13.1 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +391 -0
- package/LICENSE +7 -123
- package/QUICK-GUIDE.md +67 -0
- package/README.md +417 -351
- package/dist/application/agent-registry/dtos.d.ts +66 -0
- package/dist/application/agent-registry/dtos.d.ts.map +1 -0
- package/dist/application/agent-registry/dtos.js +11 -0
- package/dist/application/agent-registry/dtos.js.map +1 -0
- package/dist/application/agent-registry/use-cases.d.ts +25 -0
- package/dist/application/agent-registry/use-cases.d.ts.map +1 -0
- package/dist/application/agent-registry/use-cases.js +223 -0
- package/dist/application/agent-registry/use-cases.js.map +1 -0
- package/dist/application/azure-sync/comment-intent-service.d.ts +73 -0
- package/dist/application/azure-sync/comment-intent-service.d.ts.map +1 -0
- package/dist/application/azure-sync/comment-intent-service.js +105 -0
- package/dist/application/azure-sync/comment-intent-service.js.map +1 -0
- package/dist/application/azure-sync/dtos.d.ts +210 -0
- package/dist/application/azure-sync/dtos.d.ts.map +1 -0
- package/dist/application/azure-sync/dtos.js +11 -0
- package/dist/application/azure-sync/dtos.js.map +1 -0
- package/dist/application/azure-sync/field-builders.d.ts +54 -0
- package/dist/application/azure-sync/field-builders.d.ts.map +1 -0
- package/dist/application/azure-sync/field-builders.js +166 -0
- package/dist/application/azure-sync/field-builders.js.map +1 -0
- package/dist/application/azure-sync/intent-executor.d.ts +54 -0
- package/dist/application/azure-sync/intent-executor.d.ts.map +1 -0
- package/dist/application/azure-sync/intent-executor.js +130 -0
- package/dist/application/azure-sync/intent-executor.js.map +1 -0
- package/dist/application/azure-sync/intent-reply-builder.d.ts +41 -0
- package/dist/application/azure-sync/intent-reply-builder.d.ts.map +1 -0
- package/dist/application/azure-sync/intent-reply-builder.js +57 -0
- package/dist/application/azure-sync/intent-reply-builder.js.map +1 -0
- package/dist/application/azure-sync/kanban-card-sync-adapter.d.ts +39 -0
- package/dist/application/azure-sync/kanban-card-sync-adapter.d.ts.map +1 -0
- package/dist/application/azure-sync/kanban-card-sync-adapter.js +74 -0
- package/dist/application/azure-sync/kanban-card-sync-adapter.js.map +1 -0
- package/dist/application/azure-sync/kanban-sync-ports.d.ts +60 -0
- package/dist/application/azure-sync/kanban-sync-ports.d.ts.map +1 -0
- package/dist/application/azure-sync/kanban-sync-ports.js +17 -0
- package/dist/application/azure-sync/kanban-sync-ports.js.map +1 -0
- package/dist/application/azure-sync/poll-service.d.ts +96 -0
- package/dist/application/azure-sync/poll-service.d.ts.map +1 -0
- package/dist/application/azure-sync/poll-service.js +273 -0
- package/dist/application/azure-sync/poll-service.js.map +1 -0
- package/dist/application/azure-sync/pr-use-cases.d.ts +36 -0
- package/dist/application/azure-sync/pr-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/pr-use-cases.js +187 -0
- package/dist/application/azure-sync/pr-use-cases.js.map +1 -0
- package/dist/application/azure-sync/pull-use-cases.d.ts +43 -0
- package/dist/application/azure-sync/pull-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/pull-use-cases.js +355 -0
- package/dist/application/azure-sync/pull-use-cases.js.map +1 -0
- package/dist/application/azure-sync/push-entity-use-cases.d.ts +40 -0
- package/dist/application/azure-sync/push-entity-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/push-entity-use-cases.js +266 -0
- package/dist/application/azure-sync/push-entity-use-cases.js.map +1 -0
- package/dist/application/azure-sync/push-use-cases.d.ts +46 -0
- package/dist/application/azure-sync/push-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/push-use-cases.js +152 -0
- package/dist/application/azure-sync/push-use-cases.js.map +1 -0
- package/dist/application/azure-sync/reverse-field-builder.d.ts +52 -0
- package/dist/application/azure-sync/reverse-field-builder.d.ts.map +1 -0
- package/dist/application/azure-sync/reverse-field-builder.js +130 -0
- package/dist/application/azure-sync/reverse-field-builder.js.map +1 -0
- package/dist/application/azure-sync/task-push-use-cases.d.ts +68 -0
- package/dist/application/azure-sync/task-push-use-cases.d.ts.map +1 -0
- package/dist/application/azure-sync/task-push-use-cases.js +163 -0
- package/dist/application/azure-sync/task-push-use-cases.js.map +1 -0
- package/dist/application/bootstrap/healthcheck-use-cases.d.ts +81 -0
- package/dist/application/bootstrap/healthcheck-use-cases.d.ts.map +1 -0
- package/dist/application/bootstrap/healthcheck-use-cases.js +302 -0
- package/dist/application/bootstrap/healthcheck-use-cases.js.map +1 -0
- package/dist/application/bootstrap/index.d.ts +12 -0
- package/dist/application/bootstrap/index.d.ts.map +1 -0
- package/dist/application/bootstrap/index.js +9 -0
- package/dist/application/bootstrap/index.js.map +1 -0
- package/dist/application/bootstrap/ports.d.ts +29 -0
- package/dist/application/bootstrap/ports.d.ts.map +1 -0
- package/dist/application/bootstrap/ports.js +12 -0
- package/dist/application/bootstrap/ports.js.map +1 -0
- package/dist/application/bootstrap/terminal-commands-use-cases.d.ts +72 -0
- package/dist/application/bootstrap/terminal-commands-use-cases.d.ts.map +1 -0
- package/dist/application/bootstrap/terminal-commands-use-cases.js +132 -0
- package/dist/application/bootstrap/terminal-commands-use-cases.js.map +1 -0
- package/dist/application/bootstrap/use-cases.d.ts +68 -0
- package/dist/application/bootstrap/use-cases.d.ts.map +1 -0
- package/dist/application/bootstrap/use-cases.js +209 -0
- package/dist/application/bootstrap/use-cases.js.map +1 -0
- package/dist/application/config/config-service.d.ts +54 -0
- package/dist/application/config/config-service.d.ts.map +1 -0
- package/dist/application/config/config-service.js +121 -0
- package/dist/application/config/config-service.js.map +1 -0
- package/dist/application/config/config-write-service.d.ts +67 -0
- package/dist/application/config/config-write-service.d.ts.map +1 -0
- package/dist/application/config/config-write-service.js +238 -0
- package/dist/application/config/config-write-service.js.map +1 -0
- package/dist/application/context-memory/dtos.d.ts +100 -0
- package/dist/application/context-memory/dtos.d.ts.map +1 -0
- package/dist/application/context-memory/dtos.js +11 -0
- package/dist/application/context-memory/dtos.js.map +1 -0
- package/dist/application/context-memory/execution-journal-use-cases.d.ts +69 -0
- package/dist/application/context-memory/execution-journal-use-cases.d.ts.map +1 -0
- package/dist/application/context-memory/execution-journal-use-cases.js +99 -0
- package/dist/application/context-memory/execution-journal-use-cases.js.map +1 -0
- package/dist/application/context-memory/note-use-cases.d.ts +22 -0
- package/dist/application/context-memory/note-use-cases.d.ts.map +1 -0
- package/dist/application/context-memory/note-use-cases.js +86 -0
- package/dist/application/context-memory/note-use-cases.js.map +1 -0
- package/dist/application/context-memory/session-use-cases.d.ts +23 -0
- package/dist/application/context-memory/session-use-cases.d.ts.map +1 -0
- package/dist/application/context-memory/session-use-cases.js +73 -0
- package/dist/application/context-memory/session-use-cases.js.map +1 -0
- package/dist/application/context-memory/todo-use-cases.d.ts +25 -0
- package/dist/application/context-memory/todo-use-cases.d.ts.map +1 -0
- package/dist/application/context-memory/todo-use-cases.js +110 -0
- package/dist/application/context-memory/todo-use-cases.js.map +1 -0
- package/dist/application/domain-map/dtos.d.ts +58 -0
- package/dist/application/domain-map/dtos.d.ts.map +1 -0
- package/dist/application/domain-map/dtos.js +11 -0
- package/dist/application/domain-map/dtos.js.map +1 -0
- package/dist/application/domain-map/use-cases.d.ts +44 -0
- package/dist/application/domain-map/use-cases.d.ts.map +1 -0
- package/dist/application/domain-map/use-cases.js +217 -0
- package/dist/application/domain-map/use-cases.js.map +1 -0
- package/dist/application/environment/use-cases.d.ts +98 -0
- package/dist/application/environment/use-cases.d.ts.map +1 -0
- package/dist/application/environment/use-cases.js +236 -0
- package/dist/application/environment/use-cases.js.map +1 -0
- package/dist/application/governance/dtos.d.ts +29 -0
- package/dist/application/governance/dtos.d.ts.map +1 -0
- package/dist/application/governance/dtos.js +11 -0
- package/dist/application/governance/dtos.js.map +1 -0
- package/dist/application/governance/validation-use-cases.d.ts +27 -0
- package/dist/application/governance/validation-use-cases.d.ts.map +1 -0
- package/dist/application/governance/validation-use-cases.js +62 -0
- package/dist/application/governance/validation-use-cases.js.map +1 -0
- package/dist/application/kanban/board-use-cases.d.ts +39 -0
- package/dist/application/kanban/board-use-cases.d.ts.map +1 -0
- package/dist/application/kanban/board-use-cases.js +111 -0
- package/dist/application/kanban/board-use-cases.js.map +1 -0
- package/dist/application/kanban/card-gate-use-cases.d.ts +24 -0
- package/dist/application/kanban/card-gate-use-cases.d.ts.map +1 -0
- package/dist/application/kanban/card-gate-use-cases.js +71 -0
- package/dist/application/kanban/card-gate-use-cases.js.map +1 -0
- package/dist/application/kanban/card-use-cases.d.ts +64 -0
- package/dist/application/kanban/card-use-cases.d.ts.map +1 -0
- package/dist/application/kanban/card-use-cases.js +364 -0
- package/dist/application/kanban/card-use-cases.js.map +1 -0
- package/dist/application/kanban/dtos.d.ts +238 -0
- package/dist/application/kanban/dtos.d.ts.map +1 -0
- package/dist/application/kanban/dtos.js +48 -0
- package/dist/application/kanban/dtos.js.map +1 -0
- package/dist/application/kanban/sprint-use-cases.d.ts +34 -0
- package/dist/application/kanban/sprint-use-cases.d.ts.map +1 -0
- package/dist/application/kanban/sprint-use-cases.js +253 -0
- package/dist/application/kanban/sprint-use-cases.js.map +1 -0
- package/dist/application/pipeline/dtos.d.ts +219 -0
- package/dist/application/pipeline/dtos.d.ts.map +1 -0
- package/dist/application/pipeline/dtos.js +11 -0
- package/dist/application/pipeline/dtos.js.map +1 -0
- package/dist/application/pipeline/use-cases.d.ts +64 -0
- package/dist/application/pipeline/use-cases.d.ts.map +1 -0
- package/dist/application/pipeline/use-cases.js +414 -0
- package/dist/application/pipeline/use-cases.js.map +1 -0
- package/dist/application/rag/dtos.d.ts +119 -0
- package/dist/application/rag/dtos.d.ts.map +1 -0
- package/dist/application/rag/dtos.js +11 -0
- package/dist/application/rag/dtos.js.map +1 -0
- package/dist/application/rag/oracle-use-cases.d.ts +30 -0
- package/dist/application/rag/oracle-use-cases.d.ts.map +1 -0
- package/dist/application/rag/oracle-use-cases.js +101 -0
- package/dist/application/rag/oracle-use-cases.js.map +1 -0
- package/dist/application/rag/rag-mutation-use-cases.d.ts +61 -0
- package/dist/application/rag/rag-mutation-use-cases.d.ts.map +1 -0
- package/dist/application/rag/rag-mutation-use-cases.js +155 -0
- package/dist/application/rag/rag-mutation-use-cases.js.map +1 -0
- package/dist/application/rag/use-cases.d.ts +50 -0
- package/dist/application/rag/use-cases.d.ts.map +1 -0
- package/dist/application/rag/use-cases.js +283 -0
- package/dist/application/rag/use-cases.js.map +1 -0
- package/dist/application/token-metrics/dtos.d.ts +138 -0
- package/dist/application/token-metrics/dtos.d.ts.map +1 -0
- package/dist/application/token-metrics/dtos.js +11 -0
- package/dist/application/token-metrics/dtos.js.map +1 -0
- package/dist/application/token-metrics/tracking-use-cases.d.ts +54 -0
- package/dist/application/token-metrics/tracking-use-cases.d.ts.map +1 -0
- package/dist/application/token-metrics/tracking-use-cases.js +298 -0
- package/dist/application/token-metrics/tracking-use-cases.js.map +1 -0
- package/dist/application/vault/dtos.d.ts +91 -0
- package/dist/application/vault/dtos.d.ts.map +1 -0
- package/dist/application/vault/dtos.js +11 -0
- package/dist/application/vault/dtos.js.map +1 -0
- package/dist/application/vault/use-cases.d.ts +30 -0
- package/dist/application/vault/use-cases.d.ts.map +1 -0
- package/dist/application/vault/use-cases.js +318 -0
- package/dist/application/vault/use-cases.js.map +1 -0
- package/dist/application/vault/vault-manager.d.ts +47 -0
- package/dist/application/vault/vault-manager.d.ts.map +1 -0
- package/dist/application/vault/vault-manager.js +292 -0
- package/dist/application/vault/vault-manager.js.map +1 -0
- package/dist/application/workspace-registry/dtos.d.ts +91 -0
- package/dist/application/workspace-registry/dtos.d.ts.map +1 -0
- package/dist/application/workspace-registry/dtos.js +11 -0
- package/dist/application/workspace-registry/dtos.js.map +1 -0
- package/dist/application/workspace-registry/use-cases.d.ts +79 -0
- package/dist/application/workspace-registry/use-cases.d.ts.map +1 -0
- package/dist/application/workspace-registry/use-cases.js +250 -0
- package/dist/application/workspace-registry/use-cases.js.map +1 -0
- package/dist/composition/hooks.d.ts +15 -0
- package/dist/composition/hooks.d.ts.map +1 -0
- package/dist/composition/hooks.js +113 -0
- package/dist/composition/hooks.js.map +1 -0
- package/dist/composition/infrastructure.d.ts +84 -0
- package/dist/composition/infrastructure.d.ts.map +1 -0
- package/dist/composition/infrastructure.js +140 -0
- package/dist/composition/infrastructure.js.map +1 -0
- package/dist/composition/services.d.ts +78 -0
- package/dist/composition/services.d.ts.map +1 -0
- package/dist/composition/services.js +335 -0
- package/dist/composition/services.js.map +1 -0
- package/dist/composition/tools.d.ts +15 -0
- package/dist/composition/tools.d.ts.map +1 -0
- package/dist/composition/tools.js +136 -0
- package/dist/composition/tools.js.map +1 -0
- package/dist/domain/agent-registry/entities.d.ts +68 -0
- package/dist/domain/agent-registry/entities.d.ts.map +1 -0
- package/dist/domain/agent-registry/entities.js +177 -0
- package/dist/domain/agent-registry/entities.js.map +1 -0
- package/dist/domain/agent-registry/enum-values.d.ts +15 -0
- package/dist/domain/agent-registry/enum-values.d.ts.map +1 -0
- package/dist/domain/agent-registry/enum-values.js +15 -0
- package/dist/domain/agent-registry/enum-values.js.map +1 -0
- package/dist/domain/agent-registry/repositories.d.ts +56 -0
- package/dist/domain/agent-registry/repositories.d.ts.map +1 -0
- package/dist/domain/agent-registry/repositories.js +12 -0
- package/dist/domain/agent-registry/repositories.js.map +1 -0
- package/dist/domain/agent-registry/services.d.ts +87 -0
- package/dist/domain/agent-registry/services.d.ts.map +1 -0
- package/dist/domain/agent-registry/services.js +188 -0
- package/dist/domain/agent-registry/services.js.map +1 -0
- package/dist/domain/agent-registry/value-objects.d.ts +145 -0
- package/dist/domain/agent-registry/value-objects.d.ts.map +1 -0
- package/dist/domain/agent-registry/value-objects.js +339 -0
- package/dist/domain/agent-registry/value-objects.js.map +1 -0
- package/dist/domain/azure-sync/entities.d.ts +140 -0
- package/dist/domain/azure-sync/entities.d.ts.map +1 -0
- package/dist/domain/azure-sync/entities.js +173 -0
- package/dist/domain/azure-sync/entities.js.map +1 -0
- package/dist/domain/azure-sync/enum-values.d.ts +25 -0
- package/dist/domain/azure-sync/enum-values.d.ts.map +1 -0
- package/dist/domain/azure-sync/enum-values.js +33 -0
- package/dist/domain/azure-sync/enum-values.js.map +1 -0
- package/dist/domain/azure-sync/llm-port.d.ts +85 -0
- package/dist/domain/azure-sync/llm-port.d.ts.map +1 -0
- package/dist/domain/azure-sync/llm-port.js +12 -0
- package/dist/domain/azure-sync/llm-port.js.map +1 -0
- package/dist/domain/azure-sync/ports.d.ts +128 -0
- package/dist/domain/azure-sync/ports.d.ts.map +1 -0
- package/dist/domain/azure-sync/ports.js +13 -0
- package/dist/domain/azure-sync/ports.js.map +1 -0
- package/dist/domain/azure-sync/repositories.d.ts +73 -0
- package/dist/domain/azure-sync/repositories.d.ts.map +1 -0
- package/dist/domain/azure-sync/repositories.js +11 -0
- package/dist/domain/azure-sync/repositories.js.map +1 -0
- package/dist/domain/azure-sync/services.d.ts +107 -0
- package/dist/domain/azure-sync/services.d.ts.map +1 -0
- package/dist/domain/azure-sync/services.js +316 -0
- package/dist/domain/azure-sync/services.js.map +1 -0
- package/dist/domain/azure-sync/sync-log-entities.d.ts +124 -0
- package/dist/domain/azure-sync/sync-log-entities.d.ts.map +1 -0
- package/dist/domain/azure-sync/sync-log-entities.js +129 -0
- package/dist/domain/azure-sync/sync-log-entities.js.map +1 -0
- package/dist/domain/azure-sync/sync-state-maps.d.ts +44 -0
- package/dist/domain/azure-sync/sync-state-maps.d.ts.map +1 -0
- package/dist/domain/azure-sync/sync-state-maps.js +134 -0
- package/dist/domain/azure-sync/sync-state-maps.js.map +1 -0
- package/dist/domain/azure-sync/value-objects.d.ts +122 -0
- package/dist/domain/azure-sync/value-objects.d.ts.map +1 -0
- package/dist/domain/azure-sync/value-objects.js +272 -0
- package/dist/domain/azure-sync/value-objects.js.map +1 -0
- package/dist/domain/config/repositories.d.ts +56 -0
- package/dist/domain/config/repositories.d.ts.map +1 -0
- package/dist/domain/config/repositories.js +12 -0
- package/dist/domain/config/repositories.js.map +1 -0
- package/dist/domain/config/value-objects.d.ts +129 -0
- package/dist/domain/config/value-objects.d.ts.map +1 -0
- package/dist/domain/config/value-objects.js +129 -0
- package/dist/domain/config/value-objects.js.map +1 -0
- package/dist/domain/context-memory/entities.d.ts +5 -0
- package/dist/domain/context-memory/entities.d.ts.map +1 -0
- package/dist/domain/context-memory/entities.js +6 -0
- package/dist/domain/context-memory/entities.js.map +1 -0
- package/dist/domain/context-memory/enum-values.d.ts +22 -0
- package/dist/domain/context-memory/enum-values.d.ts.map +1 -0
- package/dist/domain/context-memory/enum-values.js +23 -0
- package/dist/domain/context-memory/enum-values.js.map +1 -0
- package/dist/domain/context-memory/execution-entry.d.ts +41 -0
- package/dist/domain/context-memory/execution-entry.d.ts.map +1 -0
- package/dist/domain/context-memory/execution-entry.js +82 -0
- package/dist/domain/context-memory/execution-entry.js.map +1 -0
- package/dist/domain/context-memory/note.d.ts +31 -0
- package/dist/domain/context-memory/note.d.ts.map +1 -0
- package/dist/domain/context-memory/note.js +42 -0
- package/dist/domain/context-memory/note.js.map +1 -0
- package/dist/domain/context-memory/repositories.d.ts +59 -0
- package/dist/domain/context-memory/repositories.d.ts.map +1 -0
- package/dist/domain/context-memory/repositories.js +9 -0
- package/dist/domain/context-memory/repositories.js.map +1 -0
- package/dist/domain/context-memory/services.d.ts +62 -0
- package/dist/domain/context-memory/services.d.ts.map +1 -0
- package/dist/domain/context-memory/services.js +176 -0
- package/dist/domain/context-memory/services.js.map +1 -0
- package/dist/domain/context-memory/session.d.ts +39 -0
- package/dist/domain/context-memory/session.d.ts.map +1 -0
- package/dist/domain/context-memory/session.js +81 -0
- package/dist/domain/context-memory/session.js.map +1 -0
- package/dist/domain/context-memory/todo.d.ts +46 -0
- package/dist/domain/context-memory/todo.d.ts.map +1 -0
- package/dist/domain/context-memory/todo.js +96 -0
- package/dist/domain/context-memory/todo.js.map +1 -0
- package/dist/domain/context-memory/value-objects.d.ts +82 -0
- package/dist/domain/context-memory/value-objects.d.ts.map +1 -0
- package/dist/domain/context-memory/value-objects.js +143 -0
- package/dist/domain/context-memory/value-objects.js.map +1 -0
- package/dist/domain/data/ports.d.ts +18 -0
- package/dist/domain/data/ports.d.ts.map +1 -0
- package/dist/domain/data/ports.js +11 -0
- package/dist/domain/data/ports.js.map +1 -0
- package/dist/domain/domain-map/ports.d.ts +106 -0
- package/dist/domain/domain-map/ports.d.ts.map +1 -0
- package/dist/domain/domain-map/ports.js +12 -0
- package/dist/domain/domain-map/ports.js.map +1 -0
- package/dist/domain/domain-map/services.d.ts +108 -0
- package/dist/domain/domain-map/services.d.ts.map +1 -0
- package/dist/domain/domain-map/services.js +350 -0
- package/dist/domain/domain-map/services.js.map +1 -0
- package/dist/domain/domain-map/value-objects.d.ts +186 -0
- package/dist/domain/domain-map/value-objects.d.ts.map +1 -0
- package/dist/domain/domain-map/value-objects.js +215 -0
- package/dist/domain/domain-map/value-objects.js.map +1 -0
- package/dist/domain/environment/entities.d.ts +93 -0
- package/dist/domain/environment/entities.d.ts.map +1 -0
- package/dist/domain/environment/entities.js +207 -0
- package/dist/domain/environment/entities.js.map +1 -0
- package/dist/domain/environment/enum-values.d.ts +23 -0
- package/dist/domain/environment/enum-values.d.ts.map +1 -0
- package/dist/domain/environment/enum-values.js +31 -0
- package/dist/domain/environment/enum-values.js.map +1 -0
- package/dist/domain/environment/ports.d.ts +41 -0
- package/dist/domain/environment/ports.d.ts.map +1 -0
- package/dist/domain/environment/ports.js +12 -0
- package/dist/domain/environment/ports.js.map +1 -0
- package/dist/domain/environment/renderers.d.ts +30 -0
- package/dist/domain/environment/renderers.d.ts.map +1 -0
- package/dist/domain/environment/renderers.js +139 -0
- package/dist/domain/environment/renderers.js.map +1 -0
- package/dist/domain/environment/repositories.d.ts +73 -0
- package/dist/domain/environment/repositories.d.ts.map +1 -0
- package/dist/domain/environment/repositories.js +16 -0
- package/dist/domain/environment/repositories.js.map +1 -0
- package/dist/domain/environment/services.d.ts +62 -0
- package/dist/domain/environment/services.d.ts.map +1 -0
- package/dist/domain/environment/services.js +282 -0
- package/dist/domain/environment/services.js.map +1 -0
- package/dist/domain/environment/value-objects.d.ts +127 -0
- package/dist/domain/environment/value-objects.d.ts.map +1 -0
- package/dist/domain/environment/value-objects.js +179 -0
- package/dist/domain/environment/value-objects.js.map +1 -0
- package/dist/domain/governance/policies.d.ts +42 -0
- package/dist/domain/governance/policies.d.ts.map +1 -0
- package/dist/domain/governance/policies.js +376 -0
- package/dist/domain/governance/policies.js.map +1 -0
- package/dist/domain/governance/services.d.ts +38 -0
- package/dist/domain/governance/services.d.ts.map +1 -0
- package/dist/domain/governance/services.js +53 -0
- package/dist/domain/governance/services.js.map +1 -0
- package/dist/domain/kanban/card-props.d.ts +39 -0
- package/dist/domain/kanban/card-props.d.ts.map +1 -0
- package/dist/domain/kanban/card-props.js +9 -0
- package/dist/domain/kanban/card-props.js.map +1 -0
- package/dist/domain/kanban/entities.d.ts +134 -0
- package/dist/domain/kanban/entities.d.ts.map +1 -0
- package/dist/domain/kanban/entities.js +395 -0
- package/dist/domain/kanban/entities.js.map +1 -0
- package/dist/domain/kanban/enum-values.d.ts +53 -0
- package/dist/domain/kanban/enum-values.d.ts.map +1 -0
- package/dist/domain/kanban/enum-values.js +62 -0
- package/dist/domain/kanban/enum-values.js.map +1 -0
- package/dist/domain/kanban/grooming.d.ts +60 -0
- package/dist/domain/kanban/grooming.d.ts.map +1 -0
- package/dist/domain/kanban/grooming.js +113 -0
- package/dist/domain/kanban/grooming.js.map +1 -0
- package/dist/domain/kanban/repositories.d.ts +41 -0
- package/dist/domain/kanban/repositories.d.ts.map +1 -0
- package/dist/domain/kanban/repositories.js +9 -0
- package/dist/domain/kanban/repositories.js.map +1 -0
- package/dist/domain/kanban/services.d.ts +63 -0
- package/dist/domain/kanban/services.d.ts.map +1 -0
- package/dist/domain/kanban/services.js +192 -0
- package/dist/domain/kanban/services.js.map +1 -0
- package/dist/domain/kanban/sprint.d.ts +103 -0
- package/dist/domain/kanban/sprint.d.ts.map +1 -0
- package/dist/domain/kanban/sprint.js +192 -0
- package/dist/domain/kanban/sprint.js.map +1 -0
- package/dist/domain/kanban/value-objects.d.ts +150 -0
- package/dist/domain/kanban/value-objects.d.ts.map +1 -0
- package/dist/domain/kanban/value-objects.js +220 -0
- package/dist/domain/kanban/value-objects.js.map +1 -0
- package/dist/domain/pipeline/enum-values.d.ts +30 -0
- package/dist/domain/pipeline/enum-values.d.ts.map +1 -0
- package/dist/domain/pipeline/enum-values.js +41 -0
- package/dist/domain/pipeline/enum-values.js.map +1 -0
- package/dist/domain/pipeline/gate.d.ts +75 -0
- package/dist/domain/pipeline/gate.d.ts.map +1 -0
- package/dist/domain/pipeline/gate.js +158 -0
- package/dist/domain/pipeline/gate.js.map +1 -0
- package/dist/domain/pipeline/index.d.ts +13 -0
- package/dist/domain/pipeline/index.d.ts.map +1 -0
- package/dist/domain/pipeline/index.js +11 -0
- package/dist/domain/pipeline/index.js.map +1 -0
- package/dist/domain/pipeline/pipeline.d.ts +99 -0
- package/dist/domain/pipeline/pipeline.d.ts.map +1 -0
- package/dist/domain/pipeline/pipeline.js +262 -0
- package/dist/domain/pipeline/pipeline.js.map +1 -0
- package/dist/domain/pipeline/ports.d.ts +120 -0
- package/dist/domain/pipeline/ports.d.ts.map +1 -0
- package/dist/domain/pipeline/ports.js +12 -0
- package/dist/domain/pipeline/ports.js.map +1 -0
- package/dist/domain/pipeline/repositories.d.ts +66 -0
- package/dist/domain/pipeline/repositories.d.ts.map +1 -0
- package/dist/domain/pipeline/repositories.js +11 -0
- package/dist/domain/pipeline/repositories.js.map +1 -0
- package/dist/domain/pipeline/services.d.ts +77 -0
- package/dist/domain/pipeline/services.d.ts.map +1 -0
- package/dist/domain/pipeline/services.js +158 -0
- package/dist/domain/pipeline/services.js.map +1 -0
- package/dist/domain/pipeline/value-objects.d.ts +117 -0
- package/dist/domain/pipeline/value-objects.d.ts.map +1 -0
- package/dist/domain/pipeline/value-objects.js +312 -0
- package/dist/domain/pipeline/value-objects.js.map +1 -0
- package/dist/domain/rag/enum-values.d.ts +19 -0
- package/dist/domain/rag/enum-values.d.ts.map +1 -0
- package/dist/domain/rag/enum-values.js +24 -0
- package/dist/domain/rag/enum-values.js.map +1 -0
- package/dist/domain/rag/repositories.d.ts +194 -0
- package/dist/domain/rag/repositories.d.ts.map +1 -0
- package/dist/domain/rag/repositories.js +12 -0
- package/dist/domain/rag/repositories.js.map +1 -0
- package/dist/domain/rag/services.d.ts +67 -0
- package/dist/domain/rag/services.d.ts.map +1 -0
- package/dist/domain/rag/services.js +262 -0
- package/dist/domain/rag/services.js.map +1 -0
- package/dist/domain/rag/value-objects.d.ts +125 -0
- package/dist/domain/rag/value-objects.d.ts.map +1 -0
- package/dist/domain/rag/value-objects.js +120 -0
- package/dist/domain/rag/value-objects.js.map +1 -0
- package/dist/domain/shared/value-objects.d.ts +56 -0
- package/dist/domain/shared/value-objects.d.ts.map +1 -0
- package/dist/domain/shared/value-objects.js +89 -0
- package/dist/domain/shared/value-objects.js.map +1 -0
- package/dist/domain/token-metrics/entities.d.ts +90 -0
- package/dist/domain/token-metrics/entities.d.ts.map +1 -0
- package/dist/domain/token-metrics/entities.js +114 -0
- package/dist/domain/token-metrics/entities.js.map +1 -0
- package/dist/domain/token-metrics/ports.d.ts +79 -0
- package/dist/domain/token-metrics/ports.d.ts.map +1 -0
- package/dist/domain/token-metrics/ports.js +71 -0
- package/dist/domain/token-metrics/ports.js.map +1 -0
- package/dist/domain/token-metrics/repositories.d.ts +93 -0
- package/dist/domain/token-metrics/repositories.d.ts.map +1 -0
- package/dist/domain/token-metrics/repositories.js +12 -0
- package/dist/domain/token-metrics/repositories.js.map +1 -0
- package/dist/domain/token-metrics/value-objects.d.ts +81 -0
- package/dist/domain/token-metrics/value-objects.d.ts.map +1 -0
- package/dist/domain/token-metrics/value-objects.js +144 -0
- package/dist/domain/token-metrics/value-objects.js.map +1 -0
- package/dist/domain/vault/document.d.ts +71 -0
- package/dist/domain/vault/document.d.ts.map +1 -0
- package/dist/domain/vault/document.js +268 -0
- package/dist/domain/vault/document.js.map +1 -0
- package/dist/domain/vault/repositories.d.ts +35 -0
- package/dist/domain/vault/repositories.d.ts.map +1 -0
- package/dist/domain/vault/repositories.js +12 -0
- package/dist/domain/vault/repositories.js.map +1 -0
- package/dist/domain/vault/section.d.ts +33 -0
- package/dist/domain/vault/section.d.ts.map +1 -0
- package/dist/domain/vault/section.js +49 -0
- package/dist/domain/vault/section.js.map +1 -0
- package/dist/domain/vault/services.d.ts +59 -0
- package/dist/domain/vault/services.d.ts.map +1 -0
- package/dist/domain/vault/services.js +274 -0
- package/dist/domain/vault/services.js.map +1 -0
- package/dist/domain/vault/table.d.ts +59 -0
- package/dist/domain/vault/table.d.ts.map +1 -0
- package/dist/domain/vault/table.js +206 -0
- package/dist/domain/vault/table.js.map +1 -0
- package/dist/domain/vault/value-objects.d.ts +45 -0
- package/dist/domain/vault/value-objects.d.ts.map +1 -0
- package/dist/domain/vault/value-objects.js +91 -0
- package/dist/domain/vault/value-objects.js.map +1 -0
- package/dist/domain/workspace-registry/entities.d.ts +78 -0
- package/dist/domain/workspace-registry/entities.d.ts.map +1 -0
- package/dist/domain/workspace-registry/entities.js +148 -0
- package/dist/domain/workspace-registry/entities.js.map +1 -0
- package/dist/domain/workspace-registry/enum-values.d.ts +19 -0
- package/dist/domain/workspace-registry/enum-values.d.ts.map +1 -0
- package/dist/domain/workspace-registry/enum-values.js +23 -0
- package/dist/domain/workspace-registry/enum-values.js.map +1 -0
- package/dist/domain/workspace-registry/ports.d.ts +16 -0
- package/dist/domain/workspace-registry/ports.d.ts.map +1 -0
- package/dist/domain/workspace-registry/ports.js +16 -0
- package/dist/domain/workspace-registry/ports.js.map +1 -0
- package/dist/domain/workspace-registry/repositories.d.ts +57 -0
- package/dist/domain/workspace-registry/repositories.d.ts.map +1 -0
- package/dist/domain/workspace-registry/repositories.js +12 -0
- package/dist/domain/workspace-registry/repositories.js.map +1 -0
- package/dist/domain/workspace-registry/services.d.ts +57 -0
- package/dist/domain/workspace-registry/services.d.ts.map +1 -0
- package/dist/domain/workspace-registry/services.js +283 -0
- package/dist/domain/workspace-registry/services.js.map +1 -0
- package/dist/domain/workspace-registry/value-objects.d.ts +82 -0
- package/dist/domain/workspace-registry/value-objects.d.ts.map +1 -0
- package/dist/domain/workspace-registry/value-objects.js +234 -0
- package/dist/domain/workspace-registry/value-objects.js.map +1 -0
- package/dist/hooks/config-command.d.ts +37 -0
- package/dist/hooks/config-command.d.ts.map +1 -0
- package/dist/hooks/config-command.js +68 -0
- package/dist/hooks/config-command.js.map +1 -0
- package/dist/hooks/context-compacting.d.ts +35 -0
- package/dist/hooks/context-compacting.d.ts.map +1 -0
- package/dist/hooks/context-compacting.js +62 -0
- package/dist/hooks/context-compacting.js.map +1 -0
- package/dist/hooks/event-handlers.d.ts +48 -0
- package/dist/hooks/event-handlers.d.ts.map +1 -0
- package/dist/hooks/event-handlers.js +120 -0
- package/dist/hooks/event-handlers.js.map +1 -0
- package/dist/hooks/execution-journal.d.ts +40 -0
- package/dist/hooks/execution-journal.d.ts.map +1 -0
- package/dist/hooks/execution-journal.js +118 -0
- package/dist/hooks/execution-journal.js.map +1 -0
- package/dist/hooks/first-run-guide.d.ts +35 -0
- package/dist/hooks/first-run-guide.d.ts.map +1 -0
- package/dist/hooks/first-run-guide.js +99 -0
- package/dist/hooks/first-run-guide.js.map +1 -0
- package/dist/hooks/guardrails.d.ts +33 -0
- package/dist/hooks/guardrails.d.ts.map +1 -0
- package/dist/hooks/guardrails.js +38 -0
- package/dist/hooks/guardrails.js.map +1 -0
- package/dist/hooks/logger.d.ts +46 -0
- package/dist/hooks/logger.d.ts.map +1 -0
- package/dist/hooks/logger.js +81 -0
- package/dist/hooks/logger.js.map +1 -0
- package/dist/hooks/shell-env.d.ts +28 -0
- package/dist/hooks/shell-env.d.ts.map +1 -0
- package/dist/hooks/shell-env.js +29 -0
- package/dist/hooks/shell-env.js.map +1 -0
- package/dist/hooks/slash-commands.d.ts +36 -0
- package/dist/hooks/slash-commands.d.ts.map +1 -0
- package/dist/hooks/slash-commands.js +148 -0
- package/dist/hooks/slash-commands.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +91 -0
- package/dist/index.js.map +1 -0
- package/dist/infrastructure/agent-registry/agent-profile-repository.d.ts +13 -0
- package/dist/infrastructure/agent-registry/agent-profile-repository.d.ts.map +1 -0
- package/dist/infrastructure/agent-registry/agent-profile-repository.js +110 -0
- package/dist/infrastructure/agent-registry/agent-profile-repository.js.map +1 -0
- package/dist/infrastructure/agent-registry/agent-session-adapter.d.ts +11 -0
- package/dist/infrastructure/agent-registry/agent-session-adapter.d.ts.map +1 -0
- package/dist/infrastructure/agent-registry/agent-session-adapter.js +62 -0
- package/dist/infrastructure/agent-registry/agent-session-adapter.js.map +1 -0
- package/dist/infrastructure/agent-registry/built-in-profiles.d.ts +28 -0
- package/dist/infrastructure/agent-registry/built-in-profiles.d.ts.map +1 -0
- package/dist/infrastructure/agent-registry/built-in-profiles.js +211 -0
- package/dist/infrastructure/agent-registry/built-in-profiles.js.map +1 -0
- package/dist/infrastructure/azure-sync/azure-auth.d.ts +40 -0
- package/dist/infrastructure/azure-sync/azure-auth.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/azure-auth.js +94 -0
- package/dist/infrastructure/azure-sync/azure-auth.js.map +1 -0
- package/dist/infrastructure/azure-sync/azure-devops-client.d.ts +45 -0
- package/dist/infrastructure/azure-sync/azure-devops-client.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/azure-devops-client.js +326 -0
- package/dist/infrastructure/azure-sync/azure-devops-client.js.map +1 -0
- package/dist/infrastructure/azure-sync/ollama-llm-adapter.d.ts +30 -0
- package/dist/infrastructure/azure-sync/ollama-llm-adapter.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/ollama-llm-adapter.js +162 -0
- package/dist/infrastructure/azure-sync/ollama-llm-adapter.js.map +1 -0
- package/dist/infrastructure/azure-sync/sqlite-event-repository.d.ts +31 -0
- package/dist/infrastructure/azure-sync/sqlite-event-repository.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/sqlite-event-repository.js +120 -0
- package/dist/infrastructure/azure-sync/sqlite-event-repository.js.map +1 -0
- package/dist/infrastructure/azure-sync/sqlite-sync-repository.d.ts +39 -0
- package/dist/infrastructure/azure-sync/sqlite-sync-repository.d.ts.map +1 -0
- package/dist/infrastructure/azure-sync/sqlite-sync-repository.js +210 -0
- package/dist/infrastructure/azure-sync/sqlite-sync-repository.js.map +1 -0
- package/dist/infrastructure/bootstrap/bootstrap-fs-adapter.d.ts +19 -0
- package/dist/infrastructure/bootstrap/bootstrap-fs-adapter.d.ts.map +1 -0
- package/dist/infrastructure/bootstrap/bootstrap-fs-adapter.js +41 -0
- package/dist/infrastructure/bootstrap/bootstrap-fs-adapter.js.map +1 -0
- package/dist/infrastructure/config/yaml-config-repository.d.ts +24 -0
- package/dist/infrastructure/config/yaml-config-repository.d.ts.map +1 -0
- package/dist/infrastructure/config/yaml-config-repository.js +69 -0
- package/dist/infrastructure/config/yaml-config-repository.js.map +1 -0
- package/dist/infrastructure/config/yaml-config-writer.d.ts +15 -0
- package/dist/infrastructure/config/yaml-config-writer.d.ts.map +1 -0
- package/dist/infrastructure/config/yaml-config-writer.js +50 -0
- package/dist/infrastructure/config/yaml-config-writer.js.map +1 -0
- package/dist/infrastructure/context-memory/execution-journal-repository.d.ts +26 -0
- package/dist/infrastructure/context-memory/execution-journal-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/execution-journal-repository.js +122 -0
- package/dist/infrastructure/context-memory/execution-journal-repository.js.map +1 -0
- package/dist/infrastructure/context-memory/note-repository.d.ts +26 -0
- package/dist/infrastructure/context-memory/note-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/note-repository.js +97 -0
- package/dist/infrastructure/context-memory/note-repository.js.map +1 -0
- package/dist/infrastructure/context-memory/search-repository.d.ts +20 -0
- package/dist/infrastructure/context-memory/search-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/search-repository.js +44 -0
- package/dist/infrastructure/context-memory/search-repository.js.map +1 -0
- package/dist/infrastructure/context-memory/session-repository.d.ts +26 -0
- package/dist/infrastructure/context-memory/session-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/session-repository.js +89 -0
- package/dist/infrastructure/context-memory/session-repository.js.map +1 -0
- package/dist/infrastructure/context-memory/todo-repository.d.ts +26 -0
- package/dist/infrastructure/context-memory/todo-repository.d.ts.map +1 -0
- package/dist/infrastructure/context-memory/todo-repository.js +114 -0
- package/dist/infrastructure/context-memory/todo-repository.js.map +1 -0
- package/dist/infrastructure/data/data-file-adapter.d.ts +15 -0
- package/dist/infrastructure/data/data-file-adapter.d.ts.map +1 -0
- package/dist/infrastructure/data/data-file-adapter.js +27 -0
- package/dist/infrastructure/data/data-file-adapter.js.map +1 -0
- package/dist/infrastructure/database/sqlite-adapter.d.ts +72 -0
- package/dist/infrastructure/database/sqlite-adapter.d.ts.map +1 -0
- package/dist/infrastructure/database/sqlite-adapter.js +107 -0
- package/dist/infrastructure/database/sqlite-adapter.js.map +1 -0
- package/dist/infrastructure/domain-map/llm-analyzer.d.ts +66 -0
- package/dist/infrastructure/domain-map/llm-analyzer.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/llm-analyzer.js +250 -0
- package/dist/infrastructure/domain-map/llm-analyzer.js.map +1 -0
- package/dist/infrastructure/domain-map/llm-prompt-factory.d.ts +6 -0
- package/dist/infrastructure/domain-map/llm-prompt-factory.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/llm-prompt-factory.js +50 -0
- package/dist/infrastructure/domain-map/llm-prompt-factory.js.map +1 -0
- package/dist/infrastructure/domain-map/lsp-adapter.d.ts +79 -0
- package/dist/infrastructure/domain-map/lsp-adapter.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/lsp-adapter.js +211 -0
- package/dist/infrastructure/domain-map/lsp-adapter.js.map +1 -0
- package/dist/infrastructure/domain-map/lsp-configs.d.ts +63 -0
- package/dist/infrastructure/domain-map/lsp-configs.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/lsp-configs.js +275 -0
- package/dist/infrastructure/domain-map/lsp-configs.js.map +1 -0
- package/dist/infrastructure/domain-map/lsp-json-rpc.d.ts +92 -0
- package/dist/infrastructure/domain-map/lsp-json-rpc.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/lsp-json-rpc.js +321 -0
- package/dist/infrastructure/domain-map/lsp-json-rpc.js.map +1 -0
- package/dist/infrastructure/domain-map/project-scanner.d.ts +44 -0
- package/dist/infrastructure/domain-map/project-scanner.d.ts.map +1 -0
- package/dist/infrastructure/domain-map/project-scanner.js +194 -0
- package/dist/infrastructure/domain-map/project-scanner.js.map +1 -0
- package/dist/infrastructure/environment/environment-repository.d.ts +18 -0
- package/dist/infrastructure/environment/environment-repository.d.ts.map +1 -0
- package/dist/infrastructure/environment/environment-repository.js +162 -0
- package/dist/infrastructure/environment/environment-repository.js.map +1 -0
- package/dist/infrastructure/environment/scanner-adapter.d.ts +12 -0
- package/dist/infrastructure/environment/scanner-adapter.d.ts.map +1 -0
- package/dist/infrastructure/environment/scanner-adapter.js +103 -0
- package/dist/infrastructure/environment/scanner-adapter.js.map +1 -0
- package/dist/infrastructure/kanban/card-repository.d.ts +47 -0
- package/dist/infrastructure/kanban/card-repository.d.ts.map +1 -0
- package/dist/infrastructure/kanban/card-repository.js +280 -0
- package/dist/infrastructure/kanban/card-repository.js.map +1 -0
- package/dist/infrastructure/kanban/sprint-repository.d.ts +40 -0
- package/dist/infrastructure/kanban/sprint-repository.d.ts.map +1 -0
- package/dist/infrastructure/kanban/sprint-repository.js +199 -0
- package/dist/infrastructure/kanban/sprint-repository.js.map +1 -0
- package/dist/infrastructure/pipeline/dagger-adapter.d.ts +17 -0
- package/dist/infrastructure/pipeline/dagger-adapter.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/dagger-adapter.js +154 -0
- package/dist/infrastructure/pipeline/dagger-adapter.js.map +1 -0
- package/dist/infrastructure/pipeline/dagger-scaffold-generator.d.ts +39 -0
- package/dist/infrastructure/pipeline/dagger-scaffold-generator.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/dagger-scaffold-generator.js +133 -0
- package/dist/infrastructure/pipeline/dagger-scaffold-generator.js.map +1 -0
- package/dist/infrastructure/pipeline/index.d.ts +19 -0
- package/dist/infrastructure/pipeline/index.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/index.js +19 -0
- package/dist/infrastructure/pipeline/index.js.map +1 -0
- package/dist/infrastructure/pipeline/pipeline-template-registry.d.ts +8 -0
- package/dist/infrastructure/pipeline/pipeline-template-registry.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/pipeline-template-registry.js +64 -0
- package/dist/infrastructure/pipeline/pipeline-template-registry.js.map +1 -0
- package/dist/infrastructure/pipeline/scaffold-templates-extra.d.ts +9 -0
- package/dist/infrastructure/pipeline/scaffold-templates-extra.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/scaffold-templates-extra.js +468 -0
- package/dist/infrastructure/pipeline/scaffold-templates-extra.js.map +1 -0
- package/dist/infrastructure/pipeline/scaffold-templates.d.ts +23 -0
- package/dist/infrastructure/pipeline/scaffold-templates.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/scaffold-templates.js +477 -0
- package/dist/infrastructure/pipeline/scaffold-templates.js.map +1 -0
- package/dist/infrastructure/pipeline/sqlite-pipeline-repository.d.ts +15 -0
- package/dist/infrastructure/pipeline/sqlite-pipeline-repository.d.ts.map +1 -0
- package/dist/infrastructure/pipeline/sqlite-pipeline-repository.js +198 -0
- package/dist/infrastructure/pipeline/sqlite-pipeline-repository.js.map +1 -0
- package/dist/infrastructure/rag/file-discovery.d.ts +30 -0
- package/dist/infrastructure/rag/file-discovery.d.ts.map +1 -0
- package/dist/infrastructure/rag/file-discovery.js +203 -0
- package/dist/infrastructure/rag/file-discovery.js.map +1 -0
- package/dist/infrastructure/rag/file-index-registry.d.ts +31 -0
- package/dist/infrastructure/rag/file-index-registry.d.ts.map +1 -0
- package/dist/infrastructure/rag/file-index-registry.js +67 -0
- package/dist/infrastructure/rag/file-index-registry.js.map +1 -0
- package/dist/infrastructure/rag/ollama-embeddings.d.ts +28 -0
- package/dist/infrastructure/rag/ollama-embeddings.d.ts.map +1 -0
- package/dist/infrastructure/rag/ollama-embeddings.js +54 -0
- package/dist/infrastructure/rag/ollama-embeddings.js.map +1 -0
- package/dist/infrastructure/rag/text-splitter.d.ts +29 -0
- package/dist/infrastructure/rag/text-splitter.d.ts.map +1 -0
- package/dist/infrastructure/rag/text-splitter.js +41 -0
- package/dist/infrastructure/rag/text-splitter.js.map +1 -0
- package/dist/infrastructure/rag/vectra-adapter.d.ts +48 -0
- package/dist/infrastructure/rag/vectra-adapter.d.ts.map +1 -0
- package/dist/infrastructure/rag/vectra-adapter.js +275 -0
- package/dist/infrastructure/rag/vectra-adapter.js.map +1 -0
- package/dist/infrastructure/token-metrics/token-metrics-repository.d.ts +29 -0
- package/dist/infrastructure/token-metrics/token-metrics-repository.d.ts.map +1 -0
- package/dist/infrastructure/token-metrics/token-metrics-repository.js +265 -0
- package/dist/infrastructure/token-metrics/token-metrics-repository.js.map +1 -0
- package/dist/infrastructure/vault/markdown-parser.d.ts +45 -0
- package/dist/infrastructure/vault/markdown-parser.d.ts.map +1 -0
- package/dist/infrastructure/vault/markdown-parser.js +145 -0
- package/dist/infrastructure/vault/markdown-parser.js.map +1 -0
- package/dist/infrastructure/vault/vault-fs-adapter.d.ts +28 -0
- package/dist/infrastructure/vault/vault-fs-adapter.d.ts.map +1 -0
- package/dist/infrastructure/vault/vault-fs-adapter.js +105 -0
- package/dist/infrastructure/vault/vault-fs-adapter.js.map +1 -0
- package/dist/infrastructure/workspace-registry/dependency-repository.d.ts +13 -0
- package/dist/infrastructure/workspace-registry/dependency-repository.d.ts.map +1 -0
- package/dist/infrastructure/workspace-registry/dependency-repository.js +90 -0
- package/dist/infrastructure/workspace-registry/dependency-repository.js.map +1 -0
- package/dist/infrastructure/workspace-registry/workspace-repository.d.ts +13 -0
- package/dist/infrastructure/workspace-registry/workspace-repository.d.ts.map +1 -0
- package/dist/infrastructure/workspace-registry/workspace-repository.js +109 -0
- package/dist/infrastructure/workspace-registry/workspace-repository.js.map +1 -0
- package/dist/tools/agent-registry-tools.d.ts +27 -0
- package/dist/tools/agent-registry-tools.d.ts.map +1 -0
- package/dist/tools/agent-registry-tools.js +209 -0
- package/dist/tools/agent-registry-tools.js.map +1 -0
- package/dist/tools/agent-tools.d.ts +24 -0
- package/dist/tools/agent-tools.d.ts.map +1 -0
- package/dist/tools/agent-tools.js +190 -0
- package/dist/tools/agent-tools.js.map +1 -0
- package/dist/tools/azure-sync-event-tools.d.ts +29 -0
- package/dist/tools/azure-sync-event-tools.d.ts.map +1 -0
- package/dist/tools/azure-sync-event-tools.js +289 -0
- package/dist/tools/azure-sync-event-tools.js.map +1 -0
- package/dist/tools/azure-sync-pr-tools.d.ts +21 -0
- package/dist/tools/azure-sync-pr-tools.d.ts.map +1 -0
- package/dist/tools/azure-sync-pr-tools.js +146 -0
- package/dist/tools/azure-sync-pr-tools.js.map +1 -0
- package/dist/tools/azure-sync-tools.d.ts +29 -0
- package/dist/tools/azure-sync-tools.d.ts.map +1 -0
- package/dist/tools/azure-sync-tools.js +313 -0
- package/dist/tools/azure-sync-tools.js.map +1 -0
- package/dist/tools/bootstrap-tools.d.ts +27 -0
- package/dist/tools/bootstrap-tools.d.ts.map +1 -0
- package/dist/tools/bootstrap-tools.js +151 -0
- package/dist/tools/bootstrap-tools.js.map +1 -0
- package/dist/tools/config-tools.d.ts +27 -0
- package/dist/tools/config-tools.d.ts.map +1 -0
- package/dist/tools/config-tools.js +166 -0
- package/dist/tools/config-tools.js.map +1 -0
- package/dist/tools/context-memory-tools.d.ts +31 -0
- package/dist/tools/context-memory-tools.d.ts.map +1 -0
- package/dist/tools/context-memory-tools.js +243 -0
- package/dist/tools/context-memory-tools.js.map +1 -0
- package/dist/tools/data-tools.d.ts +17 -0
- package/dist/tools/data-tools.d.ts.map +1 -0
- package/dist/tools/data-tools.js +337 -0
- package/dist/tools/data-tools.js.map +1 -0
- package/dist/tools/data-write-tools.d.ts +20 -0
- package/dist/tools/data-write-tools.d.ts.map +1 -0
- package/dist/tools/data-write-tools.js +144 -0
- package/dist/tools/data-write-tools.js.map +1 -0
- package/dist/tools/domain-map-tools.d.ts +24 -0
- package/dist/tools/domain-map-tools.d.ts.map +1 -0
- package/dist/tools/domain-map-tools.js +130 -0
- package/dist/tools/domain-map-tools.js.map +1 -0
- package/dist/tools/environment-tools.d.ts +28 -0
- package/dist/tools/environment-tools.d.ts.map +1 -0
- package/dist/tools/environment-tools.js +235 -0
- package/dist/tools/environment-tools.js.map +1 -0
- package/dist/tools/governance-tools.d.ts +20 -0
- package/dist/tools/governance-tools.d.ts.map +1 -0
- package/dist/tools/governance-tools.js +73 -0
- package/dist/tools/governance-tools.js.map +1 -0
- package/dist/tools/kanban-board-tools.d.ts +20 -0
- package/dist/tools/kanban-board-tools.d.ts.map +1 -0
- package/dist/tools/kanban-board-tools.js +144 -0
- package/dist/tools/kanban-board-tools.js.map +1 -0
- package/dist/tools/kanban-card-mutation-tools.d.ts +16 -0
- package/dist/tools/kanban-card-mutation-tools.d.ts.map +1 -0
- package/dist/tools/kanban-card-mutation-tools.js +168 -0
- package/dist/tools/kanban-card-mutation-tools.js.map +1 -0
- package/dist/tools/kanban-card-query-tools.d.ts +25 -0
- package/dist/tools/kanban-card-query-tools.d.ts.map +1 -0
- package/dist/tools/kanban-card-query-tools.js +191 -0
- package/dist/tools/kanban-card-query-tools.js.map +1 -0
- package/dist/tools/kanban-card-tools.d.ts +24 -0
- package/dist/tools/kanban-card-tools.d.ts.map +1 -0
- package/dist/tools/kanban-card-tools.js +274 -0
- package/dist/tools/kanban-card-tools.js.map +1 -0
- package/dist/tools/kanban-gate-tools.d.ts +19 -0
- package/dist/tools/kanban-gate-tools.d.ts.map +1 -0
- package/dist/tools/kanban-gate-tools.js +107 -0
- package/dist/tools/kanban-gate-tools.js.map +1 -0
- package/dist/tools/kanban-grooming-tools.d.ts +19 -0
- package/dist/tools/kanban-grooming-tools.d.ts.map +1 -0
- package/dist/tools/kanban-grooming-tools.js +101 -0
- package/dist/tools/kanban-grooming-tools.js.map +1 -0
- package/dist/tools/kanban-sprint-tools.d.ts +35 -0
- package/dist/tools/kanban-sprint-tools.d.ts.map +1 -0
- package/dist/tools/kanban-sprint-tools.js +295 -0
- package/dist/tools/kanban-sprint-tools.js.map +1 -0
- package/dist/tools/pipeline-tools.d.ts +31 -0
- package/dist/tools/pipeline-tools.d.ts.map +1 -0
- package/dist/tools/pipeline-tools.js +406 -0
- package/dist/tools/pipeline-tools.js.map +1 -0
- package/dist/tools/rag-tools.d.ts +29 -0
- package/dist/tools/rag-tools.d.ts.map +1 -0
- package/dist/tools/rag-tools.js +343 -0
- package/dist/tools/rag-tools.js.map +1 -0
- package/dist/tools/token-metrics-tools.d.ts +28 -0
- package/dist/tools/token-metrics-tools.d.ts.map +1 -0
- package/dist/tools/token-metrics-tools.js +351 -0
- package/dist/tools/token-metrics-tools.js.map +1 -0
- package/dist/tools/vault-manage-tool.d.ts +25 -0
- package/dist/tools/vault-manage-tool.d.ts.map +1 -0
- package/dist/tools/vault-manage-tool.js +120 -0
- package/dist/tools/vault-manage-tool.js.map +1 -0
- package/dist/tools/vault-tools.d.ts +32 -0
- package/dist/tools/vault-tools.d.ts.map +1 -0
- package/dist/tools/vault-tools.js +405 -0
- package/dist/tools/vault-tools.js.map +1 -0
- package/dist/tools/workspace-registry-tools.d.ts +25 -0
- package/dist/tools/workspace-registry-tools.d.ts.map +1 -0
- package/dist/tools/workspace-registry-tools.js +212 -0
- package/dist/tools/workspace-registry-tools.js.map +1 -0
- package/package.json +57 -34
- package/scripts/setup/link-local.js +120 -0
- package/scripts/setup/setup-linux.sh +134 -0
- package/scripts/setup/setup-macos.sh +147 -0
- package/scripts/setup/setup-wsl.sh +189 -0
- package/templates/agents-md.template.md +130 -0
- package/templates/commands/jarvis-agents-md-file.md +7 -0
- package/.opencode/agents/_domain-agent-base.md +0 -131
- package/.opencode/agents/agent-integration.md +0 -197
- package/.opencode/agents/agent-invoker.md +0 -90
- package/.opencode/agents/ai-multimodal-integration-agent.md +0 -421
- package/.opencode/agents/beverage-domain-expert-agent.md +0 -470
- package/.opencode/agents/beverage-ocr-backend-agent.md +0 -314
- package/.opencode/agents/boilerplate-sync.md +0 -92
- package/.opencode/agents/code-management-agent-complex.md +0 -104
- package/.opencode/agents/code-management-agent-medium.md +0 -102
- package/.opencode/agents/code-management-agent-simple.md +0 -86
- package/.opencode/agents/code-reviewer.md +0 -138
- package/.opencode/agents/context-memory-domain-agent-complex.md +0 -48
- package/.opencode/agents/context-memory-domain-agent-medium.md +0 -49
- package/.opencode/agents/context-memory-domain-agent-simple.md +0 -48
- package/.opencode/agents/data-engineer.md +0 -114
- package/.opencode/agents/explore.md +0 -123
- package/.opencode/agents/jarvis-installer.md +0 -123
- package/.opencode/agents/jarvis.md +0 -209
- package/.opencode/agents/kanban-domain-agent-complex.md +0 -113
- package/.opencode/agents/kanban-domain-agent-medium.md +0 -98
- package/.opencode/agents/kanban-domain-agent-simple.md +0 -94
- package/.opencode/agents/mindfulness.md +0 -112
- package/.opencode/agents/mobile-tester.md +0 -306
- package/.opencode/agents/ollama-model-finder.md +0 -119
- package/.opencode/agents/plan.md +0 -152
- package/.opencode/agents/product-owner.md +0 -113
- package/.opencode/agents/rag-domain-agent-complex.md +0 -48
- package/.opencode/agents/rag-domain-agent-medium.md +0 -49
- package/.opencode/agents/rag-domain-agent-simple.md +0 -48
- package/.opencode/agents/script-developer-optimized.md +0 -62
- package/.opencode/agents/script-developer.md +0 -57
- package/.opencode/agents/scrum-master.md +0 -60
- package/.opencode/agents/solution-architect.md +0 -45
- package/.opencode/commands/azure-push-with-pr.md +0 -158
- package/.opencode/commands/devlog-current.md +0 -63
- package/.opencode/commands/devlog-end.md +0 -84
- package/.opencode/commands/devlog-help.md +0 -79
- package/.opencode/commands/devlog-list.md +0 -63
- package/.opencode/commands/devlog-start.md +0 -64
- package/.opencode/commands/devlog-update.md +0 -66
- package/.opencode/commands/domain-map.md +0 -120
- package/.opencode/commands/jarvis-config.md +0 -52
- package/.opencode/commands/jarvis-plan.md +0 -53
- package/.opencode/commands/reindex-rag.md +0 -98
- package/.opencode/commands/workflow-reinforcement.md +0 -73
- package/.opencode/devlogs/Backlog Audit & Cleanup/.current-devlog +0 -1
- package/.opencode/devlogs/Backlog Audit & Cleanup/2026-02-10-1054-neural-agents.md +0 -30
- package/.opencode/devlogs/BrainWaves-iPad-Support-continued/.current-devlog +0 -0
- package/.opencode/devlogs/BrainWaves-iPad-Support-continued/2026-02-09-1938-jarvis-opencode.md +0 -34
- package/.opencode/devlogs/EP-005 Sprint 6: SSE Streaming Implementation/.current-devlog +0 -1
- package/.opencode/devlogs/EP-005 Sprint 6: SSE Streaming Implementation/2026-02-09-2332-neural-agents.md +0 -26
- package/.opencode/devlogs/JARVIS/.current-devlog +0 -0
- package/.opencode/devlogs/JARVIS/2026-01-14-2315-agents-skills-review.md +0 -270
- package/.opencode/devlogs/JARVIS/2026-01-15-0052-check-python-scripts-skills.md +0 -25
- package/.opencode/devlogs/JARVIS/2026-01-15-1036-fix-canonical-paths-for-core-content.md +0 -261
- package/.opencode/devlogs/JARVIS/2026-01-15-1103-review-rag-pipeline-and-commands.md +0 -204
- package/.opencode/devlogs/JARVIS/2026-01-15-1133-review-command-intelligence.md +0 -172
- package/.opencode/devlogs/JARVIS/2026-01-15-1251-review-command-intelligence-phase2.md +0 -160
- package/.opencode/devlogs/JARVIS/2026-01-15-1302-review-duplicatas.md +0 -106
- package/.opencode/devlogs/JARVIS/2026-01-15-1312-review-kanban-planning-pipeline.md +0 -243
- package/.opencode/devlogs/JARVIS/2026-01-15-1439-review-code-intelligence-kanban.md +0 -143
- package/.opencode/devlogs/JARVIS/2026-01-15-1806-revire-rag-chunks-metadata.md +0 -27
- package/.opencode/devlogs/JARVIS/2026-01-16-1145-building-helpers-for-agents.md +0 -393
- package/.opencode/devlogs/JARVIS/2026-01-17-1656-JARVIS.md +0 -142
- package/.opencode/devlogs/JARVIS/2026-01-17-1814-JARVIS.md +0 -173
- package/.opencode/devlogs/brain_v1/.current-devlog +0 -0
- package/.opencode/devlogs/brain_v1/2026-01-18-1818-pattern-context-integration.md +0 -526
- package/.opencode/devlogs/dash-david/.current-devlog +0 -1
- package/.opencode/devlogs/dash-david/2026-01-26-1836-planning-azure-devops-automation.md +0 -115
- package/.opencode/devlogs/data-analysis/.current-devlog +0 -1
- package/.opencode/devlogs/data-analysis/2026-01-28-1700-ma-cpg-intelligence-analysis.md +0 -132
- package/.opencode/devlogs/ire-vision/.current-devlog +0 -1
- package/.opencode/devlogs/ire-vision/2026-01-25-2208-Integra/303/247/303/243o de DividerMergeService e UUID tracking do branch remoto.md" +0 -26
- package/.opencode/devlogs/jarvis-opencode/.current-devlog +0 -0
- package/.opencode/devlogs/jarvis-opencode/2026-02-03-1613-BrainWaves-iPad-Support.md +0 -219
- package/.opencode/devlogs/jarvis-opencode-plugin/.current-devlog +0 -1
- package/.opencode/devlogs/jarvis-opencode-plugin/2026-02-13-2330-Jarvis Framework to OpenCode Plugin Migration.md +0 -321
- package/.opencode/devlogs/menu-ocr/.current-devlog +0 -1
- package/.opencode/devlogs/menu-ocr/2026-01-31-0227-full-front-end-web-development.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-01-31-1601-phase-4-rest-apis.md +0 -279
- package/.opencode/devlogs/menu-ocr/2026-01-31-1701-phase-5-api-key-auth.md +0 -186
- package/.opencode/devlogs/menu-ocr/2026-01-31-2027-phase-6-next-steps.md +0 -26
- package/.opencode/devlogs/menu-ocr/2026-02-01-2228-phase-3-operations-audit-cli-notifications.md +0 -208
- package/.opencode/devlogs/menu-ocr/2026-02-02-1050-dev-environment-setup.md +0 -90
- package/.opencode/devlogs/menu-ocr/2026-02-02-1659-client-portal-refinements.md +0 -134
- package/.opencode/devlogs/menu-ocr/2026-02-03-1820-ep006-sprint2-admin-ui.md +0 -165
- package/.opencode/devlogs/menu-ocr/2026-02-03-2214-EP-006 Sprint 3 - Testing and Integration.md +0 -87
- package/.opencode/devlogs/menu-ocr/2026-02-03-2244-EP-007 Client Portal Analytics - AI-Powered Geomarketing Insights.md +0 -84
- package/.opencode/devlogs/menu-ocr/2026-02-03-2300-EP-008 Batch Image Processing with Resumable Upload.md +0 -133
- package/.opencode/devlogs/menu-ocr/2026-02-04-1249-GCP Deployment Automation.md +0 -75
- package/.opencode/devlogs/menu-ocr/2026-02-05-1535-Client Portal API Keys Management - Provider Plans.md +0 -552
- package/.opencode/devlogs/menu-ocr/2026-02-07-2044-Prompt Templates - Seed Data and Provider Model Selection.md +0 -451
- package/.opencode/devlogs/menu-ocr/2026-02-09-1853-secure-auth-architecture.md +0 -167
- package/.opencode/devlogs/menu-ocr/2026-02-11-1952-pipeline-config-consistency.md +0 -89
- package/.opencode/devlogs/menu-ocr/2026-02-13-2237-cd-258-fix-autocuration-entity-creation.md +0 -42
- package/.opencode/devlogs/menu-ocr/2026-02-13-2340-ep016-s1-foundation.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-14-1858-pipeline-activation-usermenu-fix.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-0240-ep017-cd303-types.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0242-ep017-cd304-resolution-builder.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0245-ep017-cd305-perplexity-client.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0253-ep017-cd306-initializer.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0256-ep017-cd307-resolution-applier.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0257-ep017-cd308-facade.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0310-ep017-cd309-verify-commit.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-0315-ep018-knowledgebase-decomposition.md +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-1020-sp024-tech-debt-600-guardrail.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1023-ep019-referencedata-decomposition.md +0 -42
- package/.opencode/devlogs/menu-ocr/2026-02-15-1705-SP-025 EP-018: Decompose 12 domain files >600 lines.md +0 -46
- package/.opencode/devlogs/menu-ocr/2026-02-15-1746-Vault Documentation Update.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1754-Vault Restructure - Team-Oriented Documentation.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1759-Backend Module Guide v2 - Environments and Embeddings.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1835-Security hardening follow-up: cloudbuild.yaml fixes, Secrets Inventory update, production deploy prep.md +0 -38
- package/.opencode/devlogs/menu-ocr/2026-02-15-1902-Security hardening session 2: localhost fallbacks, admin-seed cleanup, cloudbuild fix.md +0 -46
- package/.opencode/devlogs/menu-ocr/2026-02-15-1959-EP-023: Session Management /342/200/224 CD-359 backend 401 differentiation + CD-355 admin portal token refresh.md" +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-2113-EP-024: Unified Admin Auth /342/200/224 Route shadowing fix, Google OAuth button, token refresh consolidation.md" +0 -34
- package/.opencode/devlogs/menu-ocr/2026-02-15-2241-EP-021: Tenant Business Profile & Category Management /342/200/224 Client Portal Implementation.md" +0 -162
- package/.opencode/devlogs/menu-ocr/2026-02-15-2254-EP-021: Editable Onboarding Wizard /342/200/224 CategoryDraftEditor component, template preview endpoint, rewrite Step 2 from read-only to inline-editable draft.md" +0 -34
- package/.opencode/devlogs/neural-agents/.current-devlog +0 -1
- package/.opencode/devlogs/neural-agents/2026-01-17-1851-revisar-itera/303/247/303/243o-autom/303/241tica-entre-agentes.md +0 -3309
- package/.opencode/devlogs/neural-agents/2026-01-31-1756-a2a-protocol-review.md +0 -367
- package/.opencode/devlogs/neural-agents/2026-01-31-1805-a2a-security-hardening-implementation.md +0 -494
- package/.opencode/devlogs/neural-agents/2026-01-31-2034-sprint-2-observability-reliability-implementation.md +0 -114
- package/.opencode/devlogs/neural-agents/2026-01-31-2042-sprint-2-validation-final-summary.md +0 -101
- package/.opencode/devlogs/neural-agents/2026-01-31-2045-sprint-3-neural-feedback-loop-implementation.md +0 -96
- package/.opencode/devlogs/neural-agents/2026-01-31-2053-neural-intelligence-adaptive-evolution-jarvis-methodology.md +0 -257
- package/.opencode/devlogs/neural-agents/2026-01-31-2106-neural-intelligence-system-implementation.md +0 -72
- package/.opencode/devlogs/neural-agents/2026-02-09-1614-neural-feedback-loop-cd044.md +0 -99
- package/.opencode/devlogs/neural-agents/2026-02-09-2036-EP-004-grooming.md +0 -103
- package/.opencode/devlogs/neural-agents/2026-02-10-1530-EP-012 Neural Tables UI + EP-007 agent_worker Refactoring.md +0 -124
- package/.opencode/package-lock.json +0 -82
- package/.opencode/settings.json +0 -765
- package/.opencode/settings.local.json +0 -64
- package/.opencode/skills/bash-optimizer/EXAMPLES.md +0 -138
- package/.opencode/skills/bash-optimizer/REFERENCE.md +0 -288
- package/.opencode/skills/bash-optimizer/SKILL.md +0 -27
- package/.opencode/skills/bash-optimizer/TROUBLESHOOTING.md +0 -156
- package/.opencode/skills/code-block-manager/EXAMPLES.md +0 -223
- package/.opencode/skills/code-block-manager/REFERENCE.md +0 -321
- package/.opencode/skills/code-block-manager/SKILL.md +0 -46
- package/.opencode/skills/code-block-manager/TROUBLESHOOTING.md +0 -340
- package/.opencode/skills/code-intelligence/EXAMPLES.md +0 -250
- package/.opencode/skills/code-intelligence/REFERENCE.md +0 -177
- package/.opencode/skills/code-intelligence/SKILL.md +0 -25
- package/.opencode/skills/code-validator/SKILL.md +0 -26
- package/.opencode/skills/command-intelligence/SKILL.md +0 -159
- package/.opencode/skills/component-generator/SKILL.md +0 -26
- package/.opencode/skills/config-manager/SKILL.md +0 -27
- package/.opencode/skills/config-manager/examples.md +0 -457
- package/.opencode/skills/config-manager/reference.md +0 -416
- package/.opencode/skills/config-manager/scripts/__pycache__/config_base.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_base.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_cli.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_cli.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_manager.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_manager.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_operations.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_operations.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_validator.cpython-311.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/__pycache__/config_validator.cpython-313.pyc +0 -0
- package/.opencode/skills/config-manager/scripts/config_base.py +0 -189
- package/.opencode/skills/config-manager/scripts/config_cli.py +0 -230
- package/.opencode/skills/config-manager/scripts/config_manager.py +0 -76
- package/.opencode/skills/config-manager/scripts/config_manager_v2.py +0 -390
- package/.opencode/skills/config-manager/scripts/config_operations.py +0 -476
- package/.opencode/skills/config-manager/scripts/config_validator.py +0 -280
- package/.opencode/skills/context-memory-guide/EXAMPLES.md +0 -5
- package/.opencode/skills/context-memory-guide/REFERENCE.md +0 -5
- package/.opencode/skills/context-memory-guide/SKILL.md +0 -28
- package/.opencode/skills/csv-manager/EXAMPLES.md +0 -84
- package/.opencode/skills/csv-manager/SKILL.md +0 -29
- package/.opencode/skills/data-validator/SKILL.md +0 -27
- package/.opencode/skills/data-validator/scripts/__pycache__/data_validator.cpython-313.pyc +0 -0
- package/.opencode/skills/data-validator/scripts/data_validator.py +0 -254
- package/.opencode/skills/doc-generator/EXAMPLES.md +0 -33
- package/.opencode/skills/doc-generator/REFERENCE.md +0 -37
- package/.opencode/skills/doc-generator/SKILL.md +0 -26
- package/.opencode/skills/doc-generator/TROUBLESHOOTING.md +0 -26
- package/.opencode/skills/e2e-tester.md +0 -206
- package/.opencode/skills/env-manager/README.md +0 -246
- package/.opencode/skills/env-manager/SKILL.md +0 -26
- package/.opencode/skills/env-manager/examples.md +0 -584
- package/.opencode/skills/env-manager/reference.md +0 -717
- package/.opencode/skills/file-manager/SKILL.md +0 -28
- package/.opencode/skills/git-repo-manager/EXAMPLES.md +0 -5
- package/.opencode/skills/git-repo-manager/REFERENCE.md +0 -5
- package/.opencode/skills/git-repo-manager/SKILL.md +0 -32
- package/.opencode/skills/jarvis-config/REFERENCE.md +0 -116
- package/.opencode/skills/jarvis-config/SKILL.md +0 -78
- package/.opencode/skills/jarvis-helper/INTEGRATION_VERIFICATION.md +0 -508
- package/.opencode/skills/jarvis-helper/ORACLE_AGENT_INTEGRATION.md +0 -573
- package/.opencode/skills/jarvis-helper/REFERENCE.md +0 -380
- package/.opencode/skills/jarvis-helper/SKILL.md +0 -549
- package/.opencode/skills/jarvis-helper/scripts/__pycache__/oracle_helper.cpython-311.pyc +0 -0
- package/.opencode/skills/jarvis-helper/scripts/__pycache__/oracle_helper.cpython-313.pyc +0 -0
- package/.opencode/skills/jarvis-helper/scripts/__pycache__/oracle_rag_integration.cpython-311.pyc +0 -0
- package/.opencode/skills/jarvis-helper/scripts/__pycache__/oracle_rag_integration.cpython-313.pyc +0 -0
- package/.opencode/skills/jarvis-helper/scripts/oracle_helper.py +0 -639
- package/.opencode/skills/jarvis-helper/scripts/oracle_rag_integration.py +0 -511
- package/.opencode/skills/json-manager/EXAMPLES.md +0 -366
- package/.opencode/skills/json-manager/REFERENCE_JQ.md +0 -3
- package/.opencode/skills/json-manager/SKILL.md +0 -30
- package/.opencode/skills/llm-manager/SKILL.md +0 -28
- package/.opencode/skills/lsp-navigator/EXAMPLES.md +0 -204
- package/.opencode/skills/lsp-navigator/REFERENCE.md +0 -177
- package/.opencode/skills/lsp-navigator/SKILL.md +0 -58
- package/.opencode/skills/markdown-manager/EXAMPLES.md +0 -235
- package/.opencode/skills/markdown-manager/REFERENCE.md +0 -82
- package/.opencode/skills/markdown-manager/SKILL.md +0 -28
- package/.opencode/skills/migration-manager/EXAMPLES.md +0 -5
- package/.opencode/skills/migration-manager/REFERENCE.md +0 -5
- package/.opencode/skills/migration-manager/SKILL.md +0 -28
- package/.opencode/skills/migration-manager/scripts/__pycache__/migration_manager.cpython-313.pyc +0 -0
- package/.opencode/skills/migration-manager/scripts/migration_manager.py +0 -432
- package/.opencode/skills/model-router/EXAMPLES.md +0 -5
- package/.opencode/skills/model-router/REFERENCE.md +0 -5
- package/.opencode/skills/model-router/SKILL.md +0 -27
- package/.opencode/skills/model-router/routing_config.json +0 -144
- package/.opencode/skills/perplexity-research/REFERENCE.md +0 -236
- package/.opencode/skills/perplexity-research/skill.md +0 -27
- package/.opencode/skills/policy-manager/EXAMPLES.md +0 -332
- package/.opencode/skills/policy-manager/README.md +0 -75
- package/.opencode/skills/policy-manager/REFERENCE.md +0 -510
- package/.opencode/skills/policy-manager/SKILL.md +0 -26
- package/.opencode/skills/policy-manager/TROUBLESHOOTING.md +0 -566
- package/.opencode/skills/process-manager/EXAMPLES.md +0 -318
- package/.opencode/skills/process-manager/REFERENCE.md +0 -237
- package/.opencode/skills/process-manager/SKILL.md +0 -28
- package/.opencode/skills/reporting-framework/EXAMPLES.md +0 -507
- package/.opencode/skills/reporting-framework/REFERENCE.md +0 -303
- package/.opencode/skills/reporting-framework/SKILL.md +0 -26
- package/.opencode/skills/safe-script-development/EXAMPLES.md +0 -268
- package/.opencode/skills/safe-script-development/REFERENCE.md +0 -273
- package/.opencode/skills/safe-script-development/SKILL.md +0 -28
- package/.opencode/skills/schema-mapper/SKILL.md +0 -27
- package/.opencode/skills/schema-mapper/examples.md +0 -574
- package/.opencode/skills/schema-mapper/reference.md +0 -494
- package/.opencode/skills/schema-mapper/scripts/__pycache__/schema_mapper.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__init__.py +0 -25
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/__init__.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/__init__.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/cli.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/cli.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/introspector.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/introspector.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/models.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/models.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/serializers.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/serializers.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/validator.cpython-311.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/__pycache__/validator.cpython-313.pyc +0 -0
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/cli.py +0 -179
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/introspector.py +0 -151
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/models.py +0 -48
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/serializers.py +0 -139
- package/.opencode/skills/schema-mapper/scripts/schema_mapper/validator.py +0 -64
- package/.opencode/skills/schema-mapper/scripts/schema_mapper.py +0 -17
- package/.opencode/skills/session-startup/EXAMPLES.md +0 -0
- package/.opencode/skills/session-startup/REFERENCE.md +0 -5
- package/.opencode/skills/session-startup/SKILL.md +0 -45
- package/.opencode/skills/snapshot-manager/QUICK_REFERENCE.md +0 -147
- package/.opencode/skills/snapshot-manager/SKILL.md +0 -27
- package/.opencode/skills/snapshot-manager/__pycache__/agent_integration.cpython-313.pyc +0 -0
- package/.opencode/skills/snapshot-manager/agent_integration.py +0 -269
- package/.opencode/skills/snapshot-manager/metadata.json +0 -83
- package/.opencode/skills/task-complexity-analyzer/SKILL.md +0 -27
- package/.opencode/skills/toon-manager/EXAMPLES.md +0 -175
- package/.opencode/skills/toon-manager/REFERENCE.md +0 -171
- package/.opencode/skills/toon-manager/SKILL.md +0 -27
- package/.opencode/skills/user-story-chat/EXAMPLES.md +0 -54
- package/.opencode/skills/user-story-chat/REFERENCE.md +0 -58
- package/.opencode/skills/user-story-chat/SKILL.md +0 -25
- package/.opencode/skills/user-story-chat/TROUBLESHOOTING.md +0 -71
- package/.opencode/skills/user-story-dev/EXAMPLES.md +0 -5
- package/.opencode/skills/user-story-dev/REFERENCE.md +0 -5
- package/.opencode/skills/user-story-dev/SKILL.md +0 -27
- package/.opencode/skills/user-story-manager/EXAMPLES.md +0 -219
- package/.opencode/skills/user-story-manager/REFERENCE.md +0 -192
- package/.opencode/skills/user-story-manager/SKILL.md +0 -27
- package/.opencode/skills/workspace-agents-mcp/SKILL.md +0 -26
- package/.opencode/skills/workspace-manager/SKILL.md +0 -27
- package/.opencode/skills/yaml-manager/IMPLEMENTATION_SUMMARY.md +0 -478
- package/.opencode/skills/yaml-manager/QUICK_REFERENCE.md +0 -319
- package/.opencode/skills/yaml-manager/README.md +0 -274
- package/.opencode/skills/yaml-manager/SKILL.md +0 -28
- package/.opencode/skills/yaml-manager/examples/basic_usage.md +0 -452
- package/.opencode/skills/yaml-manager/templates/telegram_bot.yaml +0 -62
- package/.opencode/skills/yaml-manager/templates/trading_strategy.yaml +0 -75
- package/.opencode/skills/yaml-manager/templates/workspace_metadata.yaml +0 -64
- package/.opencode/tools/DOMAIN_MAP_TOOLS.md +0 -331
- package/.opencode/tools/README.md +0 -179
- package/.opencode/tools/USER_STORY_MANAGER_IMPLEMENTATION.md +0 -318
- package/.opencode/tools/cardboard-setup.ts +0 -423
- package/.opencode/tools/code-block-extract.ts +0 -33
- package/.opencode/tools/code-block-update.ts +0 -23
- package/.opencode/tools/code-get-class.ts +0 -25
- package/.opencode/tools/code-get-function.ts +0 -27
- package/.opencode/tools/code-get-imports.ts +0 -24
- package/.opencode/tools/code-list-classes.ts +0 -26
- package/.opencode/tools/code-list-functions.ts +0 -27
- package/.opencode/tools/code-update-function.ts +0 -29
- package/.opencode/tools/context-note-add.ts +0 -24
- package/.opencode/tools/context-search.ts +0 -25
- package/.opencode/tools/csv-manager.ts +0 -36
- package/.opencode/tools/devlog-manager.ts +0 -45
- package/.opencode/tools/domain-map-analyze.ts +0 -249
- package/.opencode/tools/domain-map-compare.ts +0 -228
- package/.opencode/tools/domain-map-generate.ts +0 -156
- package/.opencode/tools/domain-map-index.ts +0 -31
- package/.opencode/tools/domain-map-update.ts +0 -129
- package/.opencode/tools/file-manager.ts +0 -36
- package/.opencode/tools/git-repo-manager.ts +0 -43
- package/.opencode/tools/json-manager.ts +0 -41
- package/.opencode/tools/kanban-card-create.ts +0 -21
- package/.opencode/tools/kanban-card-get.ts +0 -19
- package/.opencode/tools/kanban-card-list.ts +0 -26
- package/.opencode/tools/kanban-card-move.ts +0 -25
- package/.opencode/tools/lsp-navigator.ts +0 -42
- package/.opencode/tools/markdown-add.ts +0 -30
- package/.opencode/tools/markdown-get.ts +0 -24
- package/.opencode/tools/markdown-list.ts +0 -23
- package/.opencode/tools/markdown-manager.ts +0 -42
- package/.opencode/tools/markdown-meta.ts +0 -21
- package/.opencode/tools/markdown-navigate.ts +0 -26
- package/.opencode/tools/markdown-search.ts +0 -24
- package/.opencode/tools/markdown-set.ts +0 -25
- package/.opencode/tools/markdown-validate.ts +0 -21
- package/.opencode/tools/milestone-create.ts +0 -30
- package/.opencode/tools/obsidian-setup.ts +0 -18
- package/.opencode/tools/obsidian-sync.ts +0 -310
- package/.opencode/tools/oracle-query.ts +0 -29
- package/.opencode/tools/package-lock.json +0 -119
- package/.opencode/tools/rag-delete.ts +0 -29
- package/.opencode/tools/rag-detect-project.ts +0 -29
- package/.opencode/tools/rag-index.ts +0 -45
- package/.opencode/tools/rag-search.ts +0 -35
- package/.opencode/tools/rag-smart-index.ts +0 -37
- package/.opencode/tools/rag-snippet.ts +0 -35
- package/.opencode/tools/rag-status.ts +0 -28
- package/.opencode/tools/rag-update.ts +0 -29
- package/.opencode/tools/release-create.ts +0 -37
- package/.opencode/tools/release-list.ts +0 -27
- package/.opencode/tools/roadmap-create.ts +0 -32
- package/.opencode/tools/roadmap-list.ts +0 -23
- package/.opencode/tools/roadmap-status.ts +0 -18
- package/.opencode/tools/session-start.ts +0 -20
- package/.opencode/tools/src/application/user-stories/dtos.ts +0 -100
- package/.opencode/tools/src/application/user-stories/feature-use-cases.ts +0 -181
- package/.opencode/tools/src/application/user-stories/story-use-cases.ts +0 -254
- package/.opencode/tools/src/application/user-stories/use-cases.ts +0 -212
- package/.opencode/tools/src/domain/code-management/README.md +0 -259
- package/.opencode/tools/src/domain/code-management/entities.ts +0 -516
- package/.opencode/tools/src/domain/code-management/index.ts +0 -283
- package/.opencode/tools/src/domain/code-management/repositories.ts +0 -454
- package/.opencode/tools/src/domain/code-management/services.ts +0 -545
- package/.opencode/tools/src/domain/code-management/value-objects.ts +0 -595
- package/.opencode/tools/src/domain/user-stories/entities.ts +0 -403
- package/.opencode/tools/src/domain/user-stories/services.ts +0 -408
- package/.opencode/tools/src/domain/user-stories/value-objects.ts +0 -391
- package/.opencode/tools/src/index.ts +0 -101
- package/.opencode/tools/src/infrastructure/user-stories/mock-repositories.ts +0 -427
- package/.opencode/tools/src/infrastructure/user-stories/repositories.ts +0 -56
- package/.opencode/tools/todo-manager.ts +0 -42
- package/.opencode/tools/tsconfig.json +0 -21
- package/.opencode/tools/user-story-manager.ts +0 -578
- package/.opencode/tools/user-story-manager.ts-backup +0 -536
- package/.opencode/tools/workspace-create.ts +0 -43
- package/.opencode/tools/workspace-list.ts +0 -19
- package/.opencode/tools/workspace-manager.ts +0 -165
- package/.opencode/tools/yaml-add.ts +0 -20
- package/.opencode/tools/yaml-delete.ts +0 -19
- package/.opencode/tools/yaml-get.ts +0 -19
- package/.opencode/tools/yaml-list.ts +0 -18
- package/.opencode/tools/yaml-manager.ts +0 -41
- package/.opencode/tools/yaml-search.ts +0 -19
- package/.opencode/tools/yaml-set.ts +0 -20
- package/.opencode/tools/yaml-validate.ts +0 -18
- package/.opencode/tsconfig.json +0 -48
- package/OPENCODE.md +0 -61
- package/config/.yaml_backups/llm_prompts_20251125_124831.yaml +0 -215
- package/config/.yaml_backups/llm_prompts_20251125_124848.yaml +0 -216
- package/config/.yaml_backups/llm_prompts_20251125_133953.yaml +0 -226
- package/config/.yaml_backups/rag_20251125_122310.yaml +0 -307
- package/config/.yaml_backups/rag_20260109_121038.yaml +0 -323
- package/config/.yaml_backups/rag_20260110_182224.yaml +0 -323
- package/config/.yaml_backups/rag_20260110_182225.yaml +0 -323
- package/config/.yaml_backups/rag_20260110_183528.yaml +0 -323
- package/config/.yaml_backups/rag_20260115_230621.yaml +0 -384
- package/config/.yaml_backups/user_story_chat_20251125_011132.yaml +0 -16
- package/config/.yaml_backups/user_story_chat_20251125_011138.yaml +0 -19
- package/config/.yaml_backups/user_story_chat_20251125_011145.yaml +0 -19
- package/config/.yaml_backups/workspace_paths_20260112_022108.yaml +0 -22
- package/config/.yaml_backups/workspace_paths_20260112_022115.yaml +0 -22
- package/config/.yaml_backups/workspace_paths_20260112_022116.yaml +0 -23
- package/config/.yaml_backups/workspace_paths_20260114_001440.yaml +0 -22
- package/config/.yaml_backups/workspace_paths_20260114_204748.yaml +0 -23
- package/config/.yaml_backups/workspace_paths_20260121_162935.yaml +0 -66
- package/config/.yaml_backups/workspace_paths_20260121_162948.yaml +0 -71
- package/config/.yaml_backups/workspace_paths_20260123_155242.yaml +0 -78
- package/config/.yaml_backups/workspace_paths_20260201_152120.yaml +0 -33
- package/config/.yaml_backups/workspace_paths_20260201_180540.yaml +0 -39
- package/config/agents.default.yaml +0 -151
- package/config/command_intelligence/datasets/combined.jsonl +0 -8367
- package/config/command_intelligence/datasets/combined_enriched.jsonl +0 -3144
- package/config/command_intelligence/datasets/command.jsonl +0 -157
- package/config/command_intelligence/datasets/command_enriched.jsonl +0 -307
- package/config/command_intelligence/datasets/discovery.jsonl +0 -3850
- package/config/command_intelligence/datasets/discovery_enriched.jsonl +0 -983
- package/config/command_intelligence/datasets/example.jsonl +0 -3190
- package/config/command_intelligence/datasets/example_enriched.jsonl +0 -931
- package/config/command_intelligence/datasets/explanation.jsonl +0 -1170
- package/config/command_intelligence/datasets/explanation_enriched.jsonl +0 -923
- package/config/command_intelligence/models/Modelfile +0 -34
- package/config/command_intelligence.yaml +0 -779
- package/config/config.yaml +0 -66
- package/config/dacl_permissions.yaml +0 -159
- package/config/domain_mapper.yaml +0 -106
- package/config/file_types.yaml +0 -253
- package/config/jarvis.yaml +0 -45
- package/config/language_parsers.yaml +0 -123
- package/config/languages/cpp.yaml +0 -53
- package/config/languages/csharp_linux.yaml +0 -51
- package/config/languages/csharp_windows.yaml +0 -48
- package/config/languages/golang.yaml +0 -88
- package/config/languages/javascript.yaml +0 -92
- package/config/languages/kotlin_macos.yaml +0 -50
- package/config/languages/kotlin_windows.yaml +0 -49
- package/config/languages/pinescript.yaml +0 -134
- package/config/languages/python.yaml +0 -70
- package/config/languages/swift.yaml +0 -58
- package/config/languages/swiftui.yaml +0 -51
- package/config/llm_prompts.yaml +0 -238
- package/config/lsp_config.yaml +0 -98
- package/config/parameters.yaml +0 -234
- package/config/policies.yaml +0 -212
- package/config/rag.yaml +0 -499
- package/config/rag_external_sources.yaml +0 -57
- package/config/rag_ignore_templates.yaml +0 -90
- package/config/rag_templates/README.md +0 -207
- package/config/rag_templates/android.yaml +0 -66
- package/config/rag_templates/dotnet.yaml +0 -130
- package/config/rag_templates/go.yaml +0 -51
- package/config/rag_templates/java.yaml +0 -89
- package/config/rag_templates/nodejs.yaml +0 -96
- package/config/rag_templates/php.yaml +0 -68
- package/config/rag_templates/python.yaml +0 -102
- package/config/rag_templates/ruby.yaml +0 -69
- package/config/rag_templates/rust.yaml +0 -35
- package/config/rag_templates/xcode.yaml +0 -89
- package/config/templates/external_project_workspace.yaml +0 -101
- package/config/user_story_chat.yaml +0 -13
- package/config/user_story_schema.yaml +0 -171
- package/config/workspace_paths.yaml +0 -33
- package/pyproject.toml +0 -57
- package/requirements.txt +0 -139
- package/scripts/README.md +0 -160
- package/scripts/__pycache__/agent_invoker.cpython-311.pyc +0 -0
- package/scripts/__pycache__/audit_orphan_analysis.cpython-311.pyc +0 -0
- package/scripts/__pycache__/audit_orphan_files.cpython-311.pyc +0 -0
- package/scripts/__pycache__/change_detector.cpython-311.pyc +0 -0
- package/scripts/__pycache__/cli_executor.cpython-311.pyc +0 -0
- package/scripts/__pycache__/code_block_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/code_block_manager.cpython-313.pyc +0 -0
- package/scripts/__pycache__/context_active_context.cpython-311.pyc +0 -0
- package/scripts/__pycache__/context_memory_cli.cpython-311.pyc +0 -0
- package/scripts/__pycache__/context_memory_cli.cpython-313.pyc +0 -0
- package/scripts/__pycache__/cross_workspace_orchestrator.cpython-311.pyc +0 -0
- package/scripts/__pycache__/doc_generator.cpython-311.pyc +0 -0
- package/scripts/__pycache__/epic_completion_checker.cpython-311.pyc +0 -0
- package/scripts/__pycache__/error_router.cpython-311.pyc +0 -0
- package/scripts/__pycache__/file_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/file_manager.cpython-313.pyc +0 -0
- package/scripts/__pycache__/git_repo_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/impact_analyzer.cpython-311.pyc +0 -0
- package/scripts/__pycache__/kanban_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/kanban_manager.cpython-312.pyc +0 -0
- package/scripts/__pycache__/kanban_manager.cpython-313.pyc +0 -0
- package/scripts/__pycache__/lsp_navigator.cpython-311.pyc +0 -0
- package/scripts/__pycache__/lsp_navigator.cpython-313.pyc +0 -0
- package/scripts/__pycache__/scrum_master.cpython-313.pyc +0 -0
- package/scripts/__pycache__/session_auto_setup.cpython-311.pyc +0 -0
- package/scripts/__pycache__/user_story_chat.cpython-311.pyc +0 -0
- package/scripts/__pycache__/user_story_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/workspace_dependency_manager.cpython-311.pyc +0 -0
- package/scripts/__pycache__/workspace_detector.cpython-311.pyc +0 -0
- package/scripts/__pycache__/workspace_manager.cpython-311.pyc +0 -0
- package/scripts/_help/.!13625!git_repo_manager.yaml +0 -31
- package/scripts/_help/code_block_manager.yaml +0 -82
- package/scripts/_help/context_memory_cli.yaml +0 -172
- package/scripts/_help/doc_generator.yaml +0 -49
- package/scripts/_help/file_manager.yaml +0 -42
- package/scripts/_help/git_repo_manager.yaml +0 -214
- package/scripts/_help/index_external_sources.yaml +0 -71
- package/scripts/_help/user_story_chat.yaml +0 -13
- package/scripts/_temp/__pycache__/check_rag_metadata.cpython-311.pyc +0 -0
- package/scripts/_temp/check_rag_metadata.py +0 -55
- package/scripts/admin/__pycache__/dacl_admin.cpython-313.pyc +0 -0
- package/scripts/admin/code_review_cli.py +0 -401
- package/scripts/admin/dacl_admin.py +0 -350
- package/scripts/admin/dacl_dashboard.py +0 -462
- package/scripts/agent_invoker.py +0 -192
- package/scripts/artifact_manager.py +0 -270
- package/scripts/audit_orphan_analysis.py +0 -278
- package/scripts/audit_orphan_files.py +0 -276
- package/scripts/azure_pr_workflow.sh +0 -134
- package/scripts/change_detector.py +0 -341
- package/scripts/cleanup_orphans_safe.sh +0 -183
- package/scripts/cli/__init__.py +0 -13
- package/scripts/cli/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/context_memory_base.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/database_cli.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/message_cli.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/search_cli.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/session_cli.cpython-311.pyc +0 -0
- package/scripts/cli/__pycache__/todo_cli.cpython-311.pyc +0 -0
- package/scripts/cli/context_memory_base.py +0 -112
- package/scripts/cli/database_cli.py +0 -224
- package/scripts/cli/message_cli.py +0 -153
- package/scripts/cli/search_cli.py +0 -300
- package/scripts/cli/session_cli.py +0 -379
- package/scripts/cli/todo_cli.py +0 -226
- package/scripts/cli_executor.py +0 -457
- package/scripts/code_block_manager.py +0 -847
- package/scripts/code_management/__init__.py +0 -21
- package/scripts/code_management/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/ast_parser.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/code_block_base.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/code_block_cli.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/code_block_manager.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/lsp_integration.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/ollama_parser.cpython-311.pyc +0 -0
- package/scripts/code_management/__pycache__/rag_sync.cpython-311.pyc +0 -0
- package/scripts/code_management/ast_parser.py +0 -337
- package/scripts/code_management/code_block_base.py +0 -87
- package/scripts/code_management/code_block_cli.py +0 -205
- package/scripts/code_management/code_block_manager.py +0 -319
- package/scripts/code_management/lsp_integration.py +0 -268
- package/scripts/code_management/ollama_parser.py +0 -289
- package/scripts/code_management/rag_sync.py +0 -126
- package/scripts/command_discovery.py +0 -143
- package/scripts/context_active_context.py +0 -338
- package/scripts/context_memory_cli.py +0 -1093
- package/scripts/convert_cards_to_tasks.py +0 -85
- package/scripts/cross_workspace_orchestrator.py +0 -343
- package/scripts/devlog_manager.py +0 -320
- package/scripts/doc_generator.py +0 -357
- package/scripts/domain_mapping_monitor.py +0 -180
- package/scripts/e2e_tester/e2e_cli.py +0 -306
- package/scripts/e2e_tester/e2e_runner.js +0 -715
- package/scripts/e2e_tester/neural-network-demo.js +0 -235
- package/scripts/e2e_tester/neural-network-test.js +0 -241
- package/scripts/e2e_tester/package-lock.json +0 -1202
- package/scripts/e2e_tester/package.json +0 -17
- package/scripts/e2e_tester/tests/menu-ocr-admin-portal.json +0 -379
- package/scripts/e2e_tester/tests/menu-ocr-credits.json +0 -265
- package/scripts/e2e_tester/tests/menu-ocr-portfolio.json +0 -483
- package/scripts/emergency/emergency_access.py +0 -365
- package/scripts/epic_completion_checker.py +0 -122
- package/scripts/error_router.py +0 -467
- package/scripts/examples/__pycache__/example.cpython-311.pyc +0 -0
- package/scripts/examples/__pycache__/integration_example.cpython-311.pyc +0 -0
- package/scripts/examples/example.py +0 -166
- package/scripts/examples/integration_example.py +0 -175
- package/scripts/file_manager.py +0 -547
- package/scripts/git_repo_manager.py +0 -283
- package/scripts/helpers/command_intelligence/__init__.py +0 -12
- package/scripts/helpers/command_intelligence/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/inference.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/llm_dataset_enricher.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/models.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/models.cpython-312.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/script_extractor.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/__pycache__/skill_extractor.cpython-311.pyc +0 -0
- package/scripts/helpers/command_intelligence/dataset_generator.py +0 -298
- package/scripts/helpers/command_intelligence/inference.py +0 -337
- package/scripts/helpers/command_intelligence/llm_dataset_enricher.py +0 -458
- package/scripts/helpers/command_intelligence/models.py +0 -220
- package/scripts/helpers/command_intelligence/script_extractor.py +0 -418
- package/scripts/helpers/command_intelligence/semantic_search.py +0 -165
- package/scripts/helpers/command_intelligence/skill_extractor.py +0 -338
- package/scripts/helpers/command_intelligence/training_pipeline.py +0 -377
- package/scripts/helpers/startup_protocol_reminder.py +0 -34
- package/scripts/helpers/verify_oracle_hierarchy.py +0 -225
- package/scripts/impact_analyzer.py +0 -314
- package/scripts/install_ollama_models.sh +0 -246
- package/scripts/jarvis_domain_mapper_tui.py +0 -33
- package/scripts/jarvis_mode.sh +0 -62
- package/scripts/jarvis_status.py +0 -57
- package/scripts/jarvis_tui.py +0 -31
- package/scripts/kanban_manager.py +0 -1771
- package/scripts/kanban_session_manager.py +0 -151
- package/scripts/llm/__pycache__/code_generator_with_governance.cpython-311.pyc +0 -0
- package/scripts/llm/__pycache__/llm_ops.cpython-311.pyc +0 -0
- package/scripts/llm/code_generator_with_governance.py +0 -318
- package/scripts/llm/llm_ops.py +0 -208
- package/scripts/llm/test_code_generation_pipeline.sh +0 -125
- package/scripts/log_manager.py +0 -203
- package/scripts/lsp/README_FALLBACK.md +0 -261
- package/scripts/lsp/__init__.py +0 -64
- package/scripts/lsp/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/enable_fallback.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/enable_fallback.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_base.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_base.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_base.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_cli.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_cli.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_cli.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_client.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_client.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_client.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_config_manager.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_config_manager.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_servers.cpython-311.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_servers.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/lsp_servers.cpython-313.pyc +0 -0
- package/scripts/lsp/__pycache__/tree_sitter_fallback.cpython-312.pyc +0 -0
- package/scripts/lsp/__pycache__/tree_sitter_fallback.cpython-313.pyc +0 -0
- package/scripts/lsp/enable_fallback.py +0 -147
- package/scripts/lsp/lsp_base.py +0 -177
- package/scripts/lsp/lsp_cli.py +0 -721
- package/scripts/lsp/lsp_client.py +0 -361
- package/scripts/lsp/lsp_config_manager.py +0 -314
- package/scripts/lsp/lsp_servers.py +0 -208
- package/scripts/lsp/lsp_servers_test.py +0 -157
- package/scripts/lsp/lsp_servers_test_kotlin.py +0 -50
- package/scripts/lsp/tree_sitter_fallback.py +0 -253
- package/scripts/lsp_navigator.py +0 -268
- package/scripts/maintenance/__pycache__/clean_context_memory.cpython-311.pyc +0 -0
- package/scripts/maintenance/__pycache__/fix_context_memory.cpython-311.pyc +0 -0
- package/scripts/maintenance/__pycache__/reindex_all_rag.cpython-311.pyc +0 -0
- package/scripts/maintenance/__pycache__/reset_context_memory.cpython-311.pyc +0 -0
- package/scripts/maintenance/__pycache__/simple_context_memory.cpython-311.pyc +0 -0
- package/scripts/maintenance/clean_context_memory.py +0 -182
- package/scripts/maintenance/fix_context_memory.py +0 -114
- package/scripts/maintenance/reindex_all_rag.py +0 -352
- package/scripts/maintenance/reset_context_memory.py +0 -138
- package/scripts/maintenance/simple_context_memory.py +0 -199
- package/scripts/managers/__pycache__/bash_optimizer.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/config_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/config_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/credential_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/csv_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/domain_map_db.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/env_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/json_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/json_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/markdown_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/markdown_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/markdown_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/migration_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/model_router.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/obsidian_config_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/obsidian_config_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/obsidian_markdown_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/obsidian_markdown_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/path_manager.cpython-310.pyc +0 -0
- package/scripts/managers/__pycache__/path_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/path_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/path_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/policy_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/process_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/schema_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/snapshot_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/toon_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/toon_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/toon_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/workspace_path_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/workspace_path_manager.cpython-312.pyc +0 -0
- package/scripts/managers/__pycache__/workspace_path_manager.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/workspace_path_manager_v2.cpython-313.pyc +0 -0
- package/scripts/managers/__pycache__/yaml_manager.cpython-311.pyc +0 -0
- package/scripts/managers/__pycache__/yaml_manager.cpython-313.pyc +0 -0
- package/scripts/managers/bash_optimizer.py +0 -209
- package/scripts/managers/config_manager.py +0 -229
- package/scripts/managers/credential_manager.py +0 -579
- package/scripts/managers/csv_manager.py +0 -515
- package/scripts/managers/domain_map_db.py +0 -422
- package/scripts/managers/env_manager.py +0 -732
- package/scripts/managers/json_manager.py +0 -22
- package/scripts/managers/markdown_manager.py +0 -893
- package/scripts/managers/migration_manager.py +0 -115
- package/scripts/managers/model_router.py +0 -436
- package/scripts/managers/obsidian_config_manager.py +0 -621
- package/scripts/managers/obsidian_markdown_manager.py +0 -601
- package/scripts/managers/path_manager.py +0 -164
- package/scripts/managers/policy_manager.py +0 -628
- package/scripts/managers/process_manager.py +0 -285
- package/scripts/managers/schema_manager.py +0 -292
- package/scripts/managers/snapshot_manager.py +0 -14
- package/scripts/managers/toon_manager.py +0 -407
- package/scripts/managers/workspace_path_manager.py +0 -299
- package/scripts/managers/workspace_path_manager_v2.py +0 -414
- package/scripts/managers/yaml_manager.py +0 -17
- package/scripts/markdown/__init__.py +0 -21
- package/scripts/markdown/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_base.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_base.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_base.cpython-313.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_cli.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_cli.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_cli.cpython-313.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_editor.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_editor.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_editor.cpython-313.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_manager.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_parser.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_parser.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_parser.cpython-313.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_validator.cpython-311.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_validator.cpython-312.pyc +0 -0
- package/scripts/markdown/__pycache__/markdown_validator.cpython-313.pyc +0 -0
- package/scripts/markdown/markdown_base.py +0 -118
- package/scripts/markdown/markdown_cli.py +0 -310
- package/scripts/markdown/markdown_editor.py +0 -321
- package/scripts/markdown/markdown_manager.py +0 -209
- package/scripts/markdown/markdown_parser.py +0 -378
- package/scripts/markdown/markdown_validator.py +0 -196
- package/scripts/migrate_artifacts.py +0 -237
- package/scripts/migration/__pycache__/workspace_structure_migration.cpython-313.pyc +0 -0
- package/scripts/migration/domain_map_v1_to_v2_migration.py +0 -363
- package/scripts/migration/test_single_workspace_migration.py +0 -83
- package/scripts/migration/workspace_structure_migration.py +0 -740
- package/scripts/mobile/README_maestro_runner.md +0 -101
- package/scripts/mobile/REQUIREMENTS_device_manager.md +0 -133
- package/scripts/mobile/REQUIREMENTS_mobile_cli.md +0 -185
- package/scripts/mobile/__init__.py +0 -1
- package/scripts/mobile/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/mobile/__pycache__/device_manager.cpython-313.pyc +0 -0
- package/scripts/mobile/__pycache__/maestro_runner.cpython-313.pyc +0 -0
- package/scripts/mobile/__pycache__/screenshot_manager.cpython-313.pyc +0 -0
- package/scripts/mobile/__pycache__/test_device_manager.cpython-313-pytest-9.0.2.pyc +0 -0
- package/scripts/mobile/device_manager.py +0 -312
- package/scripts/mobile/domain/__init__.py +0 -1
- package/scripts/mobile/domain/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/mobile/domain/__pycache__/device.cpython-313.pyc +0 -0
- package/scripts/mobile/domain/device.py +0 -128
- package/scripts/mobile/examples/config_example.py +0 -51
- package/scripts/mobile/examples/sample_test.yaml +0 -38
- package/scripts/mobile/infrastructure/__init__.py +0 -1
- package/scripts/mobile/infrastructure/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/mobile/infrastructure/__pycache__/connectors.cpython-313.pyc +0 -0
- package/scripts/mobile/infrastructure/connectors.py +0 -316
- package/scripts/mobile/maestro/__init__.py +0 -1
- package/scripts/mobile/maestro/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/mobile/maestro/__pycache__/test_executor.cpython-313.pyc +0 -0
- package/scripts/mobile/maestro/test_executor.py +0 -203
- package/scripts/mobile/maestro_runner.py +0 -336
- package/scripts/mobile/maestro_runner_complex.py +0 -329
- package/scripts/mobile/maestro_runner_original.py +0 -477
- package/scripts/mobile/mobile_cli.py +0 -339
- package/scripts/mobile/screenshot_manager.py +0 -595
- package/scripts/mobile/test_device_manager.py +0 -322
- package/scripts/obsidian_cardboard_sync.py +0 -454
- package/scripts/obsidian_diagnostic.py +0 -787
- package/scripts/obsidian_setup_tool.py +0 -619
- package/scripts/obsidian_sync_cli.py +0 -964
- package/scripts/obsidian_test_demo.py +0 -547
- package/scripts/parsers/__init__.py +0 -0
- package/scripts/parsers/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/parsers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/parsers/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/parsers/__pycache__/language_parsers.cpython-311.pyc +0 -0
- package/scripts/parsers/__pycache__/language_parsers.cpython-312.pyc +0 -0
- package/scripts/parsers/__pycache__/language_parsers.cpython-313.pyc +0 -0
- package/scripts/parsers/__pycache__/language_parsers_new.cpython-311.pyc +0 -0
- package/scripts/parsers/__pycache__/parser_base.cpython-311.pyc +0 -0
- package/scripts/parsers/__pycache__/parser_registry.cpython-311.pyc +0 -0
- package/scripts/parsers/language_parsers.py +0 -966
- package/scripts/parsers/parser_base.py +0 -93
- package/scripts/parsers/parser_registry.py +0 -127
- package/scripts/parsers/parsers/__init__.py +0 -17
- package/scripts/parsers/parsers/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/go_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/javascript_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/kotlin_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/python_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/swift_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/__pycache__/typescript_parser.cpython-311.pyc +0 -0
- package/scripts/parsers/parsers/go_parser.py +0 -251
- package/scripts/parsers/parsers/javascript_parser.py +0 -285
- package/scripts/parsers/parsers/kotlin_parser.py +0 -282
- package/scripts/parsers/parsers/python_parser.py +0 -248
- package/scripts/parsers/parsers/swift_parser.py +0 -281
- package/scripts/parsers/parsers/typescript_parser.py +0 -127
- package/scripts/policy_check.sh +0 -126
- package/scripts/rag/CD-027_IMPLEMENTATION_SUMMARY.md +0 -347
- package/scripts/rag/FEATURE_COVERAGE.md +0 -393
- package/scripts/rag/MEASURE_PRECISION_REQUIREMENTS.md +0 -273
- package/scripts/rag/ORACLE_FILTERS.md +0 -317
- package/scripts/rag/QUICK_START.md +0 -173
- package/scripts/rag/REQUIREMENTS.md +0 -320
- package/scripts/rag/REQUIREMENTS_oracle_rag_integration.md +0 -115
- package/scripts/rag/__init__.py +0 -12
- package/scripts/rag/__pycache__/__init__.cpython-310.pyc +0 -0
- package/scripts/rag/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli_commands.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli_commands.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/oracle_rag_cli_commands.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/project_type_detector.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/project_type_detector.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_commands.cpython-310.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_commands.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_commands.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_commands.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_search_commands.cpython-310.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_search_commands.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_search_commands.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/rag_cli_search_commands.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/rag_config.cpython-310.pyc +0 -0
- package/scripts/rag/__pycache__/rag_config.cpython-311.pyc +0 -0
- package/scripts/rag/__pycache__/rag_config.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/rag_config.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/smart_rag_index.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/smart_rag_index_hybrid.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/smart_rag_index_tui.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/smart_rag_index_v2.cpython-313.pyc +0 -0
- package/scripts/rag/__pycache__/suppress_logs.cpython-312.pyc +0 -0
- package/scripts/rag/__pycache__/suppress_logs.cpython-313.pyc +0 -0
- package/scripts/rag/auto_reindex_oracle.py +0 -278
- package/scripts/rag/code_intelligence.py +0 -366
- package/scripts/rag/command_intelligence.py +0 -245
- package/scripts/rag/command_intelligence_cli.py +0 -360
- package/scripts/rag/command_intelligence_config.py +0 -258
- package/scripts/rag/command_intelligence_nlp.py +0 -324
- package/scripts/rag/command_intelligence_search.py +0 -288
- package/scripts/rag/detect_duplicates.py +0 -180
- package/scripts/rag/domain_mapper/__init__.py +0 -33
- package/scripts/rag/domain_mapper/__pycache__/__init__.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/cli.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/cli.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/config.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/config.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/config.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/config.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/discovery.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/discovery.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/discovery.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/discovery.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/llm.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/llm.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/llm.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/llm.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/mapper.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/mapper.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/mapper.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/mapper.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/models.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/models.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/models.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/models.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/parser.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/parser.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/parser.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/parser.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/persistence.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/persistence.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/persistence.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/persistence.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/vectorstore.cpython-310.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/vectorstore.cpython-311.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/vectorstore.cpython-312.pyc +0 -0
- package/scripts/rag/domain_mapper/__pycache__/vectorstore.cpython-313.pyc +0 -0
- package/scripts/rag/domain_mapper/cli.py +0 -181
- package/scripts/rag/domain_mapper/config.py +0 -185
- package/scripts/rag/domain_mapper/discovery.py +0 -284
- package/scripts/rag/domain_mapper/llm.py +0 -67
- package/scripts/rag/domain_mapper/mapper.py +0 -419
- package/scripts/rag/domain_mapper/models.py +0 -82
- package/scripts/rag/domain_mapper/parser.py +0 -123
- package/scripts/rag/domain_mapper/persistence.py +0 -167
- package/scripts/rag/domain_mapper/vectorstore.py +0 -82
- package/scripts/rag/index_external_sources.py +0 -268
- package/scripts/rag/index_menu_ocr_hybrid.sh +0 -191
- package/scripts/rag/index_menu_ocr_modular.sh +0 -195
- package/scripts/rag/measure_precision.py +0 -520
- package/scripts/rag/oracle_rag.py +0 -342
- package/scripts/rag/oracle_rag_cli.py +0 -440
- package/scripts/rag/oracle_rag_cli_commands.py +0 -425
- package/scripts/rag/project_type_detector.py +0 -424
- package/scripts/rag/rag_cli.py +0 -334
- package/scripts/rag/rag_cli_commands.py +0 -1431
- package/scripts/rag/rag_cli_commands.py.bak4 +0 -1557
- package/scripts/rag/rag_cli_search_commands.py +0 -616
- package/scripts/rag/rag_config.py +0 -414
- package/scripts/rag/rag_config_v2.py +0 -377
- package/scripts/rag/rag_hook.py +0 -46
- package/scripts/rag/rag_update_file.py +0 -271
- package/scripts/rag/reindex_all_workspaces.sh +0 -177
- package/scripts/rag/reindex_workspaces.sh +0 -79
- package/scripts/rag/smart_rag_index.py +0 -426
- package/scripts/rag/suppress_logs.py +0 -89
- package/scripts/rag/test_oracle_filters.py +0 -196
- package/scripts/rag_index_clean.py +0 -200
- package/scripts/rag_index_smart.py +0 -71
- package/scripts/rag_workflow/README.md +0 -142
- package/scripts/rag_workflow/__init__.py +0 -27
- package/scripts/rag_workflow/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/rag_workflow/core/__pycache__/exceptions.cpython-311.pyc +0 -0
- package/scripts/rag_workflow/core/__pycache__/interfaces.cpython-311.pyc +0 -0
- package/scripts/rag_workflow/core/exceptions.py +0 -381
- package/scripts/rag_workflow/core/interfaces.py +0 -534
- package/scripts/research/__pycache__/perplexity_research.cpython-311.pyc +0 -0
- package/scripts/research/perplexity_research.py +0 -390
- package/scripts/roadmap_manager.py +0 -369
- package/scripts/run_tests.sh +0 -5
- package/scripts/scrum_master.py +0 -733
- package/scripts/security/README.md +0 -373
- package/scripts/security/REQUIREMENTS.md +0 -278
- package/scripts/security/__init__.py +0 -20
- package/scripts/security/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/mobile_security_analyzer.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/mobsf_cli.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/mobsf_integration.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/mobsf_integration_runner.cpython-313.pyc +0 -0
- package/scripts/security/__pycache__/security_report_generator.cpython-313.pyc +0 -0
- package/scripts/security/mobile_security_analyzer.py +0 -369
- package/scripts/security/mobsf_cli.py +0 -365
- package/scripts/security/mobsf_integration.py +0 -534
- package/scripts/security/mobsf_integration_runner.py +0 -360
- package/scripts/security/security_report_generator.py +0 -474
- package/scripts/security/test_mobsf_integration.py +0 -152
- package/scripts/session_auto_setup.py +0 -217
- package/scripts/setup/Install-Global.ps1 +0 -167
- package/scripts/setup/__pycache__/configure_hybrid_routing.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/configure_ollama_only.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/init_database.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/install_rag_dependencies.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/install_rag_lite.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/jarvis_automated_installer.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/register_all_skills.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/setup_advanced.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/setup_dependencies.cpython-311.pyc +0 -0
- package/scripts/setup/__pycache__/verify_package.cpython-311.pyc +0 -0
- package/scripts/setup/configure_hybrid_routing.py +0 -340
- package/scripts/setup/configure_ollama_only.py +0 -270
- package/scripts/setup/fix_workspace_kanban_schema.py +0 -240
- package/scripts/setup/index_initial_rag.py +0 -386
- package/scripts/setup/init_database.py +0 -358
- package/scripts/setup/install.sh +0 -171
- package/scripts/setup/install_global.sh +0 -115
- package/scripts/setup/install_ollama.py +0 -184
- package/scripts/setup/install_ollama_models.sh +0 -246
- package/scripts/setup/install_rag_dependencies.py +0 -162
- package/scripts/setup/install_rag_lite.py +0 -225
- package/scripts/setup/install_required_models.py +0 -178
- package/scripts/setup/jarvis.cmd +0 -49
- package/scripts/setup/jarvis_automated_installer.py +0 -959
- package/scripts/setup/jarvis_wrapper.sh +0 -49
- package/scripts/setup/policy_check.sh +0 -126
- package/scripts/setup/register_all_skills.py +0 -132
- package/scripts/setup/setup.sh +0 -184
- package/scripts/setup/setup_advanced.py +0 -158
- package/scripts/setup/setup_all.sh +0 -217
- package/scripts/setup/setup_complete.sh +0 -247
- package/scripts/setup/setup_dependencies.py +0 -460
- package/scripts/setup/setup_domain_map_v2.py +0 -452
- package/scripts/setup/setup_environment.sh +0 -296
- package/scripts/setup/setup_golang.sh +0 -80
- package/scripts/setup/setup_javascript.sh +0 -55
- package/scripts/setup/setup_python.sh +0 -64
- package/scripts/setup/validate_dependencies.py +0 -236
- package/scripts/setup/validate_installation.py +0 -166
- package/scripts/setup/validate_ollama_models.py +0 -233
- package/scripts/setup/validate_setup.sh +0 -347
- package/scripts/setup/verify_package.py +0 -220
- package/scripts/setup_cpp_unix.sh +0 -58
- package/scripts/setup_csharp_linux.sh +0 -61
- package/scripts/setup_csharp_windows.ps1 +0 -63
- package/scripts/setup_kotlin_macos.sh +0 -40
- package/scripts/setup_kotlin_windows.ps1 +0 -68
- package/scripts/setup_lsp.sh +0 -131
- package/scripts/setup_lsp_servers.sh +0 -252
- package/scripts/setup_python.sh +0 -64
- package/scripts/setup_swift_macos.sh +0 -77
- package/scripts/snapshot/ARCHITECTURE.md +0 -423
- package/scripts/snapshot/README.md +0 -180
- package/scripts/snapshot/__init__.py +0 -11
- package/scripts/snapshot/__pycache__/__init__.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/cli.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/database_repository.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/file_repository.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/git_repository.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/models.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/snapshot_lite.cpython-311.pyc +0 -0
- package/scripts/snapshot/__pycache__/snapshot_service.cpython-311.pyc +0 -0
- package/scripts/snapshot/cli.py +0 -193
- package/scripts/snapshot/database_repository.py +0 -276
- package/scripts/snapshot/file_repository.py +0 -248
- package/scripts/snapshot/git_repository.py +0 -161
- package/scripts/snapshot/models.py +0 -97
- package/scripts/snapshot/snapshot_lite.py +0 -466
- package/scripts/snapshot/snapshot_service.py +0 -319
- package/scripts/sync/__pycache__/sync_improvements_to_boilerplate.cpython-311.pyc +0 -0
- package/scripts/sync/__pycache__/sync_to_boilerplate.cpython-311.pyc +0 -0
- package/scripts/sync/sync_improvements_to_boilerplate.py +0 -284
- package/scripts/sync/sync_to_boilerplate.py +0 -383
- package/scripts/test_domain_map_tools.py +0 -94
- package/scripts/test_domain_map_v2.py +0 -202
- package/scripts/test_domain_map_v2_no_llm.py +0 -97
- package/scripts/test_domain_map_v2_simple.py +0 -84
- package/scripts/test_local_installation.py +0 -436
- package/scripts/test_local_installation.sh +0 -201
- package/scripts/tests/README.md +0 -145
- package/scripts/tests/__pycache__/test_path_registry_workspace_rag.cpython-311-pytest-9.0.1.pyc +0 -0
- package/scripts/tests/__pycache__/test_rag_autosync.cpython-311.pyc +0 -0
- package/scripts/tests/__pycache__/test_rag_cli_workspace.cpython-311-pytest-9.0.1.pyc +0 -0
- package/scripts/tests/__pycache__/test_rag_config_workspace.cpython-311-pytest-9.0.1.pyc +0 -0
- package/scripts/tests/__pycache__/test_vector_store_workspace.cpython-311-pytest-9.0.1.pyc +0 -0
- package/scripts/tests/dry_run_session_integration.sh +0 -329
- package/scripts/tests/test_command_intelligence_coverage.sh +0 -102
- package/scripts/tests/test_epic_auto_injection.sh +0 -71
- package/scripts/tests/test_mcp_server.sh +0 -110
- package/scripts/tests/test_path_registry_workspace_rag.py +0 -146
- package/scripts/tests/test_permission_hook.sh +0 -118
- package/scripts/tests/test_rag_autosync.py +0 -318
- package/scripts/tests/test_rag_cli_workspace.py +0 -275
- package/scripts/tests/test_rag_config_workspace.py +0 -72
- package/scripts/tests/test_vector_store_workspace.py +0 -133
- package/scripts/tests/test_workspace_context.sh +0 -69
- package/scripts/token_metrics.py +0 -546
- package/scripts/user_story_chat.py +0 -271
- package/scripts/user_story_manager.py +0 -483
- package/scripts/utilities/WORKSPACE_ANALYZER_README.md +0 -307
- package/scripts/utilities/__pycache__/apply_toon_to_all.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/boilerplate_sync.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/check_skills_loaded.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/context_memory_toon.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/convert_skill_to_toon.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/help_loader.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/markdown_template_enforcer.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/optimize_markdown.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/optimize_md_preserve_header.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/remove_emojis_safe.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/report_generator.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/token_savings_monitor.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/workspace_analyzer.cpython-311.pyc +0 -0
- package/scripts/utilities/__pycache__/workspace_analyzer.cpython-312.pyc +0 -0
- package/scripts/utilities/apply_toon_to_all.py +0 -103
- package/scripts/utilities/boilerplate_sync.py +0 -359
- package/scripts/utilities/check_skills_loaded.py +0 -97
- package/scripts/utilities/context_memory_toon.py +0 -145
- package/scripts/utilities/convert_skill_to_toon.py +0 -671
- package/scripts/utilities/help_loader.py +0 -175
- package/scripts/utilities/markdown_template_enforcer.py +0 -570
- package/scripts/utilities/optimize_markdown.py +0 -188
- package/scripts/utilities/optimize_md_preserve_header.py +0 -192
- package/scripts/utilities/remove_emojis_safe.py +0 -85
- package/scripts/utilities/report_generator.py +0 -335
- package/scripts/utilities/token_savings_monitor.py +0 -307
- package/scripts/utilities/workspace_analyzer.py +0 -520
- package/scripts/validators/__pycache__/code_validator.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/file_governance_manager.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/operation_validator.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/policy_guard.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_code_operations.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_code_operations_v2.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_command.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_compliance.cpython-311.pyc +0 -0
- package/scripts/validators/__pycache__/validate_ddd_migration.cpython-311.pyc +0 -0
- package/scripts/validators/code_validator.py +0 -364
- package/scripts/validators/data_validator.py +0 -353
- package/scripts/validators/file_governance_manager.py +0 -22
- package/scripts/validators/operation_validator.py +0 -360
- package/scripts/validators/policy_guard.py +0 -248
- package/scripts/validators/schema_mapper.py +0 -348
- package/scripts/validators/validate_code_operations.py +0 -114
- package/scripts/validators/validate_code_operations_v2.py +0 -305
- package/scripts/validators/validate_command.py +0 -97
- package/scripts/validators/validate_compliance.py +0 -362
- package/scripts/validators/validate_ddd_migration.py +0 -384
- package/scripts/workspace_dependency_manager.py +0 -417
- package/scripts/workspace_detector.py +0 -179
- package/scripts/workspace_manager.py +0 -17
- package/src/__init__.py +0 -1
- package/src/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/adapters/__init__.py +0 -0
- package/src/adapters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/adapters/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/adapters/__pycache__/context_memory_adapter.cpython-312.pyc +0 -0
- package/src/adapters/__pycache__/context_memory_adapter.cpython-313.pyc +0 -0
- package/src/adapters/context_memory_adapter.py +0 -356
- package/src/application/__init__.py +0 -18
- package/src/application/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/application/code_management/use_cases/extract_function_use_case.py +0 -309
- package/src/application/context_memory/__init__.py +0 -10
- package/src/application/context_memory/context_memory_service.py +0 -154
- package/src/application/context_memory/use_cases/__init__.py +0 -15
- package/src/application/context_memory/use_cases/add_todo_use_case.py +0 -99
- package/src/application/context_memory/use_cases/complete_todo_use_case.py +0 -73
- package/src/application/context_memory/use_cases/list_todos_use_case.py +0 -86
- package/src/application/context_memory/use_cases/read_messages_use_case.py +0 -105
- package/src/application/context_memory/use_cases/send_message_use_case.py +0 -107
- package/src/application/domain_maps/__init__.py +0 -10
- package/src/application/domain_maps/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/domain_maps/__pycache__/domain_map_service.cpython-312.pyc +0 -0
- package/src/application/domain_maps/__pycache__/domain_map_service_v2.cpython-312.pyc +0 -0
- package/src/application/domain_maps/__pycache__/input_validators.cpython-312.pyc +0 -0
- package/src/application/domain_maps/domain_map_service.py +0 -496
- package/src/application/domain_maps/domain_map_service_v2.py +0 -790
- package/src/application/domain_maps/input_validators.py +0 -63
- package/src/application/file_governance/__init__.py +0 -9
- package/src/application/file_governance/file_governance_service.py +0 -163
- package/src/application/file_governance/use_cases/__init__.py +0 -11
- package/src/application/file_governance/use_cases/apply_rules_use_case.py +0 -118
- package/src/application/file_governance/use_cases/list_violations_use_case.py +0 -102
- package/src/application/file_governance/use_cases/validate_file_access_use_case.py +0 -109
- package/src/application/git_repository/__init__.py +0 -10
- package/src/application/git_repository/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/git_repository/__pycache__/git_repo_service.cpython-312.pyc +0 -0
- package/src/application/git_repository/__pycache__/git_repository_service.cpython-312.pyc +0 -0
- package/src/application/git_repository/git_repo_service.py +0 -407
- package/src/application/git_repository/git_repository_service.py +0 -92
- package/src/application/git_repository/use_cases/__init__.py +0 -9
- package/src/application/git_repository/use_cases/commit_use_case.py +0 -97
- package/src/application/git_repository/use_cases/status_use_case.py +0 -76
- package/src/application/governance/__init__.py +0 -16
- package/src/application/governance/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/governance/__pycache__/artifact_service.cpython-312.pyc +0 -0
- package/src/application/governance/artifact_service.py +0 -482
- package/src/application/kanban/__init__.py +0 -19
- package/src/application/kanban/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/artifact_service.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/artifact_service.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/context_bridge.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/context_bridge.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/grooming_validator.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/kanban_service.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/kanban_service.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/migration_runner.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/session_integration.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/session_integration.cpython-313.pyc +0 -0
- package/src/application/kanban/__pycache__/token_metrics_service.cpython-312.pyc +0 -0
- package/src/application/kanban/__pycache__/token_metrics_service.cpython-313.pyc +0 -0
- package/src/application/kanban/artifact_service.py +0 -326
- package/src/application/kanban/batch_service.py +0 -601
- package/src/application/kanban/context_bridge.py +0 -244
- package/src/application/kanban/grooming_validator.py +0 -219
- package/src/application/kanban/kanban_service.py +0 -553
- package/src/application/kanban/migration_runner.py +0 -278
- package/src/application/kanban/session_integration.py +0 -135
- package/src/application/kanban/token_metrics_service.py +0 -495
- package/src/application/orchestration/__init__.py +0 -9
- package/src/application/orchestration/scrum_master_service.py +0 -993
- package/src/application/quality/code_review_system.py +0 -573
- package/src/application/rag/__init__.py +0 -6
- package/src/application/rag/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/__init__.py +0 -5
- package/src/application/rag/use_cases/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/__pycache__/index_code_use_case.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/__pycache__/semantic_search_use_case.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/__pycache__/snippet_retrieval_use_case.cpython-312.pyc +0 -0
- package/src/application/rag/use_cases/index_code_use_case.py +0 -134
- package/src/application/rag/use_cases/semantic_search_use_case.py +0 -92
- package/src/application/rag/use_cases/snippet_retrieval_use_case.py +0 -92
- package/src/application/user_stories/__init__.py +0 -9
- package/src/application/user_stories/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/user_stories/__pycache__/user_story_service.cpython-312.pyc +0 -0
- package/src/application/user_stories/user_story_service.py +0 -437
- package/src/application/user_story_chat/__init__.py +0 -9
- package/src/application/user_story_chat/user_story_chat_service.py +0 -250
- package/src/application/workspace/__init__.py +0 -32
- package/src/application/workspace/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/application/workspace/__pycache__/cross_workspace_orchestrator.cpython-312.pyc +0 -0
- package/src/application/workspace/__pycache__/mcp_integration_service.cpython-312.pyc +0 -0
- package/src/application/workspace/__pycache__/workspace_service.cpython-312.pyc +0 -0
- package/src/application/workspace/change_detector.py +0 -360
- package/src/application/workspace/context_switcher.py +0 -294
- package/src/application/workspace/cross_workspace_orchestrator.py +0 -410
- package/src/application/workspace/error_router.py +0 -325
- package/src/application/workspace/impact_analyzer.py +0 -434
- package/src/application/workspace/mcp_integration_service.py +0 -305
- package/src/application/workspace/rag_client.py +0 -89
- package/src/application/workspace/use_cases/__init__.py +0 -9
- package/src/application/workspace/use_cases/create_workspace_use_case.py +0 -98
- package/src/application/workspace/use_cases/list_workspaces_use_case.py +0 -92
- package/src/application/workspace/workspace_service.py +0 -668
- package/src/context_memory/__init__.py +0 -22
- package/src/context_memory/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/context_memory/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/context_memory/__pycache__/manager.cpython-312.pyc +0 -0
- package/src/context_memory/__pycache__/manager.cpython-313.pyc +0 -0
- package/src/context_memory/__pycache__/models.cpython-312.pyc +0 -0
- package/src/context_memory/__pycache__/models.cpython-313.pyc +0 -0
- package/src/context_memory/manager.py +0 -635
- package/src/context_memory/models.py +0 -223
- package/src/context_memory/schema.sql +0 -64
- package/src/domain/__init__.py +0 -12
- package/src/domain/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/architecture/__pycache__/pattern_detector.cpython-312.pyc +0 -0
- package/src/domain/architecture/pattern_detector.py +0 -641
- package/src/domain/code_management/README.md +0 -112
- package/src/domain/code_management/__init__.py +0 -9
- package/src/domain/code_management/entities/code_block.py +0 -131
- package/src/domain/code_management/events.py +0 -393
- package/src/domain/code_management/repositories.py +0 -145
- package/src/domain/code_management/services.py +0 -377
- package/src/domain/code_management/validators.py +0 -53
- package/src/domain/code_management/value_objects.py +0 -212
- package/src/domain/context_memory/README.md +0 -80
- package/src/domain/context_memory/__init__.py +0 -9
- package/src/domain/context_memory/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/context_entry.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/context_entry.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/context_entry_query_service.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/context_entry_query_service.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/entities.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/repositories.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/services.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/services.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/session.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/session.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/session_coordinator.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/session_coordinator.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/todo.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/todo.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/todo_query_service.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/todo_query_service.cpython-313.pyc +0 -0
- package/src/domain/context_memory/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/context_memory/__pycache__/value_objects.cpython-313.pyc +0 -0
- package/src/domain/context_memory/context_entry.py +0 -125
- package/src/domain/context_memory/context_entry_query_service.py +0 -116
- package/src/domain/context_memory/entities.py +0 -12
- package/src/domain/context_memory/events.py +0 -254
- package/src/domain/context_memory/repositories.py +0 -324
- package/src/domain/context_memory/services.py +0 -17
- package/src/domain/context_memory/session.py +0 -282
- package/src/domain/context_memory/session_coordinator.py +0 -77
- package/src/domain/context_memory/session_marker_manager.py +0 -419
- package/src/domain/context_memory/todo.py +0 -155
- package/src/domain/context_memory/todo_query_service.py +0 -237
- package/src/domain/context_memory/value_objects.py +0 -287
- package/src/domain/domain_maps/__init__.py +0 -33
- package/src/domain/domain_maps/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/domain_map.json +0 -783
- package/src/domain/domain_maps/entities/__init__.py +0 -6
- package/src/domain/domain_maps/entities/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/entities/__pycache__/bounded_context.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/entities/__pycache__/domain_map.cpython-312.pyc +0 -0
- package/src/domain/domain_maps/entities/bounded_context.py +0 -176
- package/src/domain/domain_maps/entities/domain_map.py +0 -194
- package/src/domain/domain_maps/events.py +0 -159
- package/src/domain/domain_maps/repositories.py +0 -179
- package/src/domain/domain_maps/services.py +0 -197
- package/src/domain/domain_maps/value_objects.py +0 -138
- package/src/domain/entities/__pycache__/entity_extractor.cpython-312.pyc +0 -0
- package/src/domain/entities/entity_extractor.py +0 -556
- package/src/domain/file_governance/README.md +0 -70
- package/src/domain/file_governance/__init__.py +0 -9
- package/src/domain/file_governance/entities/__init__.py +0 -15
- package/src/domain/file_governance/entities/file_operation.py +0 -135
- package/src/domain/file_governance/entities/file_policy.py +0 -127
- package/src/domain/file_governance/entities/file_rule.py +0 -157
- package/src/domain/file_governance/events.py +0 -192
- package/src/domain/file_governance/repositories.py +0 -220
- package/src/domain/file_governance/services.py +0 -372
- package/src/domain/file_governance/value_objects.py +0 -307
- package/src/domain/git_repository/README.md +0 -94
- package/src/domain/git_repository/__init__.py +0 -45
- package/src/domain/git_repository/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/git_repository/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/git_repository/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/git_repository/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/git_repository/entities.py +0 -271
- package/src/domain/git_repository/repositories.py +0 -73
- package/src/domain/git_repository/value_objects.py +0 -377
- package/src/domain/governance/__init__.py +0 -83
- package/src/domain/governance/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/artifact_frontmatter.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/artifact_frontmatter.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/artifact_path.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/artifact_path.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/location_rules.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/location_rules.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/path_governance.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/path_governance.cpython-313.pyc +0 -0
- package/src/domain/governance/__pycache__/path_keys.cpython-312.pyc +0 -0
- package/src/domain/governance/__pycache__/path_keys.cpython-313.pyc +0 -0
- package/src/domain/governance/artifact_frontmatter.py +0 -380
- package/src/domain/governance/artifact_path.py +0 -346
- package/src/domain/governance/location_rules.py +0 -157
- package/src/domain/governance/path_governance.py +0 -331
- package/src/domain/governance/path_keys.py +0 -52
- package/src/domain/kanban/__init__.py +0 -30
- package/src/domain/kanban/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/kanban/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/kanban/__pycache__/schema_provider.cpython-312.pyc +0 -0
- package/src/domain/kanban/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/kanban/__pycache__/value_objects.cpython-313.pyc +0 -0
- package/src/domain/kanban/schema.sql +0 -340
- package/src/domain/kanban/schema_provider.py +0 -347
- package/src/domain/kanban/value_objects.py +0 -242
- package/src/domain/mobile_testing/__init__.py +0 -54
- package/src/domain/mobile_testing/device_repository.py +0 -240
- package/src/domain/mobile_testing/entities.py +0 -450
- package/src/domain/mobile_testing/test_repository.py +0 -499
- package/src/domain/mobile_testing/value_objects.py +0 -232
- package/src/domain/orchestration/__init__.py +0 -38
- package/src/domain/orchestration/agent_config_schema.py +0 -398
- package/src/domain/orchestration/config_validator.py +0 -572
- package/src/domain/rag/README.md +0 -66
- package/src/domain/rag/__init__.py +0 -43
- package/src/domain/rag/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/rag/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/rag/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/rag/__pycache__/services.cpython-312.pyc +0 -0
- package/src/domain/rag/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/rag/domain_map.json +0 -90
- package/src/domain/rag/entities.py +0 -154
- package/src/domain/rag/events.py +0 -107
- package/src/domain/rag/file_splitter_service.py +0 -312
- package/src/domain/rag/indexing_strategy_service.py +0 -133
- package/src/domain/rag/repositories.py +0 -192
- package/src/domain/rag/services.py +0 -240
- package/src/domain/rag/value_objects.py +0 -177
- package/src/domain/relationships/__pycache__/relationship_mapper.cpython-312.pyc +0 -0
- package/src/domain/relationships/relationship_mapper.py +0 -712
- package/src/domain/shared/README.md +0 -95
- package/src/domain/shared/__init__.py +0 -108
- package/src/domain/shared/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/shared/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/shared/__pycache__/toon_formatter.cpython-312.pyc +0 -0
- package/src/domain/shared/toon_formatter.py +0 -365
- package/src/domain/user_stories/README.md +0 -129
- package/src/domain/user_stories/__init__.py +0 -46
- package/src/domain/user_stories/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/user_stories/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/domain/user_stories/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/user_stories/__pycache__/entities.cpython-313.pyc +0 -0
- package/src/domain/user_stories/__pycache__/repositories.cpython-312.pyc +0 -0
- package/src/domain/user_stories/__pycache__/repositories.cpython-313.pyc +0 -0
- package/src/domain/user_stories/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/user_stories/__pycache__/value_objects.cpython-313.pyc +0 -0
- package/src/domain/user_stories/entities.py +0 -385
- package/src/domain/user_stories/repositories.py +0 -333
- package/src/domain/user_stories/value_objects.py +0 -383
- package/src/domain/user_story_chat/README.md +0 -83
- package/src/domain/user_story_chat/__init__.py +0 -34
- package/src/domain/user_story_chat/entities.py +0 -171
- package/src/domain/user_story_chat/repositories.py +0 -74
- package/src/domain/user_story_chat/value_objects.py +0 -140
- package/src/domain/workspace/README.md +0 -114
- package/src/domain/workspace/__init__.py +0 -74
- package/src/domain/workspace/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/entities.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/event_handlers.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/events.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/value_objects.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/workspace.cpython-312.pyc +0 -0
- package/src/domain/workspace/__pycache__/workspace_repository.cpython-312.pyc +0 -0
- package/src/domain/workspace/change_detection_vos.py +0 -331
- package/src/domain/workspace/entities.py +0 -184
- package/src/domain/workspace/event_handlers.py +0 -140
- package/src/domain/workspace/events.py +0 -294
- package/src/domain/workspace/value_objects.py +0 -493
- package/src/domain/workspace/workspace.py +0 -282
- package/src/domain/workspace/workspace_repository.py +0 -238
- package/src/infrastructure/README.md +0 -310
- package/src/infrastructure/__init__.py +0 -0
- package/src/infrastructure/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/infrastructure/__pycache__/workspace_cli.cpython-312.pyc +0 -0
- package/src/infrastructure/cli/__init__.py +0 -1
- package/src/infrastructure/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/cli/commands/__init__.py +0 -1
- package/src/infrastructure/cli/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/cli/commands/__pycache__/yaml_commands.cpython-312.pyc +0 -0
- package/src/infrastructure/cli/commands/yaml_commands.py +0 -577
- package/src/infrastructure/code_management/__init__.py +0 -31
- package/src/infrastructure/code_management/code_analysis_repository.py +0 -399
- package/src/infrastructure/code_management/converters.py +0 -206
- package/src/infrastructure/code_management/examples.py +0 -362
- package/src/infrastructure/code_management/ollama_semantic_repository.py +0 -409
- package/src/infrastructure/code_management/sqlite_code_repository.py +0 -341
- package/src/infrastructure/context_memory/__init__.py +0 -0
- package/src/infrastructure/context_memory/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/converters.cpython-312.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/converters.cpython-313.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/sqlite_session_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/context_memory/__pycache__/sqlite_session_repository.cpython-313.pyc +0 -0
- package/src/infrastructure/context_memory/converters.py +0 -220
- package/src/infrastructure/context_memory/sqlite_context_entry_repository.py +0 -422
- package/src/infrastructure/context_memory/sqlite_session_repository.py +0 -448
- package/src/infrastructure/context_memory/sqlite_todo_repository.py +0 -442
- package/src/infrastructure/domain_maps/__init__.py +0 -17
- package/src/infrastructure/domain_maps/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/domain_maps/__pycache__/converters.cpython-312.pyc +0 -0
- package/src/infrastructure/domain_maps/__pycache__/sqlite_domain_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/domain_maps/__pycache__/sqlite_workspace_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/domain_maps/converters.py +0 -214
- package/src/infrastructure/domain_maps/sqlite_domain_repository.py +0 -293
- package/src/infrastructure/domain_maps/sqlite_workspace_repository.py +0 -377
- package/src/infrastructure/event_adapters/__init__.py +0 -10
- package/src/infrastructure/event_adapters/hybrid_adapter.py +0 -181
- package/src/infrastructure/event_adapters/memory_adapter.py +0 -234
- package/src/infrastructure/event_bus/README.md +0 -284
- package/src/infrastructure/event_bus/__init__.py +0 -27
- package/src/infrastructure/event_bus/base.py +0 -263
- package/src/infrastructure/event_bus/decorators.py +0 -351
- package/src/infrastructure/event_bus/event_persistence.py +0 -131
- package/src/infrastructure/event_bus/event_queries.py +0 -210
- package/src/infrastructure/event_bus/event_reconstruction.py +0 -111
- package/src/infrastructure/event_bus/event_sourcing_operations.py +0 -180
- package/src/infrastructure/event_bus/examples.py +0 -411
- package/src/infrastructure/event_bus/hybrid_event_bus.py +0 -360
- package/src/infrastructure/event_bus/in_memory_event_bus.py +0 -328
- package/src/infrastructure/event_bus/sqlite_event_store.py +0 -310
- package/src/infrastructure/event_bus_adapter.py +0 -320
- package/src/infrastructure/file_governance/__init__.py +0 -0
- package/src/infrastructure/file_governance/converters.py +0 -182
- package/src/infrastructure/file_governance/sqlite_file_rule_repository.py +0 -410
- package/src/infrastructure/git_repo_cli.py +0 -368
- package/src/infrastructure/git_repository/__init__.py +0 -0
- package/src/infrastructure/git_repository/converters.py +0 -139
- package/src/infrastructure/git_repository/git_repository_impl.py +0 -333
- package/src/infrastructure/git_repository/git_stats_operations.py +0 -127
- package/src/infrastructure/git_repository/git_status_operations.py +0 -165
- package/src/infrastructure/governance/__init__.py +0 -20
- package/src/infrastructure/governance/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/governance/__pycache__/artifact_storage.cpython-312.pyc +0 -0
- package/src/infrastructure/governance/artifact_storage.py +0 -584
- package/src/infrastructure/kanban/__init__.py +0 -9
- package/src/infrastructure/kanban/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/kanban/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/infrastructure/kanban/__pycache__/sqlite_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/kanban/__pycache__/sqlite_repository.cpython-313.pyc +0 -0
- package/src/infrastructure/kanban/sqlite_repository.py +0 -960
- package/src/infrastructure/llm/__pycache__/domain_map_llm.cpython-312.pyc +0 -0
- package/src/infrastructure/llm/domain_map_llm.py +0 -649
- package/src/infrastructure/lsp/__pycache__/language_server_manager.cpython-312.pyc +0 -0
- package/src/infrastructure/lsp/language_server_manager.py +0 -706
- package/src/infrastructure/mobile/__init__.py +0 -19
- package/src/infrastructure/mobile/adb_adapter.py +0 -687
- package/src/infrastructure/mobile/xcrun_adapter.py +0 -621
- package/src/infrastructure/orchestration/__init__.py +0 -15
- package/src/infrastructure/orchestration/config_loader.py +0 -416
- package/src/infrastructure/rag/REQUIREMENTS_cli_metadata_loader.md +0 -315
- package/src/infrastructure/rag/__init__.py +0 -9
- package/src/infrastructure/rag/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/document_loader_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/domain_map_loader.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/gitignore_aware_loader.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/hierarchical_domain_inference.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/oracle_document_loader.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/oracle_governance_loader.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/vector_store_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/vector_store_repository.cpython-313.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/vector_store_repository_observable.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/__pycache__/workspace_utils.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/cli_metadata_loader.py +0 -456
- package/src/infrastructure/rag/document_loader_repository.py +0 -1495
- package/src/infrastructure/rag/domain_map_loader.py +0 -117
- package/src/infrastructure/rag/domain_map_repository.py +0 -207
- package/src/infrastructure/rag/extractors/__init__.py +0 -13
- package/src/infrastructure/rag/extractors/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/__pycache__/category_extractor.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/__pycache__/command_extractor.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/__pycache__/intent_classifier.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/__pycache__/skill_extractor.cpython-312.pyc +0 -0
- package/src/infrastructure/rag/extractors/category_extractor.py +0 -89
- package/src/infrastructure/rag/extractors/command_extractor.py +0 -138
- package/src/infrastructure/rag/extractors/intent_classifier.py +0 -181
- package/src/infrastructure/rag/extractors/skill_extractor.py +0 -115
- package/src/infrastructure/rag/gitignore_aware_loader.py +0 -709
- package/src/infrastructure/rag/hierarchical_domain_inference.py +0 -385
- package/src/infrastructure/rag/llm_content_optimizer.py +0 -93
- package/src/infrastructure/rag/oracle_document_loader.py +0 -228
- package/src/infrastructure/rag/oracle_governance_loader.py +0 -285
- package/src/infrastructure/rag/project_structure_detector.py +0 -662
- package/src/infrastructure/rag/strategic_document_loader.py +0 -259
- package/src/infrastructure/rag/subprocess_rag_client.py +0 -348
- package/src/infrastructure/rag/template_repository.py +0 -192
- package/src/infrastructure/rag/type_filter_aliases.py +0 -234
- package/src/infrastructure/rag/vector_store_repository.py +0 -490
- package/src/infrastructure/rag/vector_store_repository_observable.py +0 -417
- package/src/infrastructure/rag/workspace_utils.py +0 -155
- package/src/infrastructure/roadmap/__init__.py +0 -5
- package/src/infrastructure/roadmap/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/roadmap/__pycache__/sqlite_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/roadmap/schema.sql +0 -123
- package/src/infrastructure/roadmap/sqlite_repository.py +0 -497
- package/src/infrastructure/security/README.md +0 -164
- package/src/infrastructure/security/__init__.py +0 -5
- package/src/infrastructure/security/dacl_kanban_repository.py +0 -456
- package/src/infrastructure/security/database_access_control.py +0 -423
- package/src/infrastructure/security/privilege_system.py +0 -215
- package/src/infrastructure/security/workflow_enforcer.py +0 -326
- package/src/infrastructure/tui/__init__.py +0 -9
- package/src/infrastructure/tui/jarvis_integrated_tui.py +0 -582
- package/src/infrastructure/user_stories/__init__.py +0 -31
- package/src/infrastructure/user_stories/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/user_stories/__pycache__/converters.cpython-312.pyc +0 -0
- package/src/infrastructure/user_stories/__pycache__/yaml_user_story_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/user_stories/converters.py +0 -316
- package/src/infrastructure/user_stories/yaml_user_story_repository.py +0 -551
- package/src/infrastructure/user_story_chat/__init__.py +0 -9
- package/src/infrastructure/user_story_chat/langchain_adapter.py +0 -22
- package/src/infrastructure/user_story_chat/langchain_chat_repository.py +0 -190
- package/src/infrastructure/workspace/__init__.py +0 -15
- package/src/infrastructure/workspace/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/__pycache__/converters.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/__pycache__/event_bus.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/__pycache__/sqlite_workspace_dependency_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/__pycache__/sqlite_workspace_repository.cpython-312.pyc +0 -0
- package/src/infrastructure/workspace/change_detection_handler.py +0 -119
- package/src/infrastructure/workspace/converters.py +0 -71
- package/src/infrastructure/workspace/error_detection_handler.py +0 -284
- package/src/infrastructure/workspace/event_bus.py +0 -217
- package/src/infrastructure/workspace/jarvis_rag_client.py +0 -288
- package/src/infrastructure/workspace/sqlite_workspace_dependency_repository.py +0 -419
- package/src/infrastructure/workspace/sqlite_workspace_repository.py +0 -358
- package/src/infrastructure/workspace_cli.py +0 -457
- package/src/jarvis_opencode.egg-info/PKG-INFO +0 -7
- package/src/jarvis_opencode.egg-info/SOURCES.txt +0 -279
- package/src/jarvis_opencode.egg-info/dependency_links.txt +0 -1
- package/src/jarvis_opencode.egg-info/top_level.txt +0 -7
- package/src/shared/__init__.py +0 -1
- package/src/shared/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/shared/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/shared/__pycache__/jarvis_home.cpython-312.pyc +0 -0
- package/src/shared/__pycache__/jarvis_home.cpython-313.pyc +0 -0
- package/src/shared/__pycache__/paths.cpython-312.pyc +0 -0
- package/src/shared/__pycache__/paths.cpython-313.pyc +0 -0
- package/src/shared/__pycache__/workspace_paths.cpython-312.pyc +0 -0
- package/src/shared/cli/__init__.py +0 -23
- package/src/shared/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/shared/cli/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/shared/cli/__pycache__/output_mode.cpython-312.pyc +0 -0
- package/src/shared/cli/__pycache__/output_mode.cpython-313.pyc +0 -0
- package/src/shared/cli/output_mode.py +0 -139
- package/src/shared/jarvis_home.py +0 -138
- package/src/shared/logging_config.py +0 -76
- package/src/shared/ollama_config.py +0 -75
- package/src/shared/paths.py +0 -332
- package/src/shared/ui/__pycache__/kanban_ui.cpython-312.pyc +0 -0
- package/src/shared/ui/__pycache__/kanban_ui.cpython-313.pyc +0 -0
- package/src/shared/ui/__pycache__/terminal_ui.cpython-312.pyc +0 -0
- package/src/shared/ui/domain_ui.py +0 -410
- package/src/shared/ui/kanban_ui.py +0 -660
- package/src/shared/ui/rag_ui.py +0 -571
- package/src/shared/ui/terminal_ui.py +0 -219
- package/src/shared/workspace_ollama_config.py +0 -270
- package/src/shared/workspace_paths.py +0 -379
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline.js","sourceRoot":"","sources":["../../../src/domain/pipeline/pipeline.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Domain — Port Interfaces
|
|
3
|
+
*
|
|
4
|
+
* Hexagonal architecture ports for external infrastructure.
|
|
5
|
+
* Domain defines WHAT operations are needed; infrastructure implements HOW.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: DIP — domain depends on abstractions, not implementations
|
|
8
|
+
* SOLID: ISP — separate port interfaces per capability
|
|
9
|
+
* DDD: Port/Adapter — domain-layer contracts with zero external dependencies
|
|
10
|
+
*/
|
|
11
|
+
import type { Result } from "../shared/value-objects.js";
|
|
12
|
+
/**
|
|
13
|
+
* Supported container runtimes for Dagger execution.
|
|
14
|
+
* Docker is the primary runtime; Apple Container is for Swift/Xcode on macOS.
|
|
15
|
+
*/
|
|
16
|
+
export type ContainerRuntime = "docker" | "apple-container";
|
|
17
|
+
/**
|
|
18
|
+
* Status information about the Dagger CLI and container runtime environment.
|
|
19
|
+
*/
|
|
20
|
+
export interface DaggerEnvironmentInfo {
|
|
21
|
+
/** Whether the Dagger CLI is installed and accessible. */
|
|
22
|
+
readonly daggerAvailable: boolean;
|
|
23
|
+
/** Dagger CLI version string (e.g., "0.15.1"), undefined if not installed. */
|
|
24
|
+
readonly daggerVersion?: string;
|
|
25
|
+
/** Detected container runtime, undefined if none found. */
|
|
26
|
+
readonly containerRuntime?: ContainerRuntime;
|
|
27
|
+
/** Whether the container runtime is currently running/accessible. */
|
|
28
|
+
readonly runtimeReady: boolean;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Request to execute a Dagger function within a module.
|
|
32
|
+
*/
|
|
33
|
+
export interface DaggerRunRequest {
|
|
34
|
+
/** Path to the directory containing the Dagger module (with dagger.json). */
|
|
35
|
+
readonly moduleDir: string;
|
|
36
|
+
/** The Dagger function to invoke (e.g., "lint", "test", "build"). */
|
|
37
|
+
readonly functionName: string;
|
|
38
|
+
/** Optional arguments to pass to the function. */
|
|
39
|
+
readonly args?: readonly string[];
|
|
40
|
+
/** Execution timeout in milliseconds. */
|
|
41
|
+
readonly timeoutMs?: number;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Result of a Dagger function execution.
|
|
45
|
+
*/
|
|
46
|
+
export interface DaggerRunResult {
|
|
47
|
+
/** Whether the function executed successfully (exit code 0). */
|
|
48
|
+
readonly success: boolean;
|
|
49
|
+
/** Combined stdout/stderr output. */
|
|
50
|
+
readonly output: string;
|
|
51
|
+
/** Process exit code. */
|
|
52
|
+
readonly exitCode: number;
|
|
53
|
+
/** Execution duration in milliseconds. */
|
|
54
|
+
readonly durationMs: number;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Port interface for Dagger CLI operations.
|
|
58
|
+
*
|
|
59
|
+
* Infrastructure adapter wraps the `dagger` CLI binary and container runtime
|
|
60
|
+
* to execute pipeline gate functions defined in Dagger modules.
|
|
61
|
+
*
|
|
62
|
+
* This is the domain contract — infrastructure decides HOW to invoke dagger,
|
|
63
|
+
* handle process management, and detect runtimes.
|
|
64
|
+
*/
|
|
65
|
+
export interface DaggerPort {
|
|
66
|
+
/**
|
|
67
|
+
* Check the Dagger CLI and container runtime environment.
|
|
68
|
+
* Returns availability info without side effects.
|
|
69
|
+
*/
|
|
70
|
+
checkEnvironment(): Promise<DaggerEnvironmentInfo>;
|
|
71
|
+
/**
|
|
72
|
+
* Execute a Dagger function.
|
|
73
|
+
* Returns a structured result — never throws for execution failures.
|
|
74
|
+
* Infrastructure errors (e.g., dagger not installed) return Result.fail().
|
|
75
|
+
*/
|
|
76
|
+
run(request: DaggerRunRequest): Promise<Result<DaggerRunResult>>;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* A single file to be generated as part of a Dagger module scaffold.
|
|
80
|
+
*/
|
|
81
|
+
export interface ScaffoldFile {
|
|
82
|
+
/** Relative path from project root (e.g., ".dagger/src/index.ts"). */
|
|
83
|
+
readonly path: string;
|
|
84
|
+
/** Full file content as a string. */
|
|
85
|
+
readonly content: string;
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Complete scaffold output for a Dagger module.
|
|
89
|
+
*/
|
|
90
|
+
export interface ScaffoldOutput {
|
|
91
|
+
/** Stack template that generated this scaffold. */
|
|
92
|
+
readonly stack: string;
|
|
93
|
+
/** SDK language used by the Dagger module. */
|
|
94
|
+
readonly sdk: "typescript" | "python";
|
|
95
|
+
/** Module name derived from stack template. */
|
|
96
|
+
readonly moduleName: string;
|
|
97
|
+
/** Files to generate, in order. */
|
|
98
|
+
readonly files: readonly ScaffoldFile[];
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Port interface for Dagger module scaffold generation.
|
|
102
|
+
*
|
|
103
|
+
* Infrastructure generates the actual file content for each stack template.
|
|
104
|
+
* Domain defines the contract; infrastructure decides file structure and code.
|
|
105
|
+
*
|
|
106
|
+
* SOLID: DIP — domain depends on abstraction
|
|
107
|
+
* SOLID: ISP — separate from DaggerPort (generation vs execution)
|
|
108
|
+
*/
|
|
109
|
+
export interface ScaffoldPort {
|
|
110
|
+
/**
|
|
111
|
+
* Generate scaffold files for a given stack template.
|
|
112
|
+
* Returns undefined if the stack is not supported.
|
|
113
|
+
*/
|
|
114
|
+
generate(stack: string): ScaffoldOutput | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* List all stacks that have scaffold support.
|
|
117
|
+
*/
|
|
118
|
+
supportedStacks(): readonly string[];
|
|
119
|
+
}
|
|
120
|
+
//# sourceMappingURL=ports.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ports.d.ts","sourceRoot":"","sources":["../../../src/domain/pipeline/ports.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AAEzD;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG,iBAAiB,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,0DAA0D;IAC1D,QAAQ,CAAC,eAAe,EAAE,OAAO,CAAC;IAClC,8EAA8E;IAC9E,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAChC,2DAA2D;IAC3D,QAAQ,CAAC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IAC7C,qEAAqE;IACrE,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,6EAA6E;IAC7E,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,qEAAqE;IACrE,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,kDAAkD;IAClD,QAAQ,CAAC,IAAI,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAClC,yCAAyC;IACzC,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,gEAAgE;IAChE,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B,qCAAqC;IACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,yBAAyB;IACzB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,0CAA0C;IAC1C,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;CAC7B;AAED;;;;;;;;GAQG;AACH,MAAM,WAAW,UAAU;IACzB;;;OAGG;IACH,gBAAgB,IAAI,OAAO,CAAC,qBAAqB,CAAC,CAAC;IAEnD;;;;OAIG;IACH,GAAG,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,CAAC;CAClE;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,sEAAsE;IACtE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,qCAAqC;IACrC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,mDAAmD;IACnD,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,8CAA8C;IAC9C,QAAQ,CAAC,GAAG,EAAE,YAAY,GAAG,QAAQ,CAAC;IACtC,+CAA+C;IAC/C,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,mCAAmC;IACnC,QAAQ,CAAC,KAAK,EAAE,SAAS,YAAY,EAAE,CAAC;CACzC;AAED;;;;;;;;GAQG;AACH,MAAM,WAAW,YAAY;IAC3B;;;OAGG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAG,cAAc,GAAG,SAAS,CAAC;IAEpD;;OAEG;IACH,eAAe,IAAI,SAAS,MAAM,EAAE,CAAC;CACtC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Domain — Port Interfaces
|
|
3
|
+
*
|
|
4
|
+
* Hexagonal architecture ports for external infrastructure.
|
|
5
|
+
* Domain defines WHAT operations are needed; infrastructure implements HOW.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: DIP — domain depends on abstractions, not implementations
|
|
8
|
+
* SOLID: ISP — separate port interfaces per capability
|
|
9
|
+
* DDD: Port/Adapter — domain-layer contracts with zero external dependencies
|
|
10
|
+
*/
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=ports.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ports.js","sourceRoot":"","sources":["../../../src/domain/pipeline/ports.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Domain — Repository Interfaces (Ports)
|
|
3
|
+
*
|
|
4
|
+
* Pure interfaces defining persistence contracts.
|
|
5
|
+
* Implementations provided by infrastructure layer (DIP).
|
|
6
|
+
*
|
|
7
|
+
* SOLID: ISP — separate interfaces per aggregate, DIP — domain defines contracts
|
|
8
|
+
* DDD: Repository pattern — abstracts persistence behind domain-driven interface
|
|
9
|
+
*/
|
|
10
|
+
import type { WorkspaceId } from "../shared/value-objects.js";
|
|
11
|
+
import type { Pipeline } from "./pipeline.js";
|
|
12
|
+
import type { PipelineId, PipelineScope, PipelineStatus, StackTemplate, GateType, SkipPolicy } from "./value-objects.js";
|
|
13
|
+
/**
|
|
14
|
+
* Repository for Pipeline aggregate root persistence.
|
|
15
|
+
* One pipeline per workspace+scope+version combination (conceptually).
|
|
16
|
+
*/
|
|
17
|
+
export interface PipelineRepository {
|
|
18
|
+
/** Persist a pipeline (create or update). */
|
|
19
|
+
save(pipeline: Pipeline): Promise<void>;
|
|
20
|
+
/** Find a pipeline by its ID. Returns undefined if not found. */
|
|
21
|
+
findById(id: PipelineId): Promise<Pipeline | undefined>;
|
|
22
|
+
/** Find all pipelines for a workspace. */
|
|
23
|
+
findByWorkspace(workspaceId: WorkspaceId): Promise<readonly Pipeline[]>;
|
|
24
|
+
/** Find pipelines by workspace and status. */
|
|
25
|
+
findByStatus(workspaceId: WorkspaceId, status: PipelineStatus): Promise<readonly Pipeline[]>;
|
|
26
|
+
/** Find pipelines by workspace and scope. */
|
|
27
|
+
findByScope(workspaceId: WorkspaceId, scope: PipelineScope): Promise<readonly Pipeline[]>;
|
|
28
|
+
/** Find the active pipeline for a workspace (at most one). */
|
|
29
|
+
findActive(workspaceId: WorkspaceId): Promise<Pipeline | undefined>;
|
|
30
|
+
/** Delete a pipeline by ID. Returns true if found and deleted. */
|
|
31
|
+
delete(id: PipelineId): Promise<boolean>;
|
|
32
|
+
/** Get the next available sequence number for PipelineId generation. */
|
|
33
|
+
nextSequence(workspaceId: WorkspaceId): Promise<number>;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Template registry providing pipeline template configurations.
|
|
37
|
+
*
|
|
38
|
+
* Templates define which gates a pipeline should have for a given
|
|
39
|
+
* stack + scope combination, along with default skip policies and
|
|
40
|
+
* dagger function references.
|
|
41
|
+
*
|
|
42
|
+
* NOTE: This will likely be implemented as an in-memory registry
|
|
43
|
+
* in infrastructure (CD-004), not a database-backed store.
|
|
44
|
+
*/
|
|
45
|
+
export interface PipelineTemplateRepository {
|
|
46
|
+
/** Get gate configurations for a stack template and pipeline scope. */
|
|
47
|
+
getTemplate(stack: StackTemplate, scope: PipelineScope): Promise<PipelineTemplateConfig | undefined>;
|
|
48
|
+
/** List all available stack templates. */
|
|
49
|
+
listTemplates(): Promise<readonly StackTemplate[]>;
|
|
50
|
+
/** Check if a template exists for the given stack. */
|
|
51
|
+
hasTemplate(stack: StackTemplate): Promise<boolean>;
|
|
52
|
+
}
|
|
53
|
+
/** Configuration returned by the template registry. */
|
|
54
|
+
export interface PipelineTemplateConfig {
|
|
55
|
+
readonly stack: StackTemplate;
|
|
56
|
+
readonly scope: PipelineScope;
|
|
57
|
+
readonly gates: readonly GateTemplateConfig[];
|
|
58
|
+
}
|
|
59
|
+
/** Gate configuration within a template. */
|
|
60
|
+
export interface GateTemplateConfig {
|
|
61
|
+
readonly type: GateType;
|
|
62
|
+
readonly daggerFunction: string;
|
|
63
|
+
readonly skipPolicy: SkipPolicy;
|
|
64
|
+
readonly command?: string;
|
|
65
|
+
}
|
|
66
|
+
//# sourceMappingURL=repositories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"repositories.d.ts","sourceRoot":"","sources":["../../../src/domain/pipeline/repositories.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAC9C,OAAO,KAAK,EACV,UAAU,EACV,aAAa,EACb,cAAc,EACd,aAAa,EACb,QAAQ,EACR,UAAU,EACX,MAAM,oBAAoB,CAAC;AAE5B;;;GAGG;AACH,MAAM,WAAW,kBAAkB;IACjC,6CAA6C;IAC7C,IAAI,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAExC,iEAAiE;IACjE,QAAQ,CAAC,EAAE,EAAE,UAAU,GAAG,OAAO,CAAC,QAAQ,GAAG,SAAS,CAAC,CAAC;IAExD,0CAA0C;IAC1C,eAAe,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,SAAS,QAAQ,EAAE,CAAC,CAAC;IAExE,8CAA8C;IAC9C,YAAY,CACV,WAAW,EAAE,WAAW,EACxB,MAAM,EAAE,cAAc,GACrB,OAAO,CAAC,SAAS,QAAQ,EAAE,CAAC,CAAC;IAEhC,6CAA6C;IAC7C,WAAW,CACT,WAAW,EAAE,WAAW,EACxB,KAAK,EAAE,aAAa,GACnB,OAAO,CAAC,SAAS,QAAQ,EAAE,CAAC,CAAC;IAEhC,8DAA8D;IAC9D,UAAU,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,QAAQ,GAAG,SAAS,CAAC,CAAC;IAEpE,kEAAkE;IAClE,MAAM,CAAC,EAAE,EAAE,UAAU,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAEzC,wEAAwE;IACxE,YAAY,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CACzD;AAED;;;;;;;;;GASG;AACH,MAAM,WAAW,0BAA0B;IACzC,uEAAuE;IACvE,WAAW,CACT,KAAK,EAAE,aAAa,EACpB,KAAK,EAAE,aAAa,GACnB,OAAO,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAAC;IAE/C,0CAA0C;IAC1C,aAAa,IAAI,OAAO,CAAC,SAAS,aAAa,EAAE,CAAC,CAAC;IAEnD,sDAAsD;IACtD,WAAW,CAAC,KAAK,EAAE,aAAa,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CACrD;AAED,uDAAuD;AACvD,MAAM,WAAW,sBAAsB;IACrC,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC;IAC9B,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC;IAC9B,QAAQ,CAAC,KAAK,EAAE,SAAS,kBAAkB,EAAE,CAAC;CAC/C;AAED,4CAA4C;AAC5C,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IACxB,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,UAAU,EAAE,UAAU,CAAC;IAChC,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;CAC3B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Domain — Repository Interfaces (Ports)
|
|
3
|
+
*
|
|
4
|
+
* Pure interfaces defining persistence contracts.
|
|
5
|
+
* Implementations provided by infrastructure layer (DIP).
|
|
6
|
+
*
|
|
7
|
+
* SOLID: ISP — separate interfaces per aggregate, DIP — domain defines contracts
|
|
8
|
+
* DDD: Repository pattern — abstracts persistence behind domain-driven interface
|
|
9
|
+
*/
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=repositories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"repositories.js","sourceRoot":"","sources":["../../../src/domain/pipeline/repositories.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Domain — Domain Services
|
|
3
|
+
*
|
|
4
|
+
* Stateless services that orchestrate cross-entity business logic.
|
|
5
|
+
* PipelineFactory: creates pipelines from templates.
|
|
6
|
+
* GateEnforcer: validates gate transitions with full context.
|
|
7
|
+
*
|
|
8
|
+
* SOLID: SRP — each service has one responsibility
|
|
9
|
+
* DDD: Domain Service — logic that doesn't belong to a single entity
|
|
10
|
+
*/
|
|
11
|
+
import type { WorkspaceId } from "../shared/value-objects.js";
|
|
12
|
+
import type { Result } from "../shared/value-objects.js";
|
|
13
|
+
import { Pipeline } from "./pipeline.js";
|
|
14
|
+
import type { PipelineRepository, PipelineTemplateRepository } from "./repositories.js";
|
|
15
|
+
import { PipelineId, type PipelineScope, type StackTemplate, GateId } from "./value-objects.js";
|
|
16
|
+
/** Request to create a new pipeline. */
|
|
17
|
+
export interface CreatePipelineRequest {
|
|
18
|
+
readonly workspaceId: WorkspaceId;
|
|
19
|
+
readonly stack: StackTemplate;
|
|
20
|
+
readonly scope: PipelineScope;
|
|
21
|
+
readonly version: string;
|
|
22
|
+
readonly cardId?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* PipelineFactory — creates Pipeline aggregates from templates.
|
|
26
|
+
*
|
|
27
|
+
* Loads template configuration, generates gates in order,
|
|
28
|
+
* assigns IDs, and returns a fully-formed Pipeline in draft status.
|
|
29
|
+
*/
|
|
30
|
+
export declare class PipelineFactory {
|
|
31
|
+
private readonly pipelineRepo;
|
|
32
|
+
private readonly templateRepo;
|
|
33
|
+
constructor(pipelineRepo: PipelineRepository, templateRepo: PipelineTemplateRepository);
|
|
34
|
+
/**
|
|
35
|
+
* Create a new pipeline from a template.
|
|
36
|
+
*
|
|
37
|
+
* 1. Validates the template exists
|
|
38
|
+
* 2. Parses and validates the version string
|
|
39
|
+
* 3. Generates a pipeline ID
|
|
40
|
+
* 4. Creates gates from template config
|
|
41
|
+
* 5. Returns a Pipeline in draft status
|
|
42
|
+
*/
|
|
43
|
+
create(request: CreatePipelineRequest): Promise<Result<Pipeline>>;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* GateEnforcer — validates and executes gate transitions.
|
|
47
|
+
*
|
|
48
|
+
* Provides a safe, Result-returning API for gate operations
|
|
49
|
+
* that wraps Pipeline entity methods (which throw on invariant violations).
|
|
50
|
+
* Handles the load-mutate-save cycle.
|
|
51
|
+
*/
|
|
52
|
+
export declare class GateEnforcer {
|
|
53
|
+
private readonly pipelineRepo;
|
|
54
|
+
constructor(pipelineRepo: PipelineRepository);
|
|
55
|
+
/** Start a gate. Validates ordering and pipeline state. */
|
|
56
|
+
startGate(pipelineId: PipelineId, gateId: GateId): Promise<Result<Pipeline>>;
|
|
57
|
+
/** Pass a gate with optional output. May complete the pipeline. */
|
|
58
|
+
passGate(pipelineId: PipelineId, gateId: GateId, output?: string): Promise<Result<Pipeline>>;
|
|
59
|
+
/** Fail a gate. Transitions pipeline to failed. */
|
|
60
|
+
failGate(pipelineId: PipelineId, gateId: GateId, output?: string): Promise<Result<Pipeline>>;
|
|
61
|
+
/** Skip a gate with reason and optional approval. */
|
|
62
|
+
skipGate(pipelineId: PipelineId, gateId: GateId, reason: string, approvedBy?: string): Promise<Result<Pipeline>>;
|
|
63
|
+
/** Retry a failed gate. Reactivates pipeline. */
|
|
64
|
+
retryGate(pipelineId: PipelineId, gateId: GateId): Promise<Result<Pipeline>>;
|
|
65
|
+
/** Activate a pipeline (draft -> active). */
|
|
66
|
+
activatePipeline(pipelineId: PipelineId): Promise<Result<Pipeline>>;
|
|
67
|
+
/** Cancel a pipeline. */
|
|
68
|
+
cancelPipeline(pipelineId: PipelineId): Promise<Result<Pipeline>>;
|
|
69
|
+
/** Retry a failed pipeline. */
|
|
70
|
+
retryPipeline(pipelineId: PipelineId): Promise<Result<Pipeline>>;
|
|
71
|
+
/**
|
|
72
|
+
* Load-mutate-save pattern.
|
|
73
|
+
* Loads pipeline, applies mutation, saves, returns result.
|
|
74
|
+
*/
|
|
75
|
+
private withPipeline;
|
|
76
|
+
}
|
|
77
|
+
//# sourceMappingURL=services.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../../src/domain/pipeline/services.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AAGzD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,KAAK,EACV,kBAAkB,EAClB,0BAA0B,EAC3B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,UAAU,EACV,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,MAAM,EAGP,MAAM,oBAAoB,CAAC;AAE5B,wCAAwC;AACxC,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAClC,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC;IAC9B,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC;IAC9B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED;;;;;GAKG;AACH,qBAAa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAqB;IAClD,OAAO,CAAC,QAAQ,CAAC,YAAY,CAA6B;gBAGxD,YAAY,EAAE,kBAAkB,EAChC,YAAY,EAAE,0BAA0B;IAM1C;;;;;;;;OAQG;IACG,MAAM,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;CA+DxE;AAID;;;;;;GAMG;AACH,qBAAa,YAAY;IACvB,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAqB;gBAEtC,YAAY,EAAE,kBAAkB;IAI5C,2DAA2D;IACrD,SAAS,CACb,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAM5B,mEAAmE;IAC7D,QAAQ,CACZ,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,MAAM,EACd,MAAM,CAAC,EAAE,MAAM,GACd,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAM5B,mDAAmD;IAC7C,QAAQ,CACZ,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,MAAM,EACd,MAAM,CAAC,EAAE,MAAM,GACd,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAM5B,qDAAqD;IAC/C,QAAQ,CACZ,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,MAAM,EACd,UAAU,CAAC,EAAE,MAAM,GAClB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAM5B,iDAAiD;IAC3C,SAAS,CACb,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAM5B,6CAA6C;IACvC,gBAAgB,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAMzE,yBAAyB;IACnB,cAAc,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAMvE,+BAA+B;IACzB,aAAa,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAMtE;;;OAGG;YACW,YAAY;CAiB3B"}
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Domain — Domain Services
|
|
3
|
+
*
|
|
4
|
+
* Stateless services that orchestrate cross-entity business logic.
|
|
5
|
+
* PipelineFactory: creates pipelines from templates.
|
|
6
|
+
* GateEnforcer: validates gate transitions with full context.
|
|
7
|
+
*
|
|
8
|
+
* SOLID: SRP — each service has one responsibility
|
|
9
|
+
* DDD: Domain Service — logic that doesn't belong to a single entity
|
|
10
|
+
*/
|
|
11
|
+
import { ok, fail } from "../shared/value-objects.js";
|
|
12
|
+
import { Gate } from "./gate.js";
|
|
13
|
+
import { Pipeline } from "./pipeline.js";
|
|
14
|
+
import { PipelineId, GateId, DaggerFunctionRef, SemanticVersion, } from "./value-objects.js";
|
|
15
|
+
/**
|
|
16
|
+
* PipelineFactory — creates Pipeline aggregates from templates.
|
|
17
|
+
*
|
|
18
|
+
* Loads template configuration, generates gates in order,
|
|
19
|
+
* assigns IDs, and returns a fully-formed Pipeline in draft status.
|
|
20
|
+
*/
|
|
21
|
+
export class PipelineFactory {
|
|
22
|
+
pipelineRepo;
|
|
23
|
+
templateRepo;
|
|
24
|
+
constructor(pipelineRepo, templateRepo) {
|
|
25
|
+
this.pipelineRepo = pipelineRepo;
|
|
26
|
+
this.templateRepo = templateRepo;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Create a new pipeline from a template.
|
|
30
|
+
*
|
|
31
|
+
* 1. Validates the template exists
|
|
32
|
+
* 2. Parses and validates the version string
|
|
33
|
+
* 3. Generates a pipeline ID
|
|
34
|
+
* 4. Creates gates from template config
|
|
35
|
+
* 5. Returns a Pipeline in draft status
|
|
36
|
+
*/
|
|
37
|
+
async create(request) {
|
|
38
|
+
try {
|
|
39
|
+
// 1. Load template
|
|
40
|
+
const template = await this.templateRepo.getTemplate(request.stack, request.scope);
|
|
41
|
+
if (!template) {
|
|
42
|
+
return fail(`No template found for stack "${request.stack}" with scope "${request.scope}"`);
|
|
43
|
+
}
|
|
44
|
+
// 2. Parse version
|
|
45
|
+
let version;
|
|
46
|
+
try {
|
|
47
|
+
version = SemanticVersion.parse(request.version);
|
|
48
|
+
}
|
|
49
|
+
catch (e) {
|
|
50
|
+
const message = e instanceof Error ? e.message : String(e);
|
|
51
|
+
return fail(`Invalid version: ${message}`);
|
|
52
|
+
}
|
|
53
|
+
// 3. Generate pipeline ID
|
|
54
|
+
const sequence = await this.pipelineRepo.nextSequence(request.workspaceId);
|
|
55
|
+
const pipelineId = PipelineId.create(sequence);
|
|
56
|
+
// 4. Create gates from template
|
|
57
|
+
const gates = [];
|
|
58
|
+
for (let i = 0; i < template.gates.length; i++) {
|
|
59
|
+
const gateConfig = template.gates[i];
|
|
60
|
+
if (!gateConfig)
|
|
61
|
+
continue;
|
|
62
|
+
const gateId = GateId.create(i + 1);
|
|
63
|
+
const daggerFn = DaggerFunctionRef.create(gateConfig.daggerFunction);
|
|
64
|
+
const gate = Gate.create(gateId, gateConfig.type, i, daggerFn, gateConfig.skipPolicy, gateConfig.command);
|
|
65
|
+
gates.push(gate);
|
|
66
|
+
}
|
|
67
|
+
// 5. Create pipeline
|
|
68
|
+
const pipeline = Pipeline.create(pipelineId, request.workspaceId, request.stack, request.scope, version, gates, request.cardId);
|
|
69
|
+
return ok(pipeline);
|
|
70
|
+
}
|
|
71
|
+
catch (e) {
|
|
72
|
+
const message = e instanceof Error ? e.message : String(e);
|
|
73
|
+
return fail(`Failed to create pipeline: ${message}`);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
// ─── Gate Enforcer ────────────────────────────────────────────────────────────
|
|
78
|
+
/**
|
|
79
|
+
* GateEnforcer — validates and executes gate transitions.
|
|
80
|
+
*
|
|
81
|
+
* Provides a safe, Result-returning API for gate operations
|
|
82
|
+
* that wraps Pipeline entity methods (which throw on invariant violations).
|
|
83
|
+
* Handles the load-mutate-save cycle.
|
|
84
|
+
*/
|
|
85
|
+
export class GateEnforcer {
|
|
86
|
+
pipelineRepo;
|
|
87
|
+
constructor(pipelineRepo) {
|
|
88
|
+
this.pipelineRepo = pipelineRepo;
|
|
89
|
+
}
|
|
90
|
+
/** Start a gate. Validates ordering and pipeline state. */
|
|
91
|
+
async startGate(pipelineId, gateId) {
|
|
92
|
+
return this.withPipeline(pipelineId, (pipeline) => {
|
|
93
|
+
pipeline.startGate(gateId);
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
/** Pass a gate with optional output. May complete the pipeline. */
|
|
97
|
+
async passGate(pipelineId, gateId, output) {
|
|
98
|
+
return this.withPipeline(pipelineId, (pipeline) => {
|
|
99
|
+
pipeline.passGate(gateId, output);
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
/** Fail a gate. Transitions pipeline to failed. */
|
|
103
|
+
async failGate(pipelineId, gateId, output) {
|
|
104
|
+
return this.withPipeline(pipelineId, (pipeline) => {
|
|
105
|
+
pipeline.failGate(gateId, output);
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
/** Skip a gate with reason and optional approval. */
|
|
109
|
+
async skipGate(pipelineId, gateId, reason, approvedBy) {
|
|
110
|
+
return this.withPipeline(pipelineId, (pipeline) => {
|
|
111
|
+
pipeline.skipGate(gateId, reason, approvedBy);
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
/** Retry a failed gate. Reactivates pipeline. */
|
|
115
|
+
async retryGate(pipelineId, gateId) {
|
|
116
|
+
return this.withPipeline(pipelineId, (pipeline) => {
|
|
117
|
+
pipeline.retryGate(gateId);
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
/** Activate a pipeline (draft -> active). */
|
|
121
|
+
async activatePipeline(pipelineId) {
|
|
122
|
+
return this.withPipeline(pipelineId, (pipeline) => {
|
|
123
|
+
pipeline.activate();
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
/** Cancel a pipeline. */
|
|
127
|
+
async cancelPipeline(pipelineId) {
|
|
128
|
+
return this.withPipeline(pipelineId, (pipeline) => {
|
|
129
|
+
pipeline.cancel();
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
/** Retry a failed pipeline. */
|
|
133
|
+
async retryPipeline(pipelineId) {
|
|
134
|
+
return this.withPipeline(pipelineId, (pipeline) => {
|
|
135
|
+
pipeline.retry();
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Load-mutate-save pattern.
|
|
140
|
+
* Loads pipeline, applies mutation, saves, returns result.
|
|
141
|
+
*/
|
|
142
|
+
async withPipeline(pipelineId, mutation) {
|
|
143
|
+
try {
|
|
144
|
+
const pipeline = await this.pipelineRepo.findById(pipelineId);
|
|
145
|
+
if (!pipeline) {
|
|
146
|
+
return fail(`Pipeline ${pipelineId} not found`);
|
|
147
|
+
}
|
|
148
|
+
mutation(pipeline);
|
|
149
|
+
await this.pipelineRepo.save(pipeline);
|
|
150
|
+
return ok(pipeline);
|
|
151
|
+
}
|
|
152
|
+
catch (e) {
|
|
153
|
+
const message = e instanceof Error ? e.message : String(e);
|
|
154
|
+
return fail(message);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
//# sourceMappingURL=services.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"services.js","sourceRoot":"","sources":["../../../src/domain/pipeline/services.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pipeline Domain — Value Objects
|
|
3
|
+
*
|
|
4
|
+
* Identifiers, enums, and constrained types for the pipeline bounded context.
|
|
5
|
+
* All value objects are immutable with value-based equality.
|
|
6
|
+
*
|
|
7
|
+
* SOLID: SRP — each type models a single domain concept
|
|
8
|
+
* DDD: Value Objects compared by value, no identity of their own
|
|
9
|
+
*/
|
|
10
|
+
import { EntityId } from "../shared/value-objects.js";
|
|
11
|
+
/** Pipeline aggregate root identifier (format: PL-NNN). */
|
|
12
|
+
export declare class PipelineId extends EntityId {
|
|
13
|
+
private constructor();
|
|
14
|
+
static create(sequence: number): PipelineId;
|
|
15
|
+
static from(value: string): PipelineId;
|
|
16
|
+
get sequence(): number;
|
|
17
|
+
}
|
|
18
|
+
/** Gate child entity identifier (format: GT-NNN). */
|
|
19
|
+
export declare class GateId extends EntityId {
|
|
20
|
+
private constructor();
|
|
21
|
+
static create(sequence: number): GateId;
|
|
22
|
+
static from(value: string): GateId;
|
|
23
|
+
get sequence(): number;
|
|
24
|
+
}
|
|
25
|
+
/** Ordered gate types representing pipeline stages. */
|
|
26
|
+
export declare const GATE_TYPES: readonly ["analyze", "lint", "test", "build", "tag", "publish", "deploy"];
|
|
27
|
+
export type GateType = (typeof GATE_TYPES)[number];
|
|
28
|
+
/** Gate types included in branch (CI) pipelines. */
|
|
29
|
+
export declare const BRANCH_GATE_TYPES: readonly GateType[];
|
|
30
|
+
/** Gate types included in release (CD) pipelines. */
|
|
31
|
+
export declare const RELEASE_GATE_TYPES: readonly GateType[];
|
|
32
|
+
/**
|
|
33
|
+
* Returns the ordinal position of a gate type.
|
|
34
|
+
* Used to enforce sequential gate progression.
|
|
35
|
+
*/
|
|
36
|
+
export declare function gateTypeOrder(type: GateType): number;
|
|
37
|
+
export declare function isValidGateType(value: string): value is GateType;
|
|
38
|
+
export declare const GATE_STATUSES: readonly ["pending", "running", "passed", "failed", "skipped"];
|
|
39
|
+
export type GateStatus = (typeof GATE_STATUSES)[number];
|
|
40
|
+
/** Valid gate status transitions. */
|
|
41
|
+
export declare const GATE_TRANSITIONS: Record<GateStatus, readonly GateStatus[]>;
|
|
42
|
+
export declare function isTerminalGateStatus(status: GateStatus): boolean;
|
|
43
|
+
export declare function isSuccessGateStatus(status: GateStatus): boolean;
|
|
44
|
+
export declare const PIPELINE_STATUSES: readonly ["draft", "active", "completed", "failed", "cancelled"];
|
|
45
|
+
export type PipelineStatus = (typeof PIPELINE_STATUSES)[number];
|
|
46
|
+
/** Valid pipeline status transitions. */
|
|
47
|
+
export declare const PIPELINE_TRANSITIONS: Record<PipelineStatus, readonly PipelineStatus[]>;
|
|
48
|
+
export declare function isTerminalPipelineStatus(status: PipelineStatus): boolean;
|
|
49
|
+
export declare const PIPELINE_SCOPES: readonly ["branch", "release"];
|
|
50
|
+
export type PipelineScope = (typeof PIPELINE_SCOPES)[number];
|
|
51
|
+
export declare function isValidPipelineScope(value: string): value is PipelineScope;
|
|
52
|
+
export declare const SKIP_POLICIES: readonly ["blocked", "justification", "approval_required"];
|
|
53
|
+
export type SkipPolicy = (typeof SKIP_POLICIES)[number];
|
|
54
|
+
export declare function isValidSkipPolicy(value: string): value is SkipPolicy;
|
|
55
|
+
export declare const STACK_TEMPLATES: readonly ["typescript-lib", "typescript-app", "python-lib", "python-app", "swift-ios", "csharp-app", "kotlin-android", "generic"];
|
|
56
|
+
export type StackTemplate = (typeof STACK_TEMPLATES)[number];
|
|
57
|
+
export declare function isValidStackTemplate(value: string): value is StackTemplate;
|
|
58
|
+
/**
|
|
59
|
+
* A validated reference to a Dagger function.
|
|
60
|
+
* Format: lowercase letters, digits, hyphens (e.g., "lint", "run-tests", "build-image").
|
|
61
|
+
*/
|
|
62
|
+
export declare class DaggerFunctionRef {
|
|
63
|
+
readonly value: string;
|
|
64
|
+
private static readonly PATTERN;
|
|
65
|
+
private static readonly MAX_LENGTH;
|
|
66
|
+
private constructor();
|
|
67
|
+
static create(ref: string): DaggerFunctionRef;
|
|
68
|
+
static from(value: string): DaggerFunctionRef;
|
|
69
|
+
equals(other: DaggerFunctionRef): boolean;
|
|
70
|
+
toString(): string;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Semantic version value object (major.minor.patch).
|
|
74
|
+
* Immutable, validated, with comparison support.
|
|
75
|
+
*/
|
|
76
|
+
export declare class SemanticVersion {
|
|
77
|
+
readonly major: number;
|
|
78
|
+
readonly minor: number;
|
|
79
|
+
readonly patch: number;
|
|
80
|
+
private static readonly PATTERN;
|
|
81
|
+
private constructor();
|
|
82
|
+
static create(major: number, minor: number, patch: number): SemanticVersion;
|
|
83
|
+
static parse(version: string): SemanticVersion;
|
|
84
|
+
static from(value: string): SemanticVersion;
|
|
85
|
+
/** Compare: returns -1, 0, or 1. */
|
|
86
|
+
compareTo(other: SemanticVersion): number;
|
|
87
|
+
isGreaterThan(other: SemanticVersion): boolean;
|
|
88
|
+
equals(other: SemanticVersion): boolean;
|
|
89
|
+
bumpMajor(): SemanticVersion;
|
|
90
|
+
bumpMinor(): SemanticVersion;
|
|
91
|
+
bumpPatch(): SemanticVersion;
|
|
92
|
+
toString(): string;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Bounded-length execution output from a gate run.
|
|
96
|
+
* Truncates to max length to prevent unbounded storage.
|
|
97
|
+
*/
|
|
98
|
+
export declare class GateOutput {
|
|
99
|
+
readonly value: string;
|
|
100
|
+
static readonly MAX_LENGTH = 10000;
|
|
101
|
+
private constructor();
|
|
102
|
+
static create(output: string): GateOutput;
|
|
103
|
+
static from(value: string): GateOutput;
|
|
104
|
+
equals(other: GateOutput): boolean;
|
|
105
|
+
toString(): string;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Default skip policies for each gate type.
|
|
109
|
+
* Can be overridden per pipeline template.
|
|
110
|
+
*/
|
|
111
|
+
export declare const DEFAULT_SKIP_POLICIES: Record<GateType, SkipPolicy>;
|
|
112
|
+
/**
|
|
113
|
+
* Default Dagger function names for each gate type.
|
|
114
|
+
* Infrastructure maps these to actual Dagger module functions.
|
|
115
|
+
*/
|
|
116
|
+
export declare const DEFAULT_DAGGER_FUNCTIONS: Record<GateType, string>;
|
|
117
|
+
//# sourceMappingURL=value-objects.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"value-objects.d.ts","sourceRoot":"","sources":["../../../src/domain/pipeline/value-objects.ts"],"names":[],"mappings":"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"}
|