@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.
Files changed (936) hide show
  1. package/apis/json-schema/AgentConfig.yaml +3 -0
  2. package/apis/json-schema/AgentType.yaml +1 -0
  3. package/apis/json-schema/FeatureFlags.yaml +0 -5
  4. package/apis/json-schema/PermissionMode.yaml +8 -0
  5. package/apis/json-schema/Settings.yaml +0 -3
  6. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts +3 -15
  7. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts.map +1 -1
  8. package/dist/packages/core/src/application/ports/output/agents/agent-run-repository.interface.d.ts +7 -0
  9. package/dist/packages/core/src/application/ports/output/agents/agent-run-repository.interface.d.ts.map +1 -1
  10. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +1 -3
  11. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
  12. package/dist/packages/core/src/application/ports/output/agents/phase-timing-repository.interface.d.ts +7 -0
  13. package/dist/packages/core/src/application/ports/output/agents/phase-timing-repository.interface.d.ts.map +1 -1
  14. package/dist/packages/core/src/application/ports/output/services/file-system.interface.d.ts +68 -0
  15. package/dist/packages/core/src/application/ports/output/services/file-system.interface.d.ts.map +1 -0
  16. package/dist/packages/core/src/application/ports/output/services/file-system.interface.js +12 -0
  17. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts +0 -38
  18. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts.map +1 -1
  19. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.js +0 -9
  20. package/dist/packages/core/src/application/ports/output/services/index.d.ts +3 -0
  21. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  22. package/dist/packages/core/src/application/ports/output/services/process-monitor.interface.d.ts +29 -0
  23. package/dist/packages/core/src/application/ports/output/services/process-monitor.interface.d.ts.map +1 -0
  24. package/dist/packages/core/src/application/ports/output/services/process-monitor.interface.js +12 -0
  25. package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts +35 -0
  26. package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts.map +1 -0
  27. package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.js +12 -0
  28. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +0 -11
  29. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
  30. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
  31. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +0 -2
  32. package/dist/packages/core/src/application/use-cases/agents/get-agent-session.use-case.d.ts +3 -1
  33. package/dist/packages/core/src/application/use-cases/agents/get-agent-session.use-case.d.ts.map +1 -1
  34. package/dist/packages/core/src/application/use-cases/agents/get-agent-session.use-case.js +6 -4
  35. package/dist/packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.d.ts +3 -1
  36. package/dist/packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.d.ts.map +1 -1
  37. package/dist/packages/core/src/application/use-cases/agents/list-agent-sessions.use-case.js +6 -4
  38. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.d.ts.map +1 -1
  39. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +1 -3
  40. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
  41. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +0 -2
  42. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts +3 -1
  43. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  44. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +9 -8
  45. package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.js +2 -2
  46. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
  47. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +0 -2
  48. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
  49. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +0 -2
  50. package/dist/packages/core/src/application/use-cases/notifications/poll-agent-events.use-case.d.ts +61 -0
  51. package/dist/packages/core/src/application/use-cases/notifications/poll-agent-events.use-case.d.ts.map +1 -0
  52. package/dist/packages/core/src/application/use-cases/notifications/poll-agent-events.use-case.js +381 -0
  53. package/dist/packages/core/src/application/use-cases/settings/check-onboarding-status.use-case.d.ts +5 -2
  54. package/dist/packages/core/src/application/use-cases/settings/check-onboarding-status.use-case.d.ts.map +1 -1
  55. package/dist/packages/core/src/application/use-cases/settings/check-onboarding-status.use-case.js +28 -6
  56. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  57. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -6
  58. package/dist/packages/core/src/domain/generated/output.d.ts +42 -297
  59. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  60. package/dist/packages/core/src/domain/generated/output.js +7 -43
  61. package/dist/packages/core/src/infrastructure/di/container.d.ts +3 -0
  62. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  63. package/dist/packages/core/src/infrastructure/di/container.js +27 -558
  64. package/dist/packages/core/src/infrastructure/di/modules/agent-infrastructure.module.d.ts +7 -0
  65. package/dist/packages/core/src/infrastructure/di/modules/agent-infrastructure.module.d.ts.map +1 -0
  66. package/dist/packages/core/src/infrastructure/di/modules/agent-infrastructure.module.js +83 -0
  67. package/dist/packages/core/src/infrastructure/di/modules/database.module.d.ts +12 -0
  68. package/dist/packages/core/src/infrastructure/di/modules/database.module.d.ts.map +1 -0
  69. package/dist/packages/core/src/infrastructure/di/modules/database.module.js +16 -0
  70. package/dist/packages/core/src/infrastructure/di/modules/interactive.module.d.ts +10 -0
  71. package/dist/packages/core/src/infrastructure/di/modules/interactive.module.d.ts.map +1 -0
  72. package/dist/packages/core/src/infrastructure/di/modules/interactive.module.js +43 -0
  73. package/dist/packages/core/src/infrastructure/di/modules/notifications.module.d.ts +6 -0
  74. package/dist/packages/core/src/infrastructure/di/modules/notifications.module.d.ts.map +1 -0
  75. package/dist/packages/core/src/infrastructure/di/modules/notifications.module.js +20 -0
  76. package/dist/packages/core/src/infrastructure/di/modules/repositories.module.d.ts +6 -0
  77. package/dist/packages/core/src/infrastructure/di/modules/repositories.module.d.ts.map +1 -0
  78. package/dist/packages/core/src/infrastructure/di/modules/repositories.module.js +26 -0
  79. package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts +8 -0
  80. package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts.map +1 -0
  81. package/dist/packages/core/src/infrastructure/di/modules/services.module.js +93 -0
  82. package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts +6 -0
  83. package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts.map +1 -0
  84. package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.js +164 -0
  85. package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts +10 -0
  86. package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts.map +1 -0
  87. package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.js +200 -0
  88. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/agent-run.mapper.d.ts.map +1 -1
  89. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/agent-run.mapper.js +2 -2
  90. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -4
  91. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  92. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +6 -19
  93. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-agent-permission-mode.d.ts +14 -0
  94. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-agent-permission-mode.d.ts.map +1 -0
  95. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-agent-permission-mode.js +19 -0
  96. package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.d.ts +1 -0
  97. package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.d.ts.map +1 -1
  98. package/dist/packages/core/src/infrastructure/repositories/agent-run.repository.js +8 -0
  99. package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.d.ts +1 -0
  100. package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.d.ts.map +1 -1
  101. package/dist/packages/core/src/infrastructure/repositories/sqlite-phase-timing.repository.js +11 -3
  102. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  103. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +6 -17
  104. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts.map +1 -1
  105. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.js +10 -0
  106. package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.d.ts.map +1 -1
  107. package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.js +4 -4
  108. package/dist/packages/core/src/infrastructure/services/agents/common/executors/abstract-agent-executor.d.ts +37 -0
  109. package/dist/packages/core/src/infrastructure/services/agents/common/executors/abstract-agent-executor.d.ts.map +1 -0
  110. package/dist/packages/core/src/infrastructure/services/agents/common/executors/abstract-agent-executor.js +59 -0
  111. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +3 -9
  112. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
  113. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +19 -47
  114. package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.d.ts +3 -7
  115. package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.d.ts.map +1 -1
  116. package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.js +17 -30
  117. package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts +3 -7
  118. package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts.map +1 -1
  119. package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.js +23 -34
  120. package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts +3 -7
  121. package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts.map +1 -1
  122. package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.js +21 -16
  123. package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.d.ts +3 -7
  124. package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.d.ts.map +1 -1
  125. package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.js +21 -33
  126. package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.d.ts +52 -0
  127. package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.d.ts.map +1 -0
  128. package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.js +350 -0
  129. package/dist/packages/core/src/infrastructure/services/agents/common/types.d.ts +5 -0
  130. package/dist/packages/core/src/infrastructure/services/agents/common/types.d.ts.map +1 -1
  131. package/dist/packages/core/src/infrastructure/services/agents/common/types.js +5 -1
  132. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +0 -10
  133. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
  134. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +1 -35
  135. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
  136. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +1 -3
  137. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  138. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +2 -8
  139. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +1 -3
  140. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  141. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +1 -32
  142. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  143. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +0 -25
  144. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +1 -4
  145. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
  146. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +0 -10
  147. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts +1 -10
  148. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts.map +1 -1
  149. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.js +17 -108
  150. package/dist/packages/core/src/infrastructure/services/filesystem/file-system.service.d.ts +26 -0
  151. package/dist/packages/core/src/infrastructure/services/filesystem/file-system.service.d.ts.map +1 -0
  152. package/dist/packages/core/src/infrastructure/services/filesystem/file-system.service.js +47 -0
  153. package/dist/packages/core/src/infrastructure/services/filesystem/path-sanitizers.d.ts +19 -0
  154. package/dist/packages/core/src/infrastructure/services/filesystem/path-sanitizers.d.ts.map +1 -0
  155. package/dist/packages/core/src/infrastructure/services/filesystem/path-sanitizers.js +38 -0
  156. package/dist/packages/core/src/infrastructure/services/git/branch-discovery.service.d.ts +23 -0
  157. package/dist/packages/core/src/infrastructure/services/git/branch-discovery.service.d.ts.map +1 -0
  158. package/dist/packages/core/src/infrastructure/services/git/branch-discovery.service.js +185 -0
  159. package/dist/packages/core/src/infrastructure/services/git/ci-status.service.d.ts +24 -0
  160. package/dist/packages/core/src/infrastructure/services/git/ci-status.service.d.ts.map +1 -0
  161. package/dist/packages/core/src/infrastructure/services/git/ci-status.service.js +202 -0
  162. package/dist/packages/core/src/infrastructure/services/git/diff-analyzer.service.d.ts +19 -0
  163. package/dist/packages/core/src/infrastructure/services/git/diff-analyzer.service.d.ts.map +1 -0
  164. package/dist/packages/core/src/infrastructure/services/git/diff-analyzer.service.js +173 -0
  165. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +44 -47
  166. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
  167. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +121 -853
  168. package/dist/packages/core/src/infrastructure/services/git/merge-strategy.service.d.ts +30 -0
  169. package/dist/packages/core/src/infrastructure/services/git/merge-strategy.service.d.ts.map +1 -0
  170. package/dist/packages/core/src/infrastructure/services/git/merge-strategy.service.js +341 -0
  171. package/dist/packages/core/src/infrastructure/services/git/pr-creation.service.d.ts +34 -0
  172. package/dist/packages/core/src/infrastructure/services/git/pr-creation.service.d.ts.map +1 -0
  173. package/dist/packages/core/src/infrastructure/services/git/pr-creation.service.js +180 -0
  174. package/dist/packages/core/src/infrastructure/services/interactive/chat-state-builder.d.ts +21 -0
  175. package/dist/packages/core/src/infrastructure/services/interactive/chat-state-builder.d.ts.map +1 -0
  176. package/dist/packages/core/src/infrastructure/services/interactive/chat-state-builder.js +112 -0
  177. package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.d.ts +19 -70
  178. package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.d.ts.map +1 -1
  179. package/dist/packages/core/src/infrastructure/services/interactive/interactive-session.service.js +44 -991
  180. package/dist/packages/core/src/infrastructure/services/interactive/session-boot-sequence.d.ts +47 -0
  181. package/dist/packages/core/src/infrastructure/services/interactive/session-boot-sequence.d.ts.map +1 -0
  182. package/dist/packages/core/src/infrastructure/services/interactive/session-boot-sequence.js +381 -0
  183. package/dist/packages/core/src/infrastructure/services/interactive/session-state-manager.d.ts +28 -0
  184. package/dist/packages/core/src/infrastructure/services/interactive/session-state-manager.d.ts.map +1 -0
  185. package/dist/packages/core/src/infrastructure/services/interactive/session-state-manager.js +105 -0
  186. package/dist/packages/core/src/infrastructure/services/interactive/session-state.d.ts +46 -0
  187. package/dist/packages/core/src/infrastructure/services/interactive/session-state.d.ts.map +1 -0
  188. package/dist/packages/core/src/infrastructure/services/interactive/session-state.js +10 -0
  189. package/dist/packages/core/src/infrastructure/services/interactive/subscriber-notifier.d.ts +36 -0
  190. package/dist/packages/core/src/infrastructure/services/interactive/subscriber-notifier.d.ts.map +1 -0
  191. package/dist/packages/core/src/infrastructure/services/interactive/subscriber-notifier.js +60 -0
  192. package/dist/packages/core/src/infrastructure/services/interactive/turn-executor.d.ts +57 -0
  193. package/dist/packages/core/src/infrastructure/services/interactive/turn-executor.d.ts.map +1 -0
  194. package/dist/packages/core/src/infrastructure/services/interactive/turn-executor.js +503 -0
  195. package/dist/packages/core/src/infrastructure/services/notifications/notification-watcher.service.js +3 -3
  196. package/dist/packages/core/src/infrastructure/services/pr-sync/pr-sync-watcher.service.js +1 -1
  197. package/dist/packages/core/src/infrastructure/services/process/process-monitor.service.d.ts +25 -0
  198. package/dist/packages/core/src/infrastructure/services/process/process-monitor.service.d.ts.map +1 -0
  199. package/dist/packages/core/src/infrastructure/services/process/process-monitor.service.js +45 -0
  200. package/dist/packages/core/src/infrastructure/services/settings-reader.adapter.d.ts +15 -0
  201. package/dist/packages/core/src/infrastructure/services/settings-reader.adapter.d.ts.map +1 -0
  202. package/dist/packages/core/src/infrastructure/services/settings-reader.adapter.js +28 -0
  203. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +0 -1
  204. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
  205. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +0 -61
  206. package/dist/src/presentation/cli/commands/agent/show.command.js +3 -2
  207. package/dist/src/presentation/cli/commands/feat/new.command.js +1 -1
  208. package/dist/src/presentation/cli/commands/feat/show.command.js +1 -1
  209. package/dist/src/presentation/cli/index.js +0 -2
  210. package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
  211. package/dist/src/presentation/tui/prompts/agent-select.prompt.js +5 -0
  212. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  213. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +1 -5
  214. package/dist/src/presentation/web/app/actions/agent-setup-flag.d.ts.map +1 -1
  215. package/dist/src/presentation/web/app/actions/agent-setup-flag.js +3 -2
  216. package/dist/src/presentation/web/app/actions/check-agent-auth-for-type.d.ts +11 -0
  217. package/dist/src/presentation/web/app/actions/check-agent-auth-for-type.d.ts.map +1 -0
  218. package/dist/src/presentation/web/app/actions/check-agent-auth-for-type.js +147 -0
  219. package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts.map +1 -1
  220. package/dist/src/presentation/web/app/actions/check-agent-auth.js +18 -2
  221. package/dist/src/presentation/web/app/actions/get-all-agent-models.d.ts.map +1 -1
  222. package/dist/src/presentation/web/app/actions/get-all-agent-models.js +2 -0
  223. package/dist/src/presentation/web/app/actions/get-feature-phase-timings.d.ts.map +1 -1
  224. package/dist/src/presentation/web/app/actions/get-feature-phase-timings.js +4 -3
  225. package/dist/src/presentation/web/app/actions/get-supported-models.js +2 -3
  226. package/dist/src/presentation/web/app/actions/get-workflow-defaults.d.ts.map +1 -1
  227. package/dist/src/presentation/web/app/actions/get-workflow-defaults.js +3 -2
  228. package/dist/src/presentation/web/app/actions/open-ide.js +2 -3
  229. package/dist/src/presentation/web/app/actions/open-shell.d.ts.map +1 -1
  230. package/dist/src/presentation/web/app/actions/open-shell.js +15 -0
  231. package/dist/src/presentation/web/app/actions/update-model.d.ts.map +1 -1
  232. package/dist/src/presentation/web/app/actions/update-model.js +3 -2
  233. package/dist/src/presentation/web/app/api/agent-events/health/route.d.ts.map +1 -1
  234. package/dist/src/presentation/web/app/api/agent-events/health/route.js +9 -12
  235. package/dist/src/presentation/web/app/api/agent-events/route.d.ts +7 -14
  236. package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
  237. package/dist/src/presentation/web/app/api/agent-events/route.js +20 -301
  238. package/dist/src/presentation/web/app/api/attachments/preview/route.d.ts.map +1 -1
  239. package/dist/src/presentation/web/app/api/attachments/preview/route.js +5 -1
  240. package/dist/src/presentation/web/app/api/attachments/upload/route.d.ts.map +1 -1
  241. package/dist/src/presentation/web/app/api/attachments/upload/route.js +2 -2
  242. package/dist/src/presentation/web/app/api/attachments/upload-from-path/route.d.ts.map +1 -1
  243. package/dist/src/presentation/web/app/api/attachments/upload-from-path/route.js +2 -2
  244. package/dist/src/presentation/web/app/api/cli-upgrade/route.d.ts.map +1 -1
  245. package/dist/src/presentation/web/app/api/cli-upgrade/route.js +3 -1
  246. package/dist/src/presentation/web/app/api/deployment-logs/route.d.ts.map +1 -1
  247. package/dist/src/presentation/web/app/api/deployment-logs/route.js +2 -6
  248. package/dist/src/presentation/web/app/api/dialog/pick-files/route.d.ts.map +1 -1
  249. package/dist/src/presentation/web/app/api/dialog/pick-files/route.js +3 -2
  250. package/dist/src/presentation/web/app/api/directory/list/route.d.ts.map +1 -1
  251. package/dist/src/presentation/web/app/api/directory/list/route.js +8 -5
  252. package/dist/src/presentation/web/app/api/feature-logs/route.d.ts.map +1 -1
  253. package/dist/src/presentation/web/app/api/feature-logs/route.js +2 -6
  254. package/dist/src/presentation/web/app/api/graph-data/route.d.ts +1 -4
  255. package/dist/src/presentation/web/app/api/graph-data/route.d.ts.map +1 -1
  256. package/dist/src/presentation/web/app/api/graph-data/route.js +8 -2
  257. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/mark-read/route.d.ts.map +1 -1
  258. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/mark-read/route.js +2 -3
  259. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/messages/route.d.ts.map +1 -1
  260. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/messages/route.js +5 -10
  261. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/respond/route.d.ts.map +1 -1
  262. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/respond/route.js +5 -5
  263. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stop/route.d.ts.map +1 -1
  264. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stop/route.js +2 -3
  265. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stream/route.d.ts.map +1 -1
  266. package/dist/src/presentation/web/app/api/interactive/chat/[featureId]/stream/route.js +2 -6
  267. package/dist/src/presentation/web/app/api/interactive/chat/turn-statuses/route.d.ts.map +1 -1
  268. package/dist/src/presentation/web/app/api/interactive/chat/turn-statuses/route.js +2 -3
  269. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/messages/route.d.ts.map +1 -1
  270. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/messages/route.js +5 -10
  271. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/route.d.ts.map +1 -1
  272. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/route.js +3 -6
  273. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/stream/route.d.ts.map +1 -1
  274. package/dist/src/presentation/web/app/api/interactive/sessions/[id]/stream/route.js +2 -6
  275. package/dist/src/presentation/web/app/api/interactive/sessions/route.d.ts.map +1 -1
  276. package/dist/src/presentation/web/app/api/interactive/sessions/route.js +2 -3
  277. package/dist/src/presentation/web/app/api/npm-version/route.d.ts.map +1 -1
  278. package/dist/src/presentation/web/app/api/npm-version/route.js +2 -2
  279. package/dist/src/presentation/web/app/api/sessions/route.d.ts +1 -15
  280. package/dist/src/presentation/web/app/api/sessions/route.d.ts.map +1 -1
  281. package/dist/src/presentation/web/app/api/sessions/route.js +2 -3
  282. package/dist/src/presentation/web/app/api/sessions-batch/route.d.ts +1 -8
  283. package/dist/src/presentation/web/app/api/sessions-batch/route.d.ts.map +1 -1
  284. package/dist/src/presentation/web/app/api/sessions-batch/route.js +2 -3
  285. package/dist/src/presentation/web/app/api/tools/[id]/install/route.d.ts.map +1 -1
  286. package/dist/src/presentation/web/app/api/tools/[id]/install/route.js +2 -2
  287. package/dist/src/presentation/web/app/api/tools/[id]/install/stream/route.d.ts.map +1 -1
  288. package/dist/src/presentation/web/app/api/tools/[id]/install/stream/route.js +3 -1
  289. package/dist/src/presentation/web/app/api/tools/[id]/launch/route.d.ts.map +1 -1
  290. package/dist/src/presentation/web/app/api/tools/[id]/launch/route.js +2 -2
  291. package/dist/src/presentation/web/app/api/tools/route.d.ts.map +1 -1
  292. package/dist/src/presentation/web/app/api/tools/route.js +2 -2
  293. package/dist/src/presentation/web/app/build-graph-nodes.d.ts +1 -3
  294. package/dist/src/presentation/web/app/build-graph-nodes.d.ts.map +1 -1
  295. package/dist/src/presentation/web/app/build-graph-nodes.js +0 -2
  296. package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
  297. package/dist/src/presentation/web/app/layout.js +2 -1
  298. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
  299. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +12 -0
  300. package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.d.ts.map +1 -1
  301. package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.js +2 -2
  302. package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.d.ts.map +1 -1
  303. package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.js +1 -1
  304. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
  305. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +1 -1
  306. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts +1 -1
  307. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts.map +1 -1
  308. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.js +2 -0
  309. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.d.ts.map +1 -1
  310. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.js +1 -0
  311. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +1 -3
  312. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  313. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  314. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +1 -2
  315. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts +1 -3
  316. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
  317. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +2 -3
  318. package/dist/src/presentation/web/components/common/route-announcer.d.ts +2 -0
  319. package/dist/src/presentation/web/components/common/route-announcer.d.ts.map +1 -0
  320. package/dist/src/presentation/web/components/common/route-announcer.js +7 -0
  321. package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts.map +1 -1
  322. package/dist/src/presentation/web/components/features/chat/ChatSheet.js +1 -1
  323. package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.d.ts +7 -0
  324. package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.d.ts.map +1 -0
  325. package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.js +26 -0
  326. package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.stories.d.ts +11 -0
  327. package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.stories.d.ts.map +1 -0
  328. package/dist/src/presentation/web/components/features/settings/AgentAvailabilityBadge.stories.js +24 -0
  329. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.d.ts.map +1 -1
  330. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +7 -3
  331. package/dist/src/presentation/web/components/features/settings/ModelPicker/index.d.ts.map +1 -1
  332. package/dist/src/presentation/web/components/features/settings/ModelPicker/index.js +2 -2
  333. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
  334. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +1 -0
  335. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  336. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +0 -3
  337. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  338. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +0 -3
  339. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  340. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +7 -26
  341. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  342. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +0 -1
  343. package/dist/src/presentation/web/hooks/use-agent-availability.d.ts +13 -0
  344. package/dist/src/presentation/web/hooks/use-agent-availability.d.ts.map +1 -0
  345. package/dist/src/presentation/web/hooks/use-agent-availability.js +75 -0
  346. package/dist/src/presentation/web/hooks/use-agent-events.js +5 -1
  347. package/dist/src/presentation/web/hooks/use-route-announcer.d.ts +2 -0
  348. package/dist/src/presentation/web/hooks/use-route-announcer.d.ts.map +1 -0
  349. package/dist/src/presentation/web/hooks/use-route-announcer.js +16 -0
  350. package/dist/src/presentation/web/lib/api-error.d.ts +7 -0
  351. package/dist/src/presentation/web/lib/api-error.d.ts.map +1 -0
  352. package/dist/src/presentation/web/lib/api-error.js +11 -0
  353. package/dist/src/presentation/web/lib/is-same-shep-instance.d.ts.map +1 -1
  354. package/dist/src/presentation/web/lib/is-same-shep-instance.js +2 -5
  355. package/dist/translations/ar/cli.json +0 -21
  356. package/dist/translations/ar/tui.json +4 -0
  357. package/dist/translations/ar/web.json +2 -43
  358. package/dist/translations/de/cli.json +0 -21
  359. package/dist/translations/de/tui.json +1 -0
  360. package/dist/translations/de/web.json +2 -43
  361. package/dist/translations/en/cli.json +0 -21
  362. package/dist/translations/en/tui.json +4 -0
  363. package/dist/translations/en/web.json +2 -43
  364. package/dist/translations/es/cli.json +0 -21
  365. package/dist/translations/es/tui.json +4 -0
  366. package/dist/translations/es/web.json +2 -43
  367. package/dist/translations/fr/cli.json +0 -21
  368. package/dist/translations/fr/tui.json +4 -0
  369. package/dist/translations/fr/web.json +2 -43
  370. package/dist/translations/he/cli.json +0 -21
  371. package/dist/translations/he/tui.json +4 -0
  372. package/dist/translations/he/web.json +2 -43
  373. package/dist/translations/pt/cli.json +1 -22
  374. package/dist/translations/pt/tui.json +4 -0
  375. package/dist/translations/pt/web.json +2 -43
  376. package/dist/translations/ru/cli.json +0 -21
  377. package/dist/translations/ru/tui.json +4 -0
  378. package/dist/translations/ru/web.json +2 -43
  379. package/dist/tsconfig.build.tsbuildinfo +1 -1
  380. package/package.json +7 -3
  381. package/web/.next/BUILD_ID +1 -1
  382. package/web/.next/build-manifest.json +2 -2
  383. package/web/.next/fallback-build-manifest.json +2 -2
  384. package/web/.next/prerender-manifest.json +3 -3
  385. package/web/.next/required-server-files.js +1 -1
  386. package/web/.next/required-server-files.json +1 -1
  387. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +73 -58
  388. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +5 -5
  389. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  390. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  391. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +69 -54
  392. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +5 -5
  393. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  394. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  395. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +75 -60
  396. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +5 -5
  397. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  398. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  399. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +91 -76
  400. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +5 -5
  401. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  402. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  403. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +91 -76
  404. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +5 -5
  405. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  406. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  407. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +71 -56
  408. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +5 -5
  409. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  410. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  411. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +71 -56
  412. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +5 -5
  413. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  414. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  415. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +69 -54
  416. package/web/.next/server/app/(dashboard)/chat/page.js +5 -5
  417. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  418. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  419. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +75 -60
  420. package/web/.next/server/app/(dashboard)/create/page.js +5 -5
  421. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  422. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  423. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +91 -76
  424. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +5 -5
  425. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  426. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  427. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +91 -76
  428. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +5 -5
  429. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  430. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  431. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +69 -54
  432. package/web/.next/server/app/(dashboard)/page.js +5 -5
  433. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  434. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  435. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +71 -56
  436. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +5 -5
  437. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  438. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  439. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +71 -56
  440. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +5 -5
  441. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  442. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  443. package/web/.next/server/app/_global-error/page.js +1 -1
  444. package/web/.next/server/app/_global-error/page.js.nft.json +1 -1
  445. package/web/.next/server/app/_global-error.html +2 -2
  446. package/web/.next/server/app/_global-error.rsc +1 -1
  447. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  448. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  449. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  450. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  451. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  452. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +27 -12
  453. package/web/.next/server/app/_not-found/page.js +3 -3
  454. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  455. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  456. package/web/.next/server/app/api/agent-events/route.js +2 -2
  457. package/web/.next/server/app/api/agent-events/route.js.nft.json +1 -1
  458. package/web/.next/server/app/api/attachments/preview/route.js +1 -1
  459. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  460. package/web/.next/server/app/api/attachments/upload/route.js +1 -1
  461. package/web/.next/server/app/api/attachments/upload/route.js.nft.json +1 -1
  462. package/web/.next/server/app/api/attachments/upload-from-path/route.js +1 -1
  463. package/web/.next/server/app/api/attachments/upload-from-path/route.js.nft.json +1 -1
  464. package/web/.next/server/app/api/deployment-logs/route.js +2 -1
  465. package/web/.next/server/app/api/deployment-logs/route.js.nft.json +1 -1
  466. package/web/.next/server/app/api/directory/list/route.js +1 -1
  467. package/web/.next/server/app/api/directory/list/route.js.nft.json +1 -1
  468. package/web/.next/server/app/api/evidence/route.js +1 -1
  469. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  470. package/web/.next/server/app/api/feature-logs/route.js +2 -1
  471. package/web/.next/server/app/api/feature-logs/route.js.nft.json +1 -1
  472. package/web/.next/server/app/api/graph-data/route.js +1 -1
  473. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  474. package/web/.next/server/app/api/interactive/chat/[featureId]/mark-read/route.js +1 -1
  475. package/web/.next/server/app/api/interactive/chat/[featureId]/mark-read/route.js.nft.json +1 -1
  476. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js +1 -1
  477. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  478. package/web/.next/server/app/api/interactive/chat/[featureId]/respond/route.js +1 -1
  479. package/web/.next/server/app/api/interactive/chat/[featureId]/respond/route.js.nft.json +1 -1
  480. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route.js +1 -1
  481. package/web/.next/server/app/api/interactive/chat/[featureId]/stop/route.js.nft.json +1 -1
  482. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route.js +2 -1
  483. package/web/.next/server/app/api/interactive/chat/[featureId]/stream/route.js.nft.json +1 -1
  484. package/web/.next/server/app/api/interactive/chat/turn-statuses/route.js +1 -1
  485. package/web/.next/server/app/api/interactive/chat/turn-statuses/route.js.nft.json +1 -1
  486. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route.js +1 -1
  487. package/web/.next/server/app/api/interactive/sessions/[id]/messages/route.js.nft.json +1 -1
  488. package/web/.next/server/app/api/interactive/sessions/[id]/route.js +1 -1
  489. package/web/.next/server/app/api/interactive/sessions/[id]/route.js.nft.json +1 -1
  490. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route.js +2 -1
  491. package/web/.next/server/app/api/interactive/sessions/[id]/stream/route.js.nft.json +1 -1
  492. package/web/.next/server/app/api/interactive/sessions/route.js +1 -1
  493. package/web/.next/server/app/api/interactive/sessions/route.js.nft.json +1 -1
  494. package/web/.next/server/app/api/npm-version/route.js +1 -1
  495. package/web/.next/server/app/api/npm-version/route.js.nft.json +1 -1
  496. package/web/.next/server/app/api/sessions/route.js +1 -1
  497. package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
  498. package/web/.next/server/app/api/sessions-batch/route.js +1 -1
  499. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
  500. package/web/.next/server/app/api/tools/[id]/install/route.js +1 -1
  501. package/web/.next/server/app/api/tools/[id]/install/route.js.nft.json +1 -1
  502. package/web/.next/server/app/api/tools/[id]/launch/route.js +1 -1
  503. package/web/.next/server/app/api/tools/[id]/launch/route.js.nft.json +1 -1
  504. package/web/.next/server/app/api/tools/route.js +1 -1
  505. package/web/.next/server/app/api/tools/route.js.nft.json +1 -1
  506. package/web/.next/server/app/features/page/server-reference-manifest.json +27 -12
  507. package/web/.next/server/app/features/page.js +3 -3
  508. package/web/.next/server/app/features/page.js.nft.json +1 -1
  509. package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
  510. package/web/.next/server/app/settings/page/server-reference-manifest.json +33 -33
  511. package/web/.next/server/app/settings/page.js +4 -3
  512. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  513. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  514. package/web/.next/server/app/skills/page/server-reference-manifest.json +41 -26
  515. package/web/.next/server/app/skills/page.js +4 -4
  516. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  517. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  518. package/web/.next/server/app/tools/page/server-reference-manifest.json +37 -22
  519. package/web/.next/server/app/tools/page.js +4 -4
  520. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  521. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  522. package/web/.next/server/app/version/page/server-reference-manifest.json +27 -12
  523. package/web/.next/server/app/version/page.js +4 -4
  524. package/web/.next/server/app/version/page.js.nft.json +1 -1
  525. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  526. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  527. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  528. package/web/.next/server/chunks/[root-of-the-server]__0b88f5f0._.js +3 -0
  529. package/web/.next/server/chunks/[root-of-the-server]__0b88f5f0._.js.map +1 -0
  530. package/web/.next/server/chunks/[root-of-the-server]__0d0a9973._.js +3 -0
  531. package/web/.next/server/chunks/[root-of-the-server]__0d0a9973._.js.map +1 -0
  532. package/web/.next/server/chunks/[root-of-the-server]__1f18a881._.js +3 -0
  533. package/web/.next/server/chunks/[root-of-the-server]__1f18a881._.js.map +1 -0
  534. package/web/.next/server/chunks/[root-of-the-server]__332c8d91._.js +1 -1
  535. package/web/.next/server/chunks/[root-of-the-server]__332c8d91._.js.map +1 -1
  536. package/web/.next/server/chunks/[root-of-the-server]__3d08be55._.js +9 -0
  537. package/web/.next/server/chunks/[root-of-the-server]__3d08be55._.js.map +1 -0
  538. package/web/.next/server/chunks/[root-of-the-server]__419be0d1._.js +3 -0
  539. package/web/.next/server/chunks/[root-of-the-server]__419be0d1._.js.map +1 -0
  540. package/web/.next/server/chunks/[root-of-the-server]__4747e669._.js +3 -0
  541. package/web/.next/server/chunks/[root-of-the-server]__4747e669._.js.map +1 -0
  542. package/web/.next/server/chunks/[root-of-the-server]__475afd97._.js +3 -0
  543. package/web/.next/server/chunks/[root-of-the-server]__475afd97._.js.map +1 -0
  544. package/web/.next/server/chunks/[root-of-the-server]__483ccc90._.js +9 -0
  545. package/web/.next/server/chunks/[root-of-the-server]__483ccc90._.js.map +1 -0
  546. package/web/.next/server/chunks/[root-of-the-server]__5e90f1e9._.js +3 -0
  547. package/web/.next/server/chunks/[root-of-the-server]__5e90f1e9._.js.map +1 -0
  548. package/web/.next/server/chunks/[root-of-the-server]__62634db9._.js +12 -0
  549. package/web/.next/server/chunks/[root-of-the-server]__62634db9._.js.map +1 -0
  550. package/web/.next/server/chunks/[root-of-the-server]__645a6d08._.js +12 -0
  551. package/web/.next/server/chunks/[root-of-the-server]__645a6d08._.js.map +1 -0
  552. package/web/.next/server/chunks/[root-of-the-server]__74f3dc5c._.js +3 -0
  553. package/web/.next/server/chunks/[root-of-the-server]__74f3dc5c._.js.map +1 -0
  554. package/web/.next/server/chunks/[root-of-the-server]__810add7c._.js +3 -0
  555. package/web/.next/server/chunks/[root-of-the-server]__810add7c._.js.map +1 -0
  556. package/web/.next/server/chunks/[root-of-the-server]__8cfd9f70._.js +24 -0
  557. package/web/.next/server/chunks/[root-of-the-server]__8cfd9f70._.js.map +1 -0
  558. package/web/.next/server/chunks/[root-of-the-server]__8ec23770._.js +3 -0
  559. package/web/.next/server/chunks/[root-of-the-server]__8ec23770._.js.map +1 -0
  560. package/web/.next/server/chunks/{[root-of-the-server]__e3692208._.js → [root-of-the-server]__937ba94e._.js} +2 -2
  561. package/web/.next/server/chunks/[root-of-the-server]__93c391fe._.js +3 -0
  562. package/web/.next/server/chunks/[root-of-the-server]__93c391fe._.js.map +1 -0
  563. package/web/.next/server/chunks/[root-of-the-server]__9e8fc40c._.js +3 -0
  564. package/web/.next/server/chunks/[root-of-the-server]__9e8fc40c._.js.map +1 -0
  565. package/web/.next/server/chunks/[root-of-the-server]__a2426aa4._.js +3 -0
  566. package/web/.next/server/chunks/[root-of-the-server]__a2426aa4._.js.map +1 -0
  567. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  568. package/web/.next/server/chunks/[root-of-the-server]__a96ee39d._.js +3 -0
  569. package/web/.next/server/chunks/[root-of-the-server]__a96ee39d._.js.map +1 -0
  570. package/web/.next/server/chunks/[root-of-the-server]__d2c18946._.js +3 -3
  571. package/web/.next/server/chunks/[root-of-the-server]__d2c18946._.js.map +1 -1
  572. package/web/.next/server/chunks/[root-of-the-server]__d9d410a8._.js +1 -1
  573. package/web/.next/server/chunks/[root-of-the-server]__d9d410a8._.js.map +1 -1
  574. package/web/.next/server/chunks/[root-of-the-server]__e10befc1._.js +3 -0
  575. package/web/.next/server/chunks/[root-of-the-server]__e10befc1._.js.map +1 -0
  576. package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js +3 -3
  577. package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js.map +1 -1
  578. package/web/.next/server/chunks/[root-of-the-server]__e94a4a75._.js +3 -0
  579. package/web/.next/server/chunks/[root-of-the-server]__e94a4a75._.js.map +1 -0
  580. package/web/.next/server/chunks/[root-of-the-server]__ea7e9dc2._.js +3 -0
  581. package/web/.next/server/chunks/[root-of-the-server]__ea7e9dc2._.js.map +1 -0
  582. package/web/.next/server/chunks/[root-of-the-server]__f1aeae12._.js +3 -0
  583. package/web/.next/server/chunks/{[root-of-the-server]__b2f9a412._.js.map → [root-of-the-server]__f1aeae12._.js.map} +1 -1
  584. package/web/.next/server/chunks/[root-of-the-server]__f7b38c05._.js +3 -0
  585. package/web/.next/server/chunks/[root-of-the-server]__f7b38c05._.js.map +1 -0
  586. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_f57e8323.js +3 -0
  587. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_f57e8323.js.map +1 -0
  588. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_c2027d57.js +3 -0
  589. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_c2027d57.js.map +1 -0
  590. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_f70a6774.js +3 -0
  591. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_f70a6774.js.map +1 -0
  592. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  593. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  594. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  595. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  596. package/web/.next/server/chunks/ssr/{[root-of-the-server]__22d17c66._.js → [root-of-the-server]__08e7a080._.js} +2 -2
  597. package/web/.next/server/chunks/ssr/{[root-of-the-server]__22d17c66._.js.map → [root-of-the-server]__08e7a080._.js.map} +1 -1
  598. package/web/.next/server/chunks/ssr/[root-of-the-server]__0e34e896._.js +4 -0
  599. package/web/.next/server/chunks/ssr/[root-of-the-server]__0e34e896._.js.map +1 -0
  600. package/web/.next/server/chunks/ssr/{[root-of-the-server]__69dd3217._.js → [root-of-the-server]__16c1388b._.js} +2 -2
  601. package/web/.next/server/chunks/ssr/{[root-of-the-server]__69dd3217._.js.map → [root-of-the-server]__16c1388b._.js.map} +1 -1
  602. package/web/.next/server/chunks/ssr/[root-of-the-server]__1eb031d8._.js +3 -0
  603. package/web/.next/server/chunks/ssr/[root-of-the-server]__1eb031d8._.js.map +1 -0
  604. package/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +1 -1
  605. package/web/.next/server/chunks/ssr/[root-of-the-server]__35e7da6b._.js +4 -0
  606. package/web/.next/server/chunks/ssr/[root-of-the-server]__35e7da6b._.js.map +1 -0
  607. package/web/.next/server/chunks/ssr/[root-of-the-server]__36eb7673._.js +3 -0
  608. package/web/.next/server/chunks/ssr/[root-of-the-server]__36eb7673._.js.map +1 -0
  609. package/web/.next/server/chunks/ssr/[root-of-the-server]__4576a805._.js +4 -0
  610. package/web/.next/server/chunks/ssr/[root-of-the-server]__4576a805._.js.map +1 -0
  611. package/web/.next/server/chunks/ssr/[root-of-the-server]__7528eb6f._.js +1 -1
  612. package/web/.next/server/chunks/ssr/[root-of-the-server]__b51b0071._.js +4 -0
  613. package/web/.next/server/chunks/ssr/[root-of-the-server]__b51b0071._.js.map +1 -0
  614. package/web/.next/server/chunks/ssr/[root-of-the-server]__bd113e97._.js +4 -0
  615. package/web/.next/server/chunks/ssr/[root-of-the-server]__bd113e97._.js.map +1 -0
  616. package/web/.next/server/chunks/ssr/[root-of-the-server]__c6f02c81._.js +3 -0
  617. package/web/.next/server/chunks/ssr/[root-of-the-server]__c6f02c81._.js.map +1 -0
  618. package/web/.next/server/chunks/ssr/[root-of-the-server]__d5e22d1a._.js +3 -0
  619. package/web/.next/server/chunks/ssr/{[root-of-the-server]__efeeaed4._.js.map → [root-of-the-server]__d5e22d1a._.js.map} +1 -1
  620. package/web/.next/server/chunks/ssr/[root-of-the-server]__f13f6a81._.js +3 -0
  621. package/web/.next/server/chunks/ssr/[root-of-the-server]__f13f6a81._.js.map +1 -0
  622. package/web/.next/server/chunks/ssr/[root-of-the-server]__f5614810._.js +3 -0
  623. package/web/.next/server/chunks/ssr/{[root-of-the-server]__d1040bd1._.js.map → [root-of-the-server]__f5614810._.js.map} +1 -1
  624. package/web/.next/server/chunks/ssr/[root-of-the-server]__ff332bfb._.js +3 -0
  625. package/web/.next/server/chunks/ssr/{[root-of-the-server]__357d99f9._.js.map → [root-of-the-server]__ff332bfb._.js.map} +1 -1
  626. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  627. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  628. package/web/.next/server/chunks/ssr/{_e7f76333._.js → _080b0309._.js} +2 -2
  629. package/web/.next/server/chunks/ssr/{_e7f76333._.js.map → _080b0309._.js.map} +1 -1
  630. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  631. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  632. package/web/.next/server/chunks/ssr/_31b68712._.js +3 -0
  633. package/web/.next/server/chunks/ssr/_31b68712._.js.map +1 -0
  634. package/web/.next/server/chunks/ssr/_43ba79e7._.js +3 -0
  635. package/web/.next/server/chunks/ssr/_43ba79e7._.js.map +1 -0
  636. package/web/.next/server/chunks/ssr/_45496654._.js +1 -1
  637. package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
  638. package/web/.next/server/chunks/ssr/_4cbb7f95._.js +1 -1
  639. package/web/.next/server/chunks/ssr/_4cbb7f95._.js.map +1 -1
  640. package/web/.next/server/chunks/ssr/{_fc1578d7._.js → _4db4ac1e._.js} +2 -2
  641. package/web/.next/server/chunks/ssr/_4db4ac1e._.js.map +1 -0
  642. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  643. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  644. package/web/.next/server/chunks/ssr/{_1e08a336._.js → _5747febb._.js} +2 -2
  645. package/web/.next/server/chunks/ssr/_5747febb._.js.map +1 -0
  646. package/web/.next/server/chunks/ssr/_6abfa39e._.js +1 -1
  647. package/web/.next/server/chunks/ssr/_6abfa39e._.js.map +1 -1
  648. package/web/.next/server/chunks/ssr/_7cb0396e._.js +3 -0
  649. package/web/.next/server/chunks/ssr/_7cb0396e._.js.map +1 -0
  650. package/web/.next/server/chunks/ssr/{_d9c0a97a._.js → _819f193a._.js} +2 -2
  651. package/web/.next/server/chunks/ssr/_819f193a._.js.map +1 -0
  652. package/web/.next/server/chunks/ssr/_e680c57c._.js +9 -0
  653. package/web/.next/server/chunks/ssr/_e680c57c._.js.map +1 -0
  654. package/web/.next/server/chunks/ssr/{_295fffde._.js → _ed2f2799._.js} +2 -2
  655. package/web/.next/server/chunks/ssr/_ed2f2799._.js.map +1 -0
  656. package/web/.next/server/chunks/ssr/_f8c55130._.js +1 -1
  657. package/web/.next/server/chunks/ssr/_f8c55130._.js.map +1 -1
  658. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  659. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  660. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  661. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  662. package/web/.next/server/chunks/ssr/src_presentation_web_064c7e73._.js +3 -0
  663. package/web/.next/server/chunks/ssr/src_presentation_web_064c7e73._.js.map +1 -0
  664. package/web/.next/server/chunks/ssr/src_presentation_web_1726dc84._.js +5 -0
  665. package/web/.next/server/chunks/ssr/src_presentation_web_1726dc84._.js.map +1 -0
  666. package/web/.next/server/chunks/ssr/src_presentation_web_28c682ee._.js +3 -0
  667. package/web/.next/server/chunks/ssr/src_presentation_web_28c682ee._.js.map +1 -0
  668. package/web/.next/server/chunks/ssr/src_presentation_web_2d7b0e7b._.js +5 -0
  669. package/web/.next/server/chunks/ssr/src_presentation_web_2d7b0e7b._.js.map +1 -0
  670. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_bcef11e0.js +3 -0
  671. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_bcef11e0.js.map +1 -0
  672. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_02d5029f.js +3 -0
  673. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_02d5029f.js.map +1 -0
  674. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_67ca1f81.js +3 -0
  675. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_67ca1f81.js.map +1 -0
  676. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  677. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -1
  678. package/web/.next/server/chunks/ssr/src_presentation_web_b1110b54._.js +3 -0
  679. package/web/.next/server/chunks/ssr/src_presentation_web_b1110b54._.js.map +1 -0
  680. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  681. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  682. package/web/.next/server/chunks/ssr/{src_presentation_web_components_895e5bfa._.js → src_presentation_web_components_349d9f24._.js} +2 -2
  683. package/web/.next/server/chunks/ssr/src_presentation_web_components_349d9f24._.js.map +1 -0
  684. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  685. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  686. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
  687. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
  688. package/web/.next/server/chunks/ssr/src_presentation_web_d388fcb0._.js +3 -0
  689. package/web/.next/server/chunks/ssr/src_presentation_web_d388fcb0._.js.map +1 -0
  690. package/web/.next/server/chunks/ssr/src_presentation_web_da61a4f3._.js +3 -0
  691. package/web/.next/server/chunks/ssr/src_presentation_web_da61a4f3._.js.map +1 -0
  692. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
  693. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
  694. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
  695. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
  696. package/web/.next/server/pages/500.html +2 -2
  697. package/web/.next/server/server-reference-manifest.js +1 -1
  698. package/web/.next/server/server-reference-manifest.json +683 -550
  699. package/web/.next/static/chunks/{c741f40bcb2abe54.js → 05c0a8ed7621ea2a.js} +2 -2
  700. package/web/.next/static/chunks/{6e5aeb5da5bb2ab6.js → 10383f321355e09b.js} +1 -1
  701. package/web/.next/static/chunks/1f232a3618b82ac1.css +1 -0
  702. package/web/.next/static/chunks/2621b35c0c9da177.js +1 -0
  703. package/web/.next/static/chunks/2a3edcf98f609bb7.js +1 -0
  704. package/web/.next/static/chunks/{46e2693dbc9262fd.js → 316b0e4597f2083d.js} +2 -2
  705. package/web/.next/static/chunks/3370f8dc24c64ce4.js +1 -0
  706. package/web/.next/static/chunks/47ed89fae0f1542e.js +1 -0
  707. package/web/.next/static/chunks/{c43f00ac45c5381d.js → 6853929058e53d1a.js} +1 -1
  708. package/web/.next/static/chunks/{89a6182ae40ac10b.js → 6bfcb5d1b3eafd81.js} +1 -1
  709. package/web/.next/static/chunks/6c1664f584f34e6f.js +1 -0
  710. package/web/.next/static/chunks/{2dcae7bd1f3e2b51.js → 71ad5a4155ddd207.js} +1 -1
  711. package/web/.next/static/chunks/{825ddcb7c361b2fe.js → 81347e69998eef38.js} +1 -1
  712. package/web/.next/static/chunks/{b46545caae3b4930.js → 8a68402c32c6a206.js} +1 -1
  713. package/web/.next/static/chunks/8b0a9cb5109fe899.js +1 -0
  714. package/web/.next/static/chunks/{a6d516b7e128f889.js → 8bf91dcd1b3077d7.js} +1 -1
  715. package/web/.next/static/chunks/{69aa6a996dccb7dc.js → a1ad19e21b6ad1ad.js} +2 -2
  716. package/web/.next/static/chunks/e610f5d703696b34.js +1 -0
  717. package/web/.next/static/chunks/f952f152ac0a4abe.js +3 -0
  718. package/web/.next/static/chunks/{1eeabda286169861.js → fd319c0e5f3cc20a.js} +2 -2
  719. package/web/public/icons/agents/rovo-dev.svg +6 -0
  720. package/apis/json-schema/ActionDispositionEntry.yaml +0 -14
  721. package/apis/json-schema/DependencyFinding.yaml +0 -28
  722. package/apis/json-schema/DependencyRiskType.yaml +0 -11
  723. package/apis/json-schema/DependencyRules.yaml +0 -38
  724. package/apis/json-schema/EffectivePolicySnapshot.yaml +0 -24
  725. package/apis/json-schema/ReleaseIntegrityCheck.yaml +0 -22
  726. package/apis/json-schema/ReleaseIntegrityCheckType.yaml +0 -9
  727. package/apis/json-schema/ReleaseIntegrityResult.yaml +0 -16
  728. package/apis/json-schema/ReleaseRules.yaml +0 -21
  729. package/apis/json-schema/SecurityActionCategory.yaml +0 -10
  730. package/apis/json-schema/SecurityActionDisposition.yaml +0 -8
  731. package/apis/json-schema/SecurityConfig.yaml +0 -17
  732. package/apis/json-schema/SecurityEvent.yaml +0 -36
  733. package/apis/json-schema/SecurityMode.yaml +0 -8
  734. package/apis/json-schema/SecurityPolicy.yaml +0 -24
  735. package/apis/json-schema/SecuritySeverity.yaml +0 -9
  736. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts +0 -76
  737. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts.map +0 -1
  738. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.js +0 -11
  739. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts +0 -77
  740. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts.map +0 -1
  741. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.js +0 -13
  742. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts +0 -71
  743. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts.map +0 -1
  744. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.js +0 -215
  745. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts +0 -24
  746. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts.map +0 -1
  747. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.js +0 -56
  748. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts +0 -36
  749. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts.map +0 -1
  750. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.js +0 -76
  751. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts +0 -14
  752. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts.map +0 -1
  753. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.js +0 -46
  754. package/dist/packages/core/src/domain/errors/security-violation.error.d.ts +0 -15
  755. package/dist/packages/core/src/domain/errors/security-violation.error.d.ts.map +0 -1
  756. package/dist/packages/core/src/domain/errors/security-violation.error.js +0 -20
  757. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts +0 -44
  758. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts.map +0 -1
  759. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.js +0 -55
  760. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts +0 -18
  761. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts.map +0 -1
  762. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.js +0 -31
  763. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts +0 -29
  764. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts.map +0 -1
  765. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.js +0 -53
  766. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.d.ts +0 -16
  767. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.d.ts.map +0 -1
  768. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.js +0 -22
  769. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts +0 -24
  770. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts.map +0 -1
  771. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.js +0 -96
  772. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts +0 -22
  773. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts.map +0 -1
  774. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.js +0 -30
  775. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts +0 -59
  776. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts.map +0 -1
  777. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.js +0 -89
  778. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts +0 -53
  779. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts.map +0 -1
  780. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.js +0 -241
  781. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts +0 -44
  782. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts.map +0 -1
  783. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.js +0 -194
  784. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts +0 -28
  785. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts.map +0 -1
  786. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.js +0 -50
  787. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts +0 -26
  788. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts.map +0 -1
  789. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.js +0 -147
  790. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts +0 -44
  791. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts.map +0 -1
  792. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.js +0 -174
  793. package/dist/src/presentation/cli/commands/security.command.d.ts +0 -16
  794. package/dist/src/presentation/cli/commands/security.command.d.ts.map +0 -1
  795. package/dist/src/presentation/cli/commands/security.command.js +0 -133
  796. package/dist/src/presentation/web/app/actions/security.d.ts +0 -28
  797. package/dist/src/presentation/web/app/actions/security.d.ts.map +0 -1
  798. package/dist/src/presentation/web/app/actions/security.js +0 -59
  799. package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts +0 -6
  800. package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts.map +0 -1
  801. package/dist/src/presentation/web/components/common/repository-node/security-panel.js +0 -29
  802. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts +0 -10
  803. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts.map +0 -1
  804. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.js +0 -53
  805. package/dist/src/presentation/web/components/common/security-badge.d.ts +0 -7
  806. package/dist/src/presentation/web/components/common/security-badge.d.ts.map +0 -1
  807. package/dist/src/presentation/web/components/common/security-badge.js +0 -30
  808. package/dist/src/presentation/web/components/common/security-badge.stories.d.ts +0 -12
  809. package/dist/src/presentation/web/components/common/security-badge.stories.d.ts.map +0 -1
  810. package/dist/src/presentation/web/components/common/security-badge.stories.js +0 -20
  811. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts +0 -6
  812. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts.map +0 -1
  813. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.js +0 -60
  814. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts +0 -14
  815. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts.map +0 -1
  816. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.js +0 -116
  817. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +0 -12
  818. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +0 -1
  819. package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js +0 -3
  820. package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js.map +0 -1
  821. package/web/.next/server/chunks/[root-of-the-server]__10852c5c._.js +0 -3
  822. package/web/.next/server/chunks/[root-of-the-server]__10852c5c._.js.map +0 -1
  823. package/web/.next/server/chunks/[root-of-the-server]__2b1074db._.js +0 -12
  824. package/web/.next/server/chunks/[root-of-the-server]__2b1074db._.js.map +0 -1
  825. package/web/.next/server/chunks/[root-of-the-server]__2b71641f._.js +0 -3
  826. package/web/.next/server/chunks/[root-of-the-server]__2b71641f._.js.map +0 -1
  827. package/web/.next/server/chunks/[root-of-the-server]__2bb675ff._.js +0 -3
  828. package/web/.next/server/chunks/[root-of-the-server]__2bb675ff._.js.map +0 -1
  829. package/web/.next/server/chunks/[root-of-the-server]__2f61738a._.js +0 -3
  830. package/web/.next/server/chunks/[root-of-the-server]__2f61738a._.js.map +0 -1
  831. package/web/.next/server/chunks/[root-of-the-server]__31598852._.js +0 -3
  832. package/web/.next/server/chunks/[root-of-the-server]__31598852._.js.map +0 -1
  833. package/web/.next/server/chunks/[root-of-the-server]__31944fa2._.js +0 -3
  834. package/web/.next/server/chunks/[root-of-the-server]__31944fa2._.js.map +0 -1
  835. package/web/.next/server/chunks/[root-of-the-server]__32b04219._.js +0 -3
  836. package/web/.next/server/chunks/[root-of-the-server]__32b04219._.js.map +0 -1
  837. package/web/.next/server/chunks/[root-of-the-server]__3b72e8b0._.js +0 -3
  838. package/web/.next/server/chunks/[root-of-the-server]__3b72e8b0._.js.map +0 -1
  839. package/web/.next/server/chunks/[root-of-the-server]__4408a5ba._.js +0 -12
  840. package/web/.next/server/chunks/[root-of-the-server]__4408a5ba._.js.map +0 -1
  841. package/web/.next/server/chunks/[root-of-the-server]__6565a045._.js +0 -3
  842. package/web/.next/server/chunks/[root-of-the-server]__6565a045._.js.map +0 -1
  843. package/web/.next/server/chunks/[root-of-the-server]__8a281f8d._.js +0 -24
  844. package/web/.next/server/chunks/[root-of-the-server]__8a281f8d._.js.map +0 -1
  845. package/web/.next/server/chunks/[root-of-the-server]__8f8d6afe._.js +0 -3
  846. package/web/.next/server/chunks/[root-of-the-server]__8f8d6afe._.js.map +0 -1
  847. package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js +0 -3
  848. package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js.map +0 -1
  849. package/web/.next/server/chunks/[root-of-the-server]__9a136c79._.js +0 -9
  850. package/web/.next/server/chunks/[root-of-the-server]__9a136c79._.js.map +0 -1
  851. package/web/.next/server/chunks/[root-of-the-server]__ab4951b1._.js +0 -3
  852. package/web/.next/server/chunks/[root-of-the-server]__ab4951b1._.js.map +0 -1
  853. package/web/.next/server/chunks/[root-of-the-server]__acea6565._.js +0 -3
  854. package/web/.next/server/chunks/[root-of-the-server]__acea6565._.js.map +0 -1
  855. package/web/.next/server/chunks/[root-of-the-server]__b2f9a412._.js +0 -3
  856. package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +0 -3
  857. package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js.map +0 -1
  858. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js +0 -3
  859. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js.map +0 -1
  860. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +0 -3
  861. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +0 -1
  862. package/web/.next/server/chunks/[root-of-the-server]__ea653642._.js +0 -3
  863. package/web/.next/server/chunks/[root-of-the-server]__ea653642._.js.map +0 -1
  864. package/web/.next/server/chunks/[root-of-the-server]__fc6fd958._.js +0 -3
  865. package/web/.next/server/chunks/[root-of-the-server]__fc6fd958._.js.map +0 -1
  866. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js +0 -3
  867. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js.map +0 -1
  868. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js +0 -3
  869. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js.map +0 -1
  870. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js +0 -3
  871. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js.map +0 -1
  872. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +0 -4
  873. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +0 -1
  874. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +0 -3
  875. package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.js +0 -3
  876. package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.js.map +0 -1
  877. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js +0 -4
  878. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js.map +0 -1
  879. package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js +0 -3
  880. package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js.map +0 -1
  881. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js +0 -4
  882. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js.map +0 -1
  883. package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js +0 -4
  884. package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js.map +0 -1
  885. package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js +0 -3
  886. package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js.map +0 -1
  887. package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js +0 -3
  888. package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js.map +0 -1
  889. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +0 -4
  890. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +0 -1
  891. package/web/.next/server/chunks/ssr/[root-of-the-server]__d1040bd1._.js +0 -3
  892. package/web/.next/server/chunks/ssr/[root-of-the-server]__efeeaed4._.js +0 -3
  893. package/web/.next/server/chunks/ssr/_08eaf4b1._.js +0 -3
  894. package/web/.next/server/chunks/ssr/_08eaf4b1._.js.map +0 -1
  895. package/web/.next/server/chunks/ssr/_1e08a336._.js.map +0 -1
  896. package/web/.next/server/chunks/ssr/_295fffde._.js.map +0 -1
  897. package/web/.next/server/chunks/ssr/_783debcb._.js +0 -9
  898. package/web/.next/server/chunks/ssr/_783debcb._.js.map +0 -1
  899. package/web/.next/server/chunks/ssr/_d9c0a97a._.js.map +0 -1
  900. package/web/.next/server/chunks/ssr/_fc1578d7._.js.map +0 -1
  901. package/web/.next/server/chunks/ssr/_ff04802c._.js +0 -3
  902. package/web/.next/server/chunks/ssr/_ff04802c._.js.map +0 -1
  903. package/web/.next/server/chunks/ssr/_ff87ffa6._.js +0 -3
  904. package/web/.next/server/chunks/ssr/_ff87ffa6._.js.map +0 -1
  905. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js +0 -3
  906. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js.map +0 -1
  907. package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js +0 -5
  908. package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js.map +0 -1
  909. package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js +0 -5
  910. package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js.map +0 -1
  911. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js +0 -3
  912. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js.map +0 -1
  913. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js +0 -3
  914. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js.map +0 -1
  915. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js +0 -3
  916. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js.map +0 -1
  917. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js +0 -3
  918. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js.map +0 -1
  919. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +0 -1
  920. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js +0 -3
  921. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js.map +0 -1
  922. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js +0 -3
  923. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js.map +0 -1
  924. package/web/.next/static/chunks/20ec94c610d07a10.css +0 -1
  925. package/web/.next/static/chunks/3aba9d2242420cb5.js +0 -1
  926. package/web/.next/static/chunks/6003ad985fb78e62.js +0 -1
  927. package/web/.next/static/chunks/7c8e1ab108e3ceea.js +0 -1
  928. package/web/.next/static/chunks/ae81796726a9bba3.js +0 -1
  929. package/web/.next/static/chunks/c10c0d6d458453bc.js +0 -1
  930. package/web/.next/static/chunks/dfc05704351fc940.js +0 -1
  931. package/web/.next/static/chunks/eb72ac7aa8986962.js +0 -1
  932. package/web/.next/static/chunks/eef5d47669e61a54.js +0 -3
  933. /package/web/.next/server/chunks/{[root-of-the-server]__e3692208._.js.map → [root-of-the-server]__937ba94e._.js.map} +0 -0
  934. /package/web/.next/static/{4jtpgWCvk_Q6-K-puXRhW → 8CNKMABoDvNDVQD3DEuB4}/_buildManifest.js +0 -0
  935. /package/web/.next/static/{4jtpgWCvk_Q6-K-puXRhW → 8CNKMABoDvNDVQD3DEuB4}/_clientMiddlewareManifest.json +0 -0
  936. /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
@@ -9,5 +9,6 @@ enum:
9
9
  - aider
10
10
  - continue
11
11
  - cursor
12
+ - rovo-dev
12
13
  - dev
13
14
  description: AI coding agent tool selection
@@ -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
@@ -0,0 +1,8 @@
1
+ $schema: https://json-schema.org/draft/2020-12/schema
2
+ $id: PermissionMode.yaml
3
+ type: string
4
+ enum:
5
+ - default
6
+ - strict
7
+ - autonomous
8
+ description: Permission mode controlling how an agent handles tool approvals
@@ -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
@@ -20,7 +20,7 @@
20
20
  * }
21
21
  * ```
22
22
  */
23
- import type { AgentType, AgentFeature, SecurityMode, SecurityActionCategory, SecurityActionDisposition } from '../../../../domain/generated/output.js';
23
+ import type { AgentType, AgentFeature, PermissionMode } from '../../../../domain/generated/output.js';
24
24
  /**
25
25
  * Token usage and execution statistics returned by an agent.
26
26
  */
@@ -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
- /** Security policy constraints for this execution */
104
- securityConstraints?: SecurityConstraints;
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.
@@ -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":"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"}
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"}
@@ -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"}
@@ -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, SecurityMode, SecurityActionCategory, SecurityActionDisposition } from '../../../../domain/generated/output.js';
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,EACV,aAAa,EACb,SAAS,EACT,YAAY,EACZ,sBAAsB,EACtB,yBAAyB,EAC1B,MAAM,wCAAwC,CAAC;AAEhD;;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;QACtB,YAAY,CAAC,EAAE,YAAY,CAAC;QAC5B,0BAA0B,CAAC,EAAE,OAAO,CAClC,MAAM,CAAC,sBAAsB,EAAE,yBAAyB,CAAC,CAC1D,CAAC;KACH,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"}
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
@@ -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":"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"}
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":"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"}
@@ -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"}
@@ -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
@@ -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 {};
@@ -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
@@ -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 {};
@@ -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
@@ -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;IAElC;;;;;;;;;OASG;IACH,sBAAsB,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CACjE"}
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"}
@@ -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;AAQ9E,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;CA2GlD"}
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
- constructor(registry: AgentSessionRepositoryRegistry);
21
+ private readonly settingsReader;
22
+ constructor(registry: AgentSessionRepositoryRegistry, settingsReader: ISettingsReader);
21
23
  execute(input: GetAgentSessionInput): Promise<AgentSession>;
22
24
  private resolveAgentType;
23
25
  }
@@ -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;AAEnF,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;gBAAR,QAAQ,EAAE,8BAA8B;IAGrD,OAAO,CAAC,KAAK,EAAE,oBAAoB,GAAG,OAAO,CAAC,YAAY,CAAC;IAcjE,OAAO,CAAC,gBAAgB;CAGzB"}
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
- constructor(registry) {
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
- __metadata("design:paramtypes", [AgentSessionRepositoryRegistry])
47
+ __param(1, inject('ISettingsReader')),
48
+ __metadata("design:paramtypes", [AgentSessionRepositoryRegistry, Object])
47
49
  ], GetAgentSessionUseCase);
48
50
  export { GetAgentSessionUseCase };
@@ -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
- constructor(registry: AgentSessionRepositoryRegistry);
19
+ private readonly settingsReader;
20
+ constructor(registry: AgentSessionRepositoryRegistry, settingsReader: ISettingsReader);
19
21
  execute(input?: ListAgentSessionsInput): Promise<AgentSession[]>;
20
22
  private resolveAgentType;
21
23
  }
@@ -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;AAEnF,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;gBAAR,QAAQ,EAAE,8BAA8B;IAGrD,OAAO,CAAC,KAAK,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC;IAatE,OAAO,CAAC,gBAAgB;CAGzB"}
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"}