@shepai/cli 1.155.0-pr484.1619afe → 1.155.0-pr485.4c45fca

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 (531) hide show
  1. package/apis/json-schema/Language.yaml +13 -0
  2. package/apis/json-schema/UserProfile.yaml +3 -0
  3. package/dist/packages/core/src/domain/generated/output.d.ts +14 -0
  4. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  5. package/dist/packages/core/src/domain/generated/output.js +11 -0
  6. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -0
  7. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  8. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +4 -2
  9. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.d.ts +14 -0
  10. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.d.ts.map +1 -0
  11. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.js +19 -0
  12. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  13. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -2
  14. package/dist/src/presentation/cli/commands/_serve.command.d.ts.map +1 -1
  15. package/dist/src/presentation/cli/commands/_serve.command.js +5 -3
  16. package/dist/src/presentation/cli/commands/agent/approve.command.d.ts.map +1 -1
  17. package/dist/src/presentation/cli/commands/agent/approve.command.js +9 -4
  18. package/dist/src/presentation/cli/commands/agent/delete.command.d.ts.map +1 -1
  19. package/dist/src/presentation/cli/commands/agent/delete.command.js +9 -5
  20. package/dist/src/presentation/cli/commands/agent/index.d.ts.map +1 -1
  21. package/dist/src/presentation/cli/commands/agent/index.js +3 -1
  22. package/dist/src/presentation/cli/commands/agent/logs.command.d.ts.map +1 -1
  23. package/dist/src/presentation/cli/commands/agent/logs.command.js +7 -5
  24. package/dist/src/presentation/cli/commands/agent/ls.command.d.ts.map +1 -1
  25. package/dist/src/presentation/cli/commands/agent/ls.command.js +12 -10
  26. package/dist/src/presentation/cli/commands/agent/reject.command.d.ts.map +1 -1
  27. package/dist/src/presentation/cli/commands/agent/reject.command.js +10 -5
  28. package/dist/src/presentation/cli/commands/agent/resolve-run.d.ts.map +1 -1
  29. package/dist/src/presentation/cli/commands/agent/resolve-run.js +7 -2
  30. package/dist/src/presentation/cli/commands/agent/show.command.d.ts.map +1 -1
  31. package/dist/src/presentation/cli/commands/agent/show.command.js +8 -6
  32. package/dist/src/presentation/cli/commands/agent/stop.command.d.ts.map +1 -1
  33. package/dist/src/presentation/cli/commands/agent/stop.command.js +9 -4
  34. package/dist/src/presentation/cli/commands/daemon/start-daemon.d.ts.map +1 -1
  35. package/dist/src/presentation/cli/commands/daemon/start-daemon.js +10 -8
  36. package/dist/src/presentation/cli/commands/daemon/stop-daemon.d.ts.map +1 -1
  37. package/dist/src/presentation/cli/commands/daemon/stop-daemon.js +5 -3
  38. package/dist/src/presentation/cli/commands/feat/adopt.command.d.ts.map +1 -1
  39. package/dist/src/presentation/cli/commands/feat/adopt.command.js +14 -12
  40. package/dist/src/presentation/cli/commands/feat/approve.command.d.ts.map +1 -1
  41. package/dist/src/presentation/cli/commands/feat/approve.command.js +8 -6
  42. package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +1 -1
  43. package/dist/src/presentation/cli/commands/feat/archive.command.js +10 -8
  44. package/dist/src/presentation/cli/commands/feat/del.command.d.ts.map +1 -1
  45. package/dist/src/presentation/cli/commands/feat/del.command.js +17 -15
  46. package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
  47. package/dist/src/presentation/cli/commands/feat/index.js +2 -1
  48. package/dist/src/presentation/cli/commands/feat/logs.command.d.ts.map +1 -1
  49. package/dist/src/presentation/cli/commands/feat/logs.command.js +8 -6
  50. package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
  51. package/dist/src/presentation/cli/commands/feat/ls.command.js +14 -12
  52. package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
  53. package/dist/src/presentation/cli/commands/feat/new.command.js +43 -37
  54. package/dist/src/presentation/cli/commands/feat/reject.command.d.ts.map +1 -1
  55. package/dist/src/presentation/cli/commands/feat/reject.command.js +11 -9
  56. package/dist/src/presentation/cli/commands/feat/resolve-waiting-feature.d.ts.map +1 -1
  57. package/dist/src/presentation/cli/commands/feat/resolve-waiting-feature.js +12 -5
  58. package/dist/src/presentation/cli/commands/feat/resume.command.d.ts.map +1 -1
  59. package/dist/src/presentation/cli/commands/feat/resume.command.js +8 -6
  60. package/dist/src/presentation/cli/commands/feat/review.command.d.ts.map +1 -1
  61. package/dist/src/presentation/cli/commands/feat/review.command.js +17 -15
  62. package/dist/src/presentation/cli/commands/feat/show.command.d.ts.map +1 -1
  63. package/dist/src/presentation/cli/commands/feat/show.command.js +89 -45
  64. package/dist/src/presentation/cli/commands/feat/start.command.d.ts.map +1 -1
  65. package/dist/src/presentation/cli/commands/feat/start.command.js +12 -10
  66. package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +1 -1
  67. package/dist/src/presentation/cli/commands/feat/unarchive.command.js +8 -6
  68. package/dist/src/presentation/cli/commands/ide-open.command.d.ts.map +1 -1
  69. package/dist/src/presentation/cli/commands/ide-open.command.js +10 -5
  70. package/dist/src/presentation/cli/commands/install.command.d.ts.map +1 -1
  71. package/dist/src/presentation/cli/commands/install.command.js +29 -21
  72. package/dist/src/presentation/cli/commands/log-viewer.d.ts.map +1 -1
  73. package/dist/src/presentation/cli/commands/log-viewer.js +6 -3
  74. package/dist/src/presentation/cli/commands/repo/add.command.d.ts.map +1 -1
  75. package/dist/src/presentation/cli/commands/repo/add.command.js +12 -10
  76. package/dist/src/presentation/cli/commands/repo/index.d.ts.map +1 -1
  77. package/dist/src/presentation/cli/commands/repo/index.js +3 -1
  78. package/dist/src/presentation/cli/commands/repo/ls.command.d.ts.map +1 -1
  79. package/dist/src/presentation/cli/commands/repo/ls.command.js +11 -9
  80. package/dist/src/presentation/cli/commands/repo/resolve-repository.d.ts.map +1 -1
  81. package/dist/src/presentation/cli/commands/repo/resolve-repository.js +7 -2
  82. package/dist/src/presentation/cli/commands/repo/show.command.d.ts.map +1 -1
  83. package/dist/src/presentation/cli/commands/repo/show.command.js +21 -10
  84. package/dist/src/presentation/cli/commands/restart.command.d.ts.map +1 -1
  85. package/dist/src/presentation/cli/commands/restart.command.js +6 -4
  86. package/dist/src/presentation/cli/commands/run.command.d.ts.map +1 -1
  87. package/dist/src/presentation/cli/commands/run.command.js +21 -17
  88. package/dist/src/presentation/cli/commands/session/index.d.ts.map +1 -1
  89. package/dist/src/presentation/cli/commands/session/index.js +3 -1
  90. package/dist/src/presentation/cli/commands/session/ls.command.d.ts.map +1 -1
  91. package/dist/src/presentation/cli/commands/session/ls.command.js +11 -9
  92. package/dist/src/presentation/cli/commands/session/show.command.d.ts.map +1 -1
  93. package/dist/src/presentation/cli/commands/session/show.command.js +26 -18
  94. package/dist/src/presentation/cli/commands/settings/agent.command.d.ts.map +1 -1
  95. package/dist/src/presentation/cli/commands/settings/agent.command.js +12 -8
  96. package/dist/src/presentation/cli/commands/settings/ide.command.d.ts.map +1 -1
  97. package/dist/src/presentation/cli/commands/settings/ide.command.js +13 -7
  98. package/dist/src/presentation/cli/commands/settings/index.d.ts +1 -0
  99. package/dist/src/presentation/cli/commands/settings/index.d.ts.map +1 -1
  100. package/dist/src/presentation/cli/commands/settings/index.js +7 -3
  101. package/dist/src/presentation/cli/commands/settings/init.command.d.ts.map +1 -1
  102. package/dist/src/presentation/cli/commands/settings/init.command.js +8 -7
  103. package/dist/src/presentation/cli/commands/settings/language.command.d.ts +14 -0
  104. package/dist/src/presentation/cli/commands/settings/language.command.d.ts.map +1 -0
  105. package/dist/src/presentation/cli/commands/settings/language.command.js +79 -0
  106. package/dist/src/presentation/cli/commands/settings/model.command.d.ts.map +1 -1
  107. package/dist/src/presentation/cli/commands/settings/model.command.js +7 -6
  108. package/dist/src/presentation/cli/commands/settings/show.command.d.ts.map +1 -1
  109. package/dist/src/presentation/cli/commands/settings/show.command.js +4 -3
  110. package/dist/src/presentation/cli/commands/settings/workflow.command.d.ts.map +1 -1
  111. package/dist/src/presentation/cli/commands/settings/workflow.command.js +20 -18
  112. package/dist/src/presentation/cli/commands/start.command.d.ts.map +1 -1
  113. package/dist/src/presentation/cli/commands/start.command.js +5 -3
  114. package/dist/src/presentation/cli/commands/status.command.d.ts.map +1 -1
  115. package/dist/src/presentation/cli/commands/status.command.js +32 -24
  116. package/dist/src/presentation/cli/commands/stop.command.d.ts.map +1 -1
  117. package/dist/src/presentation/cli/commands/stop.command.js +4 -2
  118. package/dist/src/presentation/cli/commands/tools.command.d.ts.map +1 -1
  119. package/dist/src/presentation/cli/commands/tools.command.js +8 -4
  120. package/dist/src/presentation/cli/commands/ui.command.d.ts.map +1 -1
  121. package/dist/src/presentation/cli/commands/ui.command.js +12 -10
  122. package/dist/src/presentation/cli/commands/upgrade.command.d.ts.map +1 -1
  123. package/dist/src/presentation/cli/commands/upgrade.command.js +18 -13
  124. package/dist/src/presentation/cli/commands/version.command.d.ts.map +1 -1
  125. package/dist/src/presentation/cli/commands/version.command.js +5 -3
  126. package/dist/src/presentation/cli/i18n.d.ts +41 -0
  127. package/dist/src/presentation/cli/i18n.d.ts.map +1 -0
  128. package/dist/src/presentation/cli/i18n.js +100 -0
  129. package/dist/src/presentation/cli/index.js +13 -1
  130. package/dist/src/presentation/cli/ui/install-messages.d.ts.map +1 -1
  131. package/dist/src/presentation/cli/ui/install-messages.js +16 -6
  132. package/dist/src/presentation/tui/i18n.d.ts +24 -0
  133. package/dist/src/presentation/tui/i18n.d.ts.map +1 -0
  134. package/dist/src/presentation/tui/i18n.js +48 -0
  135. package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts +13 -31
  136. package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
  137. package/dist/src/presentation/tui/prompts/agent-select.prompt.js +17 -15
  138. package/dist/src/presentation/tui/prompts/auth-method.prompt.d.ts +7 -11
  139. package/dist/src/presentation/tui/prompts/auth-method.prompt.d.ts.map +1 -1
  140. package/dist/src/presentation/tui/prompts/auth-method.prompt.js +7 -5
  141. package/dist/src/presentation/tui/prompts/ide-select.prompt.d.ts.map +1 -1
  142. package/dist/src/presentation/tui/prompts/ide-select.prompt.js +2 -1
  143. package/dist/src/presentation/tui/prompts/prd-review-summary.prompt.d.ts.map +1 -1
  144. package/dist/src/presentation/tui/prompts/prd-review-summary.prompt.js +8 -6
  145. package/dist/src/presentation/tui/wizards/agent-config.wizard.d.ts.map +1 -1
  146. package/dist/src/presentation/tui/wizards/agent-config.wizard.js +2 -1
  147. package/dist/src/presentation/tui/wizards/github-import.wizard.d.ts.map +1 -1
  148. package/dist/src/presentation/tui/wizards/github-import.wizard.js +15 -11
  149. package/dist/src/presentation/tui/wizards/merge-review.wizard.d.ts.map +1 -1
  150. package/dist/src/presentation/tui/wizards/merge-review.wizard.js +10 -8
  151. package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.d.ts.map +1 -1
  152. package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.js +10 -7
  153. package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.d.ts +0 -41
  154. package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.d.ts.map +1 -1
  155. package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.js +15 -15
  156. package/dist/src/presentation/tui/wizards/plan-review.wizard.d.ts.map +1 -1
  157. package/dist/src/presentation/tui/wizards/plan-review.wizard.js +10 -8
  158. package/dist/src/presentation/tui/wizards/prd-review.wizard.d.ts.map +1 -1
  159. package/dist/src/presentation/tui/wizards/prd-review.wizard.js +3 -2
  160. package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
  161. package/dist/src/presentation/web/app/layout.js +5 -2
  162. package/dist/src/presentation/web/components/assistant-ui/thread.js +5 -5
  163. package/dist/src/presentation/web/components/common/attachment-chip/attachment-chip.js +1 -1
  164. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +1 -1
  165. package/dist/src/presentation/web/components/common/ci-status-badge/ci-status-badge.js +3 -3
  166. package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.js +4 -4
  167. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +1 -1
  168. package/dist/src/presentation/web/components/common/delete-feature-dialog/delete-feature-dialog.d.ts.map +1 -1
  169. package/dist/src/presentation/web/components/common/delete-feature-dialog/delete-feature-dialog.js +3 -1
  170. package/dist/src/presentation/web/components/common/deployment-status-badge/deployment-status-badge.js +2 -2
  171. package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.js +2 -2
  172. package/dist/src/presentation/web/components/common/empty-state/empty-state.stories.js +2 -2
  173. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +2 -2
  174. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.js +4 -4
  175. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.js +1 -1
  176. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +1 -1
  177. package/dist/src/presentation/web/components/common/feature-drawer-tabs/log-tab.js +1 -1
  178. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +1 -1
  179. package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.js +1 -1
  180. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +2 -2
  181. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  182. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +22 -22
  183. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +4 -4
  184. package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.js +1 -1
  185. package/dist/src/presentation/web/components/common/feature-status-group/feature-status-group.js +1 -1
  186. package/dist/src/presentation/web/components/common/github-import-dialog/github-repo-browser.js +1 -1
  187. package/dist/src/presentation/web/components/common/merge-review/diff-view.js +2 -2
  188. package/dist/src/presentation/web/components/common/merge-review/merge-review.js +2 -2
  189. package/dist/src/presentation/web/components/common/prd-questionnaire/prd-questionnaire.js +3 -3
  190. package/dist/src/presentation/web/components/common/reject-feedback-dialog/reject-feedback-dialog.d.ts.map +1 -1
  191. package/dist/src/presentation/web/components/common/reject-feedback-dialog/reject-feedback-dialog.js +6 -4
  192. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +3 -3
  193. package/dist/src/presentation/web/components/common/server-log-viewer/server-log-viewer.js +1 -1
  194. package/dist/src/presentation/web/components/common/task-progress-view/task-progress-view.js +2 -2
  195. package/dist/src/presentation/web/components/common/tech-decisions-review/tech-decisions-review.js +2 -2
  196. package/dist/src/presentation/web/components/common/version-badge/version-badge.js +1 -1
  197. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.js +4 -4
  198. package/dist/src/presentation/web/components/features/chat/ChatMessageList.js +1 -1
  199. package/dist/src/presentation/web/components/features/chat/ChatTab.js +1 -1
  200. package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
  201. package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +15 -11
  202. package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.d.ts.map +1 -1
  203. package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.js +8 -6
  204. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.d.ts.map +1 -1
  205. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.js +3 -1
  206. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  207. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +4 -2
  208. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +2 -2
  209. package/dist/src/presentation/web/components/features/settings/ModelPicker/index.js +2 -2
  210. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +1 -1
  211. package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts +5 -0
  212. package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts.map +1 -0
  213. package/dist/src/presentation/web/components/features/settings/language-settings-section.js +54 -0
  214. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts +18 -0
  215. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts.map +1 -0
  216. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.js +36 -0
  217. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  218. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +89 -77
  219. package/dist/src/presentation/web/components/features/settings/timeout-slider.js +1 -1
  220. package/dist/src/presentation/web/components/features/skills/category-filter.js +1 -1
  221. package/dist/src/presentation/web/components/features/skills/skills-page-client.js +1 -1
  222. package/dist/src/presentation/web/components/features/tools/tool-card.js +1 -1
  223. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.js +2 -2
  224. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  225. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +10 -4
  226. package/dist/src/presentation/web/components/providers/i18n-provider.d.ts +17 -0
  227. package/dist/src/presentation/web/components/providers/i18n-provider.d.ts.map +1 -0
  228. package/dist/src/presentation/web/components/providers/i18n-provider.js +36 -0
  229. package/dist/src/presentation/web/components/ui/alert-dialog.js +1 -1
  230. package/dist/src/presentation/web/components/ui/alert.js +1 -1
  231. package/dist/src/presentation/web/components/ui/checkbox-group.js +1 -1
  232. package/dist/src/presentation/web/components/ui/command.js +1 -1
  233. package/dist/src/presentation/web/components/ui/dialog.d.ts.map +1 -1
  234. package/dist/src/presentation/web/components/ui/dialog.js +2 -2
  235. package/dist/src/presentation/web/components/ui/dialog.stories.js +1 -1
  236. package/dist/src/presentation/web/components/ui/drawer.js +1 -1
  237. package/dist/src/presentation/web/components/ui/dropdown-menu.js +6 -6
  238. package/dist/src/presentation/web/components/ui/scroll-area.js +1 -1
  239. package/dist/src/presentation/web/components/ui/select.js +1 -1
  240. package/dist/src/presentation/web/components/ui/sheet.js +1 -1
  241. package/dist/src/presentation/web/components/ui/sidebar.js +6 -6
  242. package/dist/src/presentation/web/hooks/use-sound-action.stories.js +1 -1
  243. package/dist/src/presentation/web/lib/i18n.d.ts +15 -0
  244. package/dist/src/presentation/web/lib/i18n.d.ts.map +1 -0
  245. package/dist/src/presentation/web/lib/i18n.js +46 -0
  246. package/dist/src/presentation/web/lib/language.d.ts +23 -0
  247. package/dist/src/presentation/web/lib/language.d.ts.map +1 -0
  248. package/dist/src/presentation/web/lib/language.js +37 -0
  249. package/dist/src/presentation/web/lib/rtl-fonts.d.ts +19 -0
  250. package/dist/src/presentation/web/lib/rtl-fonts.d.ts.map +1 -0
  251. package/dist/src/presentation/web/lib/rtl-fonts.js +51 -0
  252. package/dist/translations/ar/cli.json +613 -0
  253. package/dist/translations/ar/common.json +55 -0
  254. package/dist/translations/ar/tui.json +130 -0
  255. package/dist/translations/ar/web.json +320 -0
  256. package/dist/translations/de/cli.json +613 -0
  257. package/dist/translations/de/common.json +55 -0
  258. package/dist/translations/de/tui.json +109 -0
  259. package/dist/translations/de/web.json +306 -0
  260. package/dist/translations/en/cli.json +613 -0
  261. package/dist/translations/en/common.json +55 -0
  262. package/dist/translations/en/tui.json +130 -0
  263. package/dist/translations/en/web.json +320 -0
  264. package/dist/translations/es/cli.json +613 -0
  265. package/dist/translations/es/common.json +55 -0
  266. package/dist/translations/es/tui.json +130 -0
  267. package/dist/translations/es/web.json +320 -0
  268. package/dist/translations/fr/cli.json +613 -0
  269. package/dist/translations/fr/common.json +55 -0
  270. package/dist/translations/fr/tui.json +130 -0
  271. package/dist/translations/fr/web.json +320 -0
  272. package/dist/translations/he/cli.json +613 -0
  273. package/dist/translations/he/common.json +55 -0
  274. package/dist/translations/he/tui.json +130 -0
  275. package/dist/translations/he/web.json +320 -0
  276. package/dist/translations/pt/cli.json +613 -0
  277. package/dist/translations/pt/common.json +55 -0
  278. package/dist/translations/pt/tui.json +130 -0
  279. package/dist/translations/pt/web.json +320 -0
  280. package/dist/translations/ru/cli.json +613 -0
  281. package/dist/translations/ru/common.json +55 -0
  282. package/dist/translations/ru/tui.json +130 -0
  283. package/dist/translations/ru/web.json +320 -0
  284. package/dist/tsconfig.build.tsbuildinfo +1 -1
  285. package/package.json +4 -2
  286. package/web/.next/BUILD_ID +1 -1
  287. package/web/.next/build-manifest.json +2 -2
  288. package/web/.next/fallback-build-manifest.json +2 -2
  289. package/web/.next/prerender-manifest.json +3 -3
  290. package/web/.next/required-server-files.js +1 -1
  291. package/web/.next/required-server-files.json +1 -1
  292. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +28 -28
  293. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +3 -3
  294. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  295. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  296. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +26 -26
  297. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +3 -3
  298. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  299. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  300. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +29 -29
  301. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
  302. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  303. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  304. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
  305. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +4 -4
  306. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  307. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  308. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +36 -36
  309. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +4 -4
  310. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  311. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  312. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +26 -26
  313. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +3 -3
  314. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  315. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  316. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
  317. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +3 -3
  318. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  319. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  320. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +26 -26
  321. package/web/.next/server/app/(dashboard)/chat/page.js +3 -3
  322. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  323. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  324. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +29 -29
  325. package/web/.next/server/app/(dashboard)/create/page.js +3 -3
  326. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  327. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  328. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
  329. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +4 -4
  330. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  331. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  332. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +36 -36
  333. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +4 -4
  334. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  335. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  336. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +26 -26
  337. package/web/.next/server/app/(dashboard)/page.js +3 -3
  338. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  339. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  340. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +26 -26
  341. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +3 -3
  342. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  343. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  344. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
  345. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +3 -3
  346. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  347. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  348. package/web/.next/server/app/_global-error.html +2 -2
  349. package/web/.next/server/app/_global-error.rsc +1 -1
  350. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  351. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  352. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  353. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  354. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  355. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +5 -5
  356. package/web/.next/server/app/_not-found/page.js +2 -2
  357. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  358. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  359. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  360. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  361. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  362. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  363. package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
  364. package/web/.next/server/app/settings/page.js +2 -2
  365. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  366. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  367. package/web/.next/server/app/skills/page/server-reference-manifest.json +10 -10
  368. package/web/.next/server/app/skills/page.js +3 -4
  369. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  370. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  371. package/web/.next/server/app/tools/page/server-reference-manifest.json +10 -10
  372. package/web/.next/server/app/tools/page.js +3 -4
  373. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  374. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  375. package/web/.next/server/app/version/page/server-reference-manifest.json +5 -5
  376. package/web/.next/server/app/version/page.js +2 -2
  377. package/web/.next/server/app/version/page.js.nft.json +1 -1
  378. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  379. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  380. package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js +1 -1
  381. package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js.map +1 -1
  382. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  383. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  384. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  385. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  386. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  387. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  388. package/web/.next/server/chunks/ssr/{[root-of-the-server]__88f7e8e6._.js → [root-of-the-server]__209c9597._.js} +2 -2
  389. package/web/.next/server/chunks/ssr/{[root-of-the-server]__88f7e8e6._.js.map → [root-of-the-server]__209c9597._.js.map} +1 -1
  390. package/web/.next/server/chunks/ssr/{[root-of-the-server]__f8dd4422._.js → [root-of-the-server]__25ee8d4c._.js} +2 -2
  391. package/web/.next/server/chunks/ssr/[root-of-the-server]__25ee8d4c._.js.map +1 -0
  392. package/web/.next/server/chunks/ssr/{[root-of-the-server]__17ed7ed1._.js → [root-of-the-server]__27301e38._.js} +2 -2
  393. package/web/.next/server/chunks/ssr/{[root-of-the-server]__17ed7ed1._.js.map → [root-of-the-server]__27301e38._.js.map} +1 -1
  394. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  395. package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js +1 -1
  396. package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js.map +1 -1
  397. package/web/.next/server/chunks/ssr/{[root-of-the-server]__42bf1807._.js → [root-of-the-server]__6fecf886._.js} +2 -2
  398. package/web/.next/server/chunks/ssr/{[root-of-the-server]__42bf1807._.js.map → [root-of-the-server]__6fecf886._.js.map} +1 -1
  399. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js +1 -1
  400. package/web/.next/server/chunks/ssr/{[root-of-the-server]__28d0d265._.js → [root-of-the-server]__8d27866c._.js} +3 -3
  401. package/web/.next/server/chunks/ssr/[root-of-the-server]__8d27866c._.js.map +1 -0
  402. package/web/.next/server/chunks/ssr/{[root-of-the-server]__f80bfc75._.js → [root-of-the-server]__9f3504c7._.js} +2 -2
  403. package/web/.next/server/chunks/ssr/{[root-of-the-server]__f80bfc75._.js.map → [root-of-the-server]__9f3504c7._.js.map} +1 -1
  404. package/web/.next/server/chunks/ssr/[root-of-the-server]__bd6ed91a._.js +4 -0
  405. package/web/.next/server/chunks/ssr/[root-of-the-server]__bd6ed91a._.js.map +1 -0
  406. package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js +1 -1
  407. package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js.map +1 -1
  408. package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js +3 -0
  409. package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js.map +1 -0
  410. package/web/.next/server/chunks/ssr/[root-of-the-server]__e91ffd5e._.js +2 -2
  411. package/web/.next/server/chunks/ssr/[root-of-the-server]__e91ffd5e._.js.map +1 -1
  412. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  413. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  414. package/web/.next/server/chunks/ssr/_0cd9ca53._.js +3 -0
  415. package/web/.next/server/chunks/ssr/_0cd9ca53._.js.map +1 -0
  416. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  417. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  418. package/web/.next/server/chunks/ssr/{_08f3fd21._.js → _28e7429c._.js} +2 -2
  419. package/web/.next/server/chunks/ssr/{_08f3fd21._.js.map → _28e7429c._.js.map} +1 -1
  420. package/web/.next/server/chunks/ssr/_3a0b989f._.js +2 -2
  421. package/web/.next/server/chunks/ssr/_3a0b989f._.js.map +1 -1
  422. package/web/.next/server/chunks/ssr/{_67104d9e._.js → _3bcda5d7._.js} +2 -2
  423. package/web/.next/server/chunks/ssr/{_67104d9e._.js.map → _3bcda5d7._.js.map} +1 -1
  424. package/web/.next/server/chunks/ssr/_470e90f4._.js +9 -0
  425. package/web/.next/server/chunks/ssr/_470e90f4._.js.map +1 -0
  426. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  427. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  428. package/web/.next/server/chunks/ssr/_5bfcc8de._.js +4 -0
  429. package/web/.next/server/chunks/ssr/_5bfcc8de._.js.map +1 -0
  430. package/web/.next/server/chunks/ssr/_5f69c13f._.js +1 -1
  431. package/web/.next/server/chunks/ssr/_5f69c13f._.js.map +1 -1
  432. package/web/.next/server/chunks/ssr/{_d957c7f8._.js → _7773b2dc._.js} +2 -2
  433. package/web/.next/server/chunks/ssr/{_d957c7f8._.js.map → _7773b2dc._.js.map} +1 -1
  434. package/web/.next/server/chunks/ssr/_7c5b97c6._.js +1 -1
  435. package/web/.next/server/chunks/ssr/_7c5b97c6._.js.map +1 -1
  436. package/web/.next/server/chunks/ssr/_82c57f10._.js +1 -1
  437. package/web/.next/server/chunks/ssr/_82c57f10._.js.map +1 -1
  438. package/web/.next/server/chunks/ssr/_8b57edb8._.js +1 -1
  439. package/web/.next/server/chunks/ssr/_8b57edb8._.js.map +1 -1
  440. package/web/.next/server/chunks/ssr/_9495d50b._.js +1 -1
  441. package/web/.next/server/chunks/ssr/_9495d50b._.js.map +1 -1
  442. package/web/.next/server/chunks/ssr/_a0e3f7e4._.js +1 -1
  443. package/web/.next/server/chunks/ssr/_a0e3f7e4._.js.map +1 -1
  444. package/web/.next/server/chunks/ssr/_ac4a3873._.js +1 -1
  445. package/web/.next/server/chunks/ssr/_ac4a3873._.js.map +1 -1
  446. package/web/.next/server/chunks/ssr/{_507a8382._.js → _b9ba2473._.js} +2 -2
  447. package/web/.next/server/chunks/ssr/_b9ba2473._.js.map +1 -0
  448. package/web/.next/server/chunks/ssr/_ca0aa7f0._.js +1 -1
  449. package/web/.next/server/chunks/ssr/_ca0aa7f0._.js.map +1 -1
  450. package/web/.next/server/chunks/ssr/_cb5a021e._.js +1 -1
  451. package/web/.next/server/chunks/ssr/_cb5a021e._.js.map +1 -1
  452. package/web/.next/server/chunks/ssr/_cfbd1d7e._.js +1 -1
  453. package/web/.next/server/chunks/ssr/_cfbd1d7e._.js.map +1 -1
  454. package/web/.next/server/chunks/ssr/_d4b20e29._.js +1 -1
  455. package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -1
  456. package/web/.next/server/chunks/ssr/_d86175ae._.js +1 -1
  457. package/web/.next/server/chunks/ssr/_d86175ae._.js.map +1 -1
  458. package/web/.next/server/chunks/ssr/_d8bedf13._.js +1 -1
  459. package/web/.next/server/chunks/ssr/_d8bedf13._.js.map +1 -1
  460. package/web/.next/server/chunks/ssr/_d90b0a06._.js +3 -0
  461. package/web/.next/server/chunks/ssr/_d90b0a06._.js.map +1 -0
  462. package/web/.next/server/chunks/ssr/_fa7efce3._.js +2 -2
  463. package/web/.next/server/chunks/ssr/_fa7efce3._.js.map +1 -1
  464. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  465. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  466. package/web/.next/server/chunks/ssr/node_modules__pnpm_55cf6695._.js +3 -0
  467. package/web/.next/server/chunks/ssr/node_modules__pnpm_55cf6695._.js.map +1 -0
  468. package/web/.next/server/chunks/ssr/src_presentation_web_324a47da._.js +1 -1
  469. package/web/.next/server/chunks/ssr/src_presentation_web_324a47da._.js.map +1 -1
  470. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  471. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +3 -0
  472. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -0
  473. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  474. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  475. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
  476. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js.map +1 -1
  477. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
  478. package/web/.next/server/pages/500.html +2 -2
  479. package/web/.next/server/server-reference-manifest.js +1 -1
  480. package/web/.next/server/server-reference-manifest.json +45 -45
  481. package/web/.next/static/chunks/05c9ed792a1d9056.js +1 -0
  482. package/web/.next/static/chunks/{04cb9cede104b5f8.js → 1c07a9270515f2e3.js} +2 -2
  483. package/web/.next/static/chunks/{e3339b33db2768bd.js → 24d5e151f7de6b4c.js} +1 -1
  484. package/web/.next/static/chunks/{b224651a2324c8f7.js → 2aada437f51df3e6.js} +1 -1
  485. package/web/.next/static/chunks/2eeee9bcbf660a4b.js +1 -0
  486. package/web/.next/static/chunks/{688971d5bad5dc7c.js → 3deefc76ea55047c.js} +1 -1
  487. package/web/.next/static/chunks/{11091b676d1b3bd4.js → 47477ed4c5871747.js} +1 -1
  488. package/web/.next/static/chunks/{7bdd3f51e4993fb6.js → 4978be67c4e6498f.js} +3 -3
  489. package/web/.next/static/chunks/4a399ee2a9942a1b.js +1 -0
  490. package/web/.next/static/chunks/{c3a9b33826b0e541.js → 536afd754a63da39.js} +1 -1
  491. package/web/.next/static/chunks/70390bd89521bc19.js +1 -0
  492. package/web/.next/static/chunks/{22c459f1877b1e4f.js → 74db65fa7bfb80bd.js} +1 -1
  493. package/web/.next/static/chunks/8fd082719935d5e6.js +1 -0
  494. package/web/.next/static/chunks/91927044df8e28bb.js +7 -0
  495. package/web/.next/static/chunks/b1b5b0bf84caabd4.js +1 -0
  496. package/web/.next/static/chunks/{e1b6fd86f641261d.js → b674bc11b321a5ee.js} +1 -1
  497. package/web/.next/static/chunks/b68b16b4c3528979.js +2 -0
  498. package/web/.next/static/chunks/{b4cde06eff374c59.js → bfdb66301af07da1.js} +2 -2
  499. package/web/.next/static/chunks/d58e68d03d055a9b.css +1 -0
  500. package/web/.next/static/chunks/{5ae60a052ab5f437.js → d6e702c209c413ce.js} +2 -2
  501. package/web/.next/static/chunks/{4b2c4a5c35ebb70d.js → e4e358c4f67366fd.js} +1 -1
  502. package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js +0 -3
  503. package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js.map +0 -1
  504. package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js.map +0 -1
  505. package/web/.next/server/chunks/ssr/[root-of-the-server]__f8dd4422._.js.map +0 -1
  506. package/web/.next/server/chunks/ssr/_4601ff05._.js +0 -4
  507. package/web/.next/server/chunks/ssr/_4601ff05._.js.map +0 -1
  508. package/web/.next/server/chunks/ssr/_4b432739._.js +0 -3
  509. package/web/.next/server/chunks/ssr/_4b432739._.js.map +0 -1
  510. package/web/.next/server/chunks/ssr/_507a8382._.js.map +0 -1
  511. package/web/.next/server/chunks/ssr/_8219712a._.js +0 -3
  512. package/web/.next/server/chunks/ssr/_8219712a._.js.map +0 -1
  513. package/web/.next/server/chunks/ssr/_e9a73a63._.js +0 -9
  514. package/web/.next/server/chunks/ssr/_e9a73a63._.js.map +0 -1
  515. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js +0 -3
  516. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js.map +0 -1
  517. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js +0 -3
  518. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js.map +0 -1
  519. package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js +0 -3
  520. package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js.map +0 -1
  521. package/web/.next/static/chunks/190cb2b91443b7a2.js +0 -1
  522. package/web/.next/static/chunks/232221de97ee02ee.js +0 -1
  523. package/web/.next/static/chunks/5ea1d031a4327efd.js +0 -1
  524. package/web/.next/static/chunks/639776981e3c0300.js +0 -7
  525. package/web/.next/static/chunks/6bef26d1ebd38687.js +0 -1
  526. package/web/.next/static/chunks/8590bd2e69b24b9e.css +0 -1
  527. package/web/.next/static/chunks/9207c052206225b2.js +0 -2
  528. package/web/.next/static/chunks/cd54b758f58061d0.js +0 -1
  529. /package/web/.next/static/{SnRLSukTe4qbiJHXHhXVW → Uqo91vsr2HsZrCKrZOYMZ}/_buildManifest.js +0 -0
  530. /package/web/.next/static/{SnRLSukTe4qbiJHXHhXVW → Uqo91vsr2HsZrCKrZOYMZ}/_clientMiddlewareManifest.json +0 -0
  531. /package/web/.next/static/{SnRLSukTe4qbiJHXHhXVW → Uqo91vsr2HsZrCKrZOYMZ}/_ssgManifest.js +0 -0
@@ -4,7 +4,9 @@
4
4
  import { container } from '../../../../../packages/core/src/infrastructure/di/container.js';
5
5
  import { GetAgentRunUseCase } from '../../../../../packages/core/src/application/use-cases/agents/get-agent-run.use-case.js';
6
6
  import { ListAgentRunsUseCase } from '../../../../../packages/core/src/application/use-cases/agents/list-agent-runs.use-case.js';
7
+ import { getCliI18n } from '../../i18n.js';
7
8
  export async function resolveAgentRun(id) {
9
+ const t = getCliI18n().t;
8
10
  const getUseCase = container.resolve(GetAgentRunUseCase);
9
11
  // Try exact match first
10
12
  const exact = await getUseCase.execute(id);
@@ -19,9 +21,12 @@ export async function resolveAgentRun(id) {
19
21
  return { run: matches[0] };
20
22
  if (matches.length > 1) {
21
23
  return {
22
- error: `Multiple runs match prefix "${id}": ${matches.map((m) => m.id.substring(0, 8)).join(', ')}`,
24
+ error: t('cli:commands.agent.resolve.multipleMatch', {
25
+ id,
26
+ matches: matches.map((m) => m.id.substring(0, 8)).join(', '),
27
+ }),
23
28
  };
24
29
  }
25
30
  }
26
- return { error: `Agent run not found: ${id}` };
31
+ return { error: t('cli:commands.agent.resolve.notFound', { id }) };
27
32
  }
@@ -1 +1 @@
1
- {"version":3,"file":"show.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/agent/show.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAiBpC,wBAAgB,iBAAiB,IAAI,OAAO,CAoG3C"}
1
+ {"version":3,"file":"show.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/agent/show.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAkBpC,wBAAgB,iBAAiB,IAAI,OAAO,CAqG3C"}
@@ -12,6 +12,7 @@ import { colors, messages, symbols, renderDetailView } from '../../ui/index.js';
12
12
  import { resolveAgentRun } from './resolve-run.js';
13
13
  import { container } from '../../../../../packages/core/src/infrastructure/di/container.js';
14
14
  import { computeWorktreePath } from '../../../../../packages/core/src/infrastructure/services/ide-launchers/compute-worktree-path.js';
15
+ import { getCliI18n } from '../../i18n.js';
15
16
  function isProcessAlive(pid) {
16
17
  try {
17
18
  process.kill(pid, 0);
@@ -22,9 +23,10 @@ function isProcessAlive(pid) {
22
23
  }
23
24
  }
24
25
  export function createShowCommand() {
26
+ const t = getCliI18n().t;
25
27
  return new Command('show')
26
- .description('Display details of an agent run')
27
- .argument('<id>', 'Agent run ID (or prefix)')
28
+ .description(t('cli:commands.agent.show.description'))
29
+ .argument('<id>', t('cli:commands.agent.show.idArgument'))
28
30
  .action(async (id) => {
29
31
  try {
30
32
  const resolved = await resolveAgentRun(id);
@@ -73,7 +75,7 @@ export function createShowCommand() {
73
75
  });
74
76
  }
75
77
  renderDetailView({
76
- title: 'Agent Run',
78
+ title: t('cli:commands.agent.show.title'),
77
79
  sections: [
78
80
  {
79
81
  fields: [
@@ -87,14 +89,14 @@ export function createShowCommand() {
87
89
  ],
88
90
  },
89
91
  {
90
- title: 'Paths',
92
+ title: t('cli:commands.agent.show.pathsTitle'),
91
93
  fields: [
92
94
  { label: 'Worktree', value: worktreePath },
93
95
  { label: 'Spec Dir', value: specPath },
94
96
  ],
95
97
  },
96
98
  {
97
- title: 'Timing',
99
+ title: t('cli:commands.agent.show.timingTitle'),
98
100
  fields: [
99
101
  { label: 'Started', value: formatDate(agentRun.startedAt) },
100
102
  { label: 'Completed', value: formatDate(agentRun.completedAt) },
@@ -111,7 +113,7 @@ export function createShowCommand() {
111
113
  }
112
114
  catch (error) {
113
115
  const err = error instanceof Error ? error : new Error(String(error));
114
- messages.error('Failed to show agent run', err);
116
+ messages.error(t('cli:commands.agent.show.failedToShow'), err);
115
117
  process.exitCode = 1;
116
118
  }
117
119
  });
@@ -1 +1 @@
1
- {"version":3,"file":"stop.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/agent/stop.command.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAMpC,wBAAgB,iBAAiB,IAAI,OAAO,CA8B3C"}
1
+ {"version":3,"file":"stop.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/agent/stop.command.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAOpC,wBAAgB,iBAAiB,IAAI,OAAO,CAkC3C"}
@@ -11,10 +11,12 @@ import { container } from '../../../../../packages/core/src/infrastructure/di/co
11
11
  import { StopAgentRunUseCase } from '../../../../../packages/core/src/application/use-cases/agents/stop-agent-run.use-case.js';
12
12
  import { colors, messages } from '../../ui/index.js';
13
13
  import { resolveAgentRun } from './resolve-run.js';
14
+ import { getCliI18n } from '../../i18n.js';
14
15
  export function createStopCommand() {
16
+ const t = getCliI18n().t;
15
17
  return new Command('stop')
16
- .description('Stop a running agent')
17
- .argument('<id>', 'Agent run ID (or prefix)')
18
+ .description(t('cli:commands.agent.stop.description'))
19
+ .argument('<id>', t('cli:commands.agent.stop.idArgument'))
18
20
  .action(async (id) => {
19
21
  try {
20
22
  const resolved = await resolveAgentRun(id);
@@ -26,7 +28,10 @@ export function createStopCommand() {
26
28
  const useCase = container.resolve(StopAgentRunUseCase);
27
29
  const result = await useCase.execute(resolved.run.id);
28
30
  if (result.stopped) {
29
- messages.success(`Stopped ${colors.accent(resolved.run.id.substring(0, 8))}: ${result.reason}`);
31
+ messages.success(t('cli:commands.agent.stop.stoppedSuccess', {
32
+ id: colors.accent(resolved.run.id.substring(0, 8)),
33
+ reason: result.reason,
34
+ }));
30
35
  }
31
36
  else {
32
37
  messages.error(result.reason);
@@ -35,7 +40,7 @@ export function createStopCommand() {
35
40
  }
36
41
  catch (error) {
37
42
  const err = error instanceof Error ? error : new Error(String(error));
38
- messages.error('Failed to stop agent run', err);
43
+ messages.error(t('cli:commands.agent.stop.failedToStop'), err);
39
44
  process.exitCode = 1;
40
45
  }
41
46
  });
@@ -1 +1 @@
1
- {"version":3,"file":"start-daemon.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/daemon/start-daemon.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAoBH,MAAM,WAAW,kBAAkB;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;GAGG;AACH,wBAAsB,WAAW,CAAC,IAAI,GAAE,kBAAuB,GAAG,OAAO,CAAC,IAAI,CAAC,CAgG9E"}
1
+ {"version":3,"file":"start-daemon.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/daemon/start-daemon.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAqBH,MAAM,WAAW,kBAAkB;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;GAGG;AACH,wBAAsB,WAAW,CAAC,IAAI,GAAE,kBAAuB,GAAG,OAAO,CAAC,IAAI,CAAC,CAmG9E"}
@@ -24,6 +24,7 @@ import { findAvailablePort, DEFAULT_PORT } from '../../../../../packages/core/sr
24
24
  import { BrowserOpenerService } from '../../../../../packages/core/src/infrastructure/services/browser-opener.service.js';
25
25
  import { getDaemonLogPath } from '../../../../../packages/core/src/infrastructure/services/filesystem/shep-directory.service.js';
26
26
  import { fmt, messages, spinner } from '../../ui/index.js';
27
+ import { getCliI18n } from '../../i18n.js';
27
28
  /** How long to wait (ms) after spawn to verify the child is still alive. */
28
29
  const SPAWN_SETTLE_MS = 500;
29
30
  /** Max time (ms) to wait for the server to become reachable before opening the browser. */
@@ -35,13 +36,14 @@ const READY_POLL_MS = 300;
35
36
  * Idempotent: if a daemon is already running, prints the existing URL and returns.
36
37
  */
37
38
  export async function startDaemon(opts = {}) {
39
+ const t = getCliI18n().t;
38
40
  const daemonService = container.resolve('IDaemonService');
39
41
  // Check for an already-running daemon
40
42
  const existing = await daemonService.read();
41
43
  if (existing && daemonService.isAlive(existing.pid)) {
42
44
  const url = `http://localhost:${existing.port}`;
43
45
  messages.newline();
44
- messages.info(`Shep is already running at ${fmt.code(url)}`);
46
+ messages.info(t('cli:ui.daemon.alreadyRunning', { url: fmt.code(url) }));
45
47
  messages.newline();
46
48
  return;
47
49
  }
@@ -78,8 +80,8 @@ export async function startDaemon(opts = {}) {
78
80
  // Child exited during the settle window — startup failed.
79
81
  closeSync(logFd);
80
82
  messages.newline();
81
- messages.error(`Daemon failed to start (exit code ${exitCode ?? 'unknown'}).`);
82
- messages.info(`Check logs: ${fmt.code(logPath)}`);
83
+ messages.error(t('cli:ui.daemon.daemonFailed', { code: exitCode ?? 'unknown' }));
84
+ messages.info(t('cli:ui.daemon.checkLogs', { path: fmt.code(logPath) }));
83
85
  messages.newline();
84
86
  // Clean up stale daemon.json if it exists
85
87
  await daemonService.delete();
@@ -96,21 +98,21 @@ export async function startDaemon(opts = {}) {
96
98
  });
97
99
  const url = `http://localhost:${port}`;
98
100
  messages.newline();
99
- console.log(fmt.heading('Shep Web UI'));
101
+ console.log(fmt.heading(t('cli:ui.daemon.heading')));
100
102
  messages.newline();
101
103
  // Poll until the server responds, with a spinner on stderr.
102
104
  // Skip readiness check in E2E / CI environments where the daemon child
103
105
  // cannot actually start a Next.js server within the test's time window.
104
106
  if (process.env.SHEP_SKIP_READINESS_CHECK) {
105
- messages.success(`Daemon spawned at ${fmt.code(url)}`);
107
+ messages.success(t('cli:ui.daemon.daemonSpawned', { url: fmt.code(url) }));
106
108
  }
107
109
  else {
108
- const ready = await spinner('Starting server', () => waitForServer(url, READY_TIMEOUT_MS));
110
+ const ready = await spinner(t('cli:ui.daemon.startingServer'), () => waitForServer(url, READY_TIMEOUT_MS));
109
111
  if (ready) {
110
- messages.success(`Server ready at ${fmt.code(url)}`);
112
+ messages.success(t('cli:ui.daemon.serverReady', { url: fmt.code(url) }));
111
113
  }
112
114
  else {
113
- messages.warning(`Server may still be starting at ${fmt.code(url)}`);
115
+ messages.warning(t('cli:ui.daemon.serverMayBeStarting', { url: fmt.code(url) }));
114
116
  }
115
117
  }
116
118
  messages.newline();
@@ -1 +1 @@
1
- {"version":3,"file":"stop-daemon.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/daemon/stop-daemon.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAGH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iEAAiE,CAAC;AA0BtG;;;GAGG;AACH,wBAAsB,UAAU,CAAC,aAAa,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAyC7E"}
1
+ {"version":3,"file":"stop-daemon.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/daemon/stop-daemon.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAGH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iEAAiE,CAAC;AA2BtG;;;GAGG;AACH,wBAAsB,UAAU,CAAC,aAAa,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CA0C7E"}
@@ -20,6 +20,7 @@
20
20
  */
21
21
  import { treeKill } from '../../../../../packages/core/src/infrastructure/services/process/tree-kill.js';
22
22
  import { messages } from '../../ui/index.js';
23
+ import { getCliI18n } from '../../i18n.js';
23
24
  const POLL_INTERVAL_MS = 200;
24
25
  const MAX_WAIT_MS = 5000;
25
26
  /**
@@ -54,14 +55,15 @@ export async function stopDaemon(daemonService) {
54
55
  return;
55
56
  }
56
57
  try {
57
- messages.info(`Stopping Shep daemon (PID ${pid})...`);
58
+ const t = getCliI18n().t;
59
+ messages.info(t('cli:ui.daemon.stoppingDaemon', { pid }));
58
60
  // Send SIGTERM to process tree — request graceful shutdown
59
61
  treeKill(pid, 'SIGTERM');
60
62
  // Poll for up to 5s waiting for the process to exit
61
63
  const died = await pollUntilDead(daemonService, pid, MAX_WAIT_MS, POLL_INTERVAL_MS);
62
64
  if (!died) {
63
65
  // Graceful shutdown timed out — force kill process tree
64
- messages.info('Daemon did not stop gracefully, sending SIGKILL...');
66
+ messages.info(t('cli:ui.daemon.sigkillFallback'));
65
67
  try {
66
68
  treeKill(pid, 'SIGKILL');
67
69
  }
@@ -69,7 +71,7 @@ export async function stopDaemon(daemonService) {
69
71
  // Process may have exited between the check and the kill — ignore
70
72
  }
71
73
  }
72
- messages.success('Shep daemon stopped.');
74
+ messages.success(t('cli:ui.daemon.daemonStopped'));
73
75
  }
74
76
  finally {
75
77
  // Always clean up daemon.json regardless of termination path
@@ -1 +1 @@
1
- {"version":3,"file":"adopt.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/adopt.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKpC,wBAAgB,kBAAkB,IAAI,OAAO,CAkC5C"}
1
+ {"version":3,"file":"adopt.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/adopt.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAMpC,wBAAgB,kBAAkB,IAAI,OAAO,CA6C5C"}
@@ -13,33 +13,35 @@ import { Command } from 'commander';
13
13
  import { container } from '../../../../../packages/core/src/infrastructure/di/container.js';
14
14
  import { AdoptBranchUseCase } from '../../../../../packages/core/src/application/use-cases/features/adopt-branch.use-case.js';
15
15
  import { colors, messages, spinner } from '../../ui/index.js';
16
+ import { getCliI18n } from '../../i18n.js';
16
17
  export function createAdoptCommand() {
18
+ const t = getCliI18n().t;
17
19
  return new Command('adopt')
18
- .description('Adopt an existing branch as a tracked feature')
19
- .argument('<branch>', 'Branch name to adopt')
20
- .option('-r, --repo <path>', 'Repository path (defaults to cwd)')
20
+ .description(t('cli:commands.feat.adopt.description'))
21
+ .argument('<branch>', t('cli:commands.feat.adopt.branchArgument'))
22
+ .option('-r, --repo <path>', t('cli:commands.feat.adopt.repoOption'))
21
23
  .action(async (branch, options) => {
22
24
  try {
23
25
  const useCase = container.resolve(AdoptBranchUseCase);
24
- const { feature } = await spinner('Adopting branch', () => useCase.execute({
26
+ const { feature } = await spinner(t('cli:commands.feat.adopt.spinnerText'), () => useCase.execute({
25
27
  branchName: branch,
26
28
  repositoryPath: options.repo ?? process.cwd(),
27
29
  }));
28
30
  messages.newline();
29
- messages.success('Branch adopted');
30
- console.log(` ${colors.muted('ID:')} ${colors.accent(feature.id.slice(0, 8))}`);
31
- console.log(` ${colors.muted('Name:')} ${feature.name}`);
32
- console.log(` ${colors.muted('Branch:')} ${colors.accent(feature.branch)}`);
33
- console.log(` ${colors.muted('Status:')} ${feature.lifecycle}`);
31
+ messages.success(t('cli:commands.feat.adopt.branchAdopted'));
32
+ console.log(` ${colors.muted(t('cli:commands.feat.adopt.idLabel'))} ${colors.accent(feature.id.slice(0, 8))}`);
33
+ console.log(` ${colors.muted(t('cli:commands.feat.adopt.nameLabel'))} ${feature.name}`);
34
+ console.log(` ${colors.muted(t('cli:commands.feat.adopt.branchLabel'))} ${colors.accent(feature.branch)}`);
35
+ console.log(` ${colors.muted(t('cli:commands.feat.adopt.statusLabel'))} ${feature.lifecycle}`);
34
36
  if (feature.pr) {
35
- console.log(` ${colors.muted('PR:')} ${colors.accent(feature.pr.url)} (${feature.pr.status})`);
37
+ console.log(` ${colors.muted(t('cli:commands.feat.adopt.prLabel'))} ${colors.accent(feature.pr.url)} (${feature.pr.status})`);
36
38
  }
37
- console.log(` ${colors.muted('Worktree:')} ${colors.accent(feature.worktreePath ?? '')}`);
39
+ console.log(` ${colors.muted(t('cli:commands.feat.adopt.worktreeLabel'))} ${colors.accent(feature.worktreePath ?? '')}`);
38
40
  messages.newline();
39
41
  }
40
42
  catch (error) {
41
43
  const err = error instanceof Error ? error : new Error(String(error));
42
- messages.error('Failed to adopt branch', err);
44
+ messages.error(t('cli:commands.feat.adopt.failedToAdopt'), err);
43
45
  process.exitCode = 1;
44
46
  }
45
47
  });
@@ -1 +1 @@
1
- {"version":3,"file":"approve.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/approve.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAQpC,wBAAgB,oBAAoB,IAAI,OAAO,CAqC9C"}
1
+ {"version":3,"file":"approve.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/approve.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AASpC,wBAAgB,oBAAoB,IAAI,OAAO,CA0C9C"}
@@ -12,10 +12,12 @@ import { container } from '../../../../../packages/core/src/infrastructure/di/co
12
12
  import { ApproveAgentRunUseCase } from '../../../../../packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js';
13
13
  import { resolveWaitingFeature } from './resolve-waiting-feature.js';
14
14
  import { colors, messages } from '../../ui/index.js';
15
+ import { getCliI18n } from '../../i18n.js';
15
16
  export function createApproveCommand() {
17
+ const t = getCliI18n().t;
16
18
  return new Command('approve')
17
- .description('Approve a feature waiting for review')
18
- .argument('[id]', 'Feature ID (auto-resolves if omitted)')
19
+ .description(t('cli:commands.feat.approve.description'))
20
+ .argument('[id]', t('cli:commands.feat.approve.idArgument'))
19
21
  .action(async (featureId) => {
20
22
  try {
21
23
  const featureRepo = container.resolve('IFeatureRepository');
@@ -34,14 +36,14 @@ export function createApproveCommand() {
34
36
  }
35
37
  const phase = run.result?.startsWith('node:') ? run.result.slice(5) : 'unknown';
36
38
  messages.newline();
37
- messages.success(`Approved: ${feature.name}`);
38
- console.log(` ${colors.muted('Phase:')} ${colors.success(phase)} approved`);
39
- console.log(` ${colors.muted('Agent:')} resumed`);
39
+ messages.success(t('cli:commands.feat.approve.approvedSuccess', { name: feature.name }));
40
+ console.log(` ${colors.muted(t('cli:commands.feat.approve.phaseLabel'))} ${colors.success(phase)} ${t('cli:commands.feat.approve.approved')}`);
41
+ console.log(` ${colors.muted(t('cli:commands.feat.approve.agentLabel'))} ${t('cli:commands.feat.approve.agentResumed')}`);
40
42
  messages.newline();
41
43
  }
42
44
  catch (error) {
43
45
  const err = error instanceof Error ? error : new Error(String(error));
44
- messages.error('Failed to approve feature', err);
46
+ messages.error(t('cli:commands.feat.approve.failedToApprove'), err);
45
47
  process.exitCode = 1;
46
48
  }
47
49
  });
@@ -1 +1 @@
1
- {"version":3,"file":"archive.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/archive.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAWpC;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,OAAO,CAkC9C"}
1
+ {"version":3,"file":"archive.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/archive.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAYpC;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,OAAO,CAmC9C"}
@@ -16,38 +16,40 @@ import { ShowFeatureUseCase } from '../../../../../packages/core/src/application
16
16
  import { ArchiveFeatureUseCase } from '../../../../../packages/core/src/application/use-cases/features/archive-feature.use-case.js';
17
17
  import { colors, messages } from '../../ui/index.js';
18
18
  import { confirm } from '@inquirer/prompts';
19
+ import { getCliI18n } from '../../i18n.js';
19
20
  /**
20
21
  * Create the feat archive command
21
22
  */
22
23
  export function createArchiveCommand() {
24
+ const t = getCliI18n().t;
23
25
  return new Command('archive')
24
- .description('Archive a feature to hide it from the canvas')
25
- .argument('<id>', 'Feature ID or prefix')
26
- .option('-f, --force', 'Skip confirmation prompt')
26
+ .description(t('cli:commands.feat.archive.description'))
27
+ .argument('<id>', t('cli:commands.feat.archive.idArgument'))
28
+ .option('-f, --force', t('cli:commands.feat.archive.forceOption'))
27
29
  .action(async (featureId, options) => {
28
30
  try {
29
31
  const showUseCase = container.resolve(ShowFeatureUseCase);
30
32
  const feature = await showUseCase.execute(featureId);
31
33
  if (!options.force) {
32
34
  const confirmed = await confirm({
33
- message: `Archive feature "${feature.name}"?`,
35
+ message: t('cli:commands.feat.archive.confirmArchive', { name: feature.name }),
34
36
  default: false,
35
37
  });
36
38
  if (!confirmed) {
37
- messages.info('Cancelled');
39
+ messages.info(t('cli:commands.feat.archive.cancelled'));
38
40
  return;
39
41
  }
40
42
  }
41
43
  const archiveUseCase = container.resolve(ArchiveFeatureUseCase);
42
44
  await archiveUseCase.execute(feature.id);
43
45
  messages.newline();
44
- messages.success('Feature archived');
45
- console.log(` ${colors.muted('Name:')} ${feature.name}`);
46
+ messages.success(t('cli:commands.feat.archive.featureArchived'));
47
+ console.log(` ${colors.muted(t('cli:commands.feat.archive.nameLabel'))} ${feature.name}`);
46
48
  messages.newline();
47
49
  }
48
50
  catch (error) {
49
51
  const err = error instanceof Error ? error : new Error(String(error));
50
- messages.error('Failed to archive feature', err);
52
+ messages.error(t('cli:commands.feat.archive.failedToArchive'), err);
51
53
  process.exitCode = 1;
52
54
  }
53
55
  });
@@ -1 +1 @@
1
- {"version":3,"file":"del.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/del.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAapC;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,OAAO,CA2E1C"}
1
+ {"version":3,"file":"del.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/del.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAcpC;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,OAAO,CAgF1C"}
@@ -18,16 +18,18 @@ import { DeleteFeatureUseCase } from '../../../../../packages/core/src/applicati
18
18
  import { ShowFeatureUseCase } from '../../../../../packages/core/src/application/use-cases/features/show-feature.use-case.js';
19
19
  import { colors, messages } from '../../ui/index.js';
20
20
  import { confirm } from '@inquirer/prompts';
21
+ import { getCliI18n } from '../../i18n.js';
21
22
  /**
22
23
  * Create the feat del command
23
24
  */
24
25
  export function createDelCommand() {
26
+ const t = getCliI18n().t;
25
27
  return new Command('del')
26
- .description('Delete a feature')
27
- .argument('<id>', 'Feature ID or prefix')
28
- .option('-f, --force', 'Skip confirmation prompt')
29
- .option('--no-cleanup', 'Skip worktree and branch cleanup')
30
- .option('--no-close-pr', 'Keep the pull request open')
28
+ .description(t('cli:commands.feat.del.description'))
29
+ .argument('<id>', t('cli:commands.feat.del.idArgument'))
30
+ .option('-f, --force', t('cli:commands.feat.del.forceOption'))
31
+ .option('--no-cleanup', t('cli:commands.feat.del.noCleanupOption'))
32
+ .option('--no-close-pr', t('cli:commands.feat.del.noClosePrOption'))
31
33
  .action(async (featureId, options) => {
32
34
  try {
33
35
  // First show what we're about to delete
@@ -35,11 +37,11 @@ export function createDelCommand() {
35
37
  const feature = await showUseCase.execute(featureId);
36
38
  if (!options.force) {
37
39
  const confirmed = await confirm({
38
- message: `Delete feature "${feature.name}"?`,
40
+ message: t('cli:commands.feat.del.confirmDelete', { name: feature.name }),
39
41
  default: false,
40
42
  });
41
43
  if (!confirmed) {
42
- messages.info('Cancelled');
44
+ messages.info(t('cli:commands.feat.del.cancelled'));
43
45
  return;
44
46
  }
45
47
  }
@@ -50,7 +52,7 @@ export function createDelCommand() {
50
52
  }
51
53
  else if (!options.force) {
52
54
  cleanup = await confirm({
53
- message: 'Also clean up worktree and branches?',
55
+ message: t('cli:commands.feat.del.confirmCleanup'),
54
56
  default: true,
55
57
  });
56
58
  }
@@ -66,7 +68,7 @@ export function createDelCommand() {
66
68
  }
67
69
  else {
68
70
  closePr = await confirm({
69
- message: `Also close the pull request? (PR #${feature.pr.number})`,
71
+ message: t('cli:commands.feat.del.confirmClosePr', { number: feature.pr.number }),
70
72
  default: true,
71
73
  });
72
74
  }
@@ -78,20 +80,20 @@ export function createDelCommand() {
78
80
  }
79
81
  await deleteUseCase.execute(feature.id, executeOptions);
80
82
  messages.newline();
81
- messages.success('Feature deleted');
82
- console.log(` ${colors.muted('Name:')} ${feature.name}`);
83
- console.log(` ${colors.muted('Branch:')} ${feature.branch}`);
83
+ messages.success(t('cli:commands.feat.del.featureDeleted'));
84
+ console.log(` ${colors.muted(t('cli:commands.feat.del.nameLabel'))} ${feature.name}`);
85
+ console.log(` ${colors.muted(t('cli:commands.feat.del.branchLabel'))} ${feature.branch}`);
84
86
  if (cleanup) {
85
- console.log(` ${colors.muted('Cleanup:')} worktree, local branch, remote branch`);
87
+ console.log(` ${colors.muted(t('cli:commands.feat.del.cleanupLabel'))} ${t('cli:commands.feat.del.cleanupDetail')}`);
86
88
  }
87
89
  if (closePr && hasOpenPr) {
88
- console.log(` ${colors.muted('PR:')} #${feature.pr.number} closed`);
90
+ console.log(` ${colors.muted(t('cli:commands.feat.del.prLabel'))} ${t('cli:commands.feat.del.prClosed', { number: feature.pr.number })}`);
89
91
  }
90
92
  messages.newline();
91
93
  }
92
94
  catch (error) {
93
95
  const err = error instanceof Error ? error : new Error(String(error));
94
- messages.error('Failed to delete feature', err);
96
+ messages.error(t('cli:commands.feat.del.failedToDelete'), err);
95
97
  process.exitCode = 1;
96
98
  }
97
99
  });
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAepC;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CAgB3C"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAgBpC;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,OAAO,CAgB3C"}
@@ -10,6 +10,7 @@
10
10
  * shep feat del <id> # Delete a feature
11
11
  */
12
12
  import { Command } from 'commander';
13
+ import { getCliI18n } from '../../i18n.js';
13
14
  import { createNewCommand } from './new.command.js';
14
15
  import { createLsCommand } from './ls.command.js';
15
16
  import { createShowCommand } from './show.command.js';
@@ -28,7 +29,7 @@ import { createUnarchiveCommand } from './unarchive.command.js';
28
29
  */
29
30
  export function createFeatCommand() {
30
31
  return new Command('feat')
31
- .description('Manage features through the SDLC lifecycle')
32
+ .description(getCliI18n().t('cli:commands.feat.description'))
32
33
  .addCommand(createNewCommand())
33
34
  .addCommand(createLsCommand())
34
35
  .addCommand(createShowCommand())
@@ -1 +1 @@
1
- {"version":3,"file":"logs.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/logs.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAQpC,wBAAgB,iBAAiB,IAAI,OAAO,CAkC3C"}
1
+ {"version":3,"file":"logs.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/logs.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AASpC,wBAAgB,iBAAiB,IAAI,OAAO,CAmC3C"}
@@ -17,18 +17,20 @@ import { container } from '../../../../../packages/core/src/infrastructure/di/co
17
17
  import { ShowFeatureUseCase } from '../../../../../packages/core/src/application/use-cases/features/show-feature.use-case.js';
18
18
  import { messages } from '../../ui/index.js';
19
19
  import { viewLog } from '../log-viewer.js';
20
+ import { getCliI18n } from '../../i18n.js';
20
21
  export function createLogsCommand() {
22
+ const t = getCliI18n().t;
21
23
  return new Command('logs')
22
- .description('View feature agent logs')
23
- .argument('<id>', 'Feature ID (or prefix)')
24
- .option('-f, --follow', 'Follow log output (like tail -f)')
25
- .option('-n, --lines <count>', 'Number of lines to show from the end', '0')
24
+ .description(t('cli:commands.feat.logs.description'))
25
+ .argument('<id>', t('cli:commands.feat.logs.idArgument'))
26
+ .option('-f, --follow', t('cli:commands.feat.logs.followOption'))
27
+ .option('-n, --lines <count>', t('cli:commands.feat.logs.linesOption'), '0')
26
28
  .action(async (id, opts) => {
27
29
  try {
28
30
  const useCase = container.resolve(ShowFeatureUseCase);
29
31
  const feature = await useCase.execute(id);
30
32
  if (!feature.agentRunId) {
31
- messages.error(`Feature "${feature.name}" has no agent run`);
33
+ messages.error(t('cli:commands.feat.logs.noAgentRun', { name: feature.name }));
32
34
  process.exitCode = 1;
33
35
  return;
34
36
  }
@@ -45,7 +47,7 @@ export function createLogsCommand() {
45
47
  }
46
48
  catch (error) {
47
49
  const err = error instanceof Error ? error : new Error(String(error));
48
- messages.error('Failed to read feature logs', err);
50
+ messages.error(t('cli:commands.feat.logs.failedToRead'), err);
49
51
  process.exitCode = 1;
50
52
  }
51
53
  });
@@ -1 +1 @@
1
- {"version":3,"file":"ls.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/ls.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAMpC,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAyJ/F,8EAA8E;AAC9E,wBAAgB,WAAW,CAAC,GAAG,EAAE,OAAO,GAAG,MAAM,CAOhD;AAiBD,UAAU,KAAK;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,QAAQ,GAAG,IAAI,CAAC;IACrB,MAAM,EAAE,WAAW,EAAE,CAAC;CACvB;AAED,UAAU,QAAQ;IAChB,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,EAAE,QAAQ,EAAE,CAAC;CACtB;AAED,UAAU,SAAS;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,QAAQ,EAAE,CAAC;CACnB;AAED,UAAU,OAAO;IACf,KAAK,EAAE,KAAK,CAAC;IACb,YAAY,EAAE,OAAO,EAAE,CAAC;IACxB,MAAM,EAAE,OAAO,CAAC;CACjB;AAED;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,KAAK,EAAE,GAAG,QAAQ,EAAE,CAgCtD;AAED;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,UAAU,EAAE,GAAG,SAAS,EAAE,CA8B9E;AAED,kEAAkE;AAClE,wBAAgB,WAAW,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAO,EAAE,GAAG,OAAO,EAAE,CAWjF;AAED,sEAAsE;AACtE,wBAAgB,eAAe,CAAC,YAAY,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,GAAG,MAAM,CAOhF;AAQD,yDAAyD;AACzD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAazE;AAeD,wBAAgB,eAAe,IAAI,OAAO,CAiFzC"}
1
+ {"version":3,"file":"ls.command.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/cli/commands/feat/ls.command.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAMpC,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AA0J/F,8EAA8E;AAC9E,wBAAgB,WAAW,CAAC,GAAG,EAAE,OAAO,GAAG,MAAM,CAOhD;AAiBD,UAAU,KAAK;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,QAAQ,GAAG,IAAI,CAAC;IACrB,MAAM,EAAE,WAAW,EAAE,CAAC;CACvB;AAED,UAAU,QAAQ;IAChB,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,EAAE,QAAQ,EAAE,CAAC;CACtB;AAED,UAAU,SAAS;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,QAAQ,EAAE,CAAC;CACnB;AAED,UAAU,OAAO;IACf,KAAK,EAAE,KAAK,CAAC;IACb,YAAY,EAAE,OAAO,EAAE,CAAC;IACxB,MAAM,EAAE,OAAO,CAAC;CACjB;AAED;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,KAAK,EAAE,GAAG,QAAQ,EAAE,CAgCtD;AAED;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,UAAU,EAAE,GAAG,SAAS,EAAE,CA8B9E;AAED,kEAAkE;AAClE,wBAAgB,WAAW,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAO,EAAE,GAAG,OAAO,EAAE,CAWjF;AAED,sEAAsE;AACtE,wBAAgB,eAAe,CAAC,YAAY,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,OAAO,GAAG,MAAM,CAOhF;AAQD,yDAAyD;AACzD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,CAazE;AAeD,wBAAgB,eAAe,IAAI,OAAO,CAoFzC"}
@@ -15,6 +15,7 @@ import { Command } from 'commander';
15
15
  import { container } from '../../../../../packages/core/src/infrastructure/di/container.js';
16
16
  import { ListFeaturesUseCase } from '../../../../../packages/core/src/application/use-cases/features/list-features.use-case.js';
17
17
  import { colors, symbols, messages, fmt } from '../../ui/index.js';
18
+ import { getCliI18n } from '../../i18n.js';
18
19
  /** Map graph node names to human-readable phase labels (active). */
19
20
  const NODE_TO_PHASE = {
20
21
  analyze: 'Analyzing',
@@ -292,11 +293,12 @@ function countFeatures(groups) {
292
293
  return count;
293
294
  }
294
295
  export function createLsCommand() {
296
+ const t = getCliI18n().t;
295
297
  return new Command('ls')
296
- .description('List features')
297
- .option('-r, --repo <path>', 'Filter by repository path')
298
- .option('--include-deleted', 'Include soft-deleted features')
299
- .option('--show-archived', 'Include archived features')
298
+ .description(t('cli:commands.feat.ls.description'))
299
+ .option('-r, --repo <path>', t('cli:commands.feat.ls.repoOption'))
300
+ .option('--include-deleted', t('cli:commands.feat.ls.includeDeletedOption'))
301
+ .option('--show-archived', t('cli:commands.feat.ls.showArchivedOption'))
300
302
  .action(async (options) => {
301
303
  try {
302
304
  const useCase = container.resolve(ListFeaturesUseCase);
@@ -324,20 +326,20 @@ export function createLsCommand() {
324
326
  const total = countFeatures(groups);
325
327
  if (total === 0) {
326
328
  messages.newline();
327
- messages.info('No features found');
329
+ messages.info(t('cli:commands.feat.ls.noFeatures'));
328
330
  messages.newline();
329
331
  return;
330
332
  }
331
333
  const lines = [];
332
334
  lines.push('');
333
- lines.push(` ${fmt.heading(`Features (${total})`)}`);
335
+ lines.push(` ${fmt.heading(t('cli:commands.feat.ls.featuresHeading', { count: String(total) }))}`);
334
336
  lines.push('');
335
337
  // Column headers
336
- const h1 = colors.muted('NAME'.padEnd(FIRST_COL_WIDTH));
337
- const h2 = colors.muted('STATUS'.padEnd(STATUS_WIDTH));
338
- const h3 = colors.muted('R P M ↑'.padEnd(GATES_WIDTH));
339
- const h4 = colors.muted('ELAPSED'.padEnd(ELAPSED_WIDTH));
340
- const h5 = colors.muted('DONE');
338
+ const h1 = colors.muted(t('cli:commands.feat.ls.nameHeader').padEnd(FIRST_COL_WIDTH));
339
+ const h2 = colors.muted(t('cli:commands.feat.ls.statusHeader').padEnd(STATUS_WIDTH));
340
+ const h3 = colors.muted(t('cli:commands.feat.ls.gatesHeader').padEnd(GATES_WIDTH));
341
+ const h4 = colors.muted(t('cli:commands.feat.ls.elapsedHeader').padEnd(ELAPSED_WIDTH));
342
+ const h5 = colors.muted(t('cli:commands.feat.ls.doneHeader'));
341
343
  lines.push(` ${h1} ${h2} ${h3} ${h4} ${h5}`);
342
344
  for (const group of groups) {
343
345
  lines.push('');
@@ -353,7 +355,7 @@ export function createLsCommand() {
353
355
  }
354
356
  catch (error) {
355
357
  const err = error instanceof Error ? error : new Error(String(error));
356
- messages.error('Failed to list features', err);
358
+ messages.error(t('cli:commands.feat.ls.failedToList'), err);
357
359
  process.exitCode = 1;
358
360
  }
359
361
  });