@shepai/cli 1.175.1-pr536.17338e9 → 1.175.1-pr537.fc6a92c
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/apis/json-schema/AgentConfig.yaml +3 -0
- package/apis/json-schema/AgentType.yaml +1 -0
- package/apis/json-schema/PermissionMode.yaml +8 -0
- package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts +3 -1
- package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/agents/agent-run-repository.interface.d.ts +7 -0
- package/dist/packages/core/src/application/ports/output/agents/agent-run-repository.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/agents/phase-timing-repository.interface.d.ts +7 -0
- package/dist/packages/core/src/application/ports/output/agents/phase-timing-repository.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/repositories/index.d.ts +0 -1
- package/dist/packages/core/src/application/ports/output/repositories/index.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/file-system.interface.d.ts +68 -0
- package/dist/packages/core/src/application/ports/output/services/file-system.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/file-system.interface.js +12 -0
- package/dist/packages/core/src/application/ports/output/services/index.d.ts +3 -0
- package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/process-monitor.interface.d.ts +29 -0
- package/dist/packages/core/src/application/ports/output/services/process-monitor.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/process-monitor.interface.js +12 -0
- package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts +35 -0
- package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.js +12 -0
- package/dist/packages/core/src/application/use-cases/agents/get-agent-session.use-case.d.ts +3 -1
- package/dist/packages/core/src/application/use-cases/agents/get-agent-session.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/get-agent-session.use-case.js +6 -4
- package/dist/packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.d.ts +3 -1
- package/dist/packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.js +6 -4
- package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +1 -1
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts +3 -1
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +9 -7
- package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.js +2 -2
- package/dist/packages/core/src/application/use-cases/notifications/poll-agent-events.use-case.d.ts +61 -0
- package/dist/packages/core/src/application/use-cases/notifications/poll-agent-events.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/notifications/poll-agent-events.use-case.js +381 -0
- package/dist/packages/core/src/application/use-cases/settings/check-onboarding-status.use-case.d.ts +5 -2
- package/dist/packages/core/src/application/use-cases/settings/check-onboarding-status.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/settings/check-onboarding-status.use-case.js +28 -6
- package/dist/packages/core/src/domain/generated/output.d.ts +42 -76
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +7 -6
- package/dist/packages/core/src/infrastructure/di/container.d.ts +3 -0
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +27 -538
- package/dist/packages/core/src/infrastructure/di/modules/agent-infrastructure.module.d.ts +7 -0
- package/dist/packages/core/src/infrastructure/di/modules/agent-infrastructure.module.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/di/modules/agent-infrastructure.module.js +83 -0
- package/dist/packages/core/src/infrastructure/di/modules/database.module.d.ts +12 -0
- package/dist/packages/core/src/infrastructure/di/modules/database.module.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/di/modules/database.module.js +16 -0
- package/dist/packages/core/src/infrastructure/di/modules/interactive.module.d.ts +10 -0
- package/dist/packages/core/src/infrastructure/di/modules/interactive.module.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/di/modules/interactive.module.js +43 -0
- package/dist/packages/core/src/infrastructure/di/modules/notifications.module.d.ts +6 -0
- package/dist/packages/core/src/infrastructure/di/modules/notifications.module.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/di/modules/notifications.module.js +20 -0
- package/dist/packages/core/src/infrastructure/di/modules/repositories.module.d.ts +6 -0
- package/dist/packages/core/src/infrastructure/di/modules/repositories.module.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/di/modules/repositories.module.js +26 -0
- package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts +8 -0
- package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/di/modules/services.module.js +93 -0
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts +6 -0
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.js +164 -0
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts +10 -0
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.js +200 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/agent-run.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/agent-run.mapper.js +2 -2
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +6 -2
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-agent-permission-mode.d.ts +14 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-agent-permission-mode.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-agent-permission-mode.js +19 -0
- package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.js +8 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.js +11 -3
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -2
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.js +10 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.js +4 -4
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/abstract-agent-executor.d.ts +37 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/abstract-agent-executor.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/abstract-agent-executor.js +59 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +3 -7
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +19 -35
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.d.ts +3 -7
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.js +17 -30
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts +3 -7
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.js +23 -34
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts +3 -7
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.js +21 -16
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.d.ts +3 -7
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.js +21 -33
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.d.ts +52 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.js +350 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/types.d.ts +5 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/types.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/types.js +5 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +1 -1
- package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/external/github-repository.service.js +16 -7
- package/dist/packages/core/src/infrastructure/services/filesystem/file-system.service.d.ts +26 -0
- package/dist/packages/core/src/infrastructure/services/filesystem/file-system.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/filesystem/file-system.service.js +47 -0
- package/dist/packages/core/src/infrastructure/services/filesystem/path-sanitizers.d.ts +19 -0
- package/dist/packages/core/src/infrastructure/services/filesystem/path-sanitizers.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/filesystem/path-sanitizers.js +38 -0
- package/dist/packages/core/src/infrastructure/services/git/branch-discovery.service.d.ts +23 -0
- package/dist/packages/core/src/infrastructure/services/git/branch-discovery.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/git/branch-discovery.service.js +185 -0
- package/dist/packages/core/src/infrastructure/services/git/ci-status.service.d.ts +24 -0
- package/dist/packages/core/src/infrastructure/services/git/ci-status.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/git/ci-status.service.js +202 -0
- package/dist/packages/core/src/infrastructure/services/git/diff-analyzer.service.d.ts +19 -0
- package/dist/packages/core/src/infrastructure/services/git/diff-analyzer.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/git/diff-analyzer.service.js +173 -0
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +44 -47
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +121 -853
- package/dist/packages/core/src/infrastructure/services/git/merge-strategy.service.d.ts +30 -0
- package/dist/packages/core/src/infrastructure/services/git/merge-strategy.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/git/merge-strategy.service.js +341 -0
- package/dist/packages/core/src/infrastructure/services/git/pr-creation.service.d.ts +34 -0
- package/dist/packages/core/src/infrastructure/services/git/pr-creation.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/git/pr-creation.service.js +180 -0
- package/dist/packages/core/src/infrastructure/services/interactive/chat-state-builder.d.ts +21 -0
- package/dist/packages/core/src/infrastructure/services/interactive/chat-state-builder.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/interactive/chat-state-builder.js +112 -0
- package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.d.ts +19 -70
- package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.js +44 -991
- package/dist/packages/core/src/infrastructure/services/interactive/session-boot-sequence.d.ts +47 -0
- package/dist/packages/core/src/infrastructure/services/interactive/session-boot-sequence.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/interactive/session-boot-sequence.js +381 -0
- package/dist/packages/core/src/infrastructure/services/interactive/session-state-manager.d.ts +28 -0
- package/dist/packages/core/src/infrastructure/services/interactive/session-state-manager.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/interactive/session-state-manager.js +105 -0
- package/dist/packages/core/src/infrastructure/services/interactive/session-state.d.ts +46 -0
- package/dist/packages/core/src/infrastructure/services/interactive/session-state.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/interactive/session-state.js +10 -0
- package/dist/packages/core/src/infrastructure/services/interactive/subscriber-notifier.d.ts +36 -0
- package/dist/packages/core/src/infrastructure/services/interactive/subscriber-notifier.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/interactive/subscriber-notifier.js +60 -0
- package/dist/packages/core/src/infrastructure/services/interactive/turn-executor.d.ts +57 -0
- package/dist/packages/core/src/infrastructure/services/interactive/turn-executor.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/interactive/turn-executor.js +503 -0
- package/dist/packages/core/src/infrastructure/services/notifications/notification-watcher.service.js +3 -3
- package/dist/packages/core/src/infrastructure/services/pr-sync/pr-sync-watcher.service.js +1 -1
- package/dist/packages/core/src/infrastructure/services/process/process-monitor.service.d.ts +25 -0
- package/dist/packages/core/src/infrastructure/services/process/process-monitor.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/process/process-monitor.service.js +45 -0
- package/dist/packages/core/src/infrastructure/services/settings-reader.adapter.d.ts +15 -0
- package/dist/packages/core/src/infrastructure/services/settings-reader.adapter.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/settings-reader.adapter.js +28 -0
- package/dist/src/presentation/cli/commands/agent/show.command.js +3 -2
- package/dist/src/presentation/cli/commands/feat/new.command.js +1 -1
- package/dist/src/presentation/cli/commands/feat/show.command.js +1 -1
- package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/agent-select.prompt.js +5 -0
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
- package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +1 -11
- package/dist/src/presentation/web/app/actions/agent-setup-flag.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/agent-setup-flag.js +3 -2
- package/dist/src/presentation/web/app/actions/check-agent-auth-for-type.d.ts +11 -0
- package/dist/src/presentation/web/app/actions/check-agent-auth-for-type.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/check-agent-auth-for-type.js +147 -0
- package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/check-agent-auth.js +18 -2
- package/dist/src/presentation/web/app/actions/get-all-agent-models.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-all-agent-models.js +2 -0
- package/dist/src/presentation/web/app/actions/get-feature-phase-timings.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-feature-phase-timings.js +4 -3
- package/dist/src/presentation/web/app/actions/get-supported-models.js +2 -3
- package/dist/src/presentation/web/app/actions/get-workflow-defaults.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-workflow-defaults.js +3 -2
- package/dist/src/presentation/web/app/actions/open-ide.js +2 -3
- package/dist/src/presentation/web/app/actions/open-shell.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/open-shell.js +15 -0
- package/dist/src/presentation/web/app/actions/update-model.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/update-model.js +3 -2
- package/dist/src/presentation/web/app/api/agent-events/health/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/agent-events/health/route.js +9 -12
- package/dist/src/presentation/web/app/api/agent-events/route.d.ts +7 -14
- package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/agent-events/route.js +20 -301
- package/dist/src/presentation/web/app/api/attachments/preview/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/attachments/preview/route.js +5 -1
- package/dist/src/presentation/web/app/api/attachments/upload/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/attachments/upload/route.js +2 -2
- package/dist/src/presentation/web/app/api/attachments/upload-from-path/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/attachments/upload-from-path/route.js +2 -2
- package/dist/src/presentation/web/app/api/cli-upgrade/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/cli-upgrade/route.js +3 -1
- package/dist/src/presentation/web/app/api/deployment-logs/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/deployment-logs/route.js +2 -6
- package/dist/src/presentation/web/app/api/dialog/pick-files/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/dialog/pick-files/route.js +3 -2
- package/dist/src/presentation/web/app/api/directory/list/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/directory/list/route.js +8 -5
- package/dist/src/presentation/web/app/api/feature-logs/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/feature-logs/route.js +2 -6
- package/dist/src/presentation/web/app/api/graph-data/route.d.ts +1 -4
- package/dist/src/presentation/web/app/api/graph-data/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/graph-data/route.js +8 -2
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/mark-read/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/mark-read/route.js +2 -3
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/messages/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/messages/route.js +5 -10
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/respond/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/respond/route.js +5 -5
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stop/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stop/route.js +2 -3
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stream/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stream/route.js +2 -6
- package/dist/src/presentation/web/app/api/interactive/chat/turn-statuses/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/chat/turn-statuses/route.js +2 -3
- package/dist/src/presentation/web/app/api/interactive/sessions/[id]/messages/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/sessions/[id]/messages/route.js +5 -10
- package/dist/src/presentation/web/app/api/interactive/sessions/[id]/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/sessions/[id]/route.js +3 -6
- package/dist/src/presentation/web/app/api/interactive/sessions/[id]/stream/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/sessions/[id]/stream/route.js +2 -6
- package/dist/src/presentation/web/app/api/interactive/sessions/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/interactive/sessions/route.js +2 -3
- package/dist/src/presentation/web/app/api/npm-version/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/npm-version/route.js +2 -2
- package/dist/src/presentation/web/app/api/sessions/route.d.ts +1 -15
- package/dist/src/presentation/web/app/api/sessions/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/sessions/route.js +2 -3
- package/dist/src/presentation/web/app/api/sessions-batch/route.d.ts +1 -8
- package/dist/src/presentation/web/app/api/sessions-batch/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/sessions-batch/route.js +2 -3
- package/dist/src/presentation/web/app/api/tools/[id]/install/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/tools/[id]/install/route.js +2 -2
- package/dist/src/presentation/web/app/api/tools/[id]/install/stream/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/tools/[id]/install/stream/route.js +3 -1
- package/dist/src/presentation/web/app/api/tools/[id]/launch/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/tools/[id]/launch/route.js +2 -2
- package/dist/src/presentation/web/app/api/tools/route.d.ts.map +1 -1
- package/dist/src/presentation/web/app/api/tools/route.js +2 -2
- package/dist/src/presentation/web/app/build-graph-nodes.d.ts +1 -3
- package/dist/src/presentation/web/app/build-graph-nodes.d.ts.map +1 -1
- package/dist/src/presentation/web/app/build-graph-nodes.js +0 -19
- package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
- package/dist/src/presentation/web/app/layout.js +2 -1
- package/dist/src/presentation/web/components/common/attachment-chip/attachment-chip.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/attachment-chip/attachment-chip.js +1 -1
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +12 -0
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.js +2 -2
- package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.js +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.js +2 -0
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.js +1 -0
- package/dist/src/presentation/web/components/common/route-announcer.d.ts +2 -0
- package/dist/src/presentation/web/components/common/route-announcer.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/route-announcer.js +7 -0
- package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatSheet.js +2 -4
- package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts +1 -5
- package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatTab.js +3 -3
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts +1 -3
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +118 -189
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.stories.d.ts +16 -4
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.stories.js +109 -16
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +3 -43
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +0 -4
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +1 -25
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.js +2 -2
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts +1 -2
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +0 -2
- package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.d.ts +7 -0
- package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.js +26 -0
- package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.stories.d.ts +11 -0
- package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.stories.js +24 -0
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.d.ts +1 -3
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +10 -11
- package/dist/src/presentation/web/components/features/settings/ModelPicker/index.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/ModelPicker/index.js +2 -2
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +1 -0
- package/dist/src/presentation/web/hooks/use-agent-availability.d.ts +13 -0
- package/dist/src/presentation/web/hooks/use-agent-availability.d.ts.map +1 -0
- package/dist/src/presentation/web/hooks/use-agent-availability.js +75 -0
- package/dist/src/presentation/web/hooks/use-agent-events.js +5 -1
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts +0 -5
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.js +2 -37
- package/dist/src/presentation/web/hooks/use-route-announcer.d.ts +2 -0
- package/dist/src/presentation/web/hooks/use-route-announcer.d.ts.map +1 -0
- package/dist/src/presentation/web/hooks/use-route-announcer.js +16 -0
- package/dist/src/presentation/web/lib/api-error.d.ts +7 -0
- package/dist/src/presentation/web/lib/api-error.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/api-error.js +11 -0
- package/dist/src/presentation/web/lib/derive-graph.d.ts +1 -11
- package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/derive-graph.js +1 -35
- package/dist/src/presentation/web/lib/is-same-shep-instance.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/is-same-shep-instance.js +2 -5
- package/dist/src/presentation/web/lib/layout-with-dagre.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/layout-with-dagre.js +0 -1
- package/dist/translations/ar/tui.json +4 -0
- package/dist/translations/ar/web.json +2 -6
- package/dist/translations/de/tui.json +1 -0
- package/dist/translations/de/web.json +2 -6
- package/dist/translations/en/tui.json +4 -0
- package/dist/translations/en/web.json +2 -6
- package/dist/translations/es/tui.json +4 -0
- package/dist/translations/es/web.json +2 -6
- package/dist/translations/fr/tui.json +4 -0
- package/dist/translations/fr/web.json +2 -6
- package/dist/translations/he/tui.json +4 -0
- package/dist/translations/he/web.json +2 -6
- package/dist/translations/pt/tui.json +4 -0
- package/dist/translations/pt/web.json +2 -6
- package/dist/translations/ru/tui.json +4 -0
- package/dist/translations/ru/web.json +2 -6
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -3
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/app-path-routes-manifest.json +0 -1
- package/web/.next/build-manifest.json +2 -2
- package/web/.next/fallback-build-manifest.json +2 -2
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +1 -1
- package/web/.next/required-server-files.json +1 -1
- package/web/.next/routes-manifest.json +0 -8
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +89 -89
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +85 -85
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +91 -91
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +107 -107
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +107 -107
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +87 -87
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +87 -87
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +5 -5
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +85 -85
- package/web/.next/server/app/(dashboard)/chat/page.js +5 -5
- package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +91 -91
- package/web/.next/server/app/(dashboard)/create/page.js +5 -5
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +107 -107
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +5 -5
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +107 -107
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +5 -5
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +85 -85
- package/web/.next/server/app/(dashboard)/page.js +5 -5
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +87 -87
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +5 -5
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +87 -87
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +5 -5
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error/page.js +1 -1
- package/web/.next/server/app/_global-error/page.js.nft.json +1 -1
- package/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +22 -22
- package/web/.next/server/app/_not-found/page.js +3 -3
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/agent-events/route.js +2 -2
- package/web/.next/server/app/api/agent-events/route.js.nft.json +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/attachments/upload/route.js +1 -1
- package/web/.next/server/app/api/attachments/upload/route.js.nft.json +1 -1
- package/web/.next/server/app/api/attachments/upload-from-path/route.js +1 -1
- package/web/.next/server/app/api/attachments/upload-from-path/route.js.nft.json +1 -1
- package/web/.next/server/app/api/deployment-logs/route.js +2 -1
- package/web/.next/server/app/api/deployment-logs/route.js.nft.json +1 -1
- package/web/.next/server/app/api/directory/list/route.js +1 -1
- package/web/.next/server/app/api/directory/list/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/feature-logs/route.js +2 -1
- package/web/.next/server/app/api/feature-logs/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js +1 -1
- package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/mark-read/route.js +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/mark-read/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/respond/route.js +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/respond/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route.js +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route.js +2 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/turn-statuses/route.js +1 -1
- package/web/.next/server/app/api/interactive/chat/turn-statuses/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/sessions/[id]/messages/route.js +1 -1
- package/web/.next/server/app/api/interactive/sessions/[id]/messages/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/sessions/[id]/route.js +1 -1
- package/web/.next/server/app/api/interactive/sessions/[id]/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/sessions/[id]/stream/route.js +2 -1
- package/web/.next/server/app/api/interactive/sessions/[id]/stream/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/sessions/route.js +1 -1
- package/web/.next/server/app/api/interactive/sessions/route.js.nft.json +1 -1
- package/web/.next/server/app/api/npm-version/route.js +1 -1
- package/web/.next/server/app/api/npm-version/route.js.nft.json +1 -1
- package/web/.next/server/app/api/sessions/route.js +1 -1
- package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
- package/web/.next/server/app/api/sessions-batch/route.js +1 -1
- package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
- package/web/.next/server/app/api/tools/[id]/install/route.js +1 -1
- package/web/.next/server/app/api/tools/[id]/install/route.js.nft.json +1 -1
- package/web/.next/server/app/api/tools/[id]/launch/route.js +1 -1
- package/web/.next/server/app/api/tools/[id]/launch/route.js.nft.json +1 -1
- package/web/.next/server/app/api/tools/route.js +1 -1
- package/web/.next/server/app/api/tools/route.js.nft.json +1 -1
- package/web/.next/server/app/features/page/server-reference-manifest.json +22 -22
- package/web/.next/server/app/features/page.js +3 -3
- package/web/.next/server/app/features/page.js.nft.json +1 -1
- package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/settings/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/settings/page.js +4 -3
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/server-reference-manifest.json +36 -36
- package/web/.next/server/app/skills/page.js +4 -4
- package/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/tools/page/server-reference-manifest.json +32 -32
- package/web/.next/server/app/tools/page.js +4 -4
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/server-reference-manifest.json +22 -22
- package/web/.next/server/app/version/page.js +4 -4
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app-paths-manifest.json +0 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__0b88f5f0._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__0b88f5f0._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__0d0a9973._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__0d0a9973._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__1f18a881._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__1f18a881._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__332c8d91._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__332c8d91._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__3d08be55._.js +9 -0
- package/web/.next/server/chunks/[root-of-the-server]__3d08be55._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__419be0d1._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__419be0d1._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__4747e669._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__4747e669._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__475afd97._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__475afd97._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__483ccc90._.js +9 -0
- package/web/.next/server/chunks/[root-of-the-server]__483ccc90._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__5e90f1e9._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__5e90f1e9._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__62634db9._.js +12 -0
- package/web/.next/server/chunks/[root-of-the-server]__62634db9._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__645a6d08._.js +12 -0
- package/web/.next/server/chunks/[root-of-the-server]__645a6d08._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__74f3dc5c._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__74f3dc5c._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__810add7c._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__810add7c._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__8cfd9f70._.js +24 -0
- package/web/.next/server/chunks/[root-of-the-server]__8cfd9f70._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__8ec23770._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__8ec23770._.js.map +1 -0
- package/web/.next/server/chunks/{[root-of-the-server]__e3692208._.js → [root-of-the-server]__937ba94e._.js} +2 -2
- package/web/.next/server/chunks/[root-of-the-server]__93c391fe._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__93c391fe._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__9e8fc40c._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__9e8fc40c._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__a2426aa4._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__a2426aa4._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__a96ee39d._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__a96ee39d._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__d2c18946._.js +3 -3
- package/web/.next/server/chunks/[root-of-the-server]__d2c18946._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__d9d410a8._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__d9d410a8._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__e10befc1._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__e10befc1._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js +3 -3
- package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__e94a4a75._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__e94a4a75._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__ea7e9dc2._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__ea7e9dc2._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__f1aeae12._.js +3 -0
- package/web/.next/server/chunks/{[root-of-the-server]__b2f9a412._.js.map → [root-of-the-server]__f1aeae12._.js.map} +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__f7b38c05._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__f7b38c05._.js.map +1 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_f57e8323.js +3 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_f57e8323.js.map +1 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_c2027d57.js +3 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_c2027d57.js.map +1 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_f70a6774.js +3 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_f70a6774.js.map +1 -0
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_281e0ef8._.js +1 -1
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_281e0ef8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_a593f310._.js +1 -1
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_a593f310._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__08e7a080._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__08e7a080._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0e34e896._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0e34e896._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__16c1388b._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__16c1388b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1eb031d8._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1eb031d8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__35e7da6b._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__35e7da6b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__36eb7673._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__36eb7673._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__4576a805._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__4576a805._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__86ff0bc5._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__86ff0bc5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b51b0071._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b51b0071._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd113e97._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bd113e97._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c6f02c81._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c6f02c81._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d5e22d1a._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__7aa484f5._.js.map → [root-of-the-server]__d5e22d1a._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f13f6a81._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f13f6a81._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f5614810._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__090f24cb._.js.map → [root-of-the-server]__f5614810._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ff332bfb._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__357d99f9._.js.map → [root-of-the-server]__ff332bfb._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
- package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_946a7fc6._.js → _080b0309._.js} +3 -3
- package/web/.next/server/chunks/ssr/_080b0309._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
- package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_1879404a._.js +1 -1
- package/web/.next/server/chunks/ssr/_1879404a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_31b68712._.js +3 -0
- package/web/.next/server/chunks/ssr/_31b68712._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_43ba79e7._.js +3 -0
- package/web/.next/server/chunks/ssr/_43ba79e7._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_45496654._.js +1 -1
- package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_f86fc1bf._.js → _4cbb7f95._.js} +2 -2
- package/web/.next/server/chunks/ssr/_4cbb7f95._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_a0ddd745._.js → _4db4ac1e._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_a0ddd745._.js.map → _4db4ac1e._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_1e08a336._.js → _5747febb._.js} +2 -2
- package/web/.next/server/chunks/ssr/_5747febb._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_6abfa39e._.js +3 -0
- package/web/.next/server/chunks/ssr/_6abfa39e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_7cb0396e._.js +3 -0
- package/web/.next/server/chunks/ssr/_7cb0396e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_819f193a._.js +7 -0
- package/web/.next/server/chunks/ssr/_819f193a._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_b7a43c05._.js +1 -1
- package/web/.next/server/chunks/ssr/_b7a43c05._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_e680c57c._.js +9 -0
- package/web/.next/server/chunks/ssr/_e680c57c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_295fffde._.js → _ed2f2799._.js} +2 -2
- package/web/.next/server/chunks/ssr/_ed2f2799._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_f8c55130._.js +1 -1
- package/web/.next/server/chunks/ssr/_f8c55130._.js.map +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_ef15a0bd._.js +3 -0
- package/web/.next/server/chunks/ssr/node_modules__pnpm_ef15a0bd._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_064c7e73._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_064c7e73._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_1726dc84._.js +5 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_1726dc84._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_28c682ee._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_28c682ee._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_2d7b0e7b._.js +5 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_2d7b0e7b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_bcef11e0.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_bcef11e0.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_02d5029f.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_02d5029f.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_67ca1f81.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_67ca1f81.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -30
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_b1110b54._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_b1110b54._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_349d9f24._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_349d9f24._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_d388fcb0._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_d388fcb0._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_da61a4f3._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_da61a4f3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
- package/web/.next/server/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +791 -840
- package/web/.next/static/chunks/{39cd2f842b9377e5.js → 05c0a8ed7621ea2a.js} +2 -2
- package/web/.next/static/chunks/{bcbae49e0f6d65ca.js → 09edd35d194bec06.js} +3 -3
- package/web/.next/static/chunks/{4b63765a2c9294db.js → 10383f321355e09b.js} +1 -1
- package/web/.next/static/chunks/1f232a3618b82ac1.css +1 -0
- package/web/.next/static/chunks/2621b35c0c9da177.js +1 -0
- package/web/.next/static/chunks/2a3edcf98f609bb7.js +1 -0
- package/web/.next/static/chunks/316b0e4597f2083d.js +5 -0
- package/web/.next/static/chunks/3370f8dc24c64ce4.js +1 -0
- package/web/.next/static/chunks/47ed89fae0f1542e.js +1 -0
- package/web/.next/static/chunks/6853929058e53d1a.js +1 -0
- package/web/.next/static/chunks/{97a84c58c17399ee.js → 6bfcb5d1b3eafd81.js} +1 -1
- package/web/.next/static/chunks/6c1664f584f34e6f.js +1 -0
- package/web/.next/static/chunks/{6a5b9181d2b5160c.js → 71ad5a4155ddd207.js} +1 -1
- package/web/.next/static/chunks/{89a6fefe537cca64.js → 81347e69998eef38.js} +1 -1
- package/web/.next/static/chunks/{b49ab0b290e9342d.js → 8a68402c32c6a206.js} +1 -1
- package/web/.next/static/chunks/8b0a9cb5109fe899.js +1 -0
- package/web/.next/static/chunks/8bf91dcd1b3077d7.js +1 -0
- package/web/.next/static/chunks/971e52f3f386ccfd.js +1 -0
- package/web/.next/static/chunks/a1ad19e21b6ad1ad.js +7 -0
- package/web/.next/static/chunks/b63e6727c84f30e2.js +1 -0
- package/web/.next/static/chunks/e610f5d703696b34.js +1 -0
- package/web/.next/static/chunks/f952f152ac0a4abe.js +3 -0
- package/web/.next/static/chunks/{288a6a7b2abf36ae.js → fd319c0e5f3cc20a.js} +2 -2
- package/web/public/icons/agents/rovo-dev.svg +6 -0
- package/apis/json-schema/Application.yaml +0 -40
- package/apis/json-schema/ApplicationStatus.yaml +0 -8
- package/dist/packages/core/src/application/ports/output/repositories/application-repository.interface.d.ts +0 -17
- package/dist/packages/core/src/application/ports/output/repositories/application-repository.interface.d.ts.map +0 -1
- package/dist/packages/core/src/application/ports/output/repositories/application-repository.interface.js +0 -6
- package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.d.ts +0 -29
- package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.js +0 -128
- package/dist/packages/core/src/application/use-cases/applications/delete-application.use-case.d.ts +0 -15
- package/dist/packages/core/src/application/use-cases/applications/delete-application.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/applications/delete-application.use-case.js +0 -45
- package/dist/packages/core/src/application/use-cases/applications/get-application.use-case.d.ts +0 -13
- package/dist/packages/core/src/application/use-cases/applications/get-application.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/applications/get-application.use-case.js +0 -33
- package/dist/packages/core/src/application/use-cases/applications/index.d.ts +0 -13
- package/dist/packages/core/src/application/use-cases/applications/index.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/applications/index.js +0 -10
- package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.d.ts +0 -13
- package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.js +0 -33
- package/dist/packages/core/src/application/use-cases/applications/update-application.use-case.d.ts +0 -14
- package/dist/packages/core/src/application/use-cases/applications/update-application.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/applications/update-application.use-case.js +0 -33
- package/dist/packages/core/src/application/use-cases/repositories/create-project.use-case.d.ts +0 -32
- package/dist/packages/core/src/application/use-cases/repositories/create-project.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/repositories/create-project.use-case.js +0 -120
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.d.ts +0 -37
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.js +0 -52
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-create-applications-table.d.ts +0 -5
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-create-applications-table.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-create-applications-table.js +0 -34
- package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.d.ts +0 -21
- package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.js +0 -98
- package/dist/src/presentation/web/app/actions/check-all-agents-status.d.ts +0 -7
- package/dist/src/presentation/web/app/actions/check-all-agents-status.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/check-all-agents-status.js +0 -30
- package/dist/src/presentation/web/app/actions/create-application.d.ts +0 -13
- package/dist/src/presentation/web/app/actions/create-application.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/create-application.js +0 -20
- package/dist/src/presentation/web/app/actions/create-project-and-feature.d.ts +0 -20
- package/dist/src/presentation/web/app/actions/create-project-and-feature.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/create-project-and-feature.js +0 -70
- package/dist/src/presentation/web/app/actions/delete-application.d.ts +0 -4
- package/dist/src/presentation/web/app/actions/delete-application.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/delete-application.js +0 -16
- package/dist/src/presentation/web/app/application/[id]/page.d.ts +0 -11
- package/dist/src/presentation/web/app/application/[id]/page.d.ts.map +0 -1
- package/dist/src/presentation/web/app/application/[id]/page.js +0 -16
- package/dist/src/presentation/web/components/common/application-node/application-node-config.d.ts +0 -24
- package/dist/src/presentation/web/components/common/application-node/application-node-config.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/application-node/application-node-config.js +0 -1
- package/dist/src/presentation/web/components/common/application-node/application-node.d.ts +0 -7
- package/dist/src/presentation/web/components/common/application-node/application-node.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/application-node/application-node.js +0 -41
- package/dist/src/presentation/web/components/common/application-node/application-node.stories.d.ts +0 -12
- package/dist/src/presentation/web/components/common/application-node/application-node.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/application-node/application-node.stories.js +0 -100
- package/dist/src/presentation/web/components/features/application-page/application-page.d.ts +0 -8
- package/dist/src/presentation/web/components/features/application-page/application-page.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/application-page/application-page.js +0 -86
- package/dist/src/presentation/web/components/features/application-page/application-page.stories.d.ts +0 -9
- package/dist/src/presentation/web/components/features/application-page/application-page.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/application-page/application-page.stories.js +0 -51
- package/web/.next/server/app/application/[id]/page/app-paths-manifest.json +0 -3
- package/web/.next/server/app/application/[id]/page/build-manifest.json +0 -18
- package/web/.next/server/app/application/[id]/page/next-font-manifest.json +0 -6
- package/web/.next/server/app/application/[id]/page/react-loadable-manifest.json +0 -1
- package/web/.next/server/app/application/[id]/page/server-reference-manifest.json +0 -110
- package/web/.next/server/app/application/[id]/page.js +0 -18
- package/web/.next/server/app/application/[id]/page.js.map +0 -5
- package/web/.next/server/app/application/[id]/page.js.nft.json +0 -1
- package/web/.next/server/app/application/[id]/page_client-reference-manifest.js +0 -2
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +0 -12
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__10852c5c._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__10852c5c._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__2b1074db._.js +0 -12
- package/web/.next/server/chunks/[root-of-the-server]__2b1074db._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__2b71641f._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__2b71641f._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__2bb675ff._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__2bb675ff._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__2f61738a._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__2f61738a._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__31598852._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__31598852._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__31944fa2._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__31944fa2._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__32b04219._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__32b04219._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__3b72e8b0._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__3b72e8b0._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__4408a5ba._.js +0 -12
- package/web/.next/server/chunks/[root-of-the-server]__4408a5ba._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__6565a045._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__6565a045._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__8a281f8d._.js +0 -24
- package/web/.next/server/chunks/[root-of-the-server]__8a281f8d._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__8f8d6afe._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__8f8d6afe._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__9a136c79._.js +0 -9
- package/web/.next/server/chunks/[root-of-the-server]__9a136c79._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__a5879003._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__a5879003._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__ab4951b1._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__ab4951b1._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__acea6565._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__acea6565._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__b2f9a412._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +0 -1
- package/web/.next/server/chunks/[root-of-the-server]__fc6fd958._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__fc6fd958._.js.map +0 -1
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_c4b92435.js +0 -3
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_c4b92435.js.map +0 -1
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_e4478080.js +0 -3
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_e4478080.js.map +0 -1
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_9b144ef8.js +0 -3
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_9b144ef8.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__00efb844._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__00efb844._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__090f24cb._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0d64745d._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0d64745d._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17dadd08._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17dadd08._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1a9687c4._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1a9687c4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__234748ae._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__234748ae._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2a2005ad._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2a2005ad._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__3a6d2b30._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__3a6d2b30._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__5d481a91._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__5d481a91._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__63272afd._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__63272afd._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7e2919._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7e2919._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7aa484f5._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dd3e834e._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dd3e834e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e7504e4a._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e7504e4a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_1e08a336._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_295fffde._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_2bea8166._.js +0 -4
- package/web/.next/server/chunks/ssr/_2bea8166._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_46a35540._.js +0 -3
- package/web/.next/server/chunks/ssr/_46a35540._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_4e42f1b7._.js +0 -3
- package/web/.next/server/chunks/ssr/_4e42f1b7._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_6f66d7ac._.js +0 -3
- package/web/.next/server/chunks/ssr/_6f66d7ac._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_73e62e34._.js +0 -7
- package/web/.next/server/chunks/ssr/_73e62e34._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_946a7fc6._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_b0311e50._.js +0 -3
- package/web/.next/server/chunks/ssr/_b0311e50._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_d485d3b9._.js +0 -3
- package/web/.next/server/chunks/ssr/_d485d3b9._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_f3cd7f63._.js +0 -9
- package/web/.next/server/chunks/ssr/_f3cd7f63._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_f86fc1bf._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_f916587a._.js +0 -3
- package/web/.next/server/chunks/ssr/_f916587a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_139547d4._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_139547d4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_5b7ef96a._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_5b7ef96a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_5f6f6651._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_5f6f6651._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_9cd4b94c._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_9cd4b94c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_bc9fae39.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_bc9fae39.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1619f987.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1619f987.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_1b3c83ff.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_1b3c83ff.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_b3759f18._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_b3759f18._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_bceeb973._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_bceeb973._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +0 -1
- package/web/.next/static/chunks/0dbc8228223540f0.js +0 -1
- package/web/.next/static/chunks/2090882dcaad5f8f.js +0 -3
- package/web/.next/static/chunks/357c3d4c713a444b.js +0 -1
- package/web/.next/static/chunks/67499ef845dda801.js +0 -1
- package/web/.next/static/chunks/771b8283dff48366.js +0 -5
- package/web/.next/static/chunks/79f687a9b9f2dca3.js +0 -1
- package/web/.next/static/chunks/7acc65394c377946.js +0 -1
- package/web/.next/static/chunks/8da227cb5d5c25b1.js +0 -7
- package/web/.next/static/chunks/90cce661ba250a41.js +0 -1
- package/web/.next/static/chunks/994f0ac30cd8661a.js +0 -1
- package/web/.next/static/chunks/bdd3467bb34c2b76.css +0 -1
- package/web/.next/static/chunks/bf5da7f887552cca.js +0 -1
- package/web/.next/static/chunks/c9bd1dea77920749.js +0 -1
- package/web/.next/static/chunks/ce8d4b5094c4dd62.js +0 -1
- package/web/.next/static/chunks/d2f65dc6c7e99186.js +0 -1
- package/web/.next/static/chunks/e9ab2deb269fa340.js +0 -1
- /package/web/.next/server/chunks/{[root-of-the-server]__e3692208._.js.map → [root-of-the-server]__937ba94e._.js.map} +0 -0
- /package/web/.next/static/{GfIqHvmVtZCXK5PAbtkQf → 8CNKMABoDvNDVQD3DEuB4}/_buildManifest.js +0 -0
- /package/web/.next/static/{GfIqHvmVtZCXK5PAbtkQf → 8CNKMABoDvNDVQD3DEuB4}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{GfIqHvmVtZCXK5PAbtkQf → 8CNKMABoDvNDVQD3DEuB4}/_ssgManifest.js +0 -0
|
@@ -13,6 +13,9 @@ properties:
|
|
|
13
13
|
token:
|
|
14
14
|
type: string
|
|
15
15
|
description: API token for token-based auth (optional)
|
|
16
|
+
permissionMode:
|
|
17
|
+
$ref: PermissionMode.yaml
|
|
18
|
+
description: Permission mode for tool approvals (optional, defaults to agent default)
|
|
16
19
|
required:
|
|
17
20
|
- type
|
|
18
21
|
- authMethod
|
package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
* }
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
|
-
import type { AgentType, AgentFeature } from '../../../../domain/generated/output.js';
|
|
23
|
+
import type { AgentType, AgentFeature, PermissionMode } from '../../../../domain/generated/output.js';
|
|
24
24
|
/**
|
|
25
25
|
* Token usage and execution statistics returned by an agent.
|
|
26
26
|
*/
|
|
@@ -88,6 +88,8 @@ export interface AgentExecutionOptions {
|
|
|
88
88
|
disableMcp?: boolean;
|
|
89
89
|
/** Restrict available built-in tools via --tools flag */
|
|
90
90
|
tools?: string[];
|
|
91
|
+
/** Permission mode controlling how the agent handles tool approvals */
|
|
92
|
+
permissionMode?: PermissionMode;
|
|
91
93
|
}
|
|
92
94
|
/**
|
|
93
95
|
* Port interface for executing prompts against an AI agent.
|
package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-executor.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/agents/agent-executor.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"agent-executor.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/agents/agent-executor.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,KAAK,EACV,SAAS,EACT,YAAY,EACZ,cAAc,EACf,MAAM,wCAAwC,CAAC;AAEhD;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,8DAA8D;IAC9D,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,uDAAuD;IACvD,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,4BAA4B;IAC5B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,sDAAsD;IACtD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,qDAAqD;IACrD,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,8BAA8B;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,4CAA4C;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2CAA2C;IAC3C,KAAK,CAAC,EAAE,mBAAmB,CAAC;IAC5B,yCAAyC;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC,2DAA2D;IAC3D,IAAI,EAAE,UAAU,GAAG,QAAQ,GAAG,OAAO,CAAC;IACtC,yBAAyB;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,iCAAiC;IACjC,SAAS,EAAE,IAAI,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,sCAAsC;IACtC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,wCAAwC;IACxC,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,mDAAmD;IACnD,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iCAAiC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,wCAAwC;IACxC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,wCAAwC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,wEAAwE;IACxE,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,mEAAmE;IACnE,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,yDAAyD;IACzD,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,uEAAuE;IACvE,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,WAAW,cAAc;IAC7B,8CAA8C;IAC9C,QAAQ,CAAC,SAAS,EAAE,SAAS,CAAC;IAE9B;;;;;;OAMG;IACH,OAAO,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;IAExF;;;;;;OAMG;IACH,aAAa,CACX,MAAM,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,qBAAqB,GAC9B,aAAa,CAAC,yBAAyB,CAAC,CAAC;IAE5C;;;;;OAKG;IACH,eAAe,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC;CACjD"}
|
package/dist/packages/core/src/application/ports/output/agents/agent-run-repository.interface.d.ts
CHANGED
|
@@ -66,6 +66,13 @@ export interface IAgentRunRepository {
|
|
|
66
66
|
* @returns Array of running agent runs with the given PID
|
|
67
67
|
*/
|
|
68
68
|
findRunningByPid(pid: number): Promise<AgentRun[]>;
|
|
69
|
+
/**
|
|
70
|
+
* Find multiple agent runs by their IDs in a single query.
|
|
71
|
+
*
|
|
72
|
+
* @param ids - The agent run IDs to look up
|
|
73
|
+
* @returns Array of found agent runs (missing IDs are silently skipped)
|
|
74
|
+
*/
|
|
75
|
+
findByIds(ids: string[]): Promise<AgentRun[]>;
|
|
69
76
|
/**
|
|
70
77
|
* List all agent runs.
|
|
71
78
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-run-repository.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/agents/agent-run-repository.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAEvF,MAAM,WAAW,0BAA0B;IACzC,SAAS,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;IACjC,OAAO,CAAC,EAAE,QAAQ,CAAC,SAAS,CAAC,CAAC;IAC9B,SAAS,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;CAClC;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,MAAM,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1C;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IAE/C;;;;;OAKG;IACH,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IAE3D;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,cAAc,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7F;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,0BAA0B,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnF;;;;;;OAMG;IACH,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAEnD;;;;OAIG;IACH,IAAI,IAAI,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAE5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACnC"}
|
|
1
|
+
{"version":3,"file":"agent-run-repository.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/agents/agent-run-repository.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAEvF,MAAM,WAAW,0BAA0B;IACzC,SAAS,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;IACjC,OAAO,CAAC,EAAE,QAAQ,CAAC,SAAS,CAAC,CAAC;IAC9B,SAAS,EAAE,QAAQ,CAAC,WAAW,CAAC,CAAC;CAClC;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,MAAM,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1C;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IAE/C;;;;;OAKG;IACH,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IAE3D;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,cAAc,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7F;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,0BAA0B,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnF;;;;;;OAMG;IACH,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAEnD;;;;;OAKG;IACH,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAE9C;;;;OAIG;IACH,IAAI,IAAI,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAE5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACnC"}
|
|
@@ -40,6 +40,13 @@ export interface IPhaseTimingRepository {
|
|
|
40
40
|
* @returns Array of phase timings ordered by creation
|
|
41
41
|
*/
|
|
42
42
|
findByRunId(agentRunId: string): Promise<PhaseTiming[]>;
|
|
43
|
+
/**
|
|
44
|
+
* Find all phase timings for multiple agent runs in a single query.
|
|
45
|
+
*
|
|
46
|
+
* @param runIds - The agent run IDs to look up
|
|
47
|
+
* @returns Array of phase timings ordered by creation (across all runs)
|
|
48
|
+
*/
|
|
49
|
+
findByRunIds(runIds: string[]): Promise<PhaseTiming[]>;
|
|
43
50
|
/**
|
|
44
51
|
* Find all phase timings for a feature (via agent_runs join).
|
|
45
52
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"phase-timing-repository.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/agents/phase-timing-repository.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAE1E;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC;;;;OAIG;IACH,IAAI,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE9C;;;;;OAKG;IACH,MAAM,CACJ,EAAE,EAAE,MAAM,EACV,OAAO,EAAE,OAAO,CACd,IAAI,CACF,WAAW,EACT,aAAa,GACb,YAAY,GACZ,aAAa,GACb,cAAc,GACd,0BAA0B,GAC1B,sBAAsB,GACtB,SAAS,GACT,UAAU,GACV,eAAe,GACf,UAAU,GACV,cAAc,GACd,QAAQ,CACX,CACF,GACA,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;;OAKG;IACH,kBAAkB,CAChB,EAAE,EAAE,MAAM,EACV,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,mBAAmB,GAAG,gBAAgB,CAAC,CAAC,GAC1E,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;;OAKG;IACH,WAAW,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC;IAExD;;;;;OAKG;IACH,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC;CAC5D"}
|
|
1
|
+
{"version":3,"file":"phase-timing-repository.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/agents/phase-timing-repository.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAE1E;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC;;;;OAIG;IACH,IAAI,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE9C;;;;;OAKG;IACH,MAAM,CACJ,EAAE,EAAE,MAAM,EACV,OAAO,EAAE,OAAO,CACd,IAAI,CACF,WAAW,EACT,aAAa,GACb,YAAY,GACZ,aAAa,GACb,cAAc,GACd,0BAA0B,GAC1B,sBAAsB,GACtB,SAAS,GACT,UAAU,GACV,eAAe,GACf,UAAU,GACV,cAAc,GACd,QAAQ,CACX,CACF,GACA,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;;OAKG;IACH,kBAAkB,CAChB,EAAE,EAAE,MAAM,EACV,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,WAAW,EAAE,mBAAmB,GAAG,gBAAgB,CAAC,CAAC,GAC1E,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;;OAKG;IACH,WAAW,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC;IAExD;;;;;OAKG;IACH,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC;IAEvD;;;;;OAKG;IACH,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC;CAC5D"}
|
|
@@ -8,5 +8,4 @@ export type { ISettingsRepository } from './settings.repository.interface.js';
|
|
|
8
8
|
export type { IRepositoryRepository } from './repository-repository.interface.js';
|
|
9
9
|
export type { IInteractiveSessionRepository } from './interactive-session-repository.interface.js';
|
|
10
10
|
export type { IInteractiveMessageRepository } from './interactive-message-repository.interface.js';
|
|
11
|
-
export type { IApplicationRepository } from './application-repository.interface.js';
|
|
12
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/repositories/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAChG,YAAY,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,YAAY,EAAE,qBAAqB,EAAE,MAAM,sCAAsC,CAAC;AAClF,YAAY,EAAE,6BAA6B,EAAE,MAAM,+CAA+C,CAAC;AACnG,YAAY,EAAE,6BAA6B,EAAE,MAAM,+CAA+C,CAAC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/repositories/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AAChG,YAAY,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,YAAY,EAAE,qBAAqB,EAAE,MAAM,sCAAsC,CAAC;AAClF,YAAY,EAAE,6BAA6B,EAAE,MAAM,+CAA+C,CAAC;AACnG,YAAY,EAAE,6BAA6B,EAAE,MAAM,+CAA+C,CAAC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* File System Service Interface
|
|
3
|
+
*
|
|
4
|
+
* Output port for file system operations used by application-layer code.
|
|
5
|
+
* Abstracts Node.js fs primitives behind a testable interface so that
|
|
6
|
+
* use cases and presentation layers never import fs directly.
|
|
7
|
+
*
|
|
8
|
+
* Following Clean Architecture:
|
|
9
|
+
* - Application / Presentation layers depend on this interface
|
|
10
|
+
* - Infrastructure layer provides the concrete Node.js fs implementation
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Port interface for file system operations.
|
|
14
|
+
*
|
|
15
|
+
* Implementations must:
|
|
16
|
+
* - Use path.join / path.resolve internally (no hardcoded separators)
|
|
17
|
+
* - Normalize paths to forward slashes where appropriate (cross-platform)
|
|
18
|
+
* - Propagate fs errors as-is — callers handle ENOENT etc.
|
|
19
|
+
*/
|
|
20
|
+
export interface IFileSystemService {
|
|
21
|
+
/**
|
|
22
|
+
* Read the entire contents of a file asynchronously.
|
|
23
|
+
*
|
|
24
|
+
* @param path - Absolute path to the file
|
|
25
|
+
* @returns Buffer with the file contents
|
|
26
|
+
*/
|
|
27
|
+
readFile(path: string): Promise<Buffer>;
|
|
28
|
+
/**
|
|
29
|
+
* Read the entire contents of a file synchronously.
|
|
30
|
+
*
|
|
31
|
+
* @param path - Absolute path to the file
|
|
32
|
+
* @param encoding - Optional encoding (defaults to utf-8)
|
|
33
|
+
* @returns File contents as a string
|
|
34
|
+
*/
|
|
35
|
+
readFileSync(path: string, encoding?: BufferEncoding): string;
|
|
36
|
+
/**
|
|
37
|
+
* Write data to a file, creating it if it does not exist and
|
|
38
|
+
* overwriting it if it does.
|
|
39
|
+
*
|
|
40
|
+
* @param path - Absolute path to the file
|
|
41
|
+
* @param data - Content to write
|
|
42
|
+
*/
|
|
43
|
+
writeFile(path: string, data: string | Buffer): Promise<void>;
|
|
44
|
+
/**
|
|
45
|
+
* Check whether a file or directory exists at the given path.
|
|
46
|
+
*
|
|
47
|
+
* @param path - Absolute path to check
|
|
48
|
+
* @returns true if the path exists
|
|
49
|
+
*/
|
|
50
|
+
exists(path: string): boolean;
|
|
51
|
+
/**
|
|
52
|
+
* List the entries (files and directories) in a directory.
|
|
53
|
+
*
|
|
54
|
+
* @param path - Absolute path to the directory
|
|
55
|
+
* @returns Array of entry names (not full paths)
|
|
56
|
+
*/
|
|
57
|
+
readDir(path: string): string[];
|
|
58
|
+
/**
|
|
59
|
+
* Create a directory, optionally creating parent directories.
|
|
60
|
+
*
|
|
61
|
+
* @param path - Absolute path to the directory
|
|
62
|
+
* @param options - Optional; set recursive to create parent dirs
|
|
63
|
+
*/
|
|
64
|
+
mkdir(path: string, options?: {
|
|
65
|
+
recursive?: boolean;
|
|
66
|
+
}): void;
|
|
67
|
+
}
|
|
68
|
+
//# sourceMappingURL=file-system.interface.d.ts.map
|
package/dist/packages/core/src/application/ports/output/services/file-system.interface.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-system.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/file-system.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC;;;;;OAKG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAExC;;;;;;OAMG;IACH,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC;IAE9D;;;;;;OAMG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE9D;;;;;OAKG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;IAE9B;;;;;OAKG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAEhC;;;;;OAKG;IACH,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,IAAI,CAAC;CAC9D"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* File System Service Interface
|
|
3
|
+
*
|
|
4
|
+
* Output port for file system operations used by application-layer code.
|
|
5
|
+
* Abstracts Node.js fs primitives behind a testable interface so that
|
|
6
|
+
* use cases and presentation layers never import fs directly.
|
|
7
|
+
*
|
|
8
|
+
* Following Clean Architecture:
|
|
9
|
+
* - Application / Presentation layers depend on this interface
|
|
10
|
+
* - Infrastructure layer provides the concrete Node.js fs implementation
|
|
11
|
+
*/
|
|
12
|
+
export {};
|
|
@@ -21,4 +21,7 @@ export type { IGitHubRepositoryService, GitHubRepo, GitHubOrganization, ListUser
|
|
|
21
21
|
export { GitHubAuthError, GitHubCloneError, GitHubUrlParseError, GitHubRepoListError, } from './github-repository-service.interface.js';
|
|
22
22
|
export type { IInteractiveSessionService, StreamChunk, UnsubscribeFn, ChatState, } from './interactive-session-service.interface.js';
|
|
23
23
|
export type { ISkillInjectorService, SkillInjectionResult } from './skill-injector.interface.js';
|
|
24
|
+
export type { IProcessMonitorService } from './process-monitor.interface.js';
|
|
25
|
+
export type { IFileSystemService } from './file-system.interface.js';
|
|
26
|
+
export type { ISettingsReader } from './settings-reader.interface.js';
|
|
24
27
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EAAE,qBAAqB,EAAE,aAAa,EAAE,MAAM,uCAAuC,CAAC;AAClG,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EACxB,4BAA4B,GAC7B,MAAM,uCAAuC,CAAC;AAC/C,YAAY,EACV,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,iCAAiC,CAAC;AACzC,YAAY,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,YAAY,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACnF,YAAY,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACjG,YAAY,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAChF,YAAY,EACV,aAAa,EACb,QAAQ,EACR,cAAc,EACd,WAAW,EACX,aAAa,EACb,cAAc,GACf,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC3E,YAAY,EACV,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,eAAe,GAChB,MAAM,qCAAqC,CAAC;AAC7C,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACjF,YAAY,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AAC9F,YAAY,EACV,wBAAwB,EACxB,UAAU,EACV,kBAAkB,EAClB,2BAA2B,EAC3B,YAAY,EACZ,eAAe,GAChB,MAAM,0CAA0C,CAAC;AAClD,OAAO,EACL,eAAe,EACf,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,0CAA0C,CAAC;AAClD,YAAY,EACV,0BAA0B,EAC1B,WAAW,EACX,aAAa,EACb,SAAS,GACV,MAAM,4CAA4C,CAAC;AACpD,YAAY,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EAAE,qBAAqB,EAAE,aAAa,EAAE,MAAM,uCAAuC,CAAC;AAClG,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EACxB,4BAA4B,GAC7B,MAAM,uCAAuC,CAAC;AAC/C,YAAY,EACV,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,iCAAiC,CAAC;AACzC,YAAY,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,YAAY,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACnF,YAAY,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACjG,YAAY,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAChF,YAAY,EACV,aAAa,EACb,QAAQ,EACR,cAAc,EACd,WAAW,EACX,aAAa,EACb,cAAc,GACf,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC3E,YAAY,EACV,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,eAAe,GAChB,MAAM,qCAAqC,CAAC;AAC7C,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACjF,YAAY,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AAC9F,YAAY,EACV,wBAAwB,EACxB,UAAU,EACV,kBAAkB,EAClB,2BAA2B,EAC3B,YAAY,EACZ,eAAe,GAChB,MAAM,0CAA0C,CAAC;AAClD,OAAO,EACL,eAAe,EACf,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,0CAA0C,CAAC;AAClD,YAAY,EACV,0BAA0B,EAC1B,WAAW,EACX,aAAa,EACb,SAAS,GACV,MAAM,4CAA4C,CAAC;AACpD,YAAY,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACjG,YAAY,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAC7E,YAAY,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AACrE,YAAY,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC"}
|
package/dist/packages/core/src/application/ports/output/services/process-monitor.interface.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Process Monitor Service Interface
|
|
3
|
+
*
|
|
4
|
+
* Output port for checking whether OS processes are alive.
|
|
5
|
+
* Infrastructure layer provides a concrete implementation using
|
|
6
|
+
* process.kill(pid, 0) (signal-0 probe).
|
|
7
|
+
*
|
|
8
|
+
* Following Clean Architecture:
|
|
9
|
+
* - Application / Presentation layers depend on this interface
|
|
10
|
+
* - Infrastructure layer provides concrete implementation
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Port interface for querying process liveness.
|
|
14
|
+
*
|
|
15
|
+
* Implementations must:
|
|
16
|
+
* - Return true only when the PID exists and is not a zombie
|
|
17
|
+
* - Return false for invalid PIDs (negative, NaN, non-finite)
|
|
18
|
+
* - Never throw — always return a boolean
|
|
19
|
+
*/
|
|
20
|
+
export interface IProcessMonitorService {
|
|
21
|
+
/**
|
|
22
|
+
* Check whether a process with the given PID is still running.
|
|
23
|
+
*
|
|
24
|
+
* @param pid - OS process identifier to probe
|
|
25
|
+
* @returns true if the process is alive, false otherwise
|
|
26
|
+
*/
|
|
27
|
+
isAlive(pid: number): boolean;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=process-monitor.interface.d.ts.map
|
package/dist/packages/core/src/application/ports/output/services/process-monitor.interface.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"process-monitor.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/process-monitor.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH;;;;;;;GAOG;AACH,MAAM,WAAW,sBAAsB;IACrC;;;;;OAKG;IACH,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CAC/B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Process Monitor Service Interface
|
|
3
|
+
*
|
|
4
|
+
* Output port for checking whether OS processes are alive.
|
|
5
|
+
* Infrastructure layer provides a concrete implementation using
|
|
6
|
+
* process.kill(pid, 0) (signal-0 probe).
|
|
7
|
+
*
|
|
8
|
+
* Following Clean Architecture:
|
|
9
|
+
* - Application / Presentation layers depend on this interface
|
|
10
|
+
* - Infrastructure layer provides concrete implementation
|
|
11
|
+
*/
|
|
12
|
+
export {};
|
package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Settings Reader Interface
|
|
3
|
+
*
|
|
4
|
+
* Output port for reading application settings.
|
|
5
|
+
* Infrastructure layer provides the concrete implementation that wraps
|
|
6
|
+
* the globalThis/process-based settings singleton.
|
|
7
|
+
*
|
|
8
|
+
* Following Clean Architecture:
|
|
9
|
+
* - Application layer depends on this interface (never on the infrastructure singleton)
|
|
10
|
+
* - Infrastructure layer provides the concrete SettingsReaderAdapter
|
|
11
|
+
*/
|
|
12
|
+
import type { Settings } from '../../../../domain/generated/output.js';
|
|
13
|
+
/**
|
|
14
|
+
* Port interface for reading application settings.
|
|
15
|
+
*
|
|
16
|
+
* Implementations must:
|
|
17
|
+
* - Return the current in-memory Settings instance
|
|
18
|
+
* - Indicate whether settings have been initialized
|
|
19
|
+
*/
|
|
20
|
+
export interface ISettingsReader {
|
|
21
|
+
/**
|
|
22
|
+
* Get the current application settings.
|
|
23
|
+
*
|
|
24
|
+
* @returns Current settings instance
|
|
25
|
+
* @throws Error if settings haven't been initialized yet
|
|
26
|
+
*/
|
|
27
|
+
getSettings(): Settings;
|
|
28
|
+
/**
|
|
29
|
+
* Check if settings have been initialized.
|
|
30
|
+
*
|
|
31
|
+
* @returns True if settings are initialized, false otherwise
|
|
32
|
+
*/
|
|
33
|
+
hasSettings(): boolean;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=settings-reader.interface.d.ts.map
|
package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"settings-reader.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/settings-reader.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAEvE;;;;;;GAMG;AACH,MAAM,WAAW,eAAe;IAC9B;;;;;OAKG;IACH,WAAW,IAAI,QAAQ,CAAC;IAExB;;;;OAIG;IACH,WAAW,IAAI,OAAO,CAAC;CACxB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Settings Reader Interface
|
|
3
|
+
*
|
|
4
|
+
* Output port for reading application settings.
|
|
5
|
+
* Infrastructure layer provides the concrete implementation that wraps
|
|
6
|
+
* the globalThis/process-based settings singleton.
|
|
7
|
+
*
|
|
8
|
+
* Following Clean Architecture:
|
|
9
|
+
* - Application layer depends on this interface (never on the infrastructure singleton)
|
|
10
|
+
* - Infrastructure layer provides the concrete SettingsReaderAdapter
|
|
11
|
+
*/
|
|
12
|
+
export {};
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* if the session does not exist.
|
|
7
7
|
*/
|
|
8
8
|
import type { AgentSession, AgentType } from '../../../domain/generated/output.js';
|
|
9
|
+
import type { ISettingsReader } from '../../ports/output/services/settings-reader.interface.js';
|
|
9
10
|
import { AgentSessionRepositoryRegistry } from '../../services/agents/agent-session-repository.registry.js';
|
|
10
11
|
export interface GetAgentSessionInput {
|
|
11
12
|
/** The session ID (provider-native filename without extension) */
|
|
@@ -17,7 +18,8 @@ export interface GetAgentSessionInput {
|
|
|
17
18
|
}
|
|
18
19
|
export declare class GetAgentSessionUseCase {
|
|
19
20
|
private readonly registry;
|
|
20
|
-
|
|
21
|
+
private readonly settingsReader;
|
|
22
|
+
constructor(registry: AgentSessionRepositoryRegistry, settingsReader: ISettingsReader);
|
|
21
23
|
execute(input: GetAgentSessionInput): Promise<AgentSession>;
|
|
22
24
|
private resolveAgentType;
|
|
23
25
|
}
|
package/dist/packages/core/src/application/use-cases/agents/get-agent-session.use-case.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-agent-session.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/agents/get-agent-session.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"get-agent-session.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/agents/get-agent-session.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,qCAAqC,CAAC;AACnF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAChG,OAAO,EAAE,8BAA8B,EAAE,MAAM,4DAA4D,CAAC;AAG5G,MAAM,WAAW,oBAAoB;IACnC,kEAAkE;IAClE,EAAE,EAAE,MAAM,CAAC;IACX,yEAAyE;IACzE,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,kEAAkE;IAClE,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,qBACa,sBAAsB;IAG/B,OAAO,CAAC,QAAQ,CAAC,QAAQ;IAEzB,OAAO,CAAC,QAAQ,CAAC,cAAc;gBAFd,QAAQ,EAAE,8BAA8B,EAExC,cAAc,EAAE,eAAe;IAG5C,OAAO,CAAC,KAAK,EAAE,oBAAoB,GAAG,OAAO,CAAC,YAAY,CAAC;IAcjE,OAAO,CAAC,gBAAgB;CAGzB"}
|
|
@@ -18,13 +18,14 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
18
18
|
return function (target, key) { decorator(target, key, paramIndex); }
|
|
19
19
|
};
|
|
20
20
|
import { injectable, inject } from 'tsyringe';
|
|
21
|
-
import { getSettings } from '../../../infrastructure/services/settings.service.js';
|
|
22
21
|
import { AgentSessionRepositoryRegistry } from '../../services/agents/agent-session-repository.registry.js';
|
|
23
22
|
import { SessionNotFoundError } from '../../../domain/errors/session-not-found.error.js';
|
|
24
23
|
let GetAgentSessionUseCase = class GetAgentSessionUseCase {
|
|
25
24
|
registry;
|
|
26
|
-
|
|
25
|
+
settingsReader;
|
|
26
|
+
constructor(registry, settingsReader) {
|
|
27
27
|
this.registry = registry;
|
|
28
|
+
this.settingsReader = settingsReader;
|
|
28
29
|
}
|
|
29
30
|
async execute(input) {
|
|
30
31
|
const agentType = this.resolveAgentType(input.agentType);
|
|
@@ -37,12 +38,13 @@ let GetAgentSessionUseCase = class GetAgentSessionUseCase {
|
|
|
37
38
|
return session;
|
|
38
39
|
}
|
|
39
40
|
resolveAgentType(agentType) {
|
|
40
|
-
return agentType ?? getSettings().agent.type;
|
|
41
|
+
return agentType ?? this.settingsReader.getSettings().agent.type;
|
|
41
42
|
}
|
|
42
43
|
};
|
|
43
44
|
GetAgentSessionUseCase = __decorate([
|
|
44
45
|
injectable(),
|
|
45
46
|
__param(0, inject(AgentSessionRepositoryRegistry)),
|
|
46
|
-
|
|
47
|
+
__param(1, inject('ISettingsReader')),
|
|
48
|
+
__metadata("design:paramtypes", [AgentSessionRepositoryRegistry, Object])
|
|
47
49
|
], GetAgentSessionUseCase);
|
|
48
50
|
export { GetAgentSessionUseCase };
|
package/dist/packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.d.ts
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* emits a warning for providers not yet implemented (stub repositories).
|
|
7
7
|
*/
|
|
8
8
|
import type { AgentSession, AgentType } from '../../../domain/generated/output.js';
|
|
9
|
+
import type { ISettingsReader } from '../../ports/output/services/settings-reader.interface.js';
|
|
9
10
|
import { AgentSessionRepositoryRegistry } from '../../services/agents/agent-session-repository.registry.js';
|
|
10
11
|
export interface ListAgentSessionsInput {
|
|
11
12
|
/** Agent type to query; falls back to configured default when omitted */
|
|
@@ -15,7 +16,8 @@ export interface ListAgentSessionsInput {
|
|
|
15
16
|
}
|
|
16
17
|
export declare class ListAgentSessionsUseCase {
|
|
17
18
|
private readonly registry;
|
|
18
|
-
|
|
19
|
+
private readonly settingsReader;
|
|
20
|
+
constructor(registry: AgentSessionRepositoryRegistry, settingsReader: ISettingsReader);
|
|
19
21
|
execute(input?: ListAgentSessionsInput): Promise<AgentSession[]>;
|
|
20
22
|
private resolveAgentType;
|
|
21
23
|
}
|
package/dist/packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-agent-sessions.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"list-agent-sessions.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,qCAAqC,CAAC;AACnF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,0DAA0D,CAAC;AAChG,OAAO,EAAE,8BAA8B,EAAE,MAAM,4DAA4D,CAAC;AAE5G,MAAM,WAAW,sBAAsB;IACrC,yEAAyE;IACzE,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,qBACa,wBAAwB;IAGjC,OAAO,CAAC,QAAQ,CAAC,QAAQ;IAEzB,OAAO,CAAC,QAAQ,CAAC,cAAc;gBAFd,QAAQ,EAAE,8BAA8B,EAExC,cAAc,EAAE,eAAe;IAG5C,OAAO,CAAC,KAAK,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC;IAatE,OAAO,CAAC,gBAAgB;CAGzB"}
|
|
@@ -18,12 +18,13 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
18
18
|
return function (target, key) { decorator(target, key, paramIndex); }
|
|
19
19
|
};
|
|
20
20
|
import { injectable, inject } from 'tsyringe';
|
|
21
|
-
import { getSettings } from '../../../infrastructure/services/settings.service.js';
|
|
22
21
|
import { AgentSessionRepositoryRegistry } from '../../services/agents/agent-session-repository.registry.js';
|
|
23
22
|
let ListAgentSessionsUseCase = class ListAgentSessionsUseCase {
|
|
24
23
|
registry;
|
|
25
|
-
|
|
24
|
+
settingsReader;
|
|
25
|
+
constructor(registry, settingsReader) {
|
|
26
26
|
this.registry = registry;
|
|
27
|
+
this.settingsReader = settingsReader;
|
|
27
28
|
}
|
|
28
29
|
async execute(input) {
|
|
29
30
|
const agentType = this.resolveAgentType(input?.agentType);
|
|
@@ -36,12 +37,13 @@ let ListAgentSessionsUseCase = class ListAgentSessionsUseCase {
|
|
|
36
37
|
return repository.list({ limit });
|
|
37
38
|
}
|
|
38
39
|
resolveAgentType(agentType) {
|
|
39
|
-
return agentType ?? getSettings().agent.type;
|
|
40
|
+
return agentType ?? this.settingsReader.getSettings().agent.type;
|
|
40
41
|
}
|
|
41
42
|
};
|
|
42
43
|
ListAgentSessionsUseCase = __decorate([
|
|
43
44
|
injectable(),
|
|
44
45
|
__param(0, inject(AgentSessionRepositoryRegistry)),
|
|
45
|
-
|
|
46
|
+
__param(1, inject('ISettingsReader')),
|
|
47
|
+
__metadata("design:paramtypes", [AgentSessionRepositoryRegistry, Object])
|
|
46
48
|
], ListAgentSessionsUseCase);
|
|
47
49
|
export { ListAgentSessionsUseCase };
|
|
@@ -77,7 +77,7 @@ let RejectAgentRunUseCase = class RejectAgentRunUseCase {
|
|
|
77
77
|
iteration,
|
|
78
78
|
message: feedback,
|
|
79
79
|
phase: rejectedPhase,
|
|
80
|
-
timestamp: new Date()
|
|
80
|
+
timestamp: new Date(),
|
|
81
81
|
...(attachments && attachments.length > 0 ? { attachments } : {}),
|
|
82
82
|
};
|
|
83
83
|
spec.rejectionFeedback = [...existingFeedback, newEntry];
|
package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ import type { IRepositoryRepository } from '../../../ports/output/repositories/r
|
|
|
25
25
|
import type { IGitPrService } from '../../../ports/output/services/git-pr-service.interface.js';
|
|
26
26
|
import type { IAgentValidator } from '../../../ports/output/agents/agent-validator.interface.js';
|
|
27
27
|
import type { ISkillInjectorService } from '../../../ports/output/services/skill-injector.interface.js';
|
|
28
|
+
import type { ISettingsReader } from '../../../ports/output/services/settings-reader.interface.js';
|
|
28
29
|
import { AttachmentStorageService } from '../../../../infrastructure/services/attachment-storage.service.js';
|
|
29
30
|
import { MetadataGenerator } from './metadata-generator.js';
|
|
30
31
|
import { SlugResolver } from './slug-resolver.js';
|
|
@@ -42,7 +43,8 @@ export declare class CreateFeatureUseCase {
|
|
|
42
43
|
private readonly attachmentStorage;
|
|
43
44
|
private readonly agentValidator;
|
|
44
45
|
private readonly skillInjector;
|
|
45
|
-
|
|
46
|
+
private readonly settingsReader;
|
|
47
|
+
constructor(featureRepo: IFeatureRepository, worktreeService: IWorktreeService, agentProcess: IFeatureAgentProcessService, runRepository: IAgentRunRepository, specInitializer: ISpecInitializerService, metadataGenerator: MetadataGenerator, slugResolver: SlugResolver, repositoryRepo: IRepositoryRepository, gitPrService: IGitPrService, attachmentStorage: AttachmentStorageService, agentValidator: IAgentValidator, skillInjector: ISkillInjectorService, settingsReader: ISettingsReader);
|
|
46
48
|
/**
|
|
47
49
|
* Full synchronous execution: creates record, initializes worktree/spec, spawns agent.
|
|
48
50
|
* Used by the CLI which shows a spinner and needs everything done before returning.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-feature.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/use-cases/features/create/create-feature.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAIH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AAMtE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oEAAoE,CAAC;AAC7G,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8DAA8D,CAAC;AACrG,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,iEAAiE,CAAC;AACnH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gEAAgE,CAAC;AAC1G,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,8DAA8D,CAAC;AAC5G,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,uEAAuE,CAAC;AACnH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4DAA4D,CAAC;AAChG,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2DAA2D,CAAC;AACjG,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4DAA4D,CAAC;
|
|
1
|
+
{"version":3,"file":"create-feature.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/use-cases/features/create/create-feature.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAIH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AAMtE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oEAAoE,CAAC;AAC7G,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8DAA8D,CAAC;AACrG,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,iEAAiE,CAAC;AACnH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gEAAgE,CAAC;AAC1G,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,8DAA8D,CAAC;AAC5G,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,uEAAuE,CAAC;AACnH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4DAA4D,CAAC;AAChG,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2DAA2D,CAAC;AACjG,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4DAA4D,CAAC;AACxG,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,6DAA6D,CAAC;AAGnG,OAAO,EAAE,wBAAwB,EAAE,MAAM,mEAAmE,CAAC;AAC7G,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAE9F,qBACa,oBAAoB;IAG7B,OAAO,CAAC,QAAQ,CAAC,WAAW;IAE5B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAEhC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAE7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAE9B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAEhC,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAElC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAE7B,OAAO,CAAC,QAAQ,CAAC,cAAc;IAE/B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAE7B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAElC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAE/B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAE9B,OAAO,CAAC,QAAQ,CAAC,cAAc;gBAxBd,WAAW,EAAE,kBAAkB,EAE/B,eAAe,EAAE,gBAAgB,EAEjC,YAAY,EAAE,2BAA2B,EAEzC,aAAa,EAAE,mBAAmB,EAElC,eAAe,EAAE,uBAAuB,EAExC,iBAAiB,EAAE,iBAAiB,EAEpC,YAAY,EAAE,YAAY,EAE1B,cAAc,EAAE,qBAAqB,EAErC,YAAY,EAAE,aAAa,EAE3B,iBAAiB,EAAE,wBAAwB,EAE3C,cAAc,EAAE,eAAe,EAE/B,aAAa,EAAE,qBAAqB,EAEpC,cAAc,EAAE,eAAe;IAGlD;;;OAGG;IACG,OAAO,CAAC,KAAK,EAAE,kBAAkB,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAMtE;;;;OAIG;IACG,YAAY,CAAC,KAAK,EAAE,kBAAkB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAyI1E;;;OAGG;IACG,kBAAkB,CACtB,OAAO,EAAE,OAAO,EAChB,KAAK,EAAE,kBAAkB,EACzB,WAAW,EAAE,OAAO,GACnB,OAAO,CAAC;QAAE,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,cAAc,EAAE,OAAO,CAAA;KAAE,CAAC;CAsK1D"}
|
package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js
CHANGED
|
@@ -30,7 +30,6 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
|
30
30
|
import { injectable, inject } from 'tsyringe';
|
|
31
31
|
import { randomUUID } from 'node:crypto';
|
|
32
32
|
import { SdlcLifecycle, AgentRunStatus, } from '../../../../domain/generated/output.js';
|
|
33
|
-
import { getSettings } from '../../../../infrastructure/services/settings.service.js';
|
|
34
33
|
import { createDefaultSettings } from '../../../../domain/factories/settings-defaults.factory.js';
|
|
35
34
|
import { POST_IMPLEMENTATION } from '../../../../domain/lifecycle-gates.js';
|
|
36
35
|
import { AttachmentStorageService } from '../../../../infrastructure/services/attachment-storage.service.js';
|
|
@@ -49,7 +48,8 @@ let CreateFeatureUseCase = class CreateFeatureUseCase {
|
|
|
49
48
|
attachmentStorage;
|
|
50
49
|
agentValidator;
|
|
51
50
|
skillInjector;
|
|
52
|
-
|
|
51
|
+
settingsReader;
|
|
52
|
+
constructor(featureRepo, worktreeService, agentProcess, runRepository, specInitializer, metadataGenerator, slugResolver, repositoryRepo, gitPrService, attachmentStorage, agentValidator, skillInjector, settingsReader) {
|
|
53
53
|
this.featureRepo = featureRepo;
|
|
54
54
|
this.worktreeService = worktreeService;
|
|
55
55
|
this.agentProcess = agentProcess;
|
|
@@ -62,6 +62,7 @@ let CreateFeatureUseCase = class CreateFeatureUseCase {
|
|
|
62
62
|
this.attachmentStorage = attachmentStorage;
|
|
63
63
|
this.agentValidator = agentValidator;
|
|
64
64
|
this.skillInjector = skillInjector;
|
|
65
|
+
this.settingsReader = settingsReader;
|
|
65
66
|
}
|
|
66
67
|
/**
|
|
67
68
|
* Full synchronous execution: creates record, initializes worktree/spec, spawns agent.
|
|
@@ -176,7 +177,7 @@ let CreateFeatureUseCase = class CreateFeatureUseCase {
|
|
|
176
177
|
};
|
|
177
178
|
await this.featureRepo.create(feature);
|
|
178
179
|
// Create agent run record (pending state — agent not spawned yet)
|
|
179
|
-
const settings = getSettings();
|
|
180
|
+
const settings = this.settingsReader.getSettings();
|
|
180
181
|
const agentRun = {
|
|
181
182
|
id: runId,
|
|
182
183
|
agentType: input.agentType ?? settings.agent.type,
|
|
@@ -192,8 +193,8 @@ let CreateFeatureUseCase = class CreateFeatureUseCase {
|
|
|
192
193
|
: settings.models?.default
|
|
193
194
|
? { modelId: settings.models.default }
|
|
194
195
|
: {}),
|
|
195
|
-
createdAt: now
|
|
196
|
-
updatedAt: now
|
|
196
|
+
createdAt: now,
|
|
197
|
+
updatedAt: now,
|
|
197
198
|
};
|
|
198
199
|
await this.runRepository.create(agentRun);
|
|
199
200
|
return { feature, shouldSpawn };
|
|
@@ -260,7 +261,7 @@ let CreateFeatureUseCase = class CreateFeatureUseCase {
|
|
|
260
261
|
}
|
|
261
262
|
}
|
|
262
263
|
// Inject curated skills into the worktree (opt-in, guarded by settings or CLI flag)
|
|
263
|
-
const settings = getSettings();
|
|
264
|
+
const settings = this.settingsReader.getSettings();
|
|
264
265
|
const shouldInject = input.injectSkills ?? settings.workflow.skillInjection?.enabled ?? false;
|
|
265
266
|
let injectedSkillNames;
|
|
266
267
|
const skillConfig = settings.workflow.skillInjection ?? createDefaultSettings().workflow.skillInjection;
|
|
@@ -345,7 +346,8 @@ CreateFeatureUseCase = __decorate([
|
|
|
345
346
|
__param(9, inject(AttachmentStorageService)),
|
|
346
347
|
__param(10, inject('IAgentValidator')),
|
|
347
348
|
__param(11, inject('ISkillInjectorService')),
|
|
349
|
+
__param(12, inject('ISettingsReader')),
|
|
348
350
|
__metadata("design:paramtypes", [Object, Object, Object, Object, Object, MetadataGenerator,
|
|
349
|
-
SlugResolver, Object, Object, AttachmentStorageService, Object, Object])
|
|
351
|
+
SlugResolver, Object, Object, AttachmentStorageService, Object, Object, Object])
|
|
350
352
|
], CreateFeatureUseCase);
|
|
351
353
|
export { CreateFeatureUseCase };
|
package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.js
CHANGED
|
@@ -47,7 +47,7 @@ let RebaseFeatureOnMainUseCase = class RebaseFeatureOnMainUseCase {
|
|
|
47
47
|
throw new Error(`Feature not found: "${featureId}"`);
|
|
48
48
|
}
|
|
49
49
|
// Create standalone agent run + phase timing for activity timeline
|
|
50
|
-
const now = new Date()
|
|
50
|
+
const now = new Date();
|
|
51
51
|
const agentRunId = randomUUID();
|
|
52
52
|
const phaseTimingId = randomUUID();
|
|
53
53
|
await this.agentRunRepo.create({
|
|
@@ -133,7 +133,7 @@ let RebaseFeatureOnMainUseCase = class RebaseFeatureOnMainUseCase {
|
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
135
|
async completeTiming(agentRunId, phaseTimingId, startMs, exitCode, errorMessage) {
|
|
136
|
-
const completedAt = new Date()
|
|
136
|
+
const completedAt = new Date();
|
|
137
137
|
const durationMs = Date.now() - startMs;
|
|
138
138
|
await this.phaseTimingRepo.update(phaseTimingId, {
|
|
139
139
|
completedAt,
|