@shepai/cli 1.156.0 → 1.157.0-pr498.211219f

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 (634) hide show
  1. package/README.md +253 -142
  2. package/apis/json-schema/Language.yaml +13 -0
  3. package/apis/json-schema/UserProfile.yaml +3 -0
  4. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
  5. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +5 -0
  6. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.d.ts.map +1 -1
  7. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +7 -0
  8. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
  9. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +11 -1
  10. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
  11. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +3 -0
  12. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
  13. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +5 -0
  14. package/dist/packages/core/src/domain/generated/output.d.ts +14 -0
  15. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  16. package/dist/packages/core/src/domain/generated/output.js +11 -0
  17. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -0
  18. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  19. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +4 -2
  20. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.d.ts +14 -0
  21. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.d.ts.map +1 -0
  22. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/049-add-language-preference.js +19 -0
  23. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  24. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -2
  25. package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts +1 -1
  26. package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts.map +1 -1
  27. package/dist/packages/core/src/infrastructure/services/git/pr-branding.js +1 -1
  28. package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.d.ts.map +1 -1
  29. package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.js +3 -1
  30. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/claude-code.json +3 -4
  31. package/dist/src/presentation/cli/commands/_serve.command.d.ts.map +1 -1
  32. package/dist/src/presentation/cli/commands/_serve.command.js +5 -3
  33. package/dist/src/presentation/cli/commands/agent/approve.command.d.ts.map +1 -1
  34. package/dist/src/presentation/cli/commands/agent/approve.command.js +9 -4
  35. package/dist/src/presentation/cli/commands/agent/delete.command.d.ts.map +1 -1
  36. package/dist/src/presentation/cli/commands/agent/delete.command.js +9 -5
  37. package/dist/src/presentation/cli/commands/agent/index.d.ts.map +1 -1
  38. package/dist/src/presentation/cli/commands/agent/index.js +3 -1
  39. package/dist/src/presentation/cli/commands/agent/logs.command.d.ts.map +1 -1
  40. package/dist/src/presentation/cli/commands/agent/logs.command.js +7 -5
  41. package/dist/src/presentation/cli/commands/agent/ls.command.d.ts.map +1 -1
  42. package/dist/src/presentation/cli/commands/agent/ls.command.js +12 -10
  43. package/dist/src/presentation/cli/commands/agent/reject.command.d.ts.map +1 -1
  44. package/dist/src/presentation/cli/commands/agent/reject.command.js +10 -5
  45. package/dist/src/presentation/cli/commands/agent/resolve-run.d.ts.map +1 -1
  46. package/dist/src/presentation/cli/commands/agent/resolve-run.js +7 -2
  47. package/dist/src/presentation/cli/commands/agent/show.command.d.ts.map +1 -1
  48. package/dist/src/presentation/cli/commands/agent/show.command.js +8 -6
  49. package/dist/src/presentation/cli/commands/agent/stop.command.d.ts.map +1 -1
  50. package/dist/src/presentation/cli/commands/agent/stop.command.js +9 -4
  51. package/dist/src/presentation/cli/commands/daemon/start-daemon.d.ts.map +1 -1
  52. package/dist/src/presentation/cli/commands/daemon/start-daemon.js +10 -8
  53. package/dist/src/presentation/cli/commands/daemon/stop-daemon.d.ts.map +1 -1
  54. package/dist/src/presentation/cli/commands/daemon/stop-daemon.js +5 -3
  55. package/dist/src/presentation/cli/commands/feat/adopt.command.d.ts.map +1 -1
  56. package/dist/src/presentation/cli/commands/feat/adopt.command.js +14 -12
  57. package/dist/src/presentation/cli/commands/feat/approve.command.d.ts.map +1 -1
  58. package/dist/src/presentation/cli/commands/feat/approve.command.js +8 -6
  59. package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +1 -1
  60. package/dist/src/presentation/cli/commands/feat/archive.command.js +10 -8
  61. package/dist/src/presentation/cli/commands/feat/del.command.d.ts.map +1 -1
  62. package/dist/src/presentation/cli/commands/feat/del.command.js +17 -15
  63. package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
  64. package/dist/src/presentation/cli/commands/feat/index.js +2 -1
  65. package/dist/src/presentation/cli/commands/feat/logs.command.d.ts.map +1 -1
  66. package/dist/src/presentation/cli/commands/feat/logs.command.js +8 -6
  67. package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
  68. package/dist/src/presentation/cli/commands/feat/ls.command.js +14 -12
  69. package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
  70. package/dist/src/presentation/cli/commands/feat/new.command.js +43 -37
  71. package/dist/src/presentation/cli/commands/feat/reject.command.d.ts.map +1 -1
  72. package/dist/src/presentation/cli/commands/feat/reject.command.js +11 -9
  73. package/dist/src/presentation/cli/commands/feat/resolve-waiting-feature.d.ts.map +1 -1
  74. package/dist/src/presentation/cli/commands/feat/resolve-waiting-feature.js +12 -5
  75. package/dist/src/presentation/cli/commands/feat/resume.command.d.ts.map +1 -1
  76. package/dist/src/presentation/cli/commands/feat/resume.command.js +8 -6
  77. package/dist/src/presentation/cli/commands/feat/review.command.d.ts.map +1 -1
  78. package/dist/src/presentation/cli/commands/feat/review.command.js +17 -15
  79. package/dist/src/presentation/cli/commands/feat/show.command.d.ts.map +1 -1
  80. package/dist/src/presentation/cli/commands/feat/show.command.js +89 -45
  81. package/dist/src/presentation/cli/commands/feat/start.command.d.ts.map +1 -1
  82. package/dist/src/presentation/cli/commands/feat/start.command.js +12 -10
  83. package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +1 -1
  84. package/dist/src/presentation/cli/commands/feat/unarchive.command.js +8 -6
  85. package/dist/src/presentation/cli/commands/ide-open.command.d.ts.map +1 -1
  86. package/dist/src/presentation/cli/commands/ide-open.command.js +10 -5
  87. package/dist/src/presentation/cli/commands/install.command.d.ts.map +1 -1
  88. package/dist/src/presentation/cli/commands/install.command.js +29 -21
  89. package/dist/src/presentation/cli/commands/log-viewer.d.ts.map +1 -1
  90. package/dist/src/presentation/cli/commands/log-viewer.js +6 -3
  91. package/dist/src/presentation/cli/commands/repo/add.command.d.ts.map +1 -1
  92. package/dist/src/presentation/cli/commands/repo/add.command.js +12 -10
  93. package/dist/src/presentation/cli/commands/repo/index.d.ts.map +1 -1
  94. package/dist/src/presentation/cli/commands/repo/index.js +3 -1
  95. package/dist/src/presentation/cli/commands/repo/ls.command.d.ts.map +1 -1
  96. package/dist/src/presentation/cli/commands/repo/ls.command.js +11 -9
  97. package/dist/src/presentation/cli/commands/repo/resolve-repository.d.ts.map +1 -1
  98. package/dist/src/presentation/cli/commands/repo/resolve-repository.js +7 -2
  99. package/dist/src/presentation/cli/commands/repo/show.command.d.ts.map +1 -1
  100. package/dist/src/presentation/cli/commands/repo/show.command.js +21 -10
  101. package/dist/src/presentation/cli/commands/restart.command.d.ts.map +1 -1
  102. package/dist/src/presentation/cli/commands/restart.command.js +6 -4
  103. package/dist/src/presentation/cli/commands/run.command.d.ts.map +1 -1
  104. package/dist/src/presentation/cli/commands/run.command.js +21 -17
  105. package/dist/src/presentation/cli/commands/session/index.d.ts.map +1 -1
  106. package/dist/src/presentation/cli/commands/session/index.js +3 -1
  107. package/dist/src/presentation/cli/commands/session/ls.command.d.ts.map +1 -1
  108. package/dist/src/presentation/cli/commands/session/ls.command.js +11 -9
  109. package/dist/src/presentation/cli/commands/session/show.command.d.ts.map +1 -1
  110. package/dist/src/presentation/cli/commands/session/show.command.js +26 -18
  111. package/dist/src/presentation/cli/commands/settings/agent.command.d.ts.map +1 -1
  112. package/dist/src/presentation/cli/commands/settings/agent.command.js +12 -8
  113. package/dist/src/presentation/cli/commands/settings/ide.command.d.ts.map +1 -1
  114. package/dist/src/presentation/cli/commands/settings/ide.command.js +13 -7
  115. package/dist/src/presentation/cli/commands/settings/index.d.ts +1 -0
  116. package/dist/src/presentation/cli/commands/settings/index.d.ts.map +1 -1
  117. package/dist/src/presentation/cli/commands/settings/index.js +7 -3
  118. package/dist/src/presentation/cli/commands/settings/init.command.d.ts.map +1 -1
  119. package/dist/src/presentation/cli/commands/settings/init.command.js +8 -7
  120. package/dist/src/presentation/cli/commands/settings/language.command.d.ts +14 -0
  121. package/dist/src/presentation/cli/commands/settings/language.command.d.ts.map +1 -0
  122. package/dist/src/presentation/cli/commands/settings/language.command.js +79 -0
  123. package/dist/src/presentation/cli/commands/settings/model.command.d.ts.map +1 -1
  124. package/dist/src/presentation/cli/commands/settings/model.command.js +7 -6
  125. package/dist/src/presentation/cli/commands/settings/show.command.d.ts.map +1 -1
  126. package/dist/src/presentation/cli/commands/settings/show.command.js +4 -3
  127. package/dist/src/presentation/cli/commands/settings/workflow.command.d.ts.map +1 -1
  128. package/dist/src/presentation/cli/commands/settings/workflow.command.js +20 -18
  129. package/dist/src/presentation/cli/commands/start.command.d.ts.map +1 -1
  130. package/dist/src/presentation/cli/commands/start.command.js +5 -3
  131. package/dist/src/presentation/cli/commands/status.command.d.ts.map +1 -1
  132. package/dist/src/presentation/cli/commands/status.command.js +32 -24
  133. package/dist/src/presentation/cli/commands/stop.command.d.ts.map +1 -1
  134. package/dist/src/presentation/cli/commands/stop.command.js +4 -2
  135. package/dist/src/presentation/cli/commands/tools.command.d.ts.map +1 -1
  136. package/dist/src/presentation/cli/commands/tools.command.js +8 -4
  137. package/dist/src/presentation/cli/commands/ui.command.d.ts.map +1 -1
  138. package/dist/src/presentation/cli/commands/ui.command.js +12 -10
  139. package/dist/src/presentation/cli/commands/upgrade.command.d.ts.map +1 -1
  140. package/dist/src/presentation/cli/commands/upgrade.command.js +18 -13
  141. package/dist/src/presentation/cli/commands/version.command.d.ts.map +1 -1
  142. package/dist/src/presentation/cli/commands/version.command.js +5 -3
  143. package/dist/src/presentation/cli/i18n.d.ts +41 -0
  144. package/dist/src/presentation/cli/i18n.d.ts.map +1 -0
  145. package/dist/src/presentation/cli/i18n.js +100 -0
  146. package/dist/src/presentation/cli/index.js +13 -1
  147. package/dist/src/presentation/cli/ui/install-messages.d.ts.map +1 -1
  148. package/dist/src/presentation/cli/ui/install-messages.js +16 -6
  149. package/dist/src/presentation/tui/i18n.d.ts +24 -0
  150. package/dist/src/presentation/tui/i18n.d.ts.map +1 -0
  151. package/dist/src/presentation/tui/i18n.js +48 -0
  152. package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts +13 -31
  153. package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
  154. package/dist/src/presentation/tui/prompts/agent-select.prompt.js +17 -15
  155. package/dist/src/presentation/tui/prompts/auth-method.prompt.d.ts +7 -11
  156. package/dist/src/presentation/tui/prompts/auth-method.prompt.d.ts.map +1 -1
  157. package/dist/src/presentation/tui/prompts/auth-method.prompt.js +7 -5
  158. package/dist/src/presentation/tui/prompts/ide-select.prompt.d.ts.map +1 -1
  159. package/dist/src/presentation/tui/prompts/ide-select.prompt.js +2 -1
  160. package/dist/src/presentation/tui/prompts/prd-review-summary.prompt.d.ts.map +1 -1
  161. package/dist/src/presentation/tui/prompts/prd-review-summary.prompt.js +8 -6
  162. package/dist/src/presentation/tui/wizards/agent-config.wizard.d.ts.map +1 -1
  163. package/dist/src/presentation/tui/wizards/agent-config.wizard.js +2 -1
  164. package/dist/src/presentation/tui/wizards/github-import.wizard.d.ts.map +1 -1
  165. package/dist/src/presentation/tui/wizards/github-import.wizard.js +15 -11
  166. package/dist/src/presentation/tui/wizards/merge-review.wizard.d.ts.map +1 -1
  167. package/dist/src/presentation/tui/wizards/merge-review.wizard.js +10 -8
  168. package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.d.ts.map +1 -1
  169. package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.js +10 -7
  170. package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.d.ts +0 -41
  171. package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.d.ts.map +1 -1
  172. package/dist/src/presentation/tui/wizards/onboarding/steps/workflow-defaults.step.js +15 -15
  173. package/dist/src/presentation/tui/wizards/plan-review.wizard.d.ts.map +1 -1
  174. package/dist/src/presentation/tui/wizards/plan-review.wizard.js +10 -8
  175. package/dist/src/presentation/tui/wizards/prd-review.wizard.d.ts.map +1 -1
  176. package/dist/src/presentation/tui/wizards/prd-review.wizard.js +3 -2
  177. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  178. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +4 -2
  179. package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
  180. package/dist/src/presentation/web/app/actions/create-feature.js +3 -0
  181. package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
  182. package/dist/src/presentation/web/app/layout.js +5 -2
  183. package/dist/src/presentation/web/components/assistant-ui/thread.d.ts.map +1 -1
  184. package/dist/src/presentation/web/components/assistant-ui/thread.js +13 -10
  185. package/dist/src/presentation/web/components/common/add-repository-button/add-repository-button.d.ts.map +1 -1
  186. package/dist/src/presentation/web/components/common/add-repository-button/add-repository-button.js +3 -1
  187. package/dist/src/presentation/web/components/common/attachment-chip/attachment-chip.js +1 -1
  188. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
  189. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +5 -2
  190. package/dist/src/presentation/web/components/common/ci-status-badge/ci-status-badge.js +3 -3
  191. package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.js +4 -4
  192. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
  193. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +7 -1
  194. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +1 -1
  195. package/dist/src/presentation/web/components/common/delete-feature-dialog/delete-feature-dialog.d.ts.map +1 -1
  196. package/dist/src/presentation/web/components/common/delete-feature-dialog/delete-feature-dialog.js +3 -1
  197. package/dist/src/presentation/web/components/common/deployment-status-badge/deployment-status-badge.js +2 -2
  198. package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.d.ts.map +1 -1
  199. package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.js +6 -2
  200. package/dist/src/presentation/web/components/common/empty-state/empty-state.stories.js +2 -2
  201. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
  202. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +34 -22
  203. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.d.ts.map +1 -1
  204. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.js +11 -7
  205. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.stories.js +1 -1
  206. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts.map +1 -1
  207. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.js +3 -1
  208. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
  209. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +4 -2
  210. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.stories.js +2 -2
  211. package/dist/src/presentation/web/components/common/feature-drawer-tabs/log-tab.d.ts.map +1 -1
  212. package/dist/src/presentation/web/components/common/feature-drawer-tabs/log-tab.js +5 -3
  213. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts.map +1 -1
  214. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +9 -5
  215. package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.js +1 -1
  216. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +2 -2
  217. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  218. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +22 -22
  219. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  220. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +49 -36
  221. package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.d.ts.map +1 -1
  222. package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.js +7 -3
  223. package/dist/src/presentation/web/components/common/feature-status-badges/feature-status-badges.d.ts.map +1 -1
  224. package/dist/src/presentation/web/components/common/feature-status-badges/feature-status-badges.js +4 -2
  225. package/dist/src/presentation/web/components/common/feature-status-config.d.ts +2 -1
  226. package/dist/src/presentation/web/components/common/feature-status-config.d.ts.map +1 -1
  227. package/dist/src/presentation/web/components/common/feature-status-config.js +6 -6
  228. package/dist/src/presentation/web/components/common/feature-status-group/feature-status-group.js +1 -1
  229. package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.d.ts.map +1 -1
  230. package/dist/src/presentation/web/components/common/floating-action-button/floating-action-button.js +4 -2
  231. package/dist/src/presentation/web/components/common/github-import-dialog/github-repo-browser.js +1 -1
  232. package/dist/src/presentation/web/components/common/merge-review/diff-view.js +2 -2
  233. package/dist/src/presentation/web/components/common/merge-review/merge-review.js +2 -2
  234. package/dist/src/presentation/web/components/common/merge-review/merge-review.stories.js +1 -1
  235. package/dist/src/presentation/web/components/common/prd-questionnaire/prd-questionnaire.js +3 -3
  236. package/dist/src/presentation/web/components/common/reject-feedback-dialog/reject-feedback-dialog.d.ts.map +1 -1
  237. package/dist/src/presentation/web/components/common/reject-feedback-dialog/reject-feedback-dialog.js +6 -4
  238. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.js +3 -3
  239. package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts +1 -1
  240. package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts.map +1 -1
  241. package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
  242. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +18 -11
  243. package/dist/src/presentation/web/components/common/repository-node/repository-node.stories.js +12 -12
  244. package/dist/src/presentation/web/components/common/server-log-viewer/server-log-viewer.js +1 -1
  245. package/dist/src/presentation/web/components/common/task-progress-view/task-progress-view.d.ts.map +1 -1
  246. package/dist/src/presentation/web/components/common/task-progress-view/task-progress-view.js +7 -4
  247. package/dist/src/presentation/web/components/common/tech-decisions-review/tech-decisions-review.js +2 -2
  248. package/dist/src/presentation/web/components/common/version-badge/version-badge.d.ts.map +1 -1
  249. package/dist/src/presentation/web/components/common/version-badge/version-badge.js +3 -1
  250. package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts.map +1 -1
  251. package/dist/src/presentation/web/components/features/chat/ChatComposer.js +3 -1
  252. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.d.ts.map +1 -1
  253. package/dist/src/presentation/web/components/features/chat/ChatMessageBubble.js +7 -5
  254. package/dist/src/presentation/web/components/features/chat/ChatMessageList.js +1 -1
  255. package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts.map +1 -1
  256. package/dist/src/presentation/web/components/features/chat/ChatSheet.js +5 -3
  257. package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts.map +1 -1
  258. package/dist/src/presentation/web/components/features/chat/ChatTab.js +5 -3
  259. package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
  260. package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +15 -11
  261. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  262. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +14 -6
  263. package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +1 -1
  264. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +2 -2
  265. package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.d.ts.map +1 -1
  266. package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.js +8 -6
  267. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.d.ts.map +1 -1
  268. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.js +3 -1
  269. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  270. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +4 -2
  271. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +6 -6
  272. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +2 -2
  273. package/dist/src/presentation/web/components/features/settings/ModelPicker/index.js +2 -2
  274. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +1 -1
  275. package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts +5 -0
  276. package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts.map +1 -0
  277. package/dist/src/presentation/web/components/features/settings/language-settings-section.js +54 -0
  278. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts +18 -0
  279. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts.map +1 -0
  280. package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.js +36 -0
  281. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  282. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +100 -88
  283. package/dist/src/presentation/web/components/features/settings/timeout-slider.js +1 -1
  284. package/dist/src/presentation/web/components/features/skills/category-filter.js +1 -1
  285. package/dist/src/presentation/web/components/features/skills/skills-page-client.js +1 -1
  286. package/dist/src/presentation/web/components/features/tools/tool-card.js +1 -1
  287. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.js +2 -2
  288. package/dist/src/presentation/web/components/features/version/version-page-client.js +1 -1
  289. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
  290. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +5 -1
  291. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  292. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +13 -7
  293. package/dist/src/presentation/web/components/providers/i18n-provider.d.ts +17 -0
  294. package/dist/src/presentation/web/components/providers/i18n-provider.d.ts.map +1 -0
  295. package/dist/src/presentation/web/components/providers/i18n-provider.js +36 -0
  296. package/dist/src/presentation/web/components/ui/alert-dialog.js +1 -1
  297. package/dist/src/presentation/web/components/ui/alert.js +1 -1
  298. package/dist/src/presentation/web/components/ui/checkbox-group.js +1 -1
  299. package/dist/src/presentation/web/components/ui/command.js +1 -1
  300. package/dist/src/presentation/web/components/ui/dialog.d.ts.map +1 -1
  301. package/dist/src/presentation/web/components/ui/dialog.js +2 -2
  302. package/dist/src/presentation/web/components/ui/dialog.stories.js +1 -1
  303. package/dist/src/presentation/web/components/ui/drawer.d.ts.map +1 -1
  304. package/dist/src/presentation/web/components/ui/drawer.js +2 -8
  305. package/dist/src/presentation/web/components/ui/dropdown-menu.js +6 -6
  306. package/dist/src/presentation/web/components/ui/scroll-area.js +1 -1
  307. package/dist/src/presentation/web/components/ui/select.js +1 -1
  308. package/dist/src/presentation/web/components/ui/sheet.js +3 -3
  309. package/dist/src/presentation/web/components/ui/sidebar.d.ts.map +1 -1
  310. package/dist/src/presentation/web/components/ui/sidebar.js +15 -15
  311. package/dist/src/presentation/web/components/ui/switch.js +1 -1
  312. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  313. package/dist/src/presentation/web/hooks/use-graph-state.js +7 -4
  314. package/dist/src/presentation/web/hooks/use-sound-action.stories.js +1 -1
  315. package/dist/src/presentation/web/lib/i18n.d.ts +15 -0
  316. package/dist/src/presentation/web/lib/i18n.d.ts.map +1 -0
  317. package/dist/src/presentation/web/lib/i18n.js +64 -0
  318. package/dist/src/presentation/web/lib/language.d.ts +23 -0
  319. package/dist/src/presentation/web/lib/language.d.ts.map +1 -0
  320. package/dist/src/presentation/web/lib/language.js +37 -0
  321. package/dist/src/presentation/web/lib/layout-with-dagre.d.ts +2 -0
  322. package/dist/src/presentation/web/lib/layout-with-dagre.d.ts.map +1 -1
  323. package/dist/src/presentation/web/lib/layout-with-dagre.js +4 -0
  324. package/dist/src/presentation/web/lib/rtl-fonts.d.ts +19 -0
  325. package/dist/src/presentation/web/lib/rtl-fonts.d.ts.map +1 -0
  326. package/dist/src/presentation/web/lib/rtl-fonts.js +51 -0
  327. package/dist/translations/ar/cli.json +613 -0
  328. package/dist/translations/ar/common.json +55 -0
  329. package/dist/translations/ar/tui.json +130 -0
  330. package/dist/translations/ar/web.json +594 -0
  331. package/dist/translations/de/cli.json +613 -0
  332. package/dist/translations/de/common.json +55 -0
  333. package/dist/translations/de/tui.json +109 -0
  334. package/dist/translations/de/web.json +580 -0
  335. package/dist/translations/en/cli.json +613 -0
  336. package/dist/translations/en/common.json +55 -0
  337. package/dist/translations/en/tui.json +130 -0
  338. package/dist/translations/en/web.json +594 -0
  339. package/dist/translations/es/cli.json +613 -0
  340. package/dist/translations/es/common.json +55 -0
  341. package/dist/translations/es/tui.json +130 -0
  342. package/dist/translations/es/web.json +594 -0
  343. package/dist/translations/fr/cli.json +613 -0
  344. package/dist/translations/fr/common.json +55 -0
  345. package/dist/translations/fr/tui.json +130 -0
  346. package/dist/translations/fr/web.json +594 -0
  347. package/dist/translations/he/cli.json +613 -0
  348. package/dist/translations/he/common.json +55 -0
  349. package/dist/translations/he/tui.json +130 -0
  350. package/dist/translations/he/web.json +594 -0
  351. package/dist/translations/pt/cli.json +613 -0
  352. package/dist/translations/pt/common.json +55 -0
  353. package/dist/translations/pt/tui.json +130 -0
  354. package/dist/translations/pt/web.json +594 -0
  355. package/dist/translations/ru/cli.json +613 -0
  356. package/dist/translations/ru/common.json +55 -0
  357. package/dist/translations/ru/tui.json +130 -0
  358. package/dist/translations/ru/web.json +594 -0
  359. package/dist/tsconfig.build.tsbuildinfo +1 -1
  360. package/package.json +5 -3
  361. package/web/.next/BUILD_ID +1 -1
  362. package/web/.next/build-manifest.json +2 -2
  363. package/web/.next/fallback-build-manifest.json +2 -2
  364. package/web/.next/prerender-manifest.json +3 -3
  365. package/web/.next/required-server-files.js +7 -7
  366. package/web/.next/required-server-files.json +7 -7
  367. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +28 -28
  368. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +3 -3
  369. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  370. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  371. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +26 -26
  372. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +3 -3
  373. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  374. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  375. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +29 -29
  376. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
  377. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  378. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  379. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
  380. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +4 -4
  381. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  382. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  383. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +36 -36
  384. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +4 -4
  385. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  386. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  387. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +26 -26
  388. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +3 -3
  389. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  390. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  391. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
  392. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +3 -3
  393. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  394. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  395. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +26 -26
  396. package/web/.next/server/app/(dashboard)/chat/page.js +3 -3
  397. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  398. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  399. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +29 -29
  400. package/web/.next/server/app/(dashboard)/create/page.js +3 -3
  401. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  402. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  403. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
  404. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +4 -4
  405. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  406. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  407. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +36 -36
  408. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +4 -4
  409. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  410. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  411. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +26 -26
  412. package/web/.next/server/app/(dashboard)/page.js +3 -3
  413. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  414. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  415. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +26 -26
  416. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +3 -3
  417. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  418. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  419. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
  420. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +3 -3
  421. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  422. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  423. package/web/.next/server/app/_global-error.html +2 -2
  424. package/web/.next/server/app/_global-error.rsc +1 -1
  425. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  426. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  427. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  428. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  429. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  430. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +5 -5
  431. package/web/.next/server/app/_not-found/page.js +2 -2
  432. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  433. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  434. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  435. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  436. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  437. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  438. package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
  439. package/web/.next/server/app/settings/page.js +2 -2
  440. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  441. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  442. package/web/.next/server/app/skills/page/server-reference-manifest.json +10 -10
  443. package/web/.next/server/app/skills/page.js +3 -4
  444. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  445. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  446. package/web/.next/server/app/tools/page/server-reference-manifest.json +10 -10
  447. package/web/.next/server/app/tools/page.js +3 -4
  448. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  449. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  450. package/web/.next/server/app/version/page/server-reference-manifest.json +5 -5
  451. package/web/.next/server/app/version/page.js +2 -2
  452. package/web/.next/server/app/version/page.js.nft.json +1 -1
  453. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  454. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  455. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  456. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  457. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js.map +1 -1
  458. package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +1 -1
  459. package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js.map +1 -1
  460. package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js +1 -1
  461. package/web/.next/server/chunks/[root-of-the-server]__beda892a._.js.map +1 -1
  462. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  463. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  464. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  465. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  466. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +3 -3
  467. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  468. package/web/.next/server/chunks/ssr/[root-of-the-server]__209c9597._.js +4 -0
  469. package/web/.next/server/chunks/ssr/{[root-of-the-server]__88f7e8e6._.js.map → [root-of-the-server]__209c9597._.js.map} +1 -1
  470. package/web/.next/server/chunks/ssr/[root-of-the-server]__27301e38._.js +4 -0
  471. package/web/.next/server/chunks/ssr/{[root-of-the-server]__17ed7ed1._.js.map → [root-of-the-server]__27301e38._.js.map} +1 -1
  472. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  473. package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js +1 -1
  474. package/web/.next/server/chunks/ssr/[root-of-the-server]__56b70465._.js.map +1 -1
  475. package/web/.next/server/chunks/ssr/[root-of-the-server]__6fecf886._.js +4 -0
  476. package/web/.next/server/chunks/ssr/{[root-of-the-server]__42bf1807._.js.map → [root-of-the-server]__6fecf886._.js.map} +1 -1
  477. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js +1 -1
  478. package/web/.next/server/chunks/ssr/[root-of-the-server]__8d27866c._.js +4 -0
  479. package/web/.next/server/chunks/ssr/[root-of-the-server]__8d27866c._.js.map +1 -0
  480. package/web/.next/server/chunks/ssr/[root-of-the-server]__9f3504c7._.js +4 -0
  481. package/web/.next/server/chunks/ssr/{[root-of-the-server]__f80bfc75._.js.map → [root-of-the-server]__9f3504c7._.js.map} +1 -1
  482. package/web/.next/server/chunks/ssr/[root-of-the-server]__bd6ed91a._.js +4 -0
  483. package/web/.next/server/chunks/ssr/[root-of-the-server]__bd6ed91a._.js.map +1 -0
  484. package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js +1 -1
  485. package/web/.next/server/chunks/ssr/[root-of-the-server]__c30f1f82._.js.map +1 -1
  486. package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js +3 -0
  487. package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js.map +1 -0
  488. package/web/.next/server/chunks/ssr/[root-of-the-server]__e91ffd5e._.js +2 -2
  489. package/web/.next/server/chunks/ssr/[root-of-the-server]__e91ffd5e._.js.map +1 -1
  490. package/web/.next/server/chunks/ssr/[root-of-the-server]__f8dd4422._.js +1 -1
  491. package/web/.next/server/chunks/ssr/[root-of-the-server]__f8dd4422._.js.map +1 -1
  492. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  493. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  494. package/web/.next/server/chunks/ssr/_0dc06d07._.js +3 -0
  495. package/web/.next/server/chunks/ssr/_0dc06d07._.js.map +1 -0
  496. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  497. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  498. package/web/.next/server/chunks/ssr/_3a0b989f._.js +2 -2
  499. package/web/.next/server/chunks/ssr/_3a0b989f._.js.map +1 -1
  500. package/web/.next/server/chunks/ssr/{_67104d9e._.js → _3bcda5d7._.js} +2 -2
  501. package/web/.next/server/chunks/ssr/{_67104d9e._.js.map → _3bcda5d7._.js.map} +1 -1
  502. package/web/.next/server/chunks/ssr/_5119a3df._.js +3 -0
  503. package/web/.next/server/chunks/ssr/_5119a3df._.js.map +1 -0
  504. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  505. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  506. package/web/.next/server/chunks/ssr/_5f69c13f._.js +1 -1
  507. package/web/.next/server/chunks/ssr/_5f69c13f._.js.map +1 -1
  508. package/web/.next/server/chunks/ssr/_64e999ac._.js +4 -0
  509. package/web/.next/server/chunks/ssr/_64e999ac._.js.map +1 -0
  510. package/web/.next/server/chunks/ssr/_7c5b97c6._.js +1 -1
  511. package/web/.next/server/chunks/ssr/_7c5b97c6._.js.map +1 -1
  512. package/web/.next/server/chunks/ssr/_82c57f10._.js +1 -1
  513. package/web/.next/server/chunks/ssr/_82c57f10._.js.map +1 -1
  514. package/web/.next/server/chunks/ssr/_8b57edb8._.js +1 -1
  515. package/web/.next/server/chunks/ssr/_8b57edb8._.js.map +1 -1
  516. package/web/.next/server/chunks/ssr/_8d733ce4._.js +1 -1
  517. package/web/.next/server/chunks/ssr/_8d733ce4._.js.map +1 -1
  518. package/web/.next/server/chunks/ssr/_9495d50b._.js +1 -1
  519. package/web/.next/server/chunks/ssr/_9495d50b._.js.map +1 -1
  520. package/web/.next/server/chunks/ssr/_a0e3f7e4._.js +1 -1
  521. package/web/.next/server/chunks/ssr/_a0e3f7e4._.js.map +1 -1
  522. package/web/.next/server/chunks/ssr/_ac4a3873._.js +1 -1
  523. package/web/.next/server/chunks/ssr/_ac4a3873._.js.map +1 -1
  524. package/web/.next/server/chunks/ssr/{_b354e40a._.js → _b538ed78._.js} +2 -2
  525. package/web/.next/server/chunks/ssr/{_b354e40a._.js.map → _b538ed78._.js.map} +1 -1
  526. package/web/.next/server/chunks/ssr/{_507a8382._.js → _b9ba2473._.js} +2 -2
  527. package/web/.next/server/chunks/ssr/_b9ba2473._.js.map +1 -0
  528. package/web/.next/server/chunks/ssr/_bcaea66b._.js +3 -0
  529. package/web/.next/server/chunks/ssr/_bcaea66b._.js.map +1 -0
  530. package/web/.next/server/chunks/ssr/_bcfa8457._.js +9 -0
  531. package/web/.next/server/chunks/ssr/_bcfa8457._.js.map +1 -0
  532. package/web/.next/server/chunks/ssr/{_08dc06df._.js → _c65661cd._.js} +2 -2
  533. package/web/.next/server/chunks/ssr/{_08dc06df._.js.map → _c65661cd._.js.map} +1 -1
  534. package/web/.next/server/chunks/ssr/_ca0aa7f0._.js +1 -1
  535. package/web/.next/server/chunks/ssr/_ca0aa7f0._.js.map +1 -1
  536. package/web/.next/server/chunks/ssr/_cb5a021e._.js +1 -1
  537. package/web/.next/server/chunks/ssr/_cb5a021e._.js.map +1 -1
  538. package/web/.next/server/chunks/ssr/_cfbd1d7e._.js +1 -1
  539. package/web/.next/server/chunks/ssr/_cfbd1d7e._.js.map +1 -1
  540. package/web/.next/server/chunks/ssr/_d86175ae._.js +1 -1
  541. package/web/.next/server/chunks/ssr/_d86175ae._.js.map +1 -1
  542. package/web/.next/server/chunks/ssr/_d8bedf13._.js +1 -1
  543. package/web/.next/server/chunks/ssr/_d8bedf13._.js.map +1 -1
  544. package/web/.next/server/chunks/ssr/_d90b0a06._.js +3 -0
  545. package/web/.next/server/chunks/ssr/_d90b0a06._.js.map +1 -0
  546. package/web/.next/server/chunks/ssr/_fa7efce3._.js +2 -2
  547. package/web/.next/server/chunks/ssr/_fa7efce3._.js.map +1 -1
  548. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  549. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  550. package/web/.next/server/chunks/ssr/node_modules__pnpm_8ec2c790._.js +1 -1
  551. package/web/.next/server/chunks/ssr/node_modules__pnpm_8ec2c790._.js.map +1 -1
  552. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  553. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  554. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  555. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +3 -0
  556. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -0
  557. package/web/.next/server/chunks/ssr/src_presentation_web_components_a5e6c910._.js +1 -1
  558. package/web/.next/server/chunks/ssr/src_presentation_web_components_a5e6c910._.js.map +1 -1
  559. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  560. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  561. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
  562. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js.map +1 -1
  563. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
  564. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
  565. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +3 -0
  566. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -0
  567. package/web/.next/server/pages/500.html +2 -2
  568. package/web/.next/server/server-reference-manifest.js +1 -1
  569. package/web/.next/server/server-reference-manifest.json +45 -45
  570. package/web/.next/static/chunks/00cd442b9cf84237.js +1 -0
  571. package/web/.next/static/chunks/{3e1e0f9bde3530d2.js → 08ff9ace090d2691.js} +1 -1
  572. package/web/.next/static/chunks/{b4cde06eff374c59.js → 0a79dfbb8486b66e.js} +2 -2
  573. package/web/.next/static/chunks/2273b81cd7c7d2af.css +1 -0
  574. package/web/.next/static/chunks/{5064470ab185e453.js → 3da5803ca73cd477.js} +2 -2
  575. package/web/.next/static/chunks/{688971d5bad5dc7c.js → 3deefc76ea55047c.js} +1 -1
  576. package/web/.next/static/chunks/{11091b676d1b3bd4.js → 47477ed4c5871747.js} +1 -1
  577. package/web/.next/static/chunks/4864ff06a738d58b.js +1 -0
  578. package/web/.next/static/chunks/57bab9d5f3035682.js +5 -0
  579. package/web/.next/static/chunks/58e2cd66ee64605d.js +1 -0
  580. package/web/.next/static/chunks/{f98f811478ff3d9e.js → 5d32d2cfb6e43002.js} +1 -1
  581. package/web/.next/static/chunks/{22c459f1877b1e4f.js → 74db65fa7bfb80bd.js} +1 -1
  582. package/web/.next/static/chunks/75979deb4bc83de7.js +1 -0
  583. package/web/.next/static/chunks/7802c90b7b6d11b4.js +1 -0
  584. package/web/.next/static/chunks/{37156b1c0646309f.js → 8f506ab1784f98d1.js} +1 -1
  585. package/web/.next/static/chunks/9061f08ab7e537a8.js +1 -0
  586. package/web/.next/static/chunks/9ebe553c36e2fabe.js +7 -0
  587. package/web/.next/static/chunks/a10261d9b21363a4.js +1 -0
  588. package/web/.next/static/chunks/{baa593a4681fc66e.js → b6fd39a4011ad91c.js} +1 -1
  589. package/web/.next/static/chunks/c9d11e9cabf19e76.js +2 -0
  590. package/web/.next/static/chunks/d2cbeefbc8967b16.js +1 -0
  591. package/web/.next/static/chunks/d5366257d6b9f855.js +1 -0
  592. package/web/.next/static/chunks/{5ae60a052ab5f437.js → d6e702c209c413ce.js} +2 -2
  593. package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js +0 -3
  594. package/web/.next/server/chunks/ssr/[root-of-the-server]__0b150ddf._.js.map +0 -1
  595. package/web/.next/server/chunks/ssr/[root-of-the-server]__17ed7ed1._.js +0 -4
  596. package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js +0 -4
  597. package/web/.next/server/chunks/ssr/[root-of-the-server]__28d0d265._.js.map +0 -1
  598. package/web/.next/server/chunks/ssr/[root-of-the-server]__42bf1807._.js +0 -4
  599. package/web/.next/server/chunks/ssr/[root-of-the-server]__88f7e8e6._.js +0 -4
  600. package/web/.next/server/chunks/ssr/[root-of-the-server]__f80bfc75._.js +0 -4
  601. package/web/.next/server/chunks/ssr/_140901ed._.js +0 -4
  602. package/web/.next/server/chunks/ssr/_140901ed._.js.map +0 -1
  603. package/web/.next/server/chunks/ssr/_4b432739._.js +0 -3
  604. package/web/.next/server/chunks/ssr/_4b432739._.js.map +0 -1
  605. package/web/.next/server/chunks/ssr/_507a8382._.js.map +0 -1
  606. package/web/.next/server/chunks/ssr/_8219712a._.js +0 -3
  607. package/web/.next/server/chunks/ssr/_8219712a._.js.map +0 -1
  608. package/web/.next/server/chunks/ssr/_d4b20e29._.js +0 -3
  609. package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +0 -1
  610. package/web/.next/server/chunks/ssr/_e9a73a63._.js +0 -9
  611. package/web/.next/server/chunks/ssr/_e9a73a63._.js.map +0 -1
  612. package/web/.next/server/chunks/ssr/src_presentation_web_324a47da._.js +0 -3
  613. package/web/.next/server/chunks/ssr/src_presentation_web_324a47da._.js.map +0 -1
  614. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js +0 -3
  615. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_cdc632e3.js.map +0 -1
  616. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js +0 -3
  617. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_39ca0924.js.map +0 -1
  618. package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js +0 -3
  619. package/web/.next/server/chunks/ssr/src_presentation_web_components_357e3eb0._.js.map +0 -1
  620. package/web/.next/static/chunks/0104ee32c0b12767.js +0 -7
  621. package/web/.next/static/chunks/1555e75b3393cfe1.js +0 -1
  622. package/web/.next/static/chunks/4b2c4a5c35ebb70d.js +0 -1
  623. package/web/.next/static/chunks/697bbb4ddfc7aed8.js +0 -1
  624. package/web/.next/static/chunks/8590bd2e69b24b9e.css +0 -1
  625. package/web/.next/static/chunks/88a729f218d9628b.js +0 -5
  626. package/web/.next/static/chunks/88ffe4a8760a3559.js +0 -1
  627. package/web/.next/static/chunks/8ba1c07ef18b15a9.js +0 -1
  628. package/web/.next/static/chunks/92629ccb27a1bdb9.js +0 -2
  629. package/web/.next/static/chunks/ae30b66927c676ff.js +0 -1
  630. package/web/.next/static/chunks/cd54b758f58061d0.js +0 -1
  631. package/web/.next/static/chunks/f5c527d3f8699035.js +0 -1
  632. /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → TZZSVWjYVCLsmKMD3xKZi}/_buildManifest.js +0 -0
  633. /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → TZZSVWjYVCLsmKMD3xKZi}/_clientMiddlewareManifest.json +0 -0
  634. /package/web/.next/static/{N3SkMLMrYUFai4W2zwMGS → TZZSVWjYVCLsmKMD3xKZi}/_ssgManifest.js +0 -0
@@ -0,0 +1,594 @@
1
+ {
2
+ "settings": {
3
+ "title": "الإعدادات",
4
+ "saving": "جارٍ الحفظ...",
5
+ "saved": "تم الحفظ",
6
+ "failedToSave": "فشل حفظ الإعدادات",
7
+ "sections": {
8
+ "language": "اللغة",
9
+ "agent": "الوكيل",
10
+ "environment": "البيئة",
11
+ "workflow": "سير العمل",
12
+ "ci": "CI",
13
+ "timeouts": "المهل الزمنية",
14
+ "notifications": "الإشعارات",
15
+ "flags": "العلامات",
16
+ "chat": "المحادثة",
17
+ "database": "قاعدة البيانات"
18
+ },
19
+ "language": {
20
+ "title": "اللغة",
21
+ "description": "اختر لغة العرض المفضلة",
22
+ "label": "لغة العرض",
23
+ "placeholder": "اختر لغة",
24
+ "failedToSave": "فشل حفظ إعدادات اللغة"
25
+ },
26
+ "agent": {
27
+ "title": "الوكيل المفضل",
28
+ "sectionTitle": "الوكيل",
29
+ "description": "اختر وكيل البرمجة بالذكاء الاصطناعي وطريقة المصادقة",
30
+ "sectionDescription": "وكيل البرمجة بالذكاء الاصطناعي والمصادقة",
31
+ "agentType": "نوع الوكيل",
32
+ "agentAndModel": "الوكيل والنموذج",
33
+ "agentAndModelDescription": "المزود والنموذج لجميع العمليات",
34
+ "authMethod": "طريقة المصادقة",
35
+ "apiToken": "رمز API",
36
+ "apiTokenPlaceholder": "أدخل رمز API الخاص بك",
37
+ "apiTokenHelper": "يتم الحفظ تلقائيًا عند مغادرة الحقل",
38
+ "failedToSave": "فشل حفظ إعدادات الوكيل",
39
+ "hint": "اختر وكيل البرمجة بالذكاء الاصطناعي الذي يشغّل ميزاتك. كل وكيل يدعم نماذج وإمكانيات مختلفة. يتم حل المصادقة تلقائيًا عبر جلستك النشطة.",
40
+ "links": {
41
+ "agentSystem": "نظام الوكيل",
42
+ "addingAgents": "إضافة وكلاء",
43
+ "configurationGuide": "دليل التكوين"
44
+ }
45
+ },
46
+ "environment": {
47
+ "title": "بيئة التطوير والطرفية",
48
+ "sectionTitle": "البيئة",
49
+ "description": "تكوين المحرر الافتراضي والصدفة وتفضيلات الطرفية",
50
+ "sectionDescription": "تفضيلات المحرر والصدفة والطرفية",
51
+ "defaultEditor": "المحرر الافتراضي",
52
+ "defaultEditorDescription": "المحرر الذي يفتح لعمليات الملفات",
53
+ "shellPreference": "تفضيل الصدفة",
54
+ "shell": "الصدفة",
55
+ "shellDescription": "الصدفة الافتراضية للنصوص البرمجية المولّدة",
56
+ "terminalEmulator": "محاكي الطرفية",
57
+ "terminal": "الطرفية",
58
+ "terminalDescription": "محاكي الطرفية لجلسات الصدفة",
59
+ "systemTerminal": "طرفية النظام",
60
+ "failedToSave": "فشل حفظ إعدادات بيئة التطوير والطرفية",
61
+ "hint": "محررك المفضل يفتح الملفات للمراجعة. إعداد الصدفة يتحكم في النصوص البرمجية المولّدة. يتم تشغيل محاكي الطرفية عند فتح جلسات صدفة من واجهة الويب.",
62
+ "links": {
63
+ "configurationGuide": "دليل التكوين"
64
+ }
65
+ },
66
+ "workflow": {
67
+ "title": "سير العمل",
68
+ "description": "تكوين سلوك PR وبوابات الموافقة وإعدادات CI",
69
+ "sectionDescription": "سلوك الأتمتة بعد التنفيذ",
70
+ "subsections": {
71
+ "approve": "الموافقة",
72
+ "evidence": "الأدلة",
73
+ "git": "Git"
74
+ },
75
+ "autoApprovePrd": "الموافقة التلقائية على PRD",
76
+ "autoApprovePrdDescription": "تخطي المراجعة اليدوية للمتطلبات",
77
+ "autoApprovePlan": "الموافقة التلقائية على الخطة",
78
+ "autoApprovePlanDescription": "تخطي المراجعة اليدوية لخطة التنفيذ",
79
+ "autoApproveMerge": "الموافقة التلقائية على الدمج",
80
+ "autoApproveMergeDescription": "الدمج بدون مراجعة يدوية",
81
+ "collectEvidence": "جمع الأدلة",
82
+ "collectEvidenceDescription": "التقاط لقطات الشاشة والمخرجات بعد التنفيذ",
83
+ "addEvidenceToPr": "إضافة الأدلة إلى PR",
84
+ "addEvidenceToPrDescription": "تضمين الأدلة في نص طلب السحب",
85
+ "pushOnComplete": "الدفع عند الاكتمال",
86
+ "pushOnCompleteDescription": "الدفع إلى الخادم البعيد عند انتهاء التنفيذ",
87
+ "openPrOnComplete": "فتح PR عند الاكتمال",
88
+ "openPrOnCompleteDescription": "إنشاء طلب سحب عند الانتهاء",
89
+ "watchCiAfterPush": "مراقبة CI بعد الدفع",
90
+ "watchCiAfterPushDescription": "مراقبة CI والإصلاح التلقائي للأخطاء. قم بالتعطيل لتجنب حدود المعدل.",
91
+ "approvalGates": "بوابات الموافقة",
92
+ "prdAutoApproval": "الموافقة التلقائية على PRD",
93
+ "planAutoApproval": "الموافقة التلقائية على الخطة",
94
+ "mergeAutoApproval": "الموافقة التلقائية على الدمج",
95
+ "ciSettings": "إعدادات CI",
96
+ "ciWatchFixLoop": "دورة مراقبة/إصلاح CI",
97
+ "maxFixAttempts": "الحد الأقصى لمحاولات الإصلاح",
98
+ "watchTimeout": "مهلة المراقبة (بالثواني)",
99
+ "maxLogCharacters": "الحد الأقصى لأحرف السجل",
100
+ "pollInterval": "فترة الاستقصاء (بالثواني)",
101
+ "hideCiStatus": "إخفاء حالة CI",
102
+ "stageTimeouts": "المهل الزمنية للمراحل",
103
+ "failedToSave": "فشل حفظ إعدادات سير العمل",
104
+ "hint": "تحكم في مدى استقلالية كل تشغيل ميزة. الموافقة التلقائية تتخطى التوقف للمراجعة البشرية في كل مرحلة. خيارات الدفع وPR تتحكم فيما يحدث بعد نجاح التنفيذ.",
105
+ "links": {
106
+ "approvalGates": "بوابات الموافقة",
107
+ "pushAndPrFlags": "علامات الدفع وPR"
108
+ }
109
+ },
110
+ "ci": {
111
+ "title": "التكامل المستمر",
112
+ "description": "الحدود والمهل الزمنية لمراقبة CI",
113
+ "maxFixAttempts": "الحد الأقصى لمحاولات الإصلاح",
114
+ "maxFixAttemptsDescription": "إعادة محاولة الوكيل عند فشل CI",
115
+ "watchTimeout": "مهلة المراقبة",
116
+ "watchTimeoutDescription": "أقصى انتظار لاكتمال CI",
117
+ "maxLogSize": "الحد الأقصى لحجم السجل",
118
+ "maxLogSizeDescription": "قص سجلات CI بعد هذا الحد",
119
+ "pollInterval": "فترة الاستقصاء",
120
+ "pollIntervalDescription": "عدد مرات التحقق من GitHub لتحديثات حالة CI",
121
+ "hideCiStatus": "إخفاء حالة CI",
122
+ "hideCiStatusDescription": "إخفاء شارات حالة CI من درج الميزات ومراجعة الدمج",
123
+ "hint": "عند اكتمال ميزة، يمكن للوكيل مراقبة CI والإصلاح التلقائي للأخطاء. هذه الحدود تمنع إعادة المحاولات المفرطة وتتحكم في حجم مخرجات السجل المرسلة للوكيل للتحليل.",
124
+ "links": {
125
+ "cicdPipeline": "خط أنابيب CI/CD",
126
+ "ciSecurityGates": "بوابات أمان CI"
127
+ }
128
+ },
129
+ "stageTimeouts": {
130
+ "title": "المهل الزمنية للمراحل",
131
+ "description": "أقصى وقت تنفيذ لكل مرحلة من مراحل الوكيل",
132
+ "subsections": {
133
+ "featureAgent": "وكيل الميزات",
134
+ "analyzeRepoAgent": "وكيل تحليل المستودع"
135
+ },
136
+ "analyze": "التحليل",
137
+ "analyzeDescription": "مهلة تحليل المستودع",
138
+ "requirements": "المتطلبات",
139
+ "requirementsDescription": "مهلة جمع المتطلبات",
140
+ "research": "البحث",
141
+ "researchDescription": "مهلة البحث التقني",
142
+ "plan": "الخطة",
143
+ "planDescription": "مهلة تخطيط التنفيذ",
144
+ "implement": "التنفيذ",
145
+ "implementDescription": "مهلة تنفيذ الكود",
146
+ "merge": "الدمج",
147
+ "mergeDescription": "مهلة إنشاء PR والدمج",
148
+ "hint": "لكل وكيل مهل زمنية مستقلة وقابلة للتكوين لكل مرحلة. عند تجاوز مرحلة لمهلتها الزمنية، يتم إنهاء الوكيل. المهل الأطول مفيدة للتنفيذات المعقدة. المهلة الافتراضية لوكيل الميزات 30 دقيقة لكل مرحلة. المهلة الافتراضية لوكيل تحليل المستودع 10 دقائق."
149
+ },
150
+ "notifications": {
151
+ "title": "الإشعارات",
152
+ "description": "تكوين قنوات الإشعارات وتفضيلات الأحداث",
153
+ "sectionDescription": "كيف ومتى يتم إشعارك",
154
+ "channels": "القنوات",
155
+ "inApp": "داخل التطبيق",
156
+ "inAppLabel": "داخل التطبيق",
157
+ "inAppDescription": "الإشعارات داخل واجهة Shep",
158
+ "subsections": {
159
+ "agentEvents": "أحداث الوكيل",
160
+ "pullRequestEvents": "أحداث طلب السحب"
161
+ },
162
+ "events": {
163
+ "agentStarted": "بدأ الوكيل",
164
+ "phaseCompleted": "اكتملت المرحلة",
165
+ "waitingApproval": "في انتظار الموافقة",
166
+ "agentCompleted": "اكتمل الوكيل",
167
+ "agentFailed": "فشل الوكيل",
168
+ "mergeReviewReady": "مراجعة الدمج جاهزة",
169
+ "prMerged": "تم دمج PR",
170
+ "prClosed": "تم إغلاق PR",
171
+ "prChecksPassed": "نجحت فحوصات PR",
172
+ "prChecksFailed": "فشلت فحوصات PR",
173
+ "prBlocked": "PR محظور"
174
+ },
175
+ "failedToSave": "فشل حفظ إعدادات الإشعارات",
176
+ "hint": "إشعارات التنبيه داخل التطبيق تبقيك على اطلاع. اضبط أحداث دورة حياة الوكيل التي تُشغّل الإشعارات.",
177
+ "links": {
178
+ "notificationSystem": "نظام الإشعارات"
179
+ }
180
+ },
181
+ "featureFlags": {
182
+ "title": "علامات الميزات",
183
+ "description": "تبديل الميزات التجريبية والتجريبية المبكرة",
184
+ "sectionDescription": "تمكين أو تعطيل الميزات التجريبية",
185
+ "badge": "تجريبي",
186
+ "skills": "المهارات",
187
+ "skillsDescription": "تمكين نظام المهارات لإمكانيات الوكيل",
188
+ "deployments": "النشر",
189
+ "deploymentsDescription": "تمكين سير عمل نشر البيئات",
190
+ "debug": "التصحيح",
191
+ "debugDescription": "عرض لوحات التصحيح والتسجيل المفصل",
192
+ "githubImport": "استيراد GitHub",
193
+ "githubImportDescription": "تمكين استيراد مستودعات GitHub في واجهة الويب",
194
+ "adoptBranch": "تبني فرع",
195
+ "adoptBranchDescription": "استيراد الفروع الموجودة كميزات متتبعة",
196
+ "gitRebaseSync": "إعادة تأسيس ومزامنة Git",
197
+ "gitRebaseSyncDescription": "تمكين عمليات إعادة التأسيس على main ومزامنة main",
198
+ "reactFileManager": "مدير ملفات React",
199
+ "reactFileManagerDescription": "استخدام مدير ملفات React المدمج بدلاً من منتقي مجلدات نظام التشغيل الأصلي",
200
+ "hint": "ميزات تجريبية لا تزال قيد التطوير. قم بتمكينها على مسؤوليتك — قد تتغير أو تُزال في الإصدارات المستقبلية. وضع التصحيح يضيف تسجيلًا مفصلاً مفيدًا لاستكشاف الأخطاء."
201
+ },
202
+ "interactiveAgent": {
203
+ "title": "الوكيل التفاعلي",
204
+ "description": "إعدادات علامة المحادثة لجلسات الوكيل التفاعلية لكل ميزة",
205
+ "enableChatTab": "تمكين علامة المحادثة",
206
+ "enableChatTabDescription": "عرض علامة المحادثة في جميع صفحات تفاصيل الميزات",
207
+ "autoTimeout": "المهلة التلقائية",
208
+ "autoTimeoutDescription": "دقائق عدم النشاط قبل إيقاف الوكيل تلقائيًا (1–120)",
209
+ "maxConcurrentSessions": "الحد الأقصى للجلسات المتزامنة",
210
+ "maxConcurrentSessionsDescription": "الحد الأقصى لعدد جلسات الوكيل التفاعلية النشطة في وقت واحد (1–10)",
211
+ "hint": "علامة المحادثة تُنشئ عملية وكيل مستمرة لكل ميزة. المهلة التلقائية تُوقف الجلسات الخاملة تلقائيًا لتوفير الموارد. حد الجلسات المتزامنة يمنع الاستخدام المفرط للموارد على أجهزة المطورين."
212
+ },
213
+ "database": {
214
+ "title": "قاعدة البيانات",
215
+ "description": "مسار قاعدة البيانات وإدارتها",
216
+ "sectionDescription": "معلومات التخزين المحلي",
217
+ "location": "الموقع",
218
+ "locationDescription": "مسار قاعدة بيانات SQLite المحلية",
219
+ "size": "الحجم",
220
+ "hint": "جميع الإعدادات مخزنة في قاعدة بيانات SQLite محلية في ~/.shep/data. تستخدم قاعدة البيانات نمط سجل مفرد مع ترحيلات تلقائية عند البدء.",
221
+ "links": {
222
+ "settingsService": "خدمة الإعدادات",
223
+ "settingsSpec": "مواصفات الإعدادات"
224
+ }
225
+ }
226
+ },
227
+ "navigation": {
228
+ "controlCenter": "مركز التحكم",
229
+ "dashboard": "لوحة المعلومات",
230
+ "features": "الميزات",
231
+ "repositories": "المستودعات",
232
+ "settings": "الإعدادات",
233
+ "sessions": "الجلسات",
234
+ "tools": "الأدوات",
235
+ "skills": "المهارات"
236
+ },
237
+ "sidebar": {
238
+ "features": "الميزات",
239
+ "switchToLight": "الوضع الفاتح",
240
+ "switchToDark": "الوضع الداكن",
241
+ "muteSounds": "كتم الأصوات",
242
+ "unmuteSounds": "تشغيل الأصوات",
243
+ "statusActionNeeded": "إجراء مطلوب",
244
+ "statusInProgress": "قيد التنفيذ",
245
+ "statusPending": "قيد الانتظار",
246
+ "statusBlocked": "محظور",
247
+ "statusError": "خطأ",
248
+ "statusDone": "مكتمل"
249
+ },
250
+ "deleteFeature": {
251
+ "title": "حذف الميزة؟",
252
+ "description": "سيتم حذف <strong>{{featureName}}</strong> ({{featureId}}) نهائيًا. لا يمكن التراجع عن هذا الإجراء.",
253
+ "cleanupLabel": "تنظيف شجرة العمل والفروع",
254
+ "deleteSubFeatures": "حذف الميزات الفرعية",
255
+ "closePullRequest": "إغلاق طلب السحب",
256
+ "cancel": "إلغاء",
257
+ "deleting": "جارٍ الحذف\u2026",
258
+ "delete": "حذف"
259
+ },
260
+ "rejectFeedback": {
261
+ "defaultTitle": "رفض المتطلبات",
262
+ "defaultDescription": "قدّم ملاحظات ليعالجها الوكيل في التكرار التالي. الملاحظات مطلوبة.",
263
+ "ariaLabel": "ملاحظات الرفض",
264
+ "placeholder": "صِف ما يحتاج إلى تغيير...",
265
+ "cancel": "إلغاء",
266
+ "rejecting": "جارٍ الرفض\u2026",
267
+ "confirmReject": "تأكيد الرفض"
268
+ },
269
+ "emptyState": {
270
+ "addProject": "إضافة مشروع",
271
+ "addProjectDescription": "أضف مجلد مشروعك لفتح إمكانية إنشاء الميزات.",
272
+ "addProjectDescriptionLine2": "صِف ما تحتاجه \u2014 Shep يتولى الباقي.",
273
+ "checkingSetup": "جارٍ التحقق من الإعداد\u2026",
274
+ "ready": "{{label}} جاهز",
275
+ "notInstalled": "{{label}} غير مثبت",
276
+ "reCheck": "إعادة التحقق",
277
+ "needsAuth": "{{label}} يحتاج إلى مصادقة",
278
+ "open": "فتح {{label}}",
279
+ "checking": "جارٍ التحقق من {{label}}\u2026",
280
+ "notFound": "{{label}} غير موجود",
281
+ "docs": "التوثيق",
282
+ "opening": "جارٍ الفتح\u2026",
283
+ "chooseFolder": "اختر مجلدًا",
284
+ "folderHint": "أي مجلد يعمل — سيتم تهيئة git تلقائيًا إذا لزم الأمر.",
285
+ "orUseCli": "أو استخدم CLI",
286
+ "copyCommands": "نسخ الأوامر",
287
+ "git": "Git",
288
+ "gitRequired": "مطلوب لجميع المراحل",
289
+ "githubCli": "GitHub CLI",
290
+ "githubCliRequired": "مطلوب لطلبات السحب"
291
+ },
292
+ "welcome": {
293
+ "loadingAgents": "جارٍ تحميل الوكلاء\u2026",
294
+ "chooseAgent": "اختر وكيلك",
295
+ "pickModel": "اختر نموذجًا",
296
+ "selectAgentSubtitle": "اختر وكيل البرمجة بالذكاء الاصطناعي الذي تريد أن يستخدمه Shep.",
297
+ "chooseModelSubtitle": "اختر نموذج {{label}} المراد تشغيله.",
298
+ "ghCliNotice": "<0>GitHub CLI (gh)</0> مطلوب لإمكانيات الإصلاح الذاتي الكاملة لـ CI/CD. <1>قم بتثبيته من هنا</1>.",
299
+ "ghCliRequired": "GitHub CLI (gh)",
300
+ "ghCliRequiredText": "مطلوب لإمكانيات الإصلاح الذاتي الكاملة لـ CI/CD.",
301
+ "installHere": "قم بتثبيته من هنا",
302
+ "back": "رجوع"
303
+ },
304
+ "canvas": {
305
+ "noFeatures": "لا توجد ميزات بعد",
306
+ "noFeaturesDescription": "ابدأ بإنشاء أول ميزة لك.",
307
+ "newFeature": "ميزة جديدة",
308
+ "hideArchived": "إخفاء المؤرشف",
309
+ "showArchived": "إظهار المؤرشف",
310
+ "hideArchivedLabel": "إخفاء المؤرشف",
311
+ "showArchivedLabel": "إظهار المؤرشف",
312
+ "zoomOut": "تصغير",
313
+ "zoomIn": "تكبير",
314
+ "fitView": "ملاءمة العرض",
315
+ "resetView": "إعادة تعيين العرض"
316
+ },
317
+ "common": {
318
+ "noData": "لا توجد بيانات متاحة",
319
+ "retry": "إعادة المحاولة",
320
+ "saving": "جارٍ الحفظ...",
321
+ "saved": "تم الحفظ",
322
+ "decrease": "تقليل",
323
+ "increase": "زيادة",
324
+ "cancel": "إلغاء"
325
+ },
326
+ "featureNode": {
327
+ "archiveFeature": "أرشفة الميزة",
328
+ "deleteFeature": "حذف الميزة",
329
+ "unarchiveFeature": "إلغاء أرشفة الميزة",
330
+ "archiveConfirmTitle": "أرشفة الميزة؟",
331
+ "archiveConfirmDescription": "<strong>{{name}}</strong> ستُخفى من اللوحة. يمكنك إلغاء أرشفتها لاحقاً.",
332
+ "cancel": "إلغاء",
333
+ "archive": "أرشفة",
334
+ "fastMode": "الوضع السريع",
335
+ "specDriven": "مبني على المواصفات",
336
+ "copied": "تم النسخ!",
337
+ "chatWithAgent": "محادثة مع الوكيل",
338
+ "stopDevServer": "إيقاف الخادم",
339
+ "startDevServer": "تشغيل الخادم",
340
+ "retryDevServer": "إعادة تشغيل الخادم",
341
+ "starting": "جارٍ التشغيل\u2026",
342
+ "retry": "إعادة المحاولة",
343
+ "start": "تشغيل",
344
+ "failed": "فشل",
345
+ "deleting": "جارٍ الحذف\u2026",
346
+ "addFeature": "إضافة ميزة",
347
+ "reviewRequirements": "مراجعة المتطلبات",
348
+ "reviewTechnicalPlan": "مراجعة الخطة التقنية",
349
+ "reviewChanges": "مراجعة التغييرات",
350
+ "review": "مراجعة",
351
+ "creating": "جارٍ الإنشاء...",
352
+ "completedIn": "اكتمل في {{runtime}}",
353
+ "completed": "مكتمل",
354
+ "waitingOn": "بانتظار {{blockedBy}}",
355
+ "blocked": "محظور",
356
+ "pending": "قيد الانتظار",
357
+ "somethingWentWrong": "حدث خطأ ما",
358
+ "openChat": "فتح المحادثة",
359
+ "viewSessions": "عرض الجلسات",
360
+ "sessionsActive": "الجلسات (نشطة)",
361
+ "sessions": "الجلسات",
362
+ "agentSessions": "جلسات الوكيل",
363
+ "noSessionsFound": "لم يتم العثور على جلسات",
364
+ "showLess": "عرض أقل",
365
+ "showMore": "عرض {{count}} إضافية"
366
+ },
367
+ "repositoryNode": {
368
+ "removeRepository": "إزالة المستودع",
369
+ "removeConfirmTitle": "إزالة المستودع؟",
370
+ "removeConfirmDescription": "سيؤدي هذا إلى إزالة <strong>{{name}}</strong> وجميع ميزاته من مساحة العمل. لن تتأثر الملفات على القرص.",
371
+ "cancel": "إلغاء",
372
+ "remove": "إزالة",
373
+ "openInIde": "فتح في IDE",
374
+ "openInShell": "فتح في الطرفية",
375
+ "openFolder": "فتح المجلد",
376
+ "chatWithAgent": "محادثة مع الوكيل",
377
+ "newFeature": "ميزة جديدة",
378
+ "new": "جديد",
379
+ "behind": "{{count}} متأخر",
380
+ "notAGitRepository": "ليس مستودع git",
381
+ "starting": "جارٍ التشغيل...",
382
+ "run": "تشغيل",
383
+ "startLocalEnvironment": "تشغيل البيئة المحلية",
384
+ "stopDevServer": "إيقاف الخادم",
385
+ "startDevServer": "تشغيل الخادم",
386
+ "retry": "إعادة المحاولة"
387
+ },
388
+ "fab": {
389
+ "closeActions": "إغلاق الإجراءات",
390
+ "createNew": "إنشاء جديد",
391
+ "newFeature": "ميزة جديدة",
392
+ "localFolder": "مجلد محلي",
393
+ "adoptBranch": "تبني فرع",
394
+ "fromGithub": "من GitHub"
395
+ },
396
+ "chat": {
397
+ "shepChat": "محادثة Shep",
398
+ "writeMessage": "اكتب رسالة...",
399
+ "attachFiles": "إرفاق ملفات",
400
+ "forceStopAgent": "إيقاف الوكيل إجبارياً",
401
+ "stop": "إيقاف",
402
+ "clearChatHistory": "مسح سجل المحادثة",
403
+ "clear": "مسح",
404
+ "noSession": "لا توجد جلسة",
405
+ "yourMessage": "رسالتك",
406
+ "agentMessage": "رسالة الوكيل",
407
+ "agentIsTyping": "الوكيل يكتب",
408
+ "showMore": "عرض المزيد",
409
+ "showLess": "عرض أقل",
410
+ "code": "الكود",
411
+ "preview": "معاينة",
412
+ "openFullscreen": "فتح ملء الشاشة",
413
+ "htmlPreview": "معاينة HTML",
414
+ "htmlPreviewFullscreen": "معاينة HTML ملء الشاشة"
415
+ },
416
+ "createDrawer": {
417
+ "title": "ميزة جديدة",
418
+ "creating": "جارٍ الإنشاء...",
419
+ "cancel": "إلغاء",
420
+ "createFeature": "+ إنشاء ميزة",
421
+ "repository": "المستودع",
422
+ "describeFeature": "صِف ميزتك",
423
+ "featurePlaceholder": "مثال: إضافة تسجيل الدخول عبر GitHub OAuth مع معالجة الاستدعاء وتجديد الرمز...",
424
+ "parentFeature": "الميزة الأصلية",
425
+ "selectParent": "اختر الميزة الأصلية...",
426
+ "searchFeatures": "البحث عن ميزات...",
427
+ "noParent": "بدون أصل",
428
+ "noFeaturesFound": "لم يتم العثور على ميزات.",
429
+ "searchRepositories": "البحث عن مستودعات...",
430
+ "approve": "الموافقة",
431
+ "approveDescription": "الموافقة التلقائية على انتقالات المراحل بدون مراجعة يدوية.",
432
+ "skippedInFastMode": "تم التخطي في الوضع السريع",
433
+ "all": "الكل",
434
+ "toggleAllApprovalGates": "تبديل جميع بوابات الموافقة",
435
+ "evidence": "الأدلة",
436
+ "evidenceDescription": "جمع وإرفاق الأدلة بعد التنفيذ.",
437
+ "collect": "جمع",
438
+ "collectDescription": "التقاط لقطات الشاشة والمخرجات بعد التنفيذ.",
439
+ "addToPr": "إضافة إلى PR",
440
+ "requiresPr": "يتطلب تفعيل PR",
441
+ "requiresEvidence": "يتطلب تفعيل جمع الأدلة",
442
+ "addToPrDescription": "تضمين الأدلة في نص طلب السحب.",
443
+ "git": "GIT",
444
+ "push": "دفع",
445
+ "pushDescription": "دفع الفرع إلى الخادم البعيد بعد التنفيذ.",
446
+ "pr": "PR",
447
+ "prDescription": "فتح طلب سحب بعد الدفع.",
448
+ "watch": "مراقبة",
449
+ "watchDescription": "مراقبة CI وإصلاح الأخطاء تلقائياً.",
450
+ "commitSpecs": "حفظ المواصفات",
451
+ "commitSpecsDescription": "حفظ المواصفات في المستودع.",
452
+ "forkAndPr": "Fork و PR",
453
+ "forkAndPrDescription": "المساهمة عبر fork (PR إلى upstream).",
454
+ "pendingMode": "قيد الانتظار",
455
+ "pendingModeDescription": "إنشاء بدون تشغيل — التشغيل يدوياً لاحقاً.",
456
+ "fastModeLabel": "الوضع السريع",
457
+ "fastModeDescription": "تخطي مراحل SDLC والتنفيذ مباشرة من الأمر.",
458
+ "fileDropZone": "منطقة إسقاط الملفات",
459
+ "prd": "PRD",
460
+ "prdDescription": "الموافقة التلقائية على انتقال المتطلبات إلى التخطيط.",
461
+ "plan": "خطة",
462
+ "planDescription": "الموافقة التلقائية على انتقال التخطيط إلى التنفيذ.",
463
+ "merge": "دمج",
464
+ "mergeDescription": "الموافقة التلقائية على انتقال الدمج إلى مكتمل."
465
+ },
466
+ "featureDrawer": {
467
+ "copyFeatureId": "نسخ معرف الميزة",
468
+ "unarchiveFeature": "إلغاء أرشفة الميزة",
469
+ "archiveFeature": "أرشفة الميزة",
470
+ "deleteFeature": "حذف الميزة",
471
+ "stopDevServer": "إيقاف الخادم",
472
+ "startDevServer": "تشغيل الخادم",
473
+ "failedToReject": "فشل رفض {{label}}",
474
+ "rejected": "تم رفض {{label}} — الوكيل يعيد المحاولة (التكرار {{n}})",
475
+ "excessiveIterations": "التكرار {{n}} — فكر في الموافقة أو تعديل الملاحظات",
476
+ "failedToApprove": "فشل الموافقة على {{label}}",
477
+ "approved": "تمت الموافقة على {{label}} — الوكيل يستأنف",
478
+ "failedToApproveRequirements": "فشل الموافقة على المتطلبات",
479
+ "requirementsApproved": "تمت الموافقة على المتطلبات — الوكيل يستأنف",
480
+ "featureResumed": "تم استئناف الميزة — الوكيل يعيد التشغيل",
481
+ "featureStarted": "تم بدء الميزة",
482
+ "approvePlan": "الموافقة على الخطة",
483
+ "sendRevisionFeedback": "إرسال ملاحظات المراجعة"
484
+ },
485
+ "overviewTab": {
486
+ "created": "تم الإنشاء",
487
+ "runtime": "وقت التنفيذ",
488
+ "runningFor": "قيد التشغيل منذ",
489
+ "blockedBy": "محظور بواسطة",
490
+ "error": "خطأ",
491
+ "prd": "PRD",
492
+ "plan": "خطة",
493
+ "merge": "دمج",
494
+ "collect": "جمع",
495
+ "addToPr": "إضافة إلى PR",
496
+ "push": "دفع",
497
+ "pr": "PR",
498
+ "watch": "مراقبة",
499
+ "commitSpecs": "حفظ المواصفات",
500
+ "forkAndPr": "Fork و PR"
501
+ },
502
+ "activityTab": {
503
+ "copyPromptToClipboard": "نسخ الأمر إلى الحافظة",
504
+ "execution": "التنفيذ",
505
+ "wait": "الانتظار",
506
+ "cost": "التكلفة",
507
+ "noActivityRecorded": "لم يتم تسجيل أي نشاط بعد"
508
+ },
509
+ "logTab": {
510
+ "structuredView": "عرض منظم",
511
+ "rawView": "عرض خام",
512
+ "noLogOutput": "لا يوجد ناتج سجل بعد"
513
+ },
514
+ "planTab": {
515
+ "noPlanCreated": "لم يتم إنشاء خطة بعد"
516
+ },
517
+ "branchSyncStatus": {
518
+ "refreshSyncStatus": "تحديث حالة المزامنة",
519
+ "rebaseOnMain": "Rebase على Main"
520
+ },
521
+ "drawerActionBar": {
522
+ "fileDropZone": "منطقة إسقاط الملفات",
523
+ "askAiToRevise": "اطلب من الذكاء الاصطناعي المراجعة...",
524
+ "attachFiles": "إرفاق ملفات",
525
+ "reject": "رفض",
526
+ "sendRevisionFeedback": "إرسال ملاحظات المراجعة",
527
+ "approve": "موافقة",
528
+ "fileTooLarge": "\"{{name}}\" يتجاوز حد 10 ميجابايت",
529
+ "fileTypeNotAllowed": "نوع الملف \"{{ext}}\" غير مسموح",
530
+ "uploadFailed": "فشل الرفع"
531
+ },
532
+ "taskProgress": {
533
+ "done": "مكتمل",
534
+ "inProgress": "قيد التنفيذ",
535
+ "review": "قيد المراجعة",
536
+ "todo": "للتنفيذ",
537
+ "noTasksDefined": "لم يتم تحديد مهام بعد"
538
+ },
539
+ "repositoryDrawer": {
540
+ "openInIde": "فتح في IDE",
541
+ "openInShell": "فتح في الطرفية",
542
+ "openFolder": "فتح المجلد",
543
+ "syncMain": "مزامنة Main"
544
+ },
545
+ "adoptBranch": {
546
+ "failedToAdopt": "فشل تبني الفرع",
547
+ "repository": "المستودع",
548
+ "branchName": "اسم الفرع",
549
+ "searchRepositories": "البحث عن مستودعات...",
550
+ "searchBranches": "البحث عن فروع..."
551
+ },
552
+ "githubImport": {
553
+ "title": "استيراد من GitHub",
554
+ "description": "استنساخ مستودع GitHub وإضافته إلى Shep.",
555
+ "githubUrl": "رابط GitHub",
556
+ "urlPlaceholder": "owner/repo أو https://github.com/owner/repo",
557
+ "searchRepositories": "البحث عن مستودعات..."
558
+ },
559
+ "versionBadge": {
560
+ "version": "الإصدار",
561
+ "branch": "الفرع",
562
+ "commit": "الالتزام",
563
+ "path": "المسار"
564
+ },
565
+ "mergeReview": {
566
+ "download": "تنزيل",
567
+ "dataUnavailable": "بيانات مراجعة الدمج غير متاحة"
568
+ },
569
+ "baseDrawer": {
570
+ "close": "إغلاق",
571
+ "stopDevServer": "إيقاف الخادم",
572
+ "startDevServer": "تشغيل الخادم"
573
+ },
574
+ "addRepository": {
575
+ "addRepository": "إضافة مستودع"
576
+ },
577
+ "modelPicker": {
578
+ "searchPlaceholder": "البحث أو كتابة معرف النموذج\u2026"
579
+ },
580
+ "skills": {
581
+ "searchPlaceholder": "البحث عن مهارات..."
582
+ },
583
+ "tools": {
584
+ "noCategoryTools": "لا توجد أدوات في هذه الفئة."
585
+ },
586
+ "accessibility": {
587
+ "close": "إغلاق",
588
+ "loading": "جارٍ التحميل",
589
+ "send": "إرسال",
590
+ "imageNotes": "ملاحظات الصورة",
591
+ "viewServerLogs": "عرض سجلات الخادم",
592
+ "toggleSidebar": "تبديل الشريط الجانبي"
593
+ }
594
+ }