@umsai/ums-code 0.5.0-v1 → 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 (194) hide show
  1. package/dist/package.json +4 -4
  2. package/dist/src/acp-integration/acp.d.ts +6 -0
  3. package/dist/src/acp-integration/acp.js +7 -0
  4. package/dist/src/acp-integration/acp.js.map +1 -1
  5. package/dist/src/acp-integration/acpAgent.js +33 -7
  6. package/dist/src/acp-integration/acpAgent.js.map +1 -1
  7. package/dist/src/acp-integration/schema.d.ts +1235 -892
  8. package/dist/src/acp-integration/schema.js +19 -0
  9. package/dist/src/acp-integration/schema.js.map +1 -1
  10. package/dist/src/acp-integration/session/Session.d.ts +0 -5
  11. package/dist/src/acp-integration/session/Session.js +94 -15
  12. package/dist/src/acp-integration/session/Session.js.map +1 -1
  13. package/dist/src/commandMode.d.ts +11 -0
  14. package/dist/src/commandMode.js +238 -0
  15. package/dist/src/commandMode.js.map +1 -0
  16. package/dist/src/config/auth.js +26 -0
  17. package/dist/src/config/auth.js.map +1 -1
  18. package/dist/src/config/config.d.ts +8 -0
  19. package/dist/src/config/config.js +96 -21
  20. package/dist/src/config/config.js.map +1 -1
  21. package/dist/src/config/extensions/update.test.js +9 -0
  22. package/dist/src/config/extensions/update.test.js.map +1 -1
  23. package/dist/src/config/settingsSchema.d.ts +41 -2
  24. package/dist/src/config/settingsSchema.js +36 -2
  25. package/dist/src/config/settingsSchema.js.map +1 -1
  26. package/dist/src/core/initializer.js +3 -0
  27. package/dist/src/core/initializer.js.map +1 -1
  28. package/dist/src/gemini.js +39 -19
  29. package/dist/src/gemini.js.map +1 -1
  30. package/dist/src/gemini.test.js +30 -4
  31. package/dist/src/gemini.test.js.map +1 -1
  32. package/dist/src/generated/git-commit.d.ts +3 -3
  33. package/dist/src/generated/git-commit.js +3 -3
  34. package/dist/src/i18n/index.d.ts +10 -2
  35. package/dist/src/i18n/index.js +22 -1
  36. package/dist/src/i18n/index.js.map +1 -1
  37. package/dist/src/i18n/languages.d.ts +20 -0
  38. package/dist/src/i18n/languages.js +36 -0
  39. package/dist/src/i18n/languages.js.map +1 -0
  40. package/dist/src/i18n/locales/de.js +1073 -0
  41. package/dist/src/i18n/locales/en.js +120 -162
  42. package/dist/src/i18n/locales/ru.js +125 -151
  43. package/dist/src/i18n/locales/zh.js +51 -164
  44. package/dist/src/nonInteractive/control/controllers/systemController.d.ts +1 -1
  45. package/dist/src/nonInteractive/control/controllers/systemController.js +5 -10
  46. package/dist/src/nonInteractive/control/controllers/systemController.js.map +1 -1
  47. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js +11 -4
  48. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js.map +1 -1
  49. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js +40 -0
  50. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js.map +1 -1
  51. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js +50 -0
  52. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js.map +1 -1
  53. package/dist/src/nonInteractiveCli.js +104 -18
  54. package/dist/src/nonInteractiveCli.js.map +1 -1
  55. package/dist/src/nonInteractiveCliCommands.d.ts +48 -9
  56. package/dist/src/nonInteractiveCliCommands.js +180 -64
  57. package/dist/src/nonInteractiveCliCommands.js.map +1 -1
  58. package/dist/src/{ui/hooks/useQuotaAndFallback.test.d.ts → nonInteractiveCliCommands.test.d.ts} +1 -1
  59. package/dist/src/nonInteractiveCliCommands.test.js +157 -0
  60. package/dist/src/nonInteractiveCliCommands.test.js.map +1 -0
  61. package/dist/src/services/BuiltinCommandLoader.js +2 -0
  62. package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
  63. package/dist/src/services/McpPromptLoader.js +4 -2
  64. package/dist/src/services/McpPromptLoader.js.map +1 -1
  65. package/dist/src/services/McpPromptLoader.test.js +1 -1
  66. package/dist/src/services/McpPromptLoader.test.js.map +1 -1
  67. package/dist/src/ui/AppContainer.js +23 -20
  68. package/dist/src/ui/AppContainer.js.map +1 -1
  69. package/dist/src/ui/AppContainer.test.js +0 -46
  70. package/dist/src/ui/AppContainer.test.js.map +1 -1
  71. package/dist/src/ui/auth/AuthDialog.test.js +4 -4
  72. package/dist/src/ui/auth/AuthDialog.test.js.map +1 -1
  73. package/dist/src/ui/auth/useAuth.js +11 -3
  74. package/dist/src/ui/auth/useAuth.js.map +1 -1
  75. package/dist/src/ui/commands/approvalModeCommand.js +53 -4
  76. package/dist/src/ui/commands/approvalModeCommand.js.map +1 -1
  77. package/dist/src/ui/commands/approvalModeCommand.test.js +72 -10
  78. package/dist/src/ui/commands/approvalModeCommand.test.js.map +1 -1
  79. package/dist/src/ui/commands/compressCommand.js +86 -16
  80. package/dist/src/ui/commands/compressCommand.js.map +1 -1
  81. package/dist/src/ui/commands/languageCommand.d.ts +6 -1
  82. package/dist/src/ui/commands/languageCommand.js +162 -216
  83. package/dist/src/ui/commands/languageCommand.js.map +1 -1
  84. package/dist/src/ui/commands/languageCommand.test.js +105 -10
  85. package/dist/src/ui/commands/languageCommand.test.js.map +1 -1
  86. package/dist/src/ui/commands/restoreCommand.js +1 -1
  87. package/dist/src/ui/commands/restoreCommand.js.map +1 -1
  88. package/dist/src/ui/commands/resumeCommand.d.ts +7 -0
  89. package/dist/src/ui/commands/resumeCommand.js +19 -0
  90. package/dist/src/ui/commands/resumeCommand.js.map +1 -0
  91. package/dist/src/ui/{components/ProQuotaDialog.test.d.ts → commands/resumeCommand.test.d.ts} +1 -1
  92. package/dist/src/ui/commands/resumeCommand.test.js +32 -0
  93. package/dist/src/ui/commands/resumeCommand.test.js.map +1 -0
  94. package/dist/src/ui/commands/reviewCommand.js +871 -92
  95. package/dist/src/ui/commands/reviewCommand.js.map +1 -1
  96. package/dist/src/ui/commands/reviewCommand.test.js +55 -0
  97. package/dist/src/ui/commands/reviewCommand.test.js.map +1 -1
  98. package/dist/src/ui/commands/summaryCommand.js +129 -42
  99. package/dist/src/ui/commands/summaryCommand.js.map +1 -1
  100. package/dist/src/ui/commands/types.d.ts +21 -2
  101. package/dist/src/ui/commands/types.js.map +1 -1
  102. package/dist/src/ui/components/DialogManager.js +4 -4
  103. package/dist/src/ui/components/DialogManager.js.map +1 -1
  104. package/dist/src/ui/components/HistoryItemDisplay.test.js +5 -2
  105. package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -1
  106. package/dist/src/ui/components/PermissionsModifyTrustDialog.js +1 -1
  107. package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +1 -1
  108. package/dist/src/ui/components/SessionPicker.d.ts +18 -0
  109. package/dist/src/ui/components/SessionPicker.js +69 -0
  110. package/dist/src/ui/components/SessionPicker.js.map +1 -0
  111. package/dist/src/ui/components/SessionSummaryDisplay.js +6 -2
  112. package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -1
  113. package/dist/src/ui/components/{ResumeSessionPicker.d.ts → StandaloneSessionPicker.d.ts} +1 -1
  114. package/dist/src/ui/components/StandaloneSessionPicker.js +78 -0
  115. package/dist/src/ui/components/StandaloneSessionPicker.js.map +1 -0
  116. package/dist/src/ui/components/StandaloneSessionPicker.test.d.ts +6 -0
  117. package/dist/src/ui/components/StandaloneSessionPicker.test.js +410 -0
  118. package/dist/src/ui/components/StandaloneSessionPicker.test.js.map +1 -0
  119. package/dist/src/ui/components/ums/UMSKeyPrompt.js +1 -1
  120. package/dist/src/ui/components/ums/UMSKeyPrompt.js.map +1 -1
  121. package/dist/src/ui/contexts/UIActionsContext.d.ts +3 -1
  122. package/dist/src/ui/contexts/UIActionsContext.js.map +1 -1
  123. package/dist/src/ui/contexts/UIStateContext.d.ts +2 -8
  124. package/dist/src/ui/contexts/UIStateContext.js.map +1 -1
  125. package/dist/src/ui/hooks/slashCommandProcessor.d.ts +1 -0
  126. package/dist/src/ui/hooks/slashCommandProcessor.js +9 -0
  127. package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
  128. package/dist/src/ui/hooks/useGeminiStream.js +46 -11
  129. package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
  130. package/dist/src/ui/hooks/useLoadingIndicator.test.js +11 -6
  131. package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -1
  132. package/dist/src/ui/hooks/usePhraseCycler.js +12 -136
  133. package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -1
  134. package/dist/src/ui/hooks/useQwenAuth.test.js +1 -1
  135. package/dist/src/ui/hooks/useQwenAuth.test.js.map +1 -1
  136. package/dist/src/ui/hooks/useResumeCommand.d.ts +20 -0
  137. package/dist/src/ui/hooks/useResumeCommand.js +49 -0
  138. package/dist/src/ui/hooks/useResumeCommand.js.map +1 -0
  139. package/dist/src/ui/hooks/useResumeCommand.test.d.ts +6 -0
  140. package/dist/src/ui/hooks/useResumeCommand.test.js +144 -0
  141. package/dist/src/ui/hooks/useResumeCommand.test.js.map +1 -0
  142. package/dist/src/ui/hooks/useSessionPicker.d.ts +36 -0
  143. package/dist/src/ui/hooks/useSessionPicker.js +189 -0
  144. package/dist/src/ui/hooks/useSessionPicker.js.map +1 -0
  145. package/dist/src/ui/hooks/useToolScheduler.test.js +1 -1
  146. package/dist/src/ui/models/availableModels.d.ts +1 -0
  147. package/dist/src/ui/models/availableModels.js +8 -0
  148. package/dist/src/ui/models/availableModels.js.map +1 -1
  149. package/dist/src/ui/utils/resumeHistoryUtils.js +5 -1
  150. package/dist/src/ui/utils/resumeHistoryUtils.js.map +1 -1
  151. package/dist/src/ui/utils/resumeHistoryUtils.test.js +5 -0
  152. package/dist/src/ui/utils/resumeHistoryUtils.test.js.map +1 -1
  153. package/dist/src/ui/utils/sessionPickerUtils.d.ts +30 -0
  154. package/dist/src/ui/utils/sessionPickerUtils.js +41 -0
  155. package/dist/src/ui/utils/sessionPickerUtils.js.map +1 -0
  156. package/dist/src/ui/utils/sessionPickerUtils.test.d.ts +6 -0
  157. package/dist/src/ui/utils/sessionPickerUtils.test.js +38 -0
  158. package/dist/src/ui/utils/sessionPickerUtils.test.js.map +1 -0
  159. package/dist/src/utils/errors.d.ts +1 -1
  160. package/dist/src/utils/errors.js +14 -3
  161. package/dist/src/utils/errors.js.map +1 -1
  162. package/dist/src/utils/errors.test.js +43 -1
  163. package/dist/src/utils/errors.test.js.map +1 -1
  164. package/dist/src/utils/gitUtils.js +22 -5
  165. package/dist/src/utils/gitUtils.js.map +1 -1
  166. package/dist/src/utils/gitUtils.test.js +59 -0
  167. package/dist/src/utils/gitUtils.test.js.map +1 -1
  168. package/dist/src/utils/nonInteractiveHelpers.d.ts +3 -1
  169. package/dist/src/utils/nonInteractiveHelpers.js +13 -14
  170. package/dist/src/utils/nonInteractiveHelpers.js.map +1 -1
  171. package/dist/src/utils/nonInteractiveHelpers.test.js +35 -20
  172. package/dist/src/utils/nonInteractiveHelpers.test.js.map +1 -1
  173. package/dist/src/utils/relaunch.js +2 -2
  174. package/dist/src/utils/relaunch.js.map +1 -1
  175. package/dist/src/utils/relaunch.test.js +5 -5
  176. package/dist/src/utils/relaunch.test.js.map +1 -1
  177. package/dist/src/utils/systemInfo.js +2 -1
  178. package/dist/src/utils/systemInfo.js.map +1 -1
  179. package/dist/src/validateNonInterActiveAuth.js +9 -0
  180. package/dist/src/validateNonInterActiveAuth.js.map +1 -1
  181. package/dist/tsconfig.tsbuildinfo +1 -1
  182. package/package.json +5 -5
  183. package/dist/src/ui/components/ProQuotaDialog.d.ts +0 -13
  184. package/dist/src/ui/components/ProQuotaDialog.js +0 -24
  185. package/dist/src/ui/components/ProQuotaDialog.js.map +0 -1
  186. package/dist/src/ui/components/ProQuotaDialog.test.js +0 -58
  187. package/dist/src/ui/components/ProQuotaDialog.test.js.map +0 -1
  188. package/dist/src/ui/components/ResumeSessionPicker.js +0 -249
  189. package/dist/src/ui/components/ResumeSessionPicker.js.map +0 -1
  190. package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +0 -21
  191. package/dist/src/ui/hooks/useQuotaAndFallback.js +0 -122
  192. package/dist/src/ui/hooks/useQuotaAndFallback.js.map +0 -1
  193. package/dist/src/ui/hooks/useQuotaAndFallback.test.js +0 -269
  194. package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +0 -1
@@ -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,12 +105,12 @@ 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
116
  'Copy the last result or code snippet to clipboard':
@@ -169,8 +172,8 @@ export default {
169
172
  // ============================================================================
170
173
  // Agents - Creation Wizard
171
174
  // ============================================================================
172
- 'Project Level (.ums/agents/)': 'Project Level (.ums/agents/)',
173
- '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/)',
174
177
  '✅ Subagent Created Successfully!': '✅ Subagent Created Successfully!',
175
178
  'Subagent "{{name}}" has been saved to {{level}} level.':
176
179
  'Subagent "{{name}}" has been saved to {{level}} level.',
@@ -192,8 +195,8 @@ export default {
192
195
  'Step {{n}}: Choose Location': 'Step {{n}}: Choose Location',
193
196
  'Step {{n}}: Choose Generation Method':
194
197
  'Step {{n}}: Choose Generation Method',
195
- 'Generate with UMS Code (Recommended)':
196
- 'Generate with UMS Code (Recommended)',
198
+ 'Generate with Qwen Code (Recommended)':
199
+ 'Generate with Qwen Code (Recommended)',
197
200
  'Manual Creation': 'Manual Creation',
198
201
  'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)':
199
202
  'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)',
@@ -252,12 +255,14 @@ export default {
252
255
  // ============================================================================
253
256
  // Commands - General (continued)
254
257
  // ============================================================================
255
- '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',
256
259
  Settings: 'Settings',
257
260
  '(Use Enter to select{{tabText}})': '(Use Enter to select{{tabText}})',
258
261
  ', Tab to change focus': ', Tab to change focus',
259
- 'To see changes, UMS Code must be restarted. Press r to exit and apply changes now.':
260
- '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.',
261
266
  // ============================================================================
262
267
  // Settings Labels
263
268
  // ============================================================================
@@ -297,7 +302,7 @@ export default {
297
302
  'Load Memory From Include Directories':
298
303
  'Load Memory From Include Directories',
299
304
  'Respect .gitignore': 'Respect .gitignore',
300
- 'Respect .umsignore': 'Respect .umsignore',
305
+ 'Respect .qwenignore': 'Respect .qwenignore',
301
306
  'Enable Recursive File Search': 'Enable Recursive File Search',
302
307
  'Disable Fuzzy Search': 'Disable Fuzzy Search',
303
308
  'Enable Interactive Shell': 'Enable Interactive Shell',
@@ -310,6 +315,7 @@ export default {
310
315
  'Tool Output Truncation Lines': 'Tool Output Truncation Lines',
311
316
  'Folder Trust': 'Folder Trust',
312
317
  'Vision Model Preview': 'Vision Model Preview',
318
+ 'Tool Schema Compliance': 'Tool Schema Compliance',
313
319
  // Settings enum options
314
320
  'Auto (detect from system)': 'Auto (detect from system)',
315
321
  Text: 'Text',
@@ -344,8 +350,8 @@ export default {
344
350
  'install required IDE companion for {{ideName}}',
345
351
  'enable IDE integration': 'enable IDE integration',
346
352
  'disable IDE integration': 'disable IDE integration',
347
- '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.':
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.',
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.',
349
355
  'Set up GitHub Actions': 'Set up GitHub Actions',
350
356
  'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)':
351
357
  'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)',
@@ -580,8 +586,8 @@ export default {
580
586
  // ============================================================================
581
587
  // Commands - Summary
582
588
  // ============================================================================
583
- 'Generate a project summary and save it to .ums/PROJECT_SUMMARY.md':
584
- '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',
585
591
  'No chat client available to generate summary.':
586
592
  'No chat client available to generate summary.',
587
593
  'Already generating summary, wait for previous request to complete':
@@ -589,6 +595,12 @@ export default {
589
595
  'No conversation found to summarize.': 'No conversation found to summarize.',
590
596
  'Failed to generate project context summary: {{error}}':
591
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',
592
604
 
593
605
  // ============================================================================
594
606
  // Commands - Model
@@ -603,9 +615,10 @@ export default {
603
615
  // ============================================================================
604
616
  // Commands - Clear
605
617
  // ============================================================================
606
- 'Clearing terminal and resetting chat.':
607
- 'Clearing terminal and resetting chat.',
608
- '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.',
609
622
 
610
623
  // ============================================================================
611
624
  // Commands - Compress
@@ -635,8 +648,8 @@ export default {
635
648
  'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.':
636
649
  'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.',
637
650
  "Error adding '{{path}}': {{error}}": "Error adding '{{path}}': {{error}}",
638
- 'Successfully added UMS.md files from the following directories if there are:\n- {{directories}}':
639
- '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}}',
640
653
  'Error refreshing memory: {{error}}': 'Error refreshing memory: {{error}}',
641
654
  'Successfully added directories:\n- {{directories}}':
642
655
  'Successfully added directories:\n- {{directories}}',
@@ -726,8 +739,8 @@ export default {
726
739
  'You must select an auth method to proceed. Press Ctrl+C again to exit.':
727
740
  'You must select an auth method to proceed. Press Ctrl+C again to exit.',
728
741
  '(Use Enter to Set Auth)': '(Use Enter to Set Auth)',
729
- 'Terms of Services and Privacy Notice for UMS Code':
730
- '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',
731
744
  'Qwen OAuth': 'Qwen OAuth',
732
745
  OpenAI: 'OpenAI',
733
746
  'Failed to login. Message: {{message}}':
@@ -859,8 +872,8 @@ export default {
859
872
  '1. Ask questions, edit files, or run commands.',
860
873
  '2. Be specific for the best results.':
861
874
  '2. Be specific for the best results.',
862
- 'files to customize your interactions with UMS Code.':
863
- '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.',
864
877
  'for more information.': 'for more information.',
865
878
 
866
879
  // ============================================================================
@@ -926,192 +939,137 @@ export default {
926
939
  // ============================================================================
927
940
  'Waiting for user confirmation...': 'Waiting for user confirmation...',
928
941
  '(esc to cancel, {{time}})': '(esc to cancel, {{time}})',
929
- "I'm Feeling Lucky": "I'm Feeling Lucky",
930
- 'Shipping awesomeness... ': 'Shipping awesomeness... ',
931
- 'Painting the serifs back on...': 'Painting the serifs back on...',
932
- 'Navigating the slime mold...': 'Navigating the slime mold...',
933
- 'Consulting the digital spirits...': 'Consulting the digital spirits...',
934
- 'Reticulating splines...': 'Reticulating splines...',
935
- 'Warming up the AI hamsters...': 'Warming up the AI hamsters...',
936
- 'Asking the magic conch shell...': 'Asking the magic conch shell...',
937
- 'Generating witty retort...': 'Generating witty retort...',
938
- 'Polishing the algorithms...': 'Polishing the algorithms...',
939
- "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...',
940
957
  "Don't rush perfection (or my code)...",
941
- 'Brewing fresh bytes...': 'Brewing fresh bytes...',
942
- 'Counting electrons...': 'Counting electrons...',
943
- 'Engaging cognitive processors...': 'Engaging cognitive processors...',
944
- 'Checking for syntax errors in the universe...':
958
+ 'Brewing fresh bytes...',
959
+ 'Counting electrons...',
960
+ 'Engaging cognitive processors...',
945
961
  'Checking for syntax errors in the universe...',
946
- 'One moment, optimizing humor...': 'One moment, optimizing humor...',
947
- 'Shuffling punchlines...': 'Shuffling punchlines...',
948
- 'Untangling neural nets...': 'Untangling neural nets...',
949
- 'Compiling brilliance...': 'Compiling brilliance...',
950
- 'Loading wit.exe...': 'Loading wit.exe...',
951
- 'Summoning the cloud of wisdom...': 'Summoning the cloud of wisdom...',
952
- 'Preparing a witty response...': 'Preparing a witty response...',
953
- "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...',
954
969
  "Just a sec, I'm debugging reality...",
955
- 'Confuzzling the options...': 'Confuzzling the options...',
956
- 'Tuning the cosmic frequencies...': 'Tuning the cosmic frequencies...',
957
- 'Crafting a response worthy of your patience...':
970
+ 'Confuzzling the options...',
971
+ 'Tuning the cosmic frequencies...',
958
972
  'Crafting a response worthy of your patience...',
959
- 'Compiling the 1s and 0s...': 'Compiling the 1s and 0s...',
960
- 'Resolving dependencies... and existential crises...':
973
+ 'Compiling the 1s and 0s...',
961
974
  'Resolving dependencies... and existential crises...',
962
- 'Defragmenting memories... both RAM and personal...':
963
975
  'Defragmenting memories... both RAM and personal...',
964
- 'Rebooting the humor module...': 'Rebooting the humor module...',
965
- 'Caching the essentials (mostly cat memes)...':
976
+ 'Rebooting the humor module...',
966
977
  'Caching the essentials (mostly cat memes)...',
967
- 'Optimizing for ludicrous speed': 'Optimizing for ludicrous speed',
968
- "Swapping bits... don't tell the bytes...":
978
+ 'Optimizing for ludicrous speed',
969
979
  "Swapping bits... don't tell the bytes...",
970
- 'Garbage collecting... be right back...':
971
980
  'Garbage collecting... be right back...',
972
- 'Assembling the interwebs...': 'Assembling the interwebs...',
973
- 'Converting coffee into code...': 'Converting coffee into code...',
974
- 'Updating the syntax for reality...': 'Updating the syntax for reality...',
975
- 'Rewiring the synapses...': 'Rewiring the synapses...',
976
- 'Looking for a misplaced semicolon...':
981
+ 'Assembling the interwebs...',
982
+ 'Converting coffee into code...',
983
+ 'Updating the syntax for reality...',
984
+ 'Rewiring the synapses...',
977
985
  'Looking for a misplaced semicolon...',
978
- "Greasin' the cogs of the machine...": "Greasin' the cogs of the machine...",
979
- 'Pre-heating the servers...': 'Pre-heating the servers...',
980
- 'Calibrating the flux capacitor...': 'Calibrating the flux capacitor...',
981
- 'Engaging the improbability drive...': 'Engaging the improbability drive...',
982
- 'Channeling the Force...': 'Channeling the Force...',
983
- '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...',
984
991
  'Aligning the stars for optimal response...',
985
- 'So say we all...': 'So say we all...',
986
- 'Loading the next great idea...': 'Loading the next great idea...',
987
- "Just a moment, I'm in the zone...": "Just a moment, I'm in the zone...",
988
- '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...",
989
995
  'Preparing to dazzle you with brilliance...',
990
- "Just a tick, I'm polishing my wit...":
991
996
  "Just a tick, I'm polishing my wit...",
992
- "Hold tight, I'm crafting a masterpiece...":
993
997
  "Hold tight, I'm crafting a masterpiece...",
994
- "Just a jiffy, I'm debugging the universe...":
995
998
  "Just a jiffy, I'm debugging the universe...",
996
- "Just a moment, I'm aligning the pixels...":
997
999
  "Just a moment, I'm aligning the pixels...",
998
- "Just a sec, I'm optimizing the humor...":
999
1000
  "Just a sec, I'm optimizing the humor...",
1000
- "Just a moment, I'm tuning the algorithms...":
1001
1001
  "Just a moment, I'm tuning the algorithms...",
1002
- 'Warp speed engaged...': 'Warp speed engaged...',
1003
- 'Mining for more Dilithium crystals...':
1002
+ 'Warp speed engaged...',
1004
1003
  'Mining for more Dilithium crystals...',
1005
- "Don't panic...": "Don't panic...",
1006
- 'Following the white rabbit...': 'Following the white rabbit...',
1007
- 'The truth is in here... somewhere...':
1004
+ "Don't panic...",
1005
+ 'Following the white rabbit...',
1008
1006
  'The truth is in here... somewhere...',
1009
- 'Blowing on the cartridge...': 'Blowing on the cartridge...',
1010
- 'Loading... Do a barrel roll!': 'Loading... Do a barrel roll!',
1011
- 'Waiting for the respawn...': 'Waiting for the respawn...',
1012
- '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...',
1013
1010
  'Finishing the Kessel Run in less than 12 parsecs...',
1014
- "The cake is not a lie, it's just still loading...":
1015
1011
  "The cake is not a lie, it's just still loading...",
1016
- 'Fiddling with the character creation screen...':
1017
1012
  'Fiddling with the character creation screen...',
1018
- "Just a moment, I'm finding the right meme...":
1019
1013
  "Just a moment, I'm finding the right meme...",
1020
- "Pressing 'A' to continue...": "Pressing 'A' to continue...",
1021
- 'Herding digital cats...': 'Herding digital cats...',
1022
- 'Polishing the pixels...': 'Polishing the pixels...',
1023
- 'Finding a suitable loading screen pun...':
1014
+ "Pressing 'A' to continue...",
1015
+ 'Herding digital cats...',
1016
+ 'Polishing the pixels...',
1024
1017
  'Finding a suitable loading screen pun...',
1025
- 'Distracting you with this witty phrase...':
1026
1018
  'Distracting you with this witty phrase...',
1027
- 'Almost there... probably...': 'Almost there... probably...',
1028
- 'Our hamsters are working as fast as they can...':
1019
+ 'Almost there... probably...',
1029
1020
  'Our hamsters are working as fast as they can...',
1030
- 'Giving Cloudy a pat on the head...': 'Giving Cloudy a pat on the head...',
1031
- 'Petting the cat...': 'Petting the cat...',
1032
- 'Rickrolling my boss...': 'Rickrolling my boss...',
1033
- '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...',
1034
1024
  'Never gonna give you up, never gonna let you down...',
1035
- 'Slapping the bass...': 'Slapping the bass...',
1036
- 'Tasting the snozberries...': 'Tasting the snozberries...',
1037
- "I'm going the distance, I'm going for speed...":
1025
+ 'Slapping the bass...',
1026
+ 'Tasting the snozberries...',
1038
1027
  "I'm going the distance, I'm going for speed...",
1039
- 'Is this the real life? Is this just fantasy?...':
1040
1028
  'Is this the real life? Is this just fantasy?...',
1041
- "I've got a good feeling about this...":
1042
1029
  "I've got a good feeling about this...",
1043
- 'Poking the bear...': 'Poking the bear...',
1044
- 'Doing research on the latest memes...':
1030
+ 'Poking the bear...',
1045
1031
  'Doing research on the latest memes...',
1046
- 'Figuring out how to make this more witty...':
1047
1032
  'Figuring out how to make this more witty...',
1048
- 'Hmmm... let me think...': 'Hmmm... let me think...',
1049
- 'What do you call a fish with no eyes? A fsh...':
1033
+ 'Hmmm... let me think...',
1050
1034
  'What do you call a fish with no eyes? A fsh...',
1051
- 'Why did the computer go to therapy? It had too many bytes...':
1052
1035
  'Why did the computer go to therapy? It had too many bytes...',
1053
- "Why don't programmers like nature? It has too many bugs...":
1054
1036
  "Why don't programmers like nature? It has too many bugs...",
1055
- 'Why do programmers prefer dark mode? Because light attracts bugs...':
1056
1037
  'Why do programmers prefer dark mode? Because light attracts bugs...',
1057
- 'Why did the developer go broke? Because they used up all their cache...':
1058
1038
  'Why did the developer go broke? Because they used up all their cache...',
1059
- "What can you do with a broken pencil? Nothing, it's pointless...":
1060
1039
  "What can you do with a broken pencil? Nothing, it's pointless...",
1061
- 'Applying percussive maintenance...': 'Applying percussive maintenance...',
1062
- 'Searching for the correct USB orientation...':
1040
+ 'Applying percussive maintenance...',
1063
1041
  'Searching for the correct USB orientation...',
1064
- 'Ensuring the magic smoke stays inside the wires...':
1065
1042
  'Ensuring the magic smoke stays inside the wires...',
1066
- 'Rewriting in Rust for no particular reason...':
1067
- 'Rewriting in Rust for no particular reason...',
1068
- 'Trying to exit Vim...': 'Trying to exit Vim...',
1069
- 'Spinning up the hamster wheel...': 'Spinning up the hamster wheel...',
1070
- "That's not a bug, it's an undocumented feature...":
1043
+ 'Trying to exit Vim...',
1044
+ 'Spinning up the hamster wheel...',
1071
1045
  "That's not a bug, it's an undocumented feature...",
1072
- 'Engage.': 'Engage.',
1073
- "I'll be back... with an answer.": "I'll be back... with an answer.",
1074
- 'My other process is a TARDIS...': 'My other process is a TARDIS...',
1075
- 'Communing with the machine spirit...':
1046
+ 'Engage.',
1047
+ "I'll be back... with an answer.",
1048
+ 'My other process is a TARDIS...',
1076
1049
  'Communing with the machine spirit...',
1077
- 'Letting the thoughts marinate...': 'Letting the thoughts marinate...',
1078
- 'Just remembered where I put my keys...':
1050
+ 'Letting the thoughts marinate...',
1079
1051
  'Just remembered where I put my keys...',
1080
- 'Pondering the orb...': 'Pondering the orb...',
1081
- "I've seen things you people wouldn't believe... like a user who reads loading messages.":
1052
+ 'Pondering the orb...',
1082
1053
  "I've seen things you people wouldn't believe... like a user who reads loading messages.",
1083
- 'Initiating thoughtful gaze...': 'Initiating thoughtful gaze...',
1084
- "What's a computer's favorite snack? Microchips.":
1054
+ 'Initiating thoughtful gaze...',
1085
1055
  "What's a computer's favorite snack? Microchips.",
1086
- "Why do Java developers wear glasses? Because they don't C#.":
1087
1056
  "Why do Java developers wear glasses? Because they don't C#.",
1088
- 'Charging the laser... pew pew!': 'Charging the laser... pew pew!',
1089
- 'Dividing by zero... just kidding!': 'Dividing by zero... just kidding!',
1090
- 'Looking for an adult superviso... I mean, processing.':
1057
+ 'Charging the laser... pew pew!',
1058
+ 'Dividing by zero... just kidding!',
1091
1059
  'Looking for an adult superviso... I mean, processing.',
1092
- 'Making it go beep boop.': 'Making it go beep boop.',
1093
- 'Buffering... because even AIs need a moment.':
1060
+ 'Making it go beep boop.',
1094
1061
  'Buffering... because even AIs need a moment.',
1095
- 'Entangling quantum particles for a faster response...':
1096
1062
  'Entangling quantum particles for a faster response...',
1097
- 'Polishing the chrome... on the algorithms.':
1098
1063
  'Polishing the chrome... on the algorithms.',
1099
- 'Are you not entertained? (Working on it!)':
1100
1064
  'Are you not entertained? (Working on it!)',
1101
- 'Summoning the code gremlins... to help, of course.':
1102
1065
  'Summoning the code gremlins... to help, of course.',
1103
- 'Just waiting for the dial-up tone to finish...':
1104
1066
  'Just waiting for the dial-up tone to finish...',
1105
- 'Recalibrating the humor-o-meter.': 'Recalibrating the humor-o-meter.',
1106
- 'My other loading screen is even funnier.':
1067
+ 'Recalibrating the humor-o-meter.',
1107
1068
  'My other loading screen is even funnier.',
1108
- "Pretty sure there's a cat walking on the keyboard somewhere...":
1109
1069
  "Pretty sure there's a cat walking on the keyboard somewhere...",
1110
- 'Enhancing... Enhancing... Still loading.':
1111
1070
  'Enhancing... Enhancing... Still loading.',
1112
- "It's not a bug, it's a feature... of this loading screen.":
1113
1071
  "It's not a bug, it's a feature... of this loading screen.",
1114
- 'Have you tried turning it off and on again? (The loading screen, not me.)':
1115
1072
  'Have you tried turning it off and on again? (The loading screen, not me.)',
1116
- 'Constructing additional pylons...': 'Constructing additional pylons...',
1073
+ 'Constructing additional pylons...',
1074
+ ],
1117
1075
  };