@umsai/ums-code 0.3.0-v2 → 0.6.0-v1

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 (397) hide show
  1. package/dist/package.json +6 -6
  2. package/dist/src/{zed-integration → acp-integration}/acp.d.ts +13 -0
  3. package/dist/src/{zed-integration → acp-integration}/acp.js +32 -0
  4. package/dist/src/acp-integration/acp.js.map +1 -0
  5. package/dist/src/acp-integration/acpAgent.d.ts +10 -0
  6. package/dist/src/acp-integration/acpAgent.js +264 -0
  7. package/dist/src/acp-integration/acpAgent.js.map +1 -0
  8. package/dist/src/{zed-integration → acp-integration}/schema.d.ts +2235 -905
  9. package/dist/src/{zed-integration → acp-integration}/schema.js +100 -2
  10. package/dist/src/acp-integration/schema.js.map +1 -0
  11. package/dist/src/{zed-integration/fileSystemService.d.ts → acp-integration/service/filesystem.d.ts} +1 -1
  12. package/dist/src/{zed-integration/fileSystemService.js → acp-integration/service/filesystem.js} +14 -1
  13. package/dist/src/acp-integration/service/filesystem.js.map +1 -0
  14. package/dist/src/{ui/hooks/useQuotaAndFallback.test.d.ts → acp-integration/service/filesystem.test.d.ts} +1 -1
  15. package/dist/src/acp-integration/service/filesystem.test.js +39 -0
  16. package/dist/src/acp-integration/service/filesystem.test.js.map +1 -0
  17. package/dist/src/acp-integration/session/HistoryReplayer.d.ts +51 -0
  18. package/dist/src/acp-integration/session/HistoryReplayer.js +164 -0
  19. package/dist/src/acp-integration/session/HistoryReplayer.js.map +1 -0
  20. package/dist/src/acp-integration/session/HistoryReplayer.test.d.ts +6 -0
  21. package/dist/src/acp-integration/session/HistoryReplayer.test.js +374 -0
  22. package/dist/src/acp-integration/session/HistoryReplayer.test.js.map +1 -0
  23. package/dist/src/acp-integration/session/Session.d.ts +61 -0
  24. package/dist/src/acp-integration/session/Session.js +839 -0
  25. package/dist/src/acp-integration/session/Session.js.map +1 -0
  26. package/dist/src/acp-integration/session/SubAgentTracker.d.ts +51 -0
  27. package/dist/src/acp-integration/session/SubAgentTracker.js +257 -0
  28. package/dist/src/acp-integration/session/SubAgentTracker.js.map +1 -0
  29. package/dist/src/acp-integration/session/SubAgentTracker.test.d.ts +6 -0
  30. package/dist/src/acp-integration/session/SubAgentTracker.test.js +369 -0
  31. package/dist/src/acp-integration/session/SubAgentTracker.test.js.map +1 -0
  32. package/dist/src/acp-integration/session/emitters/BaseEmitter.d.ts +27 -0
  33. package/dist/src/acp-integration/session/emitters/BaseEmitter.js +34 -0
  34. package/dist/src/acp-integration/session/emitters/BaseEmitter.js.map +1 -0
  35. package/dist/src/acp-integration/session/emitters/MessageEmitter.d.ts +41 -0
  36. package/dist/src/acp-integration/session/emitters/MessageEmitter.js +77 -0
  37. package/dist/src/acp-integration/session/emitters/MessageEmitter.js.map +1 -0
  38. package/dist/src/acp-integration/session/emitters/MessageEmitter.test.d.ts +6 -0
  39. package/dist/src/acp-integration/session/emitters/MessageEmitter.test.js +174 -0
  40. package/dist/src/acp-integration/session/emitters/MessageEmitter.test.js.map +1 -0
  41. package/dist/src/acp-integration/session/emitters/PlanEmitter.d.ts +39 -0
  42. package/dist/src/acp-integration/session/emitters/PlanEmitter.js +83 -0
  43. package/dist/src/acp-integration/session/emitters/PlanEmitter.js.map +1 -0
  44. package/dist/src/acp-integration/session/emitters/PlanEmitter.test.d.ts +6 -0
  45. package/dist/src/acp-integration/session/emitters/PlanEmitter.test.js +176 -0
  46. package/dist/src/acp-integration/session/emitters/PlanEmitter.test.js.map +1 -0
  47. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.d.ts +80 -0
  48. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.js +248 -0
  49. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.js.map +1 -0
  50. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.d.ts +6 -0
  51. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.js +561 -0
  52. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.js.map +1 -0
  53. package/dist/src/acp-integration/session/emitters/index.d.ts +9 -0
  54. package/dist/src/acp-integration/session/emitters/index.js +10 -0
  55. package/dist/src/acp-integration/session/emitters/index.js.map +1 -0
  56. package/dist/src/acp-integration/session/index.d.ts +24 -0
  57. package/dist/src/acp-integration/session/index.js +16 -0
  58. package/dist/src/acp-integration/session/index.js.map +1 -0
  59. package/dist/src/acp-integration/session/types.d.ts +71 -0
  60. package/dist/src/acp-integration/session/types.js +7 -0
  61. package/dist/src/acp-integration/session/types.js.map +1 -0
  62. package/dist/src/commandMode.d.ts +11 -0
  63. package/dist/src/commandMode.js +238 -0
  64. package/dist/src/commandMode.js.map +1 -0
  65. package/dist/src/config/auth.d.ts +1 -0
  66. package/dist/src/config/auth.js +29 -0
  67. package/dist/src/config/auth.js.map +1 -1
  68. package/dist/src/config/config.d.ts +19 -3
  69. package/dist/src/config/config.js +175 -24
  70. package/dist/src/config/config.js.map +1 -1
  71. package/dist/src/config/extension.js +0 -2
  72. package/dist/src/config/extension.js.map +1 -1
  73. package/dist/src/config/extensions/update.test.js +9 -0
  74. package/dist/src/config/extensions/update.test.js.map +1 -1
  75. package/dist/src/config/settingsSchema.d.ts +53 -2
  76. package/dist/src/config/settingsSchema.js +46 -2
  77. package/dist/src/config/settingsSchema.js.map +1 -1
  78. package/dist/src/core/auth.d.ts +1 -1
  79. package/dist/src/core/auth.js +3 -2
  80. package/dist/src/core/auth.js.map +1 -1
  81. package/dist/src/core/initializer.js +3 -0
  82. package/dist/src/core/initializer.js.map +1 -1
  83. package/dist/src/gemini.js +75 -35
  84. package/dist/src/gemini.js.map +1 -1
  85. package/dist/src/gemini.test.js +37 -4
  86. package/dist/src/gemini.test.js.map +1 -1
  87. package/dist/src/generated/git-commit.d.ts +3 -3
  88. package/dist/src/generated/git-commit.js +3 -3
  89. package/dist/src/i18n/index.d.ts +10 -2
  90. package/dist/src/i18n/index.js +26 -1
  91. package/dist/src/i18n/index.js.map +1 -1
  92. package/dist/src/i18n/languages.d.ts +20 -0
  93. package/dist/src/i18n/languages.js +36 -0
  94. package/dist/src/i18n/languages.js.map +1 -0
  95. package/dist/src/i18n/locales/de.js +1073 -0
  96. package/dist/src/i18n/locales/en.js +121 -175
  97. package/dist/src/i18n/locales/ru.js +1095 -0
  98. package/dist/src/i18n/locales/zh.js +52 -174
  99. package/dist/src/nonInteractive/control/ControlDispatcher.d.ts +24 -1
  100. package/dist/src/nonInteractive/control/ControlDispatcher.js +46 -17
  101. package/dist/src/nonInteractive/control/ControlDispatcher.js.map +1 -1
  102. package/dist/src/nonInteractive/control/ControlService.d.ts +2 -1
  103. package/dist/src/nonInteractive/control/ControlService.js +22 -37
  104. package/dist/src/nonInteractive/control/ControlService.js.map +1 -1
  105. package/dist/src/nonInteractive/control/controllers/baseController.d.ts +2 -1
  106. package/dist/src/nonInteractive/control/controllers/baseController.js +38 -5
  107. package/dist/src/nonInteractive/control/controllers/baseController.js.map +1 -1
  108. package/dist/src/nonInteractive/control/controllers/permissionController.d.ts +1 -22
  109. package/dist/src/nonInteractive/control/controllers/permissionController.js +38 -38
  110. package/dist/src/nonInteractive/control/controllers/permissionController.js.map +1 -1
  111. package/dist/src/nonInteractive/control/controllers/sdkMcpController.d.ts +54 -0
  112. package/dist/src/nonInteractive/control/controllers/sdkMcpController.js +84 -0
  113. package/dist/src/nonInteractive/control/controllers/sdkMcpController.js.map +1 -0
  114. package/dist/src/nonInteractive/control/controllers/systemController.d.ts +16 -6
  115. package/dist/src/nonInteractive/control/controllers/systemController.js +184 -44
  116. package/dist/src/nonInteractive/control/controllers/systemController.js.map +1 -1
  117. package/dist/src/nonInteractive/control/types/serviceAPIs.d.ts +1 -16
  118. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.d.ts +11 -0
  119. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js +64 -5
  120. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js.map +1 -1
  121. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js +40 -0
  122. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js.map +1 -1
  123. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js +50 -0
  124. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js.map +1 -1
  125. package/dist/src/nonInteractive/session.d.ts +0 -16
  126. package/dist/src/nonInteractive/session.js +317 -321
  127. package/dist/src/nonInteractive/session.js.map +1 -1
  128. package/dist/src/nonInteractive/session.test.js +6 -0
  129. package/dist/src/nonInteractive/session.test.js.map +1 -1
  130. package/dist/src/nonInteractive/types.d.ts +57 -3
  131. package/dist/src/nonInteractive/types.js +0 -1
  132. package/dist/src/nonInteractive/types.js.map +1 -1
  133. package/dist/src/nonInteractiveCli.js +121 -56
  134. package/dist/src/nonInteractiveCli.js.map +1 -1
  135. package/dist/src/nonInteractiveCliCommands.d.ts +48 -9
  136. package/dist/src/nonInteractiveCliCommands.js +180 -64
  137. package/dist/src/nonInteractiveCliCommands.js.map +1 -1
  138. package/dist/src/nonInteractiveCliCommands.test.d.ts +6 -0
  139. package/dist/src/nonInteractiveCliCommands.test.js +157 -0
  140. package/dist/src/nonInteractiveCliCommands.test.js.map +1 -0
  141. package/dist/src/services/BuiltinCommandLoader.js +7 -6
  142. package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
  143. package/dist/src/services/BuiltinCommandLoader.test.js +0 -3
  144. package/dist/src/services/BuiltinCommandLoader.test.js.map +1 -1
  145. package/dist/src/services/McpPromptLoader.js +4 -2
  146. package/dist/src/services/McpPromptLoader.js.map +1 -1
  147. package/dist/src/services/McpPromptLoader.test.js +1 -1
  148. package/dist/src/services/McpPromptLoader.test.js.map +1 -1
  149. package/dist/src/test-utils/mockCommandContext.js +11 -2
  150. package/dist/src/test-utils/mockCommandContext.js.map +1 -1
  151. package/dist/src/ui/AppContainer.js +62 -56
  152. package/dist/src/ui/AppContainer.js.map +1 -1
  153. package/dist/src/ui/AppContainer.test.js +0 -46
  154. package/dist/src/ui/AppContainer.test.js.map +1 -1
  155. package/dist/src/ui/auth/AuthDialog.test.js +4 -4
  156. package/dist/src/ui/auth/AuthDialog.test.js.map +1 -1
  157. package/dist/src/ui/auth/useAuth.js +31 -4
  158. package/dist/src/ui/auth/useAuth.js.map +1 -1
  159. package/dist/src/ui/commands/approvalModeCommand.js +53 -4
  160. package/dist/src/ui/commands/approvalModeCommand.js.map +1 -1
  161. package/dist/src/ui/commands/approvalModeCommand.test.js +72 -10
  162. package/dist/src/ui/commands/approvalModeCommand.test.js.map +1 -1
  163. package/dist/src/ui/commands/clearCommand.js +22 -10
  164. package/dist/src/ui/commands/clearCommand.js.map +1 -1
  165. package/dist/src/ui/commands/compressCommand.js +86 -16
  166. package/dist/src/ui/commands/compressCommand.js.map +1 -1
  167. package/dist/src/ui/commands/languageCommand.d.ts +6 -1
  168. package/dist/src/ui/commands/languageCommand.js +162 -183
  169. package/dist/src/ui/commands/languageCommand.js.map +1 -1
  170. package/dist/src/ui/commands/languageCommand.test.d.ts +6 -0
  171. package/dist/src/ui/commands/languageCommand.test.js +558 -0
  172. package/dist/src/ui/commands/languageCommand.test.js.map +1 -0
  173. package/dist/src/ui/commands/modelCommand.js +4 -2
  174. package/dist/src/ui/commands/modelCommand.js.map +1 -1
  175. package/dist/src/ui/commands/quitCommand.d.ts +0 -1
  176. package/dist/src/ui/commands/quitCommand.js +0 -27
  177. package/dist/src/ui/commands/quitCommand.js.map +1 -1
  178. package/dist/src/ui/commands/restoreCommand.js +1 -1
  179. package/dist/src/ui/commands/restoreCommand.js.map +1 -1
  180. package/dist/src/ui/commands/resumeCommand.d.ts +7 -0
  181. package/dist/src/ui/commands/resumeCommand.js +19 -0
  182. package/dist/src/ui/commands/resumeCommand.js.map +1 -0
  183. package/dist/src/ui/commands/resumeCommand.test.d.ts +6 -0
  184. package/dist/src/ui/commands/resumeCommand.test.js +32 -0
  185. package/dist/src/ui/commands/resumeCommand.test.js.map +1 -0
  186. package/dist/src/ui/commands/reviewCommand.d.ts +9 -0
  187. package/dist/src/ui/commands/reviewCommand.js +2046 -0
  188. package/dist/src/ui/commands/reviewCommand.js.map +1 -0
  189. package/dist/src/ui/commands/reviewCommand.test.js +600 -0
  190. package/dist/src/ui/commands/reviewCommand.test.js.map +1 -0
  191. package/dist/src/ui/commands/setupGithubCommand.js +11 -10
  192. package/dist/src/ui/commands/setupGithubCommand.js.map +1 -1
  193. package/dist/src/ui/commands/setupGithubCommand.test.js +14 -14
  194. package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -1
  195. package/dist/src/ui/commands/summaryCommand.js +129 -42
  196. package/dist/src/ui/commands/summaryCommand.js.map +1 -1
  197. package/dist/src/ui/commands/types.d.ts +24 -10
  198. package/dist/src/ui/commands/types.js.map +1 -1
  199. package/dist/src/ui/commands/ums/unittestCommand.d.ts +9 -0
  200. package/dist/src/ui/commands/ums/unittestCommand.js +387 -0
  201. package/dist/src/ui/commands/ums/unittestCommand.js.map +1 -0
  202. package/dist/src/ui/components/Composer.test.js +1 -2
  203. package/dist/src/ui/components/Composer.test.js.map +1 -1
  204. package/dist/src/ui/components/ContextUsageDisplay.d.ts +3 -2
  205. package/dist/src/ui/components/ContextUsageDisplay.js +8 -2
  206. package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -1
  207. package/dist/src/ui/components/DialogManager.js +7 -23
  208. package/dist/src/ui/components/DialogManager.js.map +1 -1
  209. package/dist/src/ui/components/Footer.js +2 -3
  210. package/dist/src/ui/components/Footer.js.map +1 -1
  211. package/dist/src/ui/components/Help.js +13 -2
  212. package/dist/src/ui/components/Help.js.map +1 -1
  213. package/dist/src/ui/components/Help.test.js +6 -0
  214. package/dist/src/ui/components/Help.test.js.map +1 -1
  215. package/dist/src/ui/components/HistoryItemDisplay.js +3 -1
  216. package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -1
  217. package/dist/src/ui/components/HistoryItemDisplay.test.js +5 -2
  218. package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -1
  219. package/dist/src/ui/components/InputPrompt.js +6 -4
  220. package/dist/src/ui/components/InputPrompt.js.map +1 -1
  221. package/dist/src/ui/components/ModelDialog.d.ts +3 -1
  222. package/dist/src/ui/components/ModelDialog.js +25 -5
  223. package/dist/src/ui/components/ModelDialog.js.map +1 -1
  224. package/dist/src/ui/components/OpenAIKeyPrompt.d.ts +3 -0
  225. package/dist/src/ui/components/OpenAIKeyPrompt.js +1 -0
  226. package/dist/src/ui/components/OpenAIKeyPrompt.js.map +1 -1
  227. package/dist/src/ui/components/PermissionsModifyTrustDialog.js +1 -1
  228. package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +1 -1
  229. package/dist/src/ui/components/SessionPicker.d.ts +18 -0
  230. package/dist/src/ui/components/SessionPicker.js +69 -0
  231. package/dist/src/ui/components/SessionPicker.js.map +1 -0
  232. package/dist/src/ui/components/SessionSummaryDisplay.js +14 -2
  233. package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -1
  234. package/dist/src/ui/components/SettingsDialog.test.js +2 -2
  235. package/dist/src/ui/components/StandaloneSessionPicker.d.ts +10 -0
  236. package/dist/src/ui/components/StandaloneSessionPicker.js +78 -0
  237. package/dist/src/ui/components/StandaloneSessionPicker.js.map +1 -0
  238. package/dist/src/ui/components/StandaloneSessionPicker.test.d.ts +6 -0
  239. package/dist/src/ui/components/StandaloneSessionPicker.test.js +410 -0
  240. package/dist/src/ui/components/StandaloneSessionPicker.test.js.map +1 -0
  241. package/dist/src/ui/components/SuggestionsDisplay.js +3 -2
  242. package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -1
  243. package/dist/src/ui/components/messages/GeminiThoughtMessage.d.ts +18 -0
  244. package/dist/src/ui/components/messages/GeminiThoughtMessage.js +14 -0
  245. package/dist/src/ui/components/messages/GeminiThoughtMessage.js.map +1 -0
  246. package/dist/src/ui/components/messages/GeminiThoughtMessageContent.d.ts +18 -0
  247. package/dist/src/ui/components/messages/GeminiThoughtMessageContent.js +14 -0
  248. package/dist/src/ui/components/messages/GeminiThoughtMessageContent.js.map +1 -0
  249. package/dist/src/ui/components/subagents/manage/AgentEditStep.js +4 -1
  250. package/dist/src/ui/components/subagents/manage/AgentEditStep.js.map +1 -1
  251. package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js +2 -2
  252. package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js.map +1 -1
  253. package/dist/src/ui/components/ums/UMSKeyPrompt.d.ts +1 -1
  254. package/dist/src/ui/components/ums/UMSKeyPrompt.js +24 -4
  255. package/dist/src/ui/components/ums/UMSKeyPrompt.js.map +1 -1
  256. package/dist/src/ui/components/ums/umsStartupWarnings.d.ts +6 -0
  257. package/dist/src/ui/components/ums/umsStartupWarnings.js +47 -0
  258. package/dist/src/ui/components/ums/umsStartupWarnings.js.map +1 -0
  259. package/dist/src/ui/contexts/SessionContext.d.ts +2 -0
  260. package/dist/src/ui/contexts/SessionContext.js +18 -10
  261. package/dist/src/ui/contexts/SessionContext.js.map +1 -1
  262. package/dist/src/ui/contexts/UIActionsContext.d.ts +3 -1
  263. package/dist/src/ui/contexts/UIActionsContext.js.map +1 -1
  264. package/dist/src/ui/contexts/UIStateContext.d.ts +3 -11
  265. package/dist/src/ui/contexts/UIStateContext.js.map +1 -1
  266. package/dist/src/ui/hooks/slashCommandProcessor.d.ts +3 -8
  267. package/dist/src/ui/hooks/slashCommandProcessor.js +77 -101
  268. package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
  269. package/dist/src/ui/hooks/useAttentionNotifications.d.ts +3 -1
  270. package/dist/src/ui/hooks/useAttentionNotifications.js +10 -5
  271. package/dist/src/ui/hooks/useAttentionNotifications.js.map +1 -1
  272. package/dist/src/ui/hooks/useAttentionNotifications.test.js +39 -2
  273. package/dist/src/ui/hooks/useAttentionNotifications.test.js.map +1 -1
  274. package/dist/src/ui/hooks/useDialogClose.d.ts +0 -3
  275. package/dist/src/ui/hooks/useDialogClose.js +0 -2
  276. package/dist/src/ui/hooks/useDialogClose.js.map +1 -1
  277. package/dist/src/ui/hooks/useGeminiStream.js +87 -12
  278. package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
  279. package/dist/src/ui/hooks/useLoadingIndicator.test.js +11 -6
  280. package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -1
  281. package/dist/src/ui/hooks/useLogger.d.ts +1 -1
  282. package/dist/src/ui/hooks/useLogger.js +6 -3
  283. package/dist/src/ui/hooks/useLogger.js.map +1 -1
  284. package/dist/src/ui/hooks/usePhraseCycler.js +12 -136
  285. package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -1
  286. package/dist/src/ui/hooks/useQwenAuth.test.js +1 -1
  287. package/dist/src/ui/hooks/useQwenAuth.test.js.map +1 -1
  288. package/dist/src/ui/hooks/useReactToolScheduler.js +2 -2
  289. package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -1
  290. package/dist/src/ui/hooks/useResumeCommand.d.ts +20 -0
  291. package/dist/src/ui/hooks/useResumeCommand.js +49 -0
  292. package/dist/src/ui/hooks/useResumeCommand.js.map +1 -0
  293. package/dist/src/ui/hooks/useResumeCommand.test.d.ts +6 -0
  294. package/dist/src/ui/hooks/useResumeCommand.test.js +144 -0
  295. package/dist/src/ui/hooks/useResumeCommand.test.js.map +1 -0
  296. package/dist/src/ui/hooks/useSessionPicker.d.ts +36 -0
  297. package/dist/src/ui/hooks/useSessionPicker.js +189 -0
  298. package/dist/src/ui/hooks/useSessionPicker.js.map +1 -0
  299. package/dist/src/ui/hooks/useSlashCompletion.js +9 -1
  300. package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -1
  301. package/dist/src/ui/hooks/useSlashCompletion.test.js +36 -31
  302. package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -1
  303. package/dist/src/ui/hooks/useToolScheduler.test.js +2 -1
  304. package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -1
  305. package/dist/src/ui/models/availableModels.d.ts +9 -2
  306. package/dist/src/ui/models/availableModels.js +32 -35
  307. package/dist/src/ui/models/availableModels.js.map +1 -1
  308. package/dist/src/ui/noninteractive/nonInteractiveUi.js +0 -1
  309. package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +1 -1
  310. package/dist/src/ui/types.d.ts +9 -14
  311. package/dist/src/ui/types.js +0 -1
  312. package/dist/src/ui/types.js.map +1 -1
  313. package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +1 -0
  314. package/dist/src/ui/utils/InlineMarkdownRenderer.js +2 -2
  315. package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -1
  316. package/dist/src/ui/utils/MarkdownDisplay.d.ts +1 -0
  317. package/dist/src/ui/utils/MarkdownDisplay.js +13 -13
  318. package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -1
  319. package/dist/src/ui/utils/formatters.d.ts +6 -0
  320. package/dist/src/ui/utils/formatters.js +31 -0
  321. package/dist/src/ui/utils/formatters.js.map +1 -1
  322. package/dist/src/ui/utils/formatters.test.js +51 -2
  323. package/dist/src/ui/utils/formatters.test.js.map +1 -1
  324. package/dist/src/ui/utils/resumeHistoryUtils.d.ts +19 -0
  325. package/dist/src/ui/utils/resumeHistoryUtils.js +267 -0
  326. package/dist/src/ui/utils/resumeHistoryUtils.js.map +1 -0
  327. package/dist/src/ui/utils/resumeHistoryUtils.test.d.ts +6 -0
  328. package/dist/src/ui/utils/resumeHistoryUtils.test.js +253 -0
  329. package/dist/src/ui/utils/resumeHistoryUtils.test.js.map +1 -0
  330. package/dist/src/ui/utils/sessionPickerUtils.d.ts +30 -0
  331. package/dist/src/ui/utils/sessionPickerUtils.js +41 -0
  332. package/dist/src/ui/utils/sessionPickerUtils.js.map +1 -0
  333. package/dist/src/ui/utils/sessionPickerUtils.test.d.ts +6 -0
  334. package/dist/src/ui/utils/sessionPickerUtils.test.js +38 -0
  335. package/dist/src/ui/utils/sessionPickerUtils.test.js.map +1 -0
  336. package/dist/src/utils/attentionNotification.d.ts +1 -0
  337. package/dist/src/utils/attentionNotification.js +4 -0
  338. package/dist/src/utils/attentionNotification.js.map +1 -1
  339. package/dist/src/utils/errors.d.ts +1 -1
  340. package/dist/src/utils/errors.js +14 -3
  341. package/dist/src/utils/errors.js.map +1 -1
  342. package/dist/src/utils/errors.test.js +43 -1
  343. package/dist/src/utils/errors.test.js.map +1 -1
  344. package/dist/src/utils/gitUtils.js +25 -8
  345. package/dist/src/utils/gitUtils.js.map +1 -1
  346. package/dist/src/utils/gitUtils.test.js +59 -0
  347. package/dist/src/utils/gitUtils.test.js.map +1 -1
  348. package/dist/src/utils/nonInteractiveHelpers.d.ts +3 -1
  349. package/dist/src/utils/nonInteractiveHelpers.js +14 -15
  350. package/dist/src/utils/nonInteractiveHelpers.js.map +1 -1
  351. package/dist/src/utils/nonInteractiveHelpers.test.js +36 -21
  352. package/dist/src/utils/nonInteractiveHelpers.test.js.map +1 -1
  353. package/dist/src/utils/relaunch.js +2 -2
  354. package/dist/src/utils/relaunch.js.map +1 -1
  355. package/dist/src/utils/relaunch.test.js +5 -5
  356. package/dist/src/utils/relaunch.test.js.map +1 -1
  357. package/dist/src/utils/systemInfo.js +2 -1
  358. package/dist/src/utils/systemInfo.js.map +1 -1
  359. package/dist/src/validateNonInterActiveAuth.js +10 -1
  360. package/dist/src/validateNonInterActiveAuth.js.map +1 -1
  361. package/dist/tsconfig.tsbuildinfo +1 -1
  362. package/package.json +7 -7
  363. package/dist/src/nonInteractive/control/controllers/mcpController.d.ts +0 -42
  364. package/dist/src/nonInteractive/control/controllers/mcpController.js +0 -205
  365. package/dist/src/nonInteractive/control/controllers/mcpController.js.map +0 -1
  366. package/dist/src/ui/commands/chatCommand.d.ts +0 -9
  367. package/dist/src/ui/commands/chatCommand.js +0 -351
  368. package/dist/src/ui/commands/chatCommand.js.map +0 -1
  369. package/dist/src/ui/commands/corgiCommand.d.ts +0 -7
  370. package/dist/src/ui/commands/corgiCommand.js +0 -16
  371. package/dist/src/ui/commands/corgiCommand.js.map +0 -1
  372. package/dist/src/ui/components/ProQuotaDialog.d.ts +0 -13
  373. package/dist/src/ui/components/ProQuotaDialog.js +0 -24
  374. package/dist/src/ui/components/ProQuotaDialog.js.map +0 -1
  375. package/dist/src/ui/components/ProQuotaDialog.test.js +0 -58
  376. package/dist/src/ui/components/ProQuotaDialog.test.js.map +0 -1
  377. package/dist/src/ui/components/QuitConfirmationDialog.d.ts +0 -17
  378. package/dist/src/ui/components/QuitConfirmationDialog.js +0 -49
  379. package/dist/src/ui/components/QuitConfirmationDialog.js.map +0 -1
  380. package/dist/src/ui/hooks/usePromptCompletion.d.ts +0 -23
  381. package/dist/src/ui/hooks/usePromptCompletion.js +0 -177
  382. package/dist/src/ui/hooks/usePromptCompletion.js.map +0 -1
  383. package/dist/src/ui/hooks/useQuitConfirmation.d.ts +0 -14
  384. package/dist/src/ui/hooks/useQuitConfirmation.js +0 -36
  385. package/dist/src/ui/hooks/useQuitConfirmation.js.map +0 -1
  386. package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +0 -21
  387. package/dist/src/ui/hooks/useQuotaAndFallback.js +0 -122
  388. package/dist/src/ui/hooks/useQuotaAndFallback.js.map +0 -1
  389. package/dist/src/ui/hooks/useQuotaAndFallback.test.js +0 -269
  390. package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +0 -1
  391. package/dist/src/zed-integration/acp.js.map +0 -1
  392. package/dist/src/zed-integration/fileSystemService.js.map +0 -1
  393. package/dist/src/zed-integration/schema.js.map +0 -1
  394. package/dist/src/zed-integration/zedIntegration.d.ts +0 -17
  395. package/dist/src/zed-integration/zedIntegration.js +0 -1135
  396. package/dist/src/zed-integration/zedIntegration.js.map +0 -1
  397. /package/dist/src/ui/{components/ProQuotaDialog.test.d.ts → commands/reviewCommand.test.d.ts} +0 -0
@@ -4,7 +4,7 @@
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
 
7
- // English translations for UMS Code CLI
7
+ // English translations for Qwen Code CLI
8
8
  // The key serves as both the translation key and the default English text
9
9
 
10
10
  export default {
@@ -55,10 +55,10 @@ export default {
55
55
  'For a full list of shortcuts, see {{docPath}}':
56
56
  'For a full list of shortcuts, see {{docPath}}',
57
57
  'docs/keyboard-shortcuts.md': 'docs/keyboard-shortcuts.md',
58
- 'for help on UMS Code': 'for help on UMS Code',
58
+ 'for help on Qwen Code': 'for help on Qwen Code',
59
59
  'show version info': 'show version info',
60
60
  'submit a bug report': 'submit a bug report',
61
- 'About UMS Code': 'About UMS Code',
61
+ 'About Qwen Code': 'About Qwen Code',
62
62
 
63
63
  // ============================================================================
64
64
  // System Information Fields
@@ -81,14 +81,17 @@ export default {
81
81
  // ============================================================================
82
82
  // Commands - General
83
83
  // ============================================================================
84
- 'Analyzes the project and creates a tailored UMS.md file.':
85
- 'Analyzes the project and creates a tailored UMS.md file.',
86
- 'list available UMS Code tools. Usage: /tools [desc]':
87
- 'list available UMS Code tools. Usage: /tools [desc]',
88
- 'Available UMS Code CLI tools:': 'Available UMS Code CLI tools:',
84
+ 'Analyzes the project and creates a tailored QWEN.md file.':
85
+ 'Analyzes the project and creates a tailored QWEN.md file.',
86
+ 'list available Qwen Code tools. Usage: /tools [desc]':
87
+ 'list available Qwen Code tools. Usage: /tools [desc]',
88
+ 'Available Qwen Code CLI tools:': 'Available Qwen Code CLI tools:',
89
89
  'No tools available': 'No tools available',
90
90
  'View or change the approval mode for tool usage':
91
91
  'View or change the approval mode for tool usage',
92
+ 'Invalid approval mode "{{arg}}". Valid modes: {{modes}}':
93
+ 'Invalid approval mode "{{arg}}". Valid modes: {{modes}}',
94
+ 'Approval mode set to "{{mode}}"': 'Approval mode set to "{{mode}}"',
92
95
  'View or change the language setting': 'View or change the language setting',
93
96
  'change the theme': 'change the theme',
94
97
  'Select Theme': 'Select Theme',
@@ -102,15 +105,14 @@ export default {
102
105
  'Theme "{{themeName}}" not found.': 'Theme "{{themeName}}" not found.',
103
106
  'Theme "{{themeName}}" not found in selected scope.':
104
107
  'Theme "{{themeName}}" not found in selected scope.',
105
- 'clear the screen and conversation history':
106
- 'clear the screen and conversation history',
108
+ 'Clear conversation history and free up context':
109
+ 'Clear conversation history and free up context',
107
110
  'Compresses the context by replacing it with a summary.':
108
111
  'Compresses the context by replacing it with a summary.',
109
- 'open full UMS Code documentation in your browser':
110
- 'open full UMS Code documentation in your browser',
112
+ 'open full Qwen Code documentation in your browser':
113
+ 'open full Qwen Code documentation in your browser',
111
114
  'Configuration not available.': 'Configuration not available.',
112
115
  'change the auth method': 'change the auth method',
113
- 'Show quit confirmation dialog': 'Show quit confirmation dialog',
114
116
  'Copy the last result or code snippet to clipboard':
115
117
  'Copy the last result or code snippet to clipboard',
116
118
 
@@ -170,8 +172,8 @@ export default {
170
172
  // ============================================================================
171
173
  // Agents - Creation Wizard
172
174
  // ============================================================================
173
- 'Project Level (.ums/agents/)': 'Project Level (.ums/agents/)',
174
- 'User Level (~/.ums/agents/)': 'User Level (~/.ums/agents/)',
175
+ 'Project Level (.qwen/agents/)': 'Project Level (.qwen/agents/)',
176
+ 'User Level (~/.qwen/agents/)': 'User Level (~/.qwen/agents/)',
175
177
  '✅ Subagent Created Successfully!': '✅ Subagent Created Successfully!',
176
178
  'Subagent "{{name}}" has been saved to {{level}} level.':
177
179
  'Subagent "{{name}}" has been saved to {{level}} level.',
@@ -193,8 +195,8 @@ export default {
193
195
  'Step {{n}}: Choose Location': 'Step {{n}}: Choose Location',
194
196
  'Step {{n}}: Choose Generation Method':
195
197
  'Step {{n}}: Choose Generation Method',
196
- 'Generate with UMS Code (Recommended)':
197
- 'Generate with UMS Code (Recommended)',
198
+ 'Generate with Qwen Code (Recommended)':
199
+ 'Generate with Qwen Code (Recommended)',
198
200
  'Manual Creation': 'Manual Creation',
199
201
  'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)':
200
202
  'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)',
@@ -253,12 +255,14 @@ export default {
253
255
  // ============================================================================
254
256
  // Commands - General (continued)
255
257
  // ============================================================================
256
- 'View and edit UMS Code settings': 'View and edit UMS Code settings',
258
+ 'View and edit Qwen Code settings': 'View and edit Qwen Code settings',
257
259
  Settings: 'Settings',
258
260
  '(Use Enter to select{{tabText}})': '(Use Enter to select{{tabText}})',
259
261
  ', Tab to change focus': ', Tab to change focus',
260
- 'To see changes, UMS Code must be restarted. Press r to exit and apply changes now.':
261
- 'To see changes, UMS Code must be restarted. Press r to exit and apply changes now.',
262
+ 'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.':
263
+ 'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.',
264
+ 'The command "/{{command}}" is not supported in non-interactive mode.':
265
+ 'The command "/{{command}}" is not supported in non-interactive mode.',
262
266
  // ============================================================================
263
267
  // Settings Labels
264
268
  // ============================================================================
@@ -298,7 +302,7 @@ export default {
298
302
  'Load Memory From Include Directories':
299
303
  'Load Memory From Include Directories',
300
304
  'Respect .gitignore': 'Respect .gitignore',
301
- 'Respect .umsignore': 'Respect .umsignore',
305
+ 'Respect .qwenignore': 'Respect .qwenignore',
302
306
  'Enable Recursive File Search': 'Enable Recursive File Search',
303
307
  'Disable Fuzzy Search': 'Disable Fuzzy Search',
304
308
  'Enable Interactive Shell': 'Enable Interactive Shell',
@@ -311,6 +315,7 @@ export default {
311
315
  'Tool Output Truncation Lines': 'Tool Output Truncation Lines',
312
316
  'Folder Trust': 'Folder Trust',
313
317
  'Vision Model Preview': 'Vision Model Preview',
318
+ 'Tool Schema Compliance': 'Tool Schema Compliance',
314
319
  // Settings enum options
315
320
  'Auto (detect from system)': 'Auto (detect from system)',
316
321
  Text: 'Text',
@@ -345,8 +350,8 @@ export default {
345
350
  'install required IDE companion for {{ideName}}',
346
351
  'enable IDE integration': 'enable IDE integration',
347
352
  'disable IDE integration': 'disable IDE integration',
348
- 'IDE integration is not supported in your current environment. To use this feature, run UMS Code in one of these supported IDEs: VS Code or VS Code forks.':
349
- 'IDE integration is not supported in your current environment. To use this feature, run UMS Code in one of these supported IDEs: VS Code or VS Code forks.',
353
+ 'IDE integration is not supported in your current environment. To use this feature, run Qwen Code in one of these supported IDEs: VS Code or VS Code forks.':
354
+ 'IDE integration is not supported in your current environment. To use this feature, run Qwen Code in one of these supported IDEs: VS Code or VS Code forks.',
350
355
  'Set up GitHub Actions': 'Set up GitHub Actions',
351
356
  'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)':
352
357
  'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)',
@@ -581,8 +586,8 @@ export default {
581
586
  // ============================================================================
582
587
  // Commands - Summary
583
588
  // ============================================================================
584
- 'Generate a project summary and save it to .ums/PROJECT_SUMMARY.md':
585
- 'Generate a project summary and save it to .ums/PROJECT_SUMMARY.md',
589
+ 'Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md':
590
+ 'Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md',
586
591
  'No chat client available to generate summary.':
587
592
  'No chat client available to generate summary.',
588
593
  'Already generating summary, wait for previous request to complete':
@@ -590,6 +595,12 @@ export default {
590
595
  'No conversation found to summarize.': 'No conversation found to summarize.',
591
596
  'Failed to generate project context summary: {{error}}':
592
597
  'Failed to generate project context summary: {{error}}',
598
+ 'Saved project summary to {{filePathForDisplay}}.':
599
+ 'Saved project summary to {{filePathForDisplay}}.',
600
+ 'Saving project summary...': 'Saving project summary...',
601
+ 'Generating project summary...': 'Generating project summary...',
602
+ 'Failed to generate summary - no text content received from LLM response':
603
+ 'Failed to generate summary - no text content received from LLM response',
593
604
 
594
605
  // ============================================================================
595
606
  // Commands - Model
@@ -604,9 +615,10 @@ export default {
604
615
  // ============================================================================
605
616
  // Commands - Clear
606
617
  // ============================================================================
607
- 'Clearing terminal and resetting chat.':
608
- 'Clearing terminal and resetting chat.',
609
- 'Clearing terminal.': 'Clearing terminal.',
618
+ 'Starting a new session, resetting chat, and clearing terminal.':
619
+ 'Starting a new session, resetting chat, and clearing terminal.',
620
+ 'Starting a new session and clearing.':
621
+ 'Starting a new session and clearing.',
610
622
 
611
623
  // ============================================================================
612
624
  // Commands - Compress
@@ -636,8 +648,8 @@ export default {
636
648
  'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.':
637
649
  'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.',
638
650
  "Error adding '{{path}}': {{error}}": "Error adding '{{path}}': {{error}}",
639
- 'Successfully added UMS.md files from the following directories if there are:\n- {{directories}}':
640
- 'Successfully added UMS.md files from the following directories if there are:\n- {{directories}}',
651
+ 'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}':
652
+ 'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}',
641
653
  'Error refreshing memory: {{error}}': 'Error refreshing memory: {{error}}',
642
654
  'Successfully added directories:\n- {{directories}}':
643
655
  'Successfully added directories:\n- {{directories}}',
@@ -690,18 +702,6 @@ export default {
690
702
  'A custom command wants to run the following shell commands:':
691
703
  'A custom command wants to run the following shell commands:',
692
704
 
693
- // ============================================================================
694
- // Dialogs - Quit Confirmation
695
- // ============================================================================
696
- 'What would you like to do before exiting?':
697
- 'What would you like to do before exiting?',
698
- 'Quit immediately (/quit)': 'Quit immediately (/quit)',
699
- 'Generate summary and quit (/summary)':
700
- 'Generate summary and quit (/summary)',
701
- 'Save conversation and quit (/chat save)':
702
- 'Save conversation and quit (/chat save)',
703
- 'Cancel (stay in application)': 'Cancel (stay in application)',
704
-
705
705
  // ============================================================================
706
706
  // Dialogs - Pro Quota
707
707
  // ============================================================================
@@ -739,8 +739,8 @@ export default {
739
739
  'You must select an auth method to proceed. Press Ctrl+C again to exit.':
740
740
  'You must select an auth method to proceed. Press Ctrl+C again to exit.',
741
741
  '(Use Enter to Set Auth)': '(Use Enter to Set Auth)',
742
- 'Terms of Services and Privacy Notice for UMS Code':
743
- 'Terms of Services and Privacy Notice for UMS Code',
742
+ 'Terms of Services and Privacy Notice for Qwen Code':
743
+ 'Terms of Services and Privacy Notice for Qwen Code',
744
744
  'Qwen OAuth': 'Qwen OAuth',
745
745
  OpenAI: 'OpenAI',
746
746
  'Failed to login. Message: {{message}}':
@@ -872,14 +872,15 @@ export default {
872
872
  '1. Ask questions, edit files, or run commands.',
873
873
  '2. Be specific for the best results.':
874
874
  '2. Be specific for the best results.',
875
- 'files to customize your interactions with UMS Code.':
876
- 'files to customize your interactions with UMS Code.',
875
+ 'files to customize your interactions with Qwen Code.':
876
+ 'files to customize your interactions with Qwen Code.',
877
877
  'for more information.': 'for more information.',
878
878
 
879
879
  // ============================================================================
880
880
  // Exit Screen / Stats
881
881
  // ============================================================================
882
882
  'Agent powering down. Goodbye!': 'Agent powering down. Goodbye!',
883
+ 'To continue this session, run': 'To continue this session, run',
883
884
  'Interaction Summary': 'Interaction Summary',
884
885
  'Session ID:': 'Session ID:',
885
886
  'Tool Calls:': 'Tool Calls:',
@@ -938,192 +939,137 @@ export default {
938
939
  // ============================================================================
939
940
  'Waiting for user confirmation...': 'Waiting for user confirmation...',
940
941
  '(esc to cancel, {{time}})': '(esc to cancel, {{time}})',
941
- "I'm Feeling Lucky": "I'm Feeling Lucky",
942
- 'Shipping awesomeness... ': 'Shipping awesomeness... ',
943
- 'Painting the serifs back on...': 'Painting the serifs back on...',
944
- 'Navigating the slime mold...': 'Navigating the slime mold...',
945
- 'Consulting the digital spirits...': 'Consulting the digital spirits...',
946
- 'Reticulating splines...': 'Reticulating splines...',
947
- 'Warming up the AI hamsters...': 'Warming up the AI hamsters...',
948
- 'Asking the magic conch shell...': 'Asking the magic conch shell...',
949
- 'Generating witty retort...': 'Generating witty retort...',
950
- 'Polishing the algorithms...': 'Polishing the algorithms...',
951
- "Don't rush perfection (or my code)...":
942
+
943
+ // ============================================================================
944
+ // Loading Phrases
945
+ // ============================================================================
946
+ WITTY_LOADING_PHRASES: [
947
+ "I'm Feeling Lucky",
948
+ 'Shipping awesomeness... ',
949
+ 'Painting the serifs back on...',
950
+ 'Navigating the slime mold...',
951
+ 'Consulting the digital spirits...',
952
+ 'Reticulating splines...',
953
+ 'Warming up the AI hamsters...',
954
+ 'Asking the magic conch shell...',
955
+ 'Generating witty retort...',
956
+ 'Polishing the algorithms...',
952
957
  "Don't rush perfection (or my code)...",
953
- 'Brewing fresh bytes...': 'Brewing fresh bytes...',
954
- 'Counting electrons...': 'Counting electrons...',
955
- 'Engaging cognitive processors...': 'Engaging cognitive processors...',
956
- 'Checking for syntax errors in the universe...':
958
+ 'Brewing fresh bytes...',
959
+ 'Counting electrons...',
960
+ 'Engaging cognitive processors...',
957
961
  'Checking for syntax errors in the universe...',
958
- 'One moment, optimizing humor...': 'One moment, optimizing humor...',
959
- 'Shuffling punchlines...': 'Shuffling punchlines...',
960
- 'Untangling neural nets...': 'Untangling neural nets...',
961
- 'Compiling brilliance...': 'Compiling brilliance...',
962
- 'Loading wit.exe...': 'Loading wit.exe...',
963
- 'Summoning the cloud of wisdom...': 'Summoning the cloud of wisdom...',
964
- 'Preparing a witty response...': 'Preparing a witty response...',
965
- "Just a sec, I'm debugging reality...":
962
+ 'One moment, optimizing humor...',
963
+ 'Shuffling punchlines...',
964
+ 'Untangling neural nets...',
965
+ 'Compiling brilliance...',
966
+ 'Loading wit.exe...',
967
+ 'Summoning the cloud of wisdom...',
968
+ 'Preparing a witty response...',
966
969
  "Just a sec, I'm debugging reality...",
967
- 'Confuzzling the options...': 'Confuzzling the options...',
968
- 'Tuning the cosmic frequencies...': 'Tuning the cosmic frequencies...',
969
- 'Crafting a response worthy of your patience...':
970
+ 'Confuzzling the options...',
971
+ 'Tuning the cosmic frequencies...',
970
972
  'Crafting a response worthy of your patience...',
971
- 'Compiling the 1s and 0s...': 'Compiling the 1s and 0s...',
972
- 'Resolving dependencies... and existential crises...':
973
+ 'Compiling the 1s and 0s...',
973
974
  'Resolving dependencies... and existential crises...',
974
- 'Defragmenting memories... both RAM and personal...':
975
975
  'Defragmenting memories... both RAM and personal...',
976
- 'Rebooting the humor module...': 'Rebooting the humor module...',
977
- 'Caching the essentials (mostly cat memes)...':
976
+ 'Rebooting the humor module...',
978
977
  'Caching the essentials (mostly cat memes)...',
979
- 'Optimizing for ludicrous speed': 'Optimizing for ludicrous speed',
980
- "Swapping bits... don't tell the bytes...":
978
+ 'Optimizing for ludicrous speed',
981
979
  "Swapping bits... don't tell the bytes...",
982
- 'Garbage collecting... be right back...':
983
980
  'Garbage collecting... be right back...',
984
- 'Assembling the interwebs...': 'Assembling the interwebs...',
985
- 'Converting coffee into code...': 'Converting coffee into code...',
986
- 'Updating the syntax for reality...': 'Updating the syntax for reality...',
987
- 'Rewiring the synapses...': 'Rewiring the synapses...',
988
- 'Looking for a misplaced semicolon...':
981
+ 'Assembling the interwebs...',
982
+ 'Converting coffee into code...',
983
+ 'Updating the syntax for reality...',
984
+ 'Rewiring the synapses...',
989
985
  'Looking for a misplaced semicolon...',
990
- "Greasin' the cogs of the machine...": "Greasin' the cogs of the machine...",
991
- 'Pre-heating the servers...': 'Pre-heating the servers...',
992
- 'Calibrating the flux capacitor...': 'Calibrating the flux capacitor...',
993
- 'Engaging the improbability drive...': 'Engaging the improbability drive...',
994
- 'Channeling the Force...': 'Channeling the Force...',
995
- 'Aligning the stars for optimal response...':
986
+ "Greasin' the cogs of the machine...",
987
+ 'Pre-heating the servers...',
988
+ 'Calibrating the flux capacitor...',
989
+ 'Engaging the improbability drive...',
990
+ 'Channeling the Force...',
996
991
  'Aligning the stars for optimal response...',
997
- 'So say we all...': 'So say we all...',
998
- 'Loading the next great idea...': 'Loading the next great idea...',
999
- "Just a moment, I'm in the zone...": "Just a moment, I'm in the zone...",
1000
- 'Preparing to dazzle you with brilliance...':
992
+ 'So say we all...',
993
+ 'Loading the next great idea...',
994
+ "Just a moment, I'm in the zone...",
1001
995
  'Preparing to dazzle you with brilliance...',
1002
- "Just a tick, I'm polishing my wit...":
1003
996
  "Just a tick, I'm polishing my wit...",
1004
- "Hold tight, I'm crafting a masterpiece...":
1005
997
  "Hold tight, I'm crafting a masterpiece...",
1006
- "Just a jiffy, I'm debugging the universe...":
1007
998
  "Just a jiffy, I'm debugging the universe...",
1008
- "Just a moment, I'm aligning the pixels...":
1009
999
  "Just a moment, I'm aligning the pixels...",
1010
- "Just a sec, I'm optimizing the humor...":
1011
1000
  "Just a sec, I'm optimizing the humor...",
1012
- "Just a moment, I'm tuning the algorithms...":
1013
1001
  "Just a moment, I'm tuning the algorithms...",
1014
- 'Warp speed engaged...': 'Warp speed engaged...',
1015
- 'Mining for more Dilithium crystals...':
1002
+ 'Warp speed engaged...',
1016
1003
  'Mining for more Dilithium crystals...',
1017
- "Don't panic...": "Don't panic...",
1018
- 'Following the white rabbit...': 'Following the white rabbit...',
1019
- 'The truth is in here... somewhere...':
1004
+ "Don't panic...",
1005
+ 'Following the white rabbit...',
1020
1006
  'The truth is in here... somewhere...',
1021
- 'Blowing on the cartridge...': 'Blowing on the cartridge...',
1022
- 'Loading... Do a barrel roll!': 'Loading... Do a barrel roll!',
1023
- 'Waiting for the respawn...': 'Waiting for the respawn...',
1024
- 'Finishing the Kessel Run in less than 12 parsecs...':
1007
+ 'Blowing on the cartridge...',
1008
+ 'Loading... Do a barrel roll!',
1009
+ 'Waiting for the respawn...',
1025
1010
  'Finishing the Kessel Run in less than 12 parsecs...',
1026
- "The cake is not a lie, it's just still loading...":
1027
1011
  "The cake is not a lie, it's just still loading...",
1028
- 'Fiddling with the character creation screen...':
1029
1012
  'Fiddling with the character creation screen...',
1030
- "Just a moment, I'm finding the right meme...":
1031
1013
  "Just a moment, I'm finding the right meme...",
1032
- "Pressing 'A' to continue...": "Pressing 'A' to continue...",
1033
- 'Herding digital cats...': 'Herding digital cats...',
1034
- 'Polishing the pixels...': 'Polishing the pixels...',
1035
- 'Finding a suitable loading screen pun...':
1014
+ "Pressing 'A' to continue...",
1015
+ 'Herding digital cats...',
1016
+ 'Polishing the pixels...',
1036
1017
  'Finding a suitable loading screen pun...',
1037
- 'Distracting you with this witty phrase...':
1038
1018
  'Distracting you with this witty phrase...',
1039
- 'Almost there... probably...': 'Almost there... probably...',
1040
- 'Our hamsters are working as fast as they can...':
1019
+ 'Almost there... probably...',
1041
1020
  'Our hamsters are working as fast as they can...',
1042
- 'Giving Cloudy a pat on the head...': 'Giving Cloudy a pat on the head...',
1043
- 'Petting the cat...': 'Petting the cat...',
1044
- 'Rickrolling my boss...': 'Rickrolling my boss...',
1045
- 'Never gonna give you up, never gonna let you down...':
1021
+ 'Giving Cloudy a pat on the head...',
1022
+ 'Petting the cat...',
1023
+ 'Rickrolling my boss...',
1046
1024
  'Never gonna give you up, never gonna let you down...',
1047
- 'Slapping the bass...': 'Slapping the bass...',
1048
- 'Tasting the snozberries...': 'Tasting the snozberries...',
1049
- "I'm going the distance, I'm going for speed...":
1025
+ 'Slapping the bass...',
1026
+ 'Tasting the snozberries...',
1050
1027
  "I'm going the distance, I'm going for speed...",
1051
- 'Is this the real life? Is this just fantasy?...':
1052
1028
  'Is this the real life? Is this just fantasy?...',
1053
- "I've got a good feeling about this...":
1054
1029
  "I've got a good feeling about this...",
1055
- 'Poking the bear...': 'Poking the bear...',
1056
- 'Doing research on the latest memes...':
1030
+ 'Poking the bear...',
1057
1031
  'Doing research on the latest memes...',
1058
- 'Figuring out how to make this more witty...':
1059
1032
  'Figuring out how to make this more witty...',
1060
- 'Hmmm... let me think...': 'Hmmm... let me think...',
1061
- 'What do you call a fish with no eyes? A fsh...':
1033
+ 'Hmmm... let me think...',
1062
1034
  'What do you call a fish with no eyes? A fsh...',
1063
- 'Why did the computer go to therapy? It had too many bytes...':
1064
1035
  'Why did the computer go to therapy? It had too many bytes...',
1065
- "Why don't programmers like nature? It has too many bugs...":
1066
1036
  "Why don't programmers like nature? It has too many bugs...",
1067
- 'Why do programmers prefer dark mode? Because light attracts bugs...':
1068
1037
  'Why do programmers prefer dark mode? Because light attracts bugs...',
1069
- 'Why did the developer go broke? Because they used up all their cache...':
1070
1038
  'Why did the developer go broke? Because they used up all their cache...',
1071
- "What can you do with a broken pencil? Nothing, it's pointless...":
1072
1039
  "What can you do with a broken pencil? Nothing, it's pointless...",
1073
- 'Applying percussive maintenance...': 'Applying percussive maintenance...',
1074
- 'Searching for the correct USB orientation...':
1040
+ 'Applying percussive maintenance...',
1075
1041
  'Searching for the correct USB orientation...',
1076
- 'Ensuring the magic smoke stays inside the wires...':
1077
1042
  'Ensuring the magic smoke stays inside the wires...',
1078
- 'Rewriting in Rust for no particular reason...':
1079
- 'Rewriting in Rust for no particular reason...',
1080
- 'Trying to exit Vim...': 'Trying to exit Vim...',
1081
- 'Spinning up the hamster wheel...': 'Spinning up the hamster wheel...',
1082
- "That's not a bug, it's an undocumented feature...":
1043
+ 'Trying to exit Vim...',
1044
+ 'Spinning up the hamster wheel...',
1083
1045
  "That's not a bug, it's an undocumented feature...",
1084
- 'Engage.': 'Engage.',
1085
- "I'll be back... with an answer.": "I'll be back... with an answer.",
1086
- 'My other process is a TARDIS...': 'My other process is a TARDIS...',
1087
- 'Communing with the machine spirit...':
1046
+ 'Engage.',
1047
+ "I'll be back... with an answer.",
1048
+ 'My other process is a TARDIS...',
1088
1049
  'Communing with the machine spirit...',
1089
- 'Letting the thoughts marinate...': 'Letting the thoughts marinate...',
1090
- 'Just remembered where I put my keys...':
1050
+ 'Letting the thoughts marinate...',
1091
1051
  'Just remembered where I put my keys...',
1092
- 'Pondering the orb...': 'Pondering the orb...',
1093
- "I've seen things you people wouldn't believe... like a user who reads loading messages.":
1052
+ 'Pondering the orb...',
1094
1053
  "I've seen things you people wouldn't believe... like a user who reads loading messages.",
1095
- 'Initiating thoughtful gaze...': 'Initiating thoughtful gaze...',
1096
- "What's a computer's favorite snack? Microchips.":
1054
+ 'Initiating thoughtful gaze...',
1097
1055
  "What's a computer's favorite snack? Microchips.",
1098
- "Why do Java developers wear glasses? Because they don't C#.":
1099
1056
  "Why do Java developers wear glasses? Because they don't C#.",
1100
- 'Charging the laser... pew pew!': 'Charging the laser... pew pew!',
1101
- 'Dividing by zero... just kidding!': 'Dividing by zero... just kidding!',
1102
- 'Looking for an adult superviso... I mean, processing.':
1057
+ 'Charging the laser... pew pew!',
1058
+ 'Dividing by zero... just kidding!',
1103
1059
  'Looking for an adult superviso... I mean, processing.',
1104
- 'Making it go beep boop.': 'Making it go beep boop.',
1105
- 'Buffering... because even AIs need a moment.':
1060
+ 'Making it go beep boop.',
1106
1061
  'Buffering... because even AIs need a moment.',
1107
- 'Entangling quantum particles for a faster response...':
1108
1062
  'Entangling quantum particles for a faster response...',
1109
- 'Polishing the chrome... on the algorithms.':
1110
1063
  'Polishing the chrome... on the algorithms.',
1111
- 'Are you not entertained? (Working on it!)':
1112
1064
  'Are you not entertained? (Working on it!)',
1113
- 'Summoning the code gremlins... to help, of course.':
1114
1065
  'Summoning the code gremlins... to help, of course.',
1115
- 'Just waiting for the dial-up tone to finish...':
1116
1066
  'Just waiting for the dial-up tone to finish...',
1117
- 'Recalibrating the humor-o-meter.': 'Recalibrating the humor-o-meter.',
1118
- 'My other loading screen is even funnier.':
1067
+ 'Recalibrating the humor-o-meter.',
1119
1068
  'My other loading screen is even funnier.',
1120
- "Pretty sure there's a cat walking on the keyboard somewhere...":
1121
1069
  "Pretty sure there's a cat walking on the keyboard somewhere...",
1122
- 'Enhancing... Enhancing... Still loading.':
1123
1070
  'Enhancing... Enhancing... Still loading.',
1124
- "It's not a bug, it's a feature... of this loading screen.":
1125
1071
  "It's not a bug, it's a feature... of this loading screen.",
1126
- 'Have you tried turning it off and on again? (The loading screen, not me.)':
1127
1072
  'Have you tried turning it off and on again? (The loading screen, not me.)',
1128
- 'Constructing additional pylons...': 'Constructing additional pylons...',
1073
+ 'Constructing additional pylons...',
1074
+ ],
1129
1075
  };