@shepai/cli 1.175.1-pr527.ea242b8 → 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/FeatureFlags.yaml +0 -5
- package/apis/json-schema/PermissionMode.yaml +8 -0
- package/apis/json-schema/Settings.yaml +0 -3
- package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts +3 -15
- 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/feature-agent-process.interface.d.ts +1 -3
- package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.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/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/github-repository-service.interface.d.ts +0 -38
- package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.js +0 -9
- 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/ports/output/services/spec-initializer.interface.d.ts +0 -11
- package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +0 -2
- 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.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +1 -3
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +0 -2
- 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 -8
- 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/features/resume-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +0 -2
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +0 -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/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -6
- package/dist/packages/core/src/domain/generated/output.d.ts +42 -297
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +7 -43
- 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 -558
- 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 -4
- 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 -19
- 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 +6 -17
- 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 -9
- 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 -47
- 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/fast-feature-agent-graph.d.ts +0 -10
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +1 -35
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +1 -3
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +2 -8
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +1 -3
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +1 -32
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +0 -25
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +1 -4
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +0 -10
- package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts +1 -10
- 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 +17 -108
- 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/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +0 -1
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +0 -61
- 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/cli/index.js +0 -2
- 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 -5
- 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 -2
- 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/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/feature-node/feature-node-state-config.d.ts +1 -3
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.js +1 -2
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts +1 -3
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +2 -3
- 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 +1 -1
- 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.map +1 -1
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +7 -3
- 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/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +0 -3
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +0 -3
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +7 -26
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +0 -1
- 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-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/is-same-shep-instance.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/is-same-shep-instance.js +2 -5
- package/dist/translations/ar/cli.json +0 -21
- package/dist/translations/ar/tui.json +4 -0
- package/dist/translations/ar/web.json +2 -43
- package/dist/translations/de/cli.json +0 -21
- package/dist/translations/de/tui.json +1 -0
- package/dist/translations/de/web.json +2 -43
- package/dist/translations/en/cli.json +0 -21
- package/dist/translations/en/tui.json +4 -0
- package/dist/translations/en/web.json +2 -43
- package/dist/translations/es/cli.json +0 -21
- package/dist/translations/es/tui.json +4 -0
- package/dist/translations/es/web.json +2 -43
- package/dist/translations/fr/cli.json +0 -21
- package/dist/translations/fr/tui.json +4 -0
- package/dist/translations/fr/web.json +2 -43
- package/dist/translations/he/cli.json +0 -21
- package/dist/translations/he/tui.json +4 -0
- package/dist/translations/he/web.json +2 -43
- package/dist/translations/pt/cli.json +1 -22
- package/dist/translations/pt/tui.json +4 -0
- package/dist/translations/pt/web.json +2 -43
- package/dist/translations/ru/cli.json +0 -21
- package/dist/translations/ru/tui.json +4 -0
- package/dist/translations/ru/web.json +2 -43
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +7 -3
- package/web/.next/BUILD_ID +1 -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/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +73 -58
- 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 +69 -54
- 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 +75 -60
- 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 +91 -76
- 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 +91 -76
- 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 +71 -56
- 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 +71 -56
- 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 +69 -54
- 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 +75 -60
- 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 +91 -76
- 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 +91 -76
- 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 +69 -54
- 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 +71 -56
- 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 +71 -56
- 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 +27 -12
- 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 +27 -12
- 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 +33 -33
- 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 +41 -26
- 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 +37 -22
- 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 +27 -12
- 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/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/{[root-of-the-server]__22d17c66._.js → [root-of-the-server]__08e7a080._.js} +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__22d17c66._.js.map → [root-of-the-server]__08e7a080._.js.map} +1 -1
- 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]__69dd3217._.js → [root-of-the-server]__16c1388b._.js} +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__69dd3217._.js.map → [root-of-the-server]__16c1388b._.js.map} +1 -1
- 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]__23b5ca2c._.js +1 -1
- 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]__7528eb6f._.js +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]__efeeaed4._.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]__d1040bd1._.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/{_e7f76333._.js → _080b0309._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_e7f76333._.js.map → _080b0309._.js.map} +1 -1
- 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/_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/_4cbb7f95._.js +1 -1
- package/web/.next/server/chunks/ssr/_4cbb7f95._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_fc1578d7._.js → _4db4ac1e._.js} +2 -2
- package/web/.next/server/chunks/ssr/_4db4ac1e._.js.map +1 -0
- 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 +1 -1
- package/web/.next/server/chunks/ssr/_6abfa39e._.js.map +1 -1
- 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/{_d9c0a97a._.js → _819f193a._.js} +2 -2
- package/web/.next/server/chunks/ssr/_819f193a._.js.map +1 -0
- 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/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 -1
- 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_895e5bfa._.js → src_presentation_web_components_349d9f24._.js} +2 -2
- 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/src_presentation_web_db9fa0c2._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
- 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 +683 -550
- package/web/.next/static/chunks/{c741f40bcb2abe54.js → 05c0a8ed7621ea2a.js} +2 -2
- package/web/.next/static/chunks/{6e5aeb5da5bb2ab6.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/{46e2693dbc9262fd.js → 316b0e4597f2083d.js} +2 -2
- package/web/.next/static/chunks/3370f8dc24c64ce4.js +1 -0
- package/web/.next/static/chunks/47ed89fae0f1542e.js +1 -0
- package/web/.next/static/chunks/{c43f00ac45c5381d.js → 6853929058e53d1a.js} +1 -1
- package/web/.next/static/chunks/{89a6182ae40ac10b.js → 6bfcb5d1b3eafd81.js} +1 -1
- package/web/.next/static/chunks/6c1664f584f34e6f.js +1 -0
- package/web/.next/static/chunks/{2dcae7bd1f3e2b51.js → 71ad5a4155ddd207.js} +1 -1
- package/web/.next/static/chunks/{825ddcb7c361b2fe.js → 81347e69998eef38.js} +1 -1
- package/web/.next/static/chunks/{b46545caae3b4930.js → 8a68402c32c6a206.js} +1 -1
- package/web/.next/static/chunks/8b0a9cb5109fe899.js +1 -0
- package/web/.next/static/chunks/{a6d516b7e128f889.js → 8bf91dcd1b3077d7.js} +1 -1
- package/web/.next/static/chunks/{69aa6a996dccb7dc.js → a1ad19e21b6ad1ad.js} +2 -2
- package/web/.next/static/chunks/e610f5d703696b34.js +1 -0
- package/web/.next/static/chunks/f952f152ac0a4abe.js +3 -0
- package/web/.next/static/chunks/{1eeabda286169861.js → fd319c0e5f3cc20a.js} +2 -2
- package/web/public/icons/agents/rovo-dev.svg +6 -0
- package/apis/json-schema/ActionDispositionEntry.yaml +0 -14
- package/apis/json-schema/DependencyFinding.yaml +0 -28
- package/apis/json-schema/DependencyRiskType.yaml +0 -11
- package/apis/json-schema/DependencyRules.yaml +0 -38
- package/apis/json-schema/EffectivePolicySnapshot.yaml +0 -24
- package/apis/json-schema/ReleaseIntegrityCheck.yaml +0 -22
- package/apis/json-schema/ReleaseIntegrityCheckType.yaml +0 -9
- package/apis/json-schema/ReleaseIntegrityResult.yaml +0 -16
- package/apis/json-schema/ReleaseRules.yaml +0 -21
- package/apis/json-schema/SecurityActionCategory.yaml +0 -10
- package/apis/json-schema/SecurityActionDisposition.yaml +0 -8
- package/apis/json-schema/SecurityConfig.yaml +0 -17
- package/apis/json-schema/SecurityEvent.yaml +0 -36
- package/apis/json-schema/SecurityMode.yaml +0 -8
- package/apis/json-schema/SecurityPolicy.yaml +0 -24
- package/apis/json-schema/SecuritySeverity.yaml +0 -9
- package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts +0 -76
- package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts.map +0 -1
- package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.js +0 -11
- package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts +0 -77
- package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts.map +0 -1
- package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.js +0 -13
- package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts +0 -71
- package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.js +0 -215
- package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts +0 -24
- package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.js +0 -56
- package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts +0 -36
- package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.js +0 -76
- package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts +0 -14
- package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts.map +0 -1
- package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.js +0 -46
- package/dist/packages/core/src/domain/errors/security-violation.error.d.ts +0 -15
- package/dist/packages/core/src/domain/errors/security-violation.error.d.ts.map +0 -1
- package/dist/packages/core/src/domain/errors/security-violation.error.js +0 -20
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts +0 -44
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.js +0 -55
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts +0 -18
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.js +0 -31
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts +0 -29
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.js +0 -53
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.d.ts +0 -16
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.js +0 -22
- package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts +0 -24
- package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.js +0 -96
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts +0 -22
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.js +0 -30
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts +0 -59
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.js +0 -89
- package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts +0 -53
- package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.js +0 -241
- package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts +0 -44
- package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.js +0 -194
- package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts +0 -28
- package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.js +0 -50
- package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts +0 -26
- package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.js +0 -147
- package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts +0 -44
- package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/security/security-policy.service.js +0 -174
- package/dist/src/presentation/cli/commands/security.command.d.ts +0 -16
- package/dist/src/presentation/cli/commands/security.command.d.ts.map +0 -1
- package/dist/src/presentation/cli/commands/security.command.js +0 -133
- package/dist/src/presentation/web/app/actions/security.d.ts +0 -28
- package/dist/src/presentation/web/app/actions/security.d.ts.map +0 -1
- package/dist/src/presentation/web/app/actions/security.js +0 -59
- package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts +0 -6
- package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/repository-node/security-panel.js +0 -29
- package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts +0 -10
- package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.js +0 -53
- package/dist/src/presentation/web/components/common/security-badge.d.ts +0 -7
- package/dist/src/presentation/web/components/common/security-badge.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/security-badge.js +0 -30
- package/dist/src/presentation/web/components/common/security-badge.stories.d.ts +0 -12
- package/dist/src/presentation/web/components/common/security-badge.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/security-badge.stories.js +0 -20
- package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts +0 -6
- package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.js +0 -60
- package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts +0 -14
- package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.js +0 -116
- 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]__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]__ea653642._.js +0 -3
- package/web/.next/server/chunks/[root-of-the-server]__ea653642._.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_ad0071c9.js +0 -3
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js.map +0 -1
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js +0 -3
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js.map +0 -1
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js +0 -3
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.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]__51ec77a8._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.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]__66047a1b._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d1040bd1._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__efeeaed4._.js +0 -3
- package/web/.next/server/chunks/ssr/_08eaf4b1._.js +0 -3
- package/web/.next/server/chunks/ssr/_08eaf4b1._.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/_783debcb._.js +0 -9
- package/web/.next/server/chunks/ssr/_783debcb._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_d9c0a97a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_fc1578d7._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_ff04802c._.js +0 -3
- package/web/.next/server/chunks/ssr/_ff04802c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_ff87ffa6._.js +0 -3
- package/web/.next/server/chunks/ssr/_ff87ffa6._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js.map +0 -1
- package/web/.next/static/chunks/20ec94c610d07a10.css +0 -1
- package/web/.next/static/chunks/3aba9d2242420cb5.js +0 -1
- package/web/.next/static/chunks/6003ad985fb78e62.js +0 -1
- package/web/.next/static/chunks/7c8e1ab108e3ceea.js +0 -1
- package/web/.next/static/chunks/ae81796726a9bba3.js +0 -1
- package/web/.next/static/chunks/c10c0d6d458453bc.js +0 -1
- package/web/.next/static/chunks/dfc05704351fc940.js +0 -1
- package/web/.next/static/chunks/eb72ac7aa8986962.js +0 -1
- package/web/.next/static/chunks/eef5d47669e61a54.js +0 -3
- /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/{4jtpgWCvk_Q6-K-puXRhW → 8CNKMABoDvNDVQD3DEuB4}/_buildManifest.js +0 -0
- /package/web/.next/static/{4jtpgWCvk_Q6-K-puXRhW → 8CNKMABoDvNDVQD3DEuB4}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{4jtpgWCvk_Q6-K-puXRhW → 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
|
|
@@ -34,10 +34,6 @@ properties:
|
|
|
34
34
|
type: boolean
|
|
35
35
|
default: false
|
|
36
36
|
description: Enable the Inventory page showing all repositories and features
|
|
37
|
-
supplyChainSecurity:
|
|
38
|
-
type: boolean
|
|
39
|
-
default: true
|
|
40
|
-
description: Enable the supply chain security feature (policy engine, badges, settings, CLI, CI gate). When false, the feature is inert regardless of SecurityMode.
|
|
41
37
|
required:
|
|
42
38
|
- skills
|
|
43
39
|
- envDeploy
|
|
@@ -47,5 +43,4 @@ required:
|
|
|
47
43
|
- gitRebaseSync
|
|
48
44
|
- reactFileManager
|
|
49
45
|
- inventory
|
|
50
|
-
- supplyChainSecurity
|
|
51
46
|
description: Feature flag toggles for runtime feature control
|
|
@@ -36,9 +36,6 @@ properties:
|
|
|
36
36
|
fabLayout:
|
|
37
37
|
$ref: FabLayoutConfig.yaml
|
|
38
38
|
description: FAB layout configuration (optional, defaults applied at runtime)
|
|
39
|
-
security:
|
|
40
|
-
$ref: SecurityConfig.yaml
|
|
41
|
-
description: Supply-chain security configuration (optional, defaults applied at runtime)
|
|
42
39
|
required:
|
|
43
40
|
- models
|
|
44
41
|
- user
|
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,
|
|
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
|
*/
|
|
@@ -62,18 +62,6 @@ export interface AgentExecutionStreamEvent {
|
|
|
62
62
|
/** When the event was emitted */
|
|
63
63
|
timestamp: Date;
|
|
64
64
|
}
|
|
65
|
-
/**
|
|
66
|
-
* Security constraints derived from the effective security policy.
|
|
67
|
-
* Passed to executors so they can validate compatibility before launch.
|
|
68
|
-
*/
|
|
69
|
-
export interface SecurityConstraints {
|
|
70
|
-
/** Effective security mode for this execution */
|
|
71
|
-
mode: SecurityMode;
|
|
72
|
-
/** Per-action-category enforcement dispositions */
|
|
73
|
-
actionDispositions: Record<SecurityActionCategory, SecurityActionDisposition>;
|
|
74
|
-
/** Required sandbox level (e.g. 'strict' forbids --dangerously-skip-permissions) */
|
|
75
|
-
sandboxLevel: 'permissive' | 'strict';
|
|
76
|
-
}
|
|
77
65
|
/**
|
|
78
66
|
* Options for controlling agent execution behavior.
|
|
79
67
|
*/
|
|
@@ -100,8 +88,8 @@ export interface AgentExecutionOptions {
|
|
|
100
88
|
disableMcp?: boolean;
|
|
101
89
|
/** Restrict available built-in tools via --tools flag */
|
|
102
90
|
tools?: string[];
|
|
103
|
-
/**
|
|
104
|
-
|
|
91
|
+
/** Permission mode controlling how the agent handles tool approvals */
|
|
92
|
+
permissionMode?: PermissionMode;
|
|
105
93
|
}
|
|
106
94
|
/**
|
|
107
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,EACV,SAAS,EACT,YAAY,EACZ,
|
|
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"}
|
package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* - Application layer depends on this interface
|
|
10
10
|
* - Infrastructure layer provides concrete implementation
|
|
11
11
|
*/
|
|
12
|
-
import type { ApprovalGates, AgentType
|
|
12
|
+
import type { ApprovalGates, AgentType } from '../../../../domain/generated/output.js';
|
|
13
13
|
/**
|
|
14
14
|
* Service interface for feature agent background process management.
|
|
15
15
|
*/
|
|
@@ -40,8 +40,6 @@ export interface IFeatureAgentProcessService {
|
|
|
40
40
|
fast?: boolean;
|
|
41
41
|
model?: string;
|
|
42
42
|
resumeReason?: string;
|
|
43
|
-
securityMode?: SecurityMode;
|
|
44
|
-
securityActionDispositions?: Partial<Record<SecurityActionCategory, SecurityActionDisposition>>;
|
|
45
43
|
}): number;
|
|
46
44
|
/**
|
|
47
45
|
* Check if a process is still alive.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-agent-process.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/agents/feature-agent-process.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"feature-agent-process.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/agents/feature-agent-process.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAC;AAEvF;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C;;;;;;;;OAQG;IACH,KAAK,CACH,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,MAAM,EACf,YAAY,CAAC,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QACR,aAAa,CAAC,EAAE,aAAa,CAAC;QAC9B,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,mBAAmB,CAAC,EAAE,OAAO,CAAC;QAC9B,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,SAAS,CAAC,EAAE,SAAS,CAAC;QACtB,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,YAAY,CAAC,EAAE,MAAM,CAAC;KACvB,GACA,MAAM,CAAC;IAEV;;;;;OAKG;IACH,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IAE9B;;;;;OAKG;IACH,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACnD"}
|
|
@@ -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"}
|
|
@@ -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 {};
|
|
@@ -114,28 +114,6 @@ export interface ForkResult {
|
|
|
114
114
|
nameWithOwner: string;
|
|
115
115
|
alreadyExisted: boolean;
|
|
116
116
|
}
|
|
117
|
-
/**
|
|
118
|
-
* Category of a governance audit finding.
|
|
119
|
-
*/
|
|
120
|
-
export declare enum GovernanceFindingCategory {
|
|
121
|
-
BranchProtection = "BranchProtection",
|
|
122
|
-
Codeowners = "Codeowners",
|
|
123
|
-
WorkflowPermissions = "WorkflowPermissions"
|
|
124
|
-
}
|
|
125
|
-
/**
|
|
126
|
-
* A single finding from a GitHub governance audit.
|
|
127
|
-
* Findings are advisory-only — Shep reports gaps but does not mutate remote settings.
|
|
128
|
-
*/
|
|
129
|
-
export interface GovernanceFinding {
|
|
130
|
-
/** Category of the governance check */
|
|
131
|
-
category: GovernanceFindingCategory;
|
|
132
|
-
/** Severity of the finding */
|
|
133
|
-
severity: 'Low' | 'Medium' | 'High' | 'Critical' | 'Unknown';
|
|
134
|
-
/** Human-readable description of the finding */
|
|
135
|
-
message: string;
|
|
136
|
-
/** Actionable remediation guidance */
|
|
137
|
-
remediation: string;
|
|
138
|
-
}
|
|
139
117
|
/**
|
|
140
118
|
* Output port for GitHub repository operations.
|
|
141
119
|
*
|
|
@@ -220,21 +198,5 @@ export interface IGitHubRepositoryService {
|
|
|
220
198
|
* @throws {GitHubForkError} on failure
|
|
221
199
|
*/
|
|
222
200
|
forkRepository(nameWithOwner: string, options?: ForkOptions): Promise<ForkResult>;
|
|
223
|
-
/**
|
|
224
|
-
* Audit repository governance settings via the gh CLI.
|
|
225
|
-
*
|
|
226
|
-
* Checks branch protection rules, CODEOWNERS presence, and workflow
|
|
227
|
-
* permissions. Returns findings with severity and remediation suggestions.
|
|
228
|
-
* This is audit-only — no remote settings are mutated.
|
|
229
|
-
*
|
|
230
|
-
* Handles auth/permission errors gracefully by returning an Unknown-severity
|
|
231
|
-
* finding instead of throwing.
|
|
232
|
-
*
|
|
233
|
-
* @param owner - Repository owner (e.g. "octocat")
|
|
234
|
-
* @param repo - Repository name (e.g. "my-project")
|
|
235
|
-
* @param defaultBranch - Branch to check protection for (default: "main")
|
|
236
|
-
* @returns Array of governance findings (empty if all checks pass)
|
|
237
|
-
*/
|
|
238
|
-
auditRepositoryGovernance(owner: string, repo: string, defaultBranch?: string): Promise<GovernanceFinding[]>;
|
|
239
201
|
}
|
|
240
202
|
//# sourceMappingURL=github-repository-service.interface.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"github-repository-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/github-repository-service.interface.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAMH;;GAEG;AACH,qBAAa,eAAgB,SAAQ,KAAK;gBAC5B,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,gBAAiB,SAAQ,KAAK;gBAC7B,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,KAAK;gBAChC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,KAAK;gBAChC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,qBAAsB,SAAQ,KAAK;gBAClC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,eAAgB,SAAQ,KAAK;gBAC5B,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAMD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,0CAA0C;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,6DAA6D;IAC7D,aAAa,EAAE,MAAM,CAAC;IACtB,mDAAmD;IACnD,WAAW,EAAE,MAAM,CAAC;IACpB,wCAAwC;IACxC,SAAS,EAAE,OAAO,CAAC;IACnB,iDAAiD;IACjD,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C,sDAAsD;IACtD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,qCAAqC;IACrC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,+FAA+F;IAC/F,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,gDAAgD;IAChD,KAAK,EAAE,MAAM,CAAC;IACd,qDAAqD;IACrD,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,4EAA4E;IAC5E,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,wCAAwC;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,0CAA0C;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,sDAAsD;IACtD,aAAa,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;CACxC;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,aAAa,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,OAAO,CAAC;CACzB;
|
|
1
|
+
{"version":3,"file":"github-repository-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/github-repository-service.interface.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAMH;;GAEG;AACH,qBAAa,eAAgB,SAAQ,KAAK;gBAC5B,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,gBAAiB,SAAQ,KAAK;gBAC7B,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,KAAK;gBAChC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,KAAK;gBAChC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,qBAAsB,SAAQ,KAAK;gBAClC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAED;;GAEG;AACH,qBAAa,eAAgB,SAAQ,KAAK;gBAC5B,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,KAAK;CAM3C;AAMD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,0CAA0C;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,6DAA6D;IAC7D,aAAa,EAAE,MAAM,CAAC;IACtB,mDAAmD;IACnD,WAAW,EAAE,MAAM,CAAC;IACpB,wCAAwC;IACxC,SAAS,EAAE,OAAO,CAAC;IACnB,iDAAiD;IACjD,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C,sDAAsD;IACtD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,qCAAqC;IACrC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,+FAA+F;IAC/F,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,gDAAgD;IAChD,KAAK,EAAE,MAAM,CAAC;IACd,qDAAqD;IACrD,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,4EAA4E;IAC5E,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,wCAAwC;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,0CAA0C;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,sDAAsD;IACtD,aAAa,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;CACxC;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,aAAa,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,OAAO,CAAC;CACzB;AAMD;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACvC;;;;OAIG;IACH,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAE3B;;;;;;;OAOG;IACH,eAAe,CACb,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,YAAY,GACrB,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;;;;;OAQG;IACH,oBAAoB,CAAC,OAAO,CAAC,EAAE,2BAA2B,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC;IAEnF;;;;;OAKG;IACH,iBAAiB,IAAI,OAAO,CAAC,kBAAkB,EAAE,CAAC,CAAC;IAEnD;;;;;;;;;;;;OAYG;IACH,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,eAAe,CAAC;IAE7C;;;;;;;;;OASG;IACH,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAEvD;;;;OAIG;IACH,oBAAoB,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IAExC;;;;;OAKG;IACH,eAAe,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;IAElE;;;;;;OAMG;IACH,cAAc,CAAC,aAAa,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;CACnF"}
|
|
@@ -80,12 +80,3 @@ export class GitHubForkError extends Error {
|
|
|
80
80
|
this.cause = cause;
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
|
-
/**
|
|
84
|
-
* Category of a governance audit finding.
|
|
85
|
-
*/
|
|
86
|
-
export var GovernanceFindingCategory;
|
|
87
|
-
(function (GovernanceFindingCategory) {
|
|
88
|
-
GovernanceFindingCategory["BranchProtection"] = "BranchProtection";
|
|
89
|
-
GovernanceFindingCategory["Codeowners"] = "Codeowners";
|
|
90
|
-
GovernanceFindingCategory["WorkflowPermissions"] = "WorkflowPermissions";
|
|
91
|
-
})(GovernanceFindingCategory || (GovernanceFindingCategory = {}));
|
|
@@ -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 {};
|
package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts
CHANGED
|
@@ -32,16 +32,5 @@ export interface ISpecInitializerService {
|
|
|
32
32
|
* @returns The spec directory path and feature number used
|
|
33
33
|
*/
|
|
34
34
|
initialize(basePath: string, slug: string, featureNumber: number, description: string, mode?: 'fast'): Promise<SpecInitializerResult>;
|
|
35
|
-
/**
|
|
36
|
-
* Scaffold a baseline shep.security.yaml file at the repository root.
|
|
37
|
-
*
|
|
38
|
-
* Creates the security policy file with Advisory mode, default action
|
|
39
|
-
* dispositions, and dependency/release rules. Includes YAML comments
|
|
40
|
-
* explaining each section.
|
|
41
|
-
*
|
|
42
|
-
* @param repositoryPath - Absolute path to the repository root
|
|
43
|
-
* @returns The absolute path to the created security policy file
|
|
44
|
-
*/
|
|
45
|
-
scaffoldSecurityPolicy(repositoryPath: string): Promise<string>;
|
|
46
35
|
}
|
|
47
36
|
//# sourceMappingURL=spec-initializer.interface.d.ts.map
|
package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec-initializer.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/spec-initializer.interface.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,WAAW,qBAAqB;IACpC,kDAAkD;IAClD,OAAO,EAAE,MAAM,CAAC;IAChB,8CAA8C;IAC9C,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,uBAAuB;IACtC;;;;;;;;;;;;;;;;;;OAkBG;IACH,UAAU,CACR,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,IAAI,CAAC,EAAE,MAAM,GACZ,OAAO,CAAC,qBAAqB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"spec-initializer.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/spec-initializer.interface.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,MAAM,WAAW,qBAAqB;IACpC,kDAAkD;IAClD,OAAO,EAAE,MAAM,CAAC;IAChB,8CAA8C;IAC9C,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,uBAAuB;IACtC;;;;;;;;;;;;;;;;;;OAkBG;IACH,UAAU,CACR,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,IAAI,CAAC,EAAE,MAAM,GACZ,OAAO,CAAC,qBAAqB,CAAC,CAAC;CACnC"}
|
package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"approve-agent-run.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/agents/approve-agent-run.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAMH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6DAA6D,CAAC;AACvG,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,8DAA8D,CAAC;AAChH,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gEAAgE,CAAC;AAC7G,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iEAAiE,CAAC;AAE1G,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"approve-agent-run.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/agents/approve-agent-run.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAMH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6DAA6D,CAAC;AACvG,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,8DAA8D,CAAC;AAChH,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gEAAgE,CAAC;AAC7G,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iEAAiE,CAAC;AAE1G,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAO9E,qBACa,sBAAsB;IAG/B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IAEnC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAE/B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAElC,OAAO,CAAC,QAAQ,CAAC,qBAAqB;gBANrB,kBAAkB,EAAE,mBAAmB,EAEvC,cAAc,EAAE,2BAA2B,EAE3C,iBAAiB,EAAE,kBAAkB,EAErC,qBAAqB,EAAE,sBAAsB;IAG1D,OAAO,CACX,EAAE,EAAE,MAAM,EACV,OAAO,CAAC,EAAE,kBAAkB,GAC3B,OAAO,CAAC;QAAE,QAAQ,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CA0GlD"}
|
|
@@ -25,7 +25,6 @@ import { join } from 'node:path';
|
|
|
25
25
|
import { AgentRunStatus } from '../../../domain/generated/output.js';
|
|
26
26
|
import { writeSpecFileAtomic, safeYamlDump, } from '../../../infrastructure/services/agents/feature-agent/nodes/node-helpers.js';
|
|
27
27
|
import { computeWorktreePath } from '../../../infrastructure/services/ide-launchers/compute-worktree-path.js';
|
|
28
|
-
import { getSettings } from '../../../infrastructure/services/settings.service.js';
|
|
29
28
|
let ApproveAgentRunUseCase = class ApproveAgentRunUseCase {
|
|
30
29
|
agentRunRepository;
|
|
31
30
|
processService;
|
|
@@ -121,7 +120,6 @@ let ApproveAgentRunUseCase = class ApproveAgentRunUseCase {
|
|
|
121
120
|
agentType: run.agentType,
|
|
122
121
|
...(run.modelId ? { model: run.modelId } : {}),
|
|
123
122
|
...(feature?.fast ? { fast: true } : {}),
|
|
124
|
-
securityMode: getSettings().security?.mode,
|
|
125
123
|
});
|
|
126
124
|
return { approved: true, reason: 'Approved and resumed' };
|
|
127
125
|
}
|
|
@@ -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"}
|