@tulex-cli/tulex-code 0.1.1

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 (3094) hide show
  1. package/README.md +54 -0
  2. package/dist/.last_build +0 -0
  3. package/dist/index.d.ts +7 -0
  4. package/dist/index.js +98 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/package.json +121 -0
  7. package/dist/src/acp-integration/acpAgent.d.ts +59 -0
  8. package/dist/src/acp-integration/acpAgent.js +3646 -0
  9. package/dist/src/acp-integration/acpAgent.js.map +1 -0
  10. package/dist/src/acp-integration/acpAgent.test.d.ts +6 -0
  11. package/dist/src/acp-integration/acpAgent.test.js +3690 -0
  12. package/dist/src/acp-integration/acpAgent.test.js.map +1 -0
  13. package/dist/src/acp-integration/acpAgent.worktree.test.d.ts +16 -0
  14. package/dist/src/acp-integration/acpAgent.worktree.test.js +354 -0
  15. package/dist/src/acp-integration/acpAgent.worktree.test.js.map +1 -0
  16. package/dist/src/acp-integration/authMethods.d.ts +9 -0
  17. package/dist/src/acp-integration/authMethods.js +28 -0
  18. package/dist/src/acp-integration/authMethods.js.map +1 -0
  19. package/dist/src/acp-integration/authMethods.test.d.ts +6 -0
  20. package/dist/src/acp-integration/authMethods.test.js +23 -0
  21. package/dist/src/acp-integration/authMethods.test.js.map +1 -0
  22. package/dist/src/acp-integration/authPreflight.test.d.ts +6 -0
  23. package/dist/src/acp-integration/authPreflight.test.js +54 -0
  24. package/dist/src/acp-integration/authPreflight.test.js.map +1 -0
  25. package/dist/src/acp-integration/errorCodes.d.ts +15 -0
  26. package/dist/src/acp-integration/errorCodes.js +22 -0
  27. package/dist/src/acp-integration/errorCodes.js.map +1 -0
  28. package/dist/src/acp-integration/runtimeOutputDirContext.d.ts +2 -0
  29. package/dist/src/acp-integration/runtimeOutputDirContext.js +5 -0
  30. package/dist/src/acp-integration/runtimeOutputDirContext.js.map +1 -0
  31. package/dist/src/acp-integration/runtimeOutputDirContext.test.d.ts +1 -0
  32. package/dist/src/acp-integration/runtimeOutputDirContext.test.js +29 -0
  33. package/dist/src/acp-integration/runtimeOutputDirContext.test.js.map +1 -0
  34. package/dist/src/acp-integration/service/filesystem.d.ts +17 -0
  35. package/dist/src/acp-integration/service/filesystem.js +73 -0
  36. package/dist/src/acp-integration/service/filesystem.js.map +1 -0
  37. package/dist/src/acp-integration/service/filesystem.test.d.ts +6 -0
  38. package/dist/src/acp-integration/service/filesystem.test.js +85 -0
  39. package/dist/src/acp-integration/service/filesystem.test.js.map +1 -0
  40. package/dist/src/acp-integration/session/HistoryReplayer.d.ts +63 -0
  41. package/dist/src/acp-integration/session/HistoryReplayer.js +222 -0
  42. package/dist/src/acp-integration/session/HistoryReplayer.js.map +1 -0
  43. package/dist/src/acp-integration/session/HistoryReplayer.test.d.ts +6 -0
  44. package/dist/src/acp-integration/session/HistoryReplayer.test.js +405 -0
  45. package/dist/src/acp-integration/session/HistoryReplayer.test.js.map +1 -0
  46. package/dist/src/acp-integration/session/Session.d.ts +150 -0
  47. package/dist/src/acp-integration/session/Session.js +2381 -0
  48. package/dist/src/acp-integration/session/Session.js.map +1 -0
  49. package/dist/src/acp-integration/session/Session.test.d.ts +6 -0
  50. package/dist/src/acp-integration/session/Session.test.js +3845 -0
  51. package/dist/src/acp-integration/session/Session.test.js.map +1 -0
  52. package/dist/src/acp-integration/session/Session.worktree.test.d.ts +18 -0
  53. package/dist/src/acp-integration/session/Session.worktree.test.js +195 -0
  54. package/dist/src/acp-integration/session/Session.worktree.test.js.map +1 -0
  55. package/dist/src/acp-integration/session/SubAgentTracker.d.ts +58 -0
  56. package/dist/src/acp-integration/session/SubAgentTracker.js +208 -0
  57. package/dist/src/acp-integration/session/SubAgentTracker.js.map +1 -0
  58. package/dist/src/acp-integration/session/SubAgentTracker.test.d.ts +6 -0
  59. package/dist/src/acp-integration/session/SubAgentTracker.test.js +612 -0
  60. package/dist/src/acp-integration/session/SubAgentTracker.test.js.map +1 -0
  61. package/dist/src/acp-integration/session/emitters/BaseEmitter.d.ts +34 -0
  62. package/dist/src/acp-integration/session/emitters/BaseEmitter.js +53 -0
  63. package/dist/src/acp-integration/session/emitters/BaseEmitter.js.map +1 -0
  64. package/dist/src/acp-integration/session/emitters/MessageEmitter.d.ts +61 -0
  65. package/dist/src/acp-integration/session/emitters/MessageEmitter.js +124 -0
  66. package/dist/src/acp-integration/session/emitters/MessageEmitter.js.map +1 -0
  67. package/dist/src/acp-integration/session/emitters/MessageEmitter.test.d.ts +6 -0
  68. package/dist/src/acp-integration/session/emitters/MessageEmitter.test.js +202 -0
  69. package/dist/src/acp-integration/session/emitters/MessageEmitter.test.js.map +1 -0
  70. package/dist/src/acp-integration/session/emitters/PlanEmitter.d.ts +39 -0
  71. package/dist/src/acp-integration/session/emitters/PlanEmitter.js +83 -0
  72. package/dist/src/acp-integration/session/emitters/PlanEmitter.js.map +1 -0
  73. package/dist/src/acp-integration/session/emitters/PlanEmitter.test.d.ts +6 -0
  74. package/dist/src/acp-integration/session/emitters/PlanEmitter.test.js +176 -0
  75. package/dist/src/acp-integration/session/emitters/PlanEmitter.test.js.map +1 -0
  76. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.d.ts +82 -0
  77. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.js +284 -0
  78. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.js.map +1 -0
  79. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.d.ts +6 -0
  80. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.js +607 -0
  81. package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.js.map +1 -0
  82. package/dist/src/acp-integration/session/emitters/index.d.ts +9 -0
  83. package/dist/src/acp-integration/session/emitters/index.js +10 -0
  84. package/dist/src/acp-integration/session/emitters/index.js.map +1 -0
  85. package/dist/src/acp-integration/session/index.d.ts +24 -0
  86. package/dist/src/acp-integration/session/index.js +16 -0
  87. package/dist/src/acp-integration/session/index.js.map +1 -0
  88. package/dist/src/acp-integration/session/permissionUtils.d.ts +9 -0
  89. package/dist/src/acp-integration/session/permissionUtils.js +165 -0
  90. package/dist/src/acp-integration/session/permissionUtils.js.map +1 -0
  91. package/dist/src/acp-integration/session/permissionUtils.test.d.ts +6 -0
  92. package/dist/src/acp-integration/session/permissionUtils.test.js +83 -0
  93. package/dist/src/acp-integration/session/permissionUtils.test.js.map +1 -0
  94. package/dist/src/acp-integration/session/rewrite/LlmRewriter.d.ts +26 -0
  95. package/dist/src/acp-integration/session/rewrite/LlmRewriter.js +131 -0
  96. package/dist/src/acp-integration/session/rewrite/LlmRewriter.js.map +1 -0
  97. package/dist/src/acp-integration/session/rewrite/LlmRewriter.test.d.ts +6 -0
  98. package/dist/src/acp-integration/session/rewrite/LlmRewriter.test.js +188 -0
  99. package/dist/src/acp-integration/session/rewrite/LlmRewriter.test.js.map +1 -0
  100. package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.d.ts +42 -0
  101. package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.js +159 -0
  102. package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.js.map +1 -0
  103. package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.test.d.ts +6 -0
  104. package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.test.js +255 -0
  105. package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.test.js.map +1 -0
  106. package/dist/src/acp-integration/session/rewrite/README.md +35 -0
  107. package/dist/src/acp-integration/session/rewrite/TurnBuffer.d.ts +25 -0
  108. package/dist/src/acp-integration/session/rewrite/TurnBuffer.js +53 -0
  109. package/dist/src/acp-integration/session/rewrite/TurnBuffer.js.map +1 -0
  110. package/dist/src/acp-integration/session/rewrite/TurnBuffer.test.d.ts +6 -0
  111. package/dist/src/acp-integration/session/rewrite/TurnBuffer.test.js +95 -0
  112. package/dist/src/acp-integration/session/rewrite/TurnBuffer.test.js.map +1 -0
  113. package/dist/src/acp-integration/session/rewrite/config.d.ts +13 -0
  114. package/dist/src/acp-integration/session/rewrite/config.js +19 -0
  115. package/dist/src/acp-integration/session/rewrite/config.js.map +1 -0
  116. package/dist/src/acp-integration/session/rewrite/config.test.d.ts +6 -0
  117. package/dist/src/acp-integration/session/rewrite/config.test.js +72 -0
  118. package/dist/src/acp-integration/session/rewrite/config.test.js.map +1 -0
  119. package/dist/src/acp-integration/session/rewrite/index.d.ts +8 -0
  120. package/dist/src/acp-integration/session/rewrite/index.js +8 -0
  121. package/dist/src/acp-integration/session/rewrite/index.js.map +1 -0
  122. package/dist/src/acp-integration/session/rewrite/types.d.ts +36 -0
  123. package/dist/src/acp-integration/session/rewrite/types.js +7 -0
  124. package/dist/src/acp-integration/session/rewrite/types.js.map +1 -0
  125. package/dist/src/acp-integration/session/types.d.ts +93 -0
  126. package/dist/src/acp-integration/session/types.js +7 -0
  127. package/dist/src/acp-integration/session/types.js.map +1 -0
  128. package/dist/src/commands/auth.d.ts +9 -0
  129. package/dist/src/commands/auth.js +55 -0
  130. package/dist/src/commands/auth.js.map +1 -0
  131. package/dist/src/commands/auth.test.d.ts +6 -0
  132. package/dist/src/commands/auth.test.js +84 -0
  133. package/dist/src/commands/auth.test.js.map +1 -0
  134. package/dist/src/commands/channel/channel-registry.d.ts +4 -0
  135. package/dist/src/commands/channel/channel-registry.js +33 -0
  136. package/dist/src/commands/channel/channel-registry.js.map +1 -0
  137. package/dist/src/commands/channel/config-utils.d.ts +4 -0
  138. package/dist/src/commands/channel/config-utils.js +66 -0
  139. package/dist/src/commands/channel/config-utils.js.map +1 -0
  140. package/dist/src/commands/channel/config-utils.test.d.ts +1 -0
  141. package/dist/src/commands/channel/config-utils.test.js +142 -0
  142. package/dist/src/commands/channel/config-utils.test.js.map +1 -0
  143. package/dist/src/commands/channel/configure.d.ts +4 -0
  144. package/dist/src/commands/channel/configure.js +65 -0
  145. package/dist/src/commands/channel/configure.js.map +1 -0
  146. package/dist/src/commands/channel/pairing.d.ts +8 -0
  147. package/dist/src/commands/channel/pairing.js +49 -0
  148. package/dist/src/commands/channel/pairing.js.map +1 -0
  149. package/dist/src/commands/channel/pidfile.d.ts +25 -0
  150. package/dist/src/commands/channel/pidfile.js +104 -0
  151. package/dist/src/commands/channel/pidfile.js.map +1 -0
  152. package/dist/src/commands/channel/pidfile.test.d.ts +1 -0
  153. package/dist/src/commands/channel/pidfile.test.js +143 -0
  154. package/dist/src/commands/channel/pidfile.test.js.map +1 -0
  155. package/dist/src/commands/channel/start.d.ts +16 -0
  156. package/dist/src/commands/channel/start.js +352 -0
  157. package/dist/src/commands/channel/start.js.map +1 -0
  158. package/dist/src/commands/channel/start.test.d.ts +1 -0
  159. package/dist/src/commands/channel/start.test.js +156 -0
  160. package/dist/src/commands/channel/start.test.js.map +1 -0
  161. package/dist/src/commands/channel/status.d.ts +2 -0
  162. package/dist/src/commands/channel/status.js +58 -0
  163. package/dist/src/commands/channel/status.js.map +1 -0
  164. package/dist/src/commands/channel/stop.d.ts +2 -0
  165. package/dist/src/commands/channel/stop.js +34 -0
  166. package/dist/src/commands/channel/stop.js.map +1 -0
  167. package/dist/src/commands/channel.d.ts +2 -0
  168. package/dist/src/commands/channel.js +29 -0
  169. package/dist/src/commands/channel.js.map +1 -0
  170. package/dist/src/commands/extensions/consent.d.ts +47 -0
  171. package/dist/src/commands/extensions/consent.js +182 -0
  172. package/dist/src/commands/extensions/consent.js.map +1 -0
  173. package/dist/src/commands/extensions/consent.test.d.ts +6 -0
  174. package/dist/src/commands/extensions/consent.test.js +277 -0
  175. package/dist/src/commands/extensions/consent.test.js.map +1 -0
  176. package/dist/src/commands/extensions/disable.d.ts +13 -0
  177. package/dist/src/commands/extensions/disable.js +65 -0
  178. package/dist/src/commands/extensions/disable.js.map +1 -0
  179. package/dist/src/commands/extensions/disable.test.d.ts +6 -0
  180. package/dist/src/commands/extensions/disable.test.js +101 -0
  181. package/dist/src/commands/extensions/disable.test.js.map +1 -0
  182. package/dist/src/commands/extensions/enable.d.ts +13 -0
  183. package/dist/src/commands/extensions/enable.js +70 -0
  184. package/dist/src/commands/extensions/enable.js.map +1 -0
  185. package/dist/src/commands/extensions/enable.test.d.ts +6 -0
  186. package/dist/src/commands/extensions/enable.test.js +93 -0
  187. package/dist/src/commands/extensions/enable.test.js.map +1 -0
  188. package/dist/src/commands/extensions/examples/agent/agents/diary.md +86 -0
  189. package/dist/src/commands/extensions/examples/agent/qwen-extension.json +5 -0
  190. package/dist/src/commands/extensions/examples/commands/commands/fs/grep-code.md +3 -0
  191. package/dist/src/commands/extensions/examples/commands/qwen-extension.json +5 -0
  192. package/dist/src/commands/extensions/examples/context/QWEN.md +8 -0
  193. package/dist/src/commands/extensions/examples/context/qwen-extension.json +5 -0
  194. package/dist/src/commands/extensions/examples/mcp-server/example.ts +60 -0
  195. package/dist/src/commands/extensions/examples/mcp-server/package.json +18 -0
  196. package/dist/src/commands/extensions/examples/mcp-server/qwen-extension.json +12 -0
  197. package/dist/src/commands/extensions/examples/mcp-server/tsconfig.json +13 -0
  198. package/dist/src/commands/extensions/examples/skills/qwen-extension.json +5 -0
  199. package/dist/src/commands/extensions/examples/skills/skills/synonyms/SKILL.md +48 -0
  200. package/dist/src/commands/extensions/install.d.ts +17 -0
  201. package/dist/src/commands/extensions/install.js +105 -0
  202. package/dist/src/commands/extensions/install.js.map +1 -0
  203. package/dist/src/commands/extensions/install.test.d.ts +6 -0
  204. package/dist/src/commands/extensions/install.test.js +164 -0
  205. package/dist/src/commands/extensions/install.test.js.map +1 -0
  206. package/dist/src/commands/extensions/link.d.ts +12 -0
  207. package/dist/src/commands/extensions/link.js +48 -0
  208. package/dist/src/commands/extensions/link.js.map +1 -0
  209. package/dist/src/commands/extensions/link.test.d.ts +6 -0
  210. package/dist/src/commands/extensions/link.test.js +74 -0
  211. package/dist/src/commands/extensions/link.test.js.map +1 -0
  212. package/dist/src/commands/extensions/list.d.ts +8 -0
  213. package/dist/src/commands/extensions/list.js +35 -0
  214. package/dist/src/commands/extensions/list.js.map +1 -0
  215. package/dist/src/commands/extensions/list.test.d.ts +6 -0
  216. package/dist/src/commands/extensions/list.test.js +76 -0
  217. package/dist/src/commands/extensions/list.test.js.map +1 -0
  218. package/dist/src/commands/extensions/new.d.ts +7 -0
  219. package/dist/src/commands/extensions/new.js +95 -0
  220. package/dist/src/commands/extensions/new.js.map +1 -0
  221. package/dist/src/commands/extensions/new.test.d.ts +6 -0
  222. package/dist/src/commands/extensions/new.test.js +59 -0
  223. package/dist/src/commands/extensions/new.test.js.map +1 -0
  224. package/dist/src/commands/extensions/settings.d.ts +7 -0
  225. package/dist/src/commands/extensions/settings.js +115 -0
  226. package/dist/src/commands/extensions/settings.js.map +1 -0
  227. package/dist/src/commands/extensions/settings.test.d.ts +6 -0
  228. package/dist/src/commands/extensions/settings.test.js +251 -0
  229. package/dist/src/commands/extensions/settings.test.js.map +1 -0
  230. package/dist/src/commands/extensions/uninstall.d.ts +12 -0
  231. package/dist/src/commands/extensions/uninstall.js +50 -0
  232. package/dist/src/commands/extensions/uninstall.js.map +1 -0
  233. package/dist/src/commands/extensions/uninstall.test.d.ts +6 -0
  234. package/dist/src/commands/extensions/uninstall.test.js +18 -0
  235. package/dist/src/commands/extensions/uninstall.test.js.map +1 -0
  236. package/dist/src/commands/extensions/update.d.ts +13 -0
  237. package/dist/src/commands/extensions/update.js +102 -0
  238. package/dist/src/commands/extensions/update.js.map +1 -0
  239. package/dist/src/commands/extensions/update.test.d.ts +6 -0
  240. package/dist/src/commands/extensions/update.test.js +185 -0
  241. package/dist/src/commands/extensions/update.test.js.map +1 -0
  242. package/dist/src/commands/extensions/utils.d.ts +8 -0
  243. package/dist/src/commands/extensions/utils.js +79 -0
  244. package/dist/src/commands/extensions/utils.js.map +1 -0
  245. package/dist/src/commands/extensions/utils.test.d.ts +6 -0
  246. package/dist/src/commands/extensions/utils.test.js +147 -0
  247. package/dist/src/commands/extensions/utils.test.js.map +1 -0
  248. package/dist/src/commands/extensions.d.ts +7 -0
  249. package/dist/src/commands/extensions.js +35 -0
  250. package/dist/src/commands/extensions.js.map +1 -0
  251. package/dist/src/commands/extensions.test.d.ts +6 -0
  252. package/dist/src/commands/extensions.test.js +72 -0
  253. package/dist/src/commands/extensions.test.js.map +1 -0
  254. package/dist/src/commands/hooks.d.ts +7 -0
  255. package/dist/src/commands/hooks.js +20 -0
  256. package/dist/src/commands/hooks.js.map +1 -0
  257. package/dist/src/commands/mcp/add.d.ts +7 -0
  258. package/dist/src/commands/mcp/add.js +247 -0
  259. package/dist/src/commands/mcp/add.js.map +1 -0
  260. package/dist/src/commands/mcp/list.d.ts +8 -0
  261. package/dist/src/commands/mcp/list.js +118 -0
  262. package/dist/src/commands/mcp/list.js.map +1 -0
  263. package/dist/src/commands/mcp/reconnect.d.ts +7 -0
  264. package/dist/src/commands/mcp/reconnect.js +154 -0
  265. package/dist/src/commands/mcp/reconnect.js.map +1 -0
  266. package/dist/src/commands/mcp/remove.d.ts +7 -0
  267. package/dist/src/commands/mcp/remove.js +54 -0
  268. package/dist/src/commands/mcp/remove.js.map +1 -0
  269. package/dist/src/commands/mcp.d.ts +7 -0
  270. package/dist/src/commands/mcp.js +25 -0
  271. package/dist/src/commands/mcp.js.map +1 -0
  272. package/dist/src/commands/review/cleanup.d.ts +7 -0
  273. package/dist/src/commands/review/cleanup.js +81 -0
  274. package/dist/src/commands/review/cleanup.js.map +1 -0
  275. package/dist/src/commands/review/deterministic.d.ts +7 -0
  276. package/dist/src/commands/review/deterministic.js +474 -0
  277. package/dist/src/commands/review/deterministic.js.map +1 -0
  278. package/dist/src/commands/review/fetch-pr.d.ts +7 -0
  279. package/dist/src/commands/review/fetch-pr.js +124 -0
  280. package/dist/src/commands/review/fetch-pr.js.map +1 -0
  281. package/dist/src/commands/review/lib/gh.d.ts +34 -0
  282. package/dist/src/commands/review/lib/gh.js +64 -0
  283. package/dist/src/commands/review/lib/gh.js.map +1 -0
  284. package/dist/src/commands/review/lib/git.d.ts +18 -0
  285. package/dist/src/commands/review/lib/git.js +41 -0
  286. package/dist/src/commands/review/lib/git.js.map +1 -0
  287. package/dist/src/commands/review/lib/paths.d.ts +23 -0
  288. package/dist/src/commands/review/lib/paths.js +37 -0
  289. package/dist/src/commands/review/lib/paths.js.map +1 -0
  290. package/dist/src/commands/review/load-rules.d.ts +7 -0
  291. package/dist/src/commands/review/load-rules.js +112 -0
  292. package/dist/src/commands/review/load-rules.js.map +1 -0
  293. package/dist/src/commands/review/pr-context.d.ts +7 -0
  294. package/dist/src/commands/review/pr-context.js +214 -0
  295. package/dist/src/commands/review/pr-context.js.map +1 -0
  296. package/dist/src/commands/review/presubmit.d.ts +7 -0
  297. package/dist/src/commands/review/presubmit.js +190 -0
  298. package/dist/src/commands/review/presubmit.js.map +1 -0
  299. package/dist/src/commands/review.d.ts +7 -0
  300. package/dist/src/commands/review.js +28 -0
  301. package/dist/src/commands/review.js.map +1 -0
  302. package/dist/src/commands/serve.d.ts +21 -0
  303. package/dist/src/commands/serve.js +214 -0
  304. package/dist/src/commands/serve.js.map +1 -0
  305. package/dist/src/commands/sp.d.ts +7 -0
  306. package/dist/src/commands/sp.js +62 -0
  307. package/dist/src/commands/sp.js.map +1 -0
  308. package/dist/src/config/auth.d.ts +10 -0
  309. package/dist/src/config/auth.js +183 -0
  310. package/dist/src/config/auth.js.map +1 -0
  311. package/dist/src/config/auth.test.d.ts +6 -0
  312. package/dist/src/config/auth.test.js +292 -0
  313. package/dist/src/config/auth.test.js.map +1 -0
  314. package/dist/src/config/config.d.ts +144 -0
  315. package/dist/src/config/config.js +1618 -0
  316. package/dist/src/config/config.js.map +1 -0
  317. package/dist/src/config/jsonSchemaArg.test.d.ts +6 -0
  318. package/dist/src/config/jsonSchemaArg.test.js +305 -0
  319. package/dist/src/config/jsonSchemaArg.test.js.map +1 -0
  320. package/dist/src/config/keyBindings.d.ts +89 -0
  321. package/dist/src/config/keyBindings.js +188 -0
  322. package/dist/src/config/keyBindings.js.map +1 -0
  323. package/dist/src/config/keyBindings.test.d.ts +6 -0
  324. package/dist/src/config/keyBindings.test.js +51 -0
  325. package/dist/src/config/keyBindings.test.js.map +1 -0
  326. package/dist/src/config/loadedSettingsAdapter.d.ts +15 -0
  327. package/dist/src/config/loadedSettingsAdapter.js +80 -0
  328. package/dist/src/config/loadedSettingsAdapter.js.map +1 -0
  329. package/dist/src/config/loadedSettingsAdapter.test.d.ts +6 -0
  330. package/dist/src/config/loadedSettingsAdapter.test.js +127 -0
  331. package/dist/src/config/loadedSettingsAdapter.test.js.map +1 -0
  332. package/dist/src/config/migration/index.d.ts +59 -0
  333. package/dist/src/config/migration/index.js +94 -0
  334. package/dist/src/config/migration/index.js.map +1 -0
  335. package/dist/src/config/migration/index.test.d.ts +6 -0
  336. package/dist/src/config/migration/index.test.js +295 -0
  337. package/dist/src/config/migration/index.test.js.map +1 -0
  338. package/dist/src/config/migration/scheduler.d.ts +51 -0
  339. package/dist/src/config/migration/scheduler.js +95 -0
  340. package/dist/src/config/migration/scheduler.js.map +1 -0
  341. package/dist/src/config/migration/scheduler.test.d.ts +6 -0
  342. package/dist/src/config/migration/scheduler.test.js +129 -0
  343. package/dist/src/config/migration/scheduler.test.js.map +1 -0
  344. package/dist/src/config/migration/types.d.ts +53 -0
  345. package/dist/src/config/migration/types.js +7 -0
  346. package/dist/src/config/migration/types.js.map +1 -0
  347. package/dist/src/config/migration/versions/v1-to-v2-shared.d.ts +27 -0
  348. package/dist/src/config/migration/versions/v1-to-v2-shared.js +174 -0
  349. package/dist/src/config/migration/versions/v1-to-v2-shared.js.map +1 -0
  350. package/dist/src/config/migration/versions/v1-to-v2.d.ts +81 -0
  351. package/dist/src/config/migration/versions/v1-to-v2.js +222 -0
  352. package/dist/src/config/migration/versions/v1-to-v2.js.map +1 -0
  353. package/dist/src/config/migration/versions/v1-to-v2.test.d.ts +6 -0
  354. package/dist/src/config/migration/versions/v1-to-v2.test.js +189 -0
  355. package/dist/src/config/migration/versions/v1-to-v2.test.js.map +1 -0
  356. package/dist/src/config/migration/versions/v2-to-v3.d.ts +61 -0
  357. package/dist/src/config/migration/versions/v2-to-v3.js +185 -0
  358. package/dist/src/config/migration/versions/v2-to-v3.js.map +1 -0
  359. package/dist/src/config/migration/versions/v2-to-v3.test.d.ts +6 -0
  360. package/dist/src/config/migration/versions/v2-to-v3.test.js +337 -0
  361. package/dist/src/config/migration/versions/v2-to-v3.test.js.map +1 -0
  362. package/dist/src/config/migration/versions/v3-to-v4.d.ts +34 -0
  363. package/dist/src/config/migration/versions/v3-to-v4.js +126 -0
  364. package/dist/src/config/migration/versions/v3-to-v4.js.map +1 -0
  365. package/dist/src/config/migration/versions/v3-to-v4.test.d.ts +6 -0
  366. package/dist/src/config/migration/versions/v3-to-v4.test.js +164 -0
  367. package/dist/src/config/migration/versions/v3-to-v4.test.js.map +1 -0
  368. package/dist/src/config/modelProvidersScope.d.ts +20 -0
  369. package/dist/src/config/modelProvidersScope.js +39 -0
  370. package/dist/src/config/modelProvidersScope.js.map +1 -0
  371. package/dist/src/config/modelProvidersScope.test.d.ts +6 -0
  372. package/dist/src/config/modelProvidersScope.test.js +66 -0
  373. package/dist/src/config/modelProvidersScope.test.js.map +1 -0
  374. package/dist/src/config/path-freshness.test.d.ts +6 -0
  375. package/dist/src/config/path-freshness.test.js +52 -0
  376. package/dist/src/config/path-freshness.test.js.map +1 -0
  377. package/dist/src/config/sandboxConfig.d.ts +13 -0
  378. package/dist/src/config/sandboxConfig.js +74 -0
  379. package/dist/src/config/sandboxConfig.js.map +1 -0
  380. package/dist/src/config/settings.d.ts +119 -0
  381. package/dist/src/config/settings.js +1015 -0
  382. package/dist/src/config/settings.js.map +1 -0
  383. package/dist/src/config/settingsSchema.d.ts +2207 -0
  384. package/dist/src/config/settingsSchema.js +2246 -0
  385. package/dist/src/config/settingsSchema.js.map +1 -0
  386. package/dist/src/config/settingsSchema.test.d.ts +6 -0
  387. package/dist/src/config/settingsSchema.test.js +232 -0
  388. package/dist/src/config/settingsSchema.test.js.map +1 -0
  389. package/dist/src/config/trustedFolders.d.ts +54 -0
  390. package/dist/src/config/trustedFolders.js +176 -0
  391. package/dist/src/config/trustedFolders.js.map +1 -0
  392. package/dist/src/config/trustedFolders.test.d.ts +6 -0
  393. package/dist/src/config/trustedFolders.test.js +354 -0
  394. package/dist/src/config/trustedFolders.test.js.map +1 -0
  395. package/dist/src/core/auth.d.ts +13 -0
  396. package/dist/src/core/auth.js +34 -0
  397. package/dist/src/core/auth.js.map +1 -0
  398. package/dist/src/core/auth.test.d.ts +6 -0
  399. package/dist/src/core/auth.test.js +47 -0
  400. package/dist/src/core/auth.test.js.map +1 -0
  401. package/dist/src/core/initializer.d.ts +21 -0
  402. package/dist/src/core/initializer.js +42 -0
  403. package/dist/src/core/initializer.js.map +1 -0
  404. package/dist/src/core/initializer.test.d.ts +6 -0
  405. package/dist/src/core/initializer.test.js +123 -0
  406. package/dist/src/core/initializer.test.js.map +1 -0
  407. package/dist/src/core/theme.d.ts +12 -0
  408. package/dist/src/core/theme.js +25 -0
  409. package/dist/src/core/theme.js.map +1 -0
  410. package/dist/src/core/theme.test.d.ts +6 -0
  411. package/dist/src/core/theme.test.js +57 -0
  412. package/dist/src/core/theme.test.js.map +1 -0
  413. package/dist/src/dualOutput/DualOutputBridge.d.ts +84 -0
  414. package/dist/src/dualOutput/DualOutputBridge.js +293 -0
  415. package/dist/src/dualOutput/DualOutputBridge.js.map +1 -0
  416. package/dist/src/dualOutput/DualOutputBridge.test.d.ts +6 -0
  417. package/dist/src/dualOutput/DualOutputBridge.test.js +157 -0
  418. package/dist/src/dualOutput/DualOutputBridge.test.js.map +1 -0
  419. package/dist/src/dualOutput/DualOutputContext.d.ts +19 -0
  420. package/dist/src/dualOutput/DualOutputContext.js +22 -0
  421. package/dist/src/dualOutput/DualOutputContext.js.map +1 -0
  422. package/dist/src/dualOutput/index.d.ts +7 -0
  423. package/dist/src/dualOutput/index.js +8 -0
  424. package/dist/src/dualOutput/index.js.map +1 -0
  425. package/dist/src/export/index.d.ts +6 -0
  426. package/dist/src/export/index.js +7 -0
  427. package/dist/src/export/index.js.map +1 -0
  428. package/dist/src/gemini.d.ts +13 -0
  429. package/dist/src/gemini.js +908 -0
  430. package/dist/src/gemini.js.map +1 -0
  431. package/dist/src/gemini.test.d.ts +6 -0
  432. package/dist/src/gemini.test.js +975 -0
  433. package/dist/src/gemini.test.js.map +1 -0
  434. package/dist/src/generated/git-commit.d.ts +7 -0
  435. package/dist/src/generated/git-commit.js +10 -0
  436. package/dist/src/generated/git-commit.js.map +1 -0
  437. package/dist/src/i18n/index.d.ts +27 -0
  438. package/dist/src/i18n/index.js +213 -0
  439. package/dist/src/i18n/index.js.map +1 -0
  440. package/dist/src/i18n/index.test.d.ts +6 -0
  441. package/dist/src/i18n/index.test.js +103 -0
  442. package/dist/src/i18n/index.test.js.map +1 -0
  443. package/dist/src/i18n/languages.d.ts +43 -0
  444. package/dist/src/i18n/languages.js +138 -0
  445. package/dist/src/i18n/languages.js.map +1 -0
  446. package/dist/src/i18n/locales/ca.js +3951 -0
  447. package/dist/src/i18n/locales/de.js +2018 -0
  448. package/dist/src/i18n/locales/en.js +2161 -0
  449. package/dist/src/i18n/locales/fr.js +2013 -0
  450. package/dist/src/i18n/locales/ja.js +1780 -0
  451. package/dist/src/i18n/locales/pt.js +2005 -0
  452. package/dist/src/i18n/locales/ru.js +1993 -0
  453. package/dist/src/i18n/locales/zh-TW.js +1729 -0
  454. package/dist/src/i18n/locales/zh.js +1929 -0
  455. package/dist/src/i18n/mustTranslateKeys.d.ts +12 -0
  456. package/dist/src/i18n/mustTranslateKeys.js +111 -0
  457. package/dist/src/i18n/mustTranslateKeys.js.map +1 -0
  458. package/dist/src/i18n/mustTranslateKeys.test.d.ts +6 -0
  459. package/dist/src/i18n/mustTranslateKeys.test.js +103 -0
  460. package/dist/src/i18n/mustTranslateKeys.test.js.map +1 -0
  461. package/dist/src/i18n/translationDict.d.ts +9 -0
  462. package/dist/src/i18n/translationDict.js +17 -0
  463. package/dist/src/i18n/translationDict.js.map +1 -0
  464. package/dist/src/nonInteractive/control/ControlContext.d.ts +71 -0
  465. package/dist/src/nonInteractive/control/ControlContext.js +36 -0
  466. package/dist/src/nonInteractive/control/ControlContext.js.map +1 -0
  467. package/dist/src/nonInteractive/control/ControlDispatcher.d.ts +116 -0
  468. package/dist/src/nonInteractive/control/ControlDispatcher.js +290 -0
  469. package/dist/src/nonInteractive/control/ControlDispatcher.js.map +1 -0
  470. package/dist/src/nonInteractive/control/ControlDispatcher.test.d.ts +6 -0
  471. package/dist/src/nonInteractive/control/ControlDispatcher.test.js +614 -0
  472. package/dist/src/nonInteractive/control/ControlDispatcher.test.js.map +1 -0
  473. package/dist/src/nonInteractive/control/ControlService.d.ts +79 -0
  474. package/dist/src/nonInteractive/control/ControlService.js +139 -0
  475. package/dist/src/nonInteractive/control/ControlService.js.map +1 -0
  476. package/dist/src/nonInteractive/control/controllers/baseController.d.ts +53 -0
  477. package/dist/src/nonInteractive/control/controllers/baseController.js +136 -0
  478. package/dist/src/nonInteractive/control/controllers/baseController.js.map +1 -0
  479. package/dist/src/nonInteractive/control/controllers/hookController.d.ts +25 -0
  480. package/dist/src/nonInteractive/control/controllers/hookController.js +40 -0
  481. package/dist/src/nonInteractive/control/controllers/hookController.js.map +1 -0
  482. package/dist/src/nonInteractive/control/controllers/permissionController.d.ts +57 -0
  483. package/dist/src/nonInteractive/control/controllers/permissionController.js +361 -0
  484. package/dist/src/nonInteractive/control/controllers/permissionController.js.map +1 -0
  485. package/dist/src/nonInteractive/control/controllers/permissionController.test.d.ts +6 -0
  486. package/dist/src/nonInteractive/control/controllers/permissionController.test.js +140 -0
  487. package/dist/src/nonInteractive/control/controllers/permissionController.test.js.map +1 -0
  488. package/dist/src/nonInteractive/control/controllers/sdkMcpController.d.ts +54 -0
  489. package/dist/src/nonInteractive/control/controllers/sdkMcpController.js +80 -0
  490. package/dist/src/nonInteractive/control/controllers/sdkMcpController.js.map +1 -0
  491. package/dist/src/nonInteractive/control/controllers/systemController.d.ts +67 -0
  492. package/dist/src/nonInteractive/control/controllers/systemController.js +326 -0
  493. package/dist/src/nonInteractive/control/controllers/systemController.js.map +1 -0
  494. package/dist/src/nonInteractive/control/controllers/systemController.test.d.ts +6 -0
  495. package/dist/src/nonInteractive/control/controllers/systemController.test.js +121 -0
  496. package/dist/src/nonInteractive/control/controllers/systemController.test.js.map +1 -0
  497. package/dist/src/nonInteractive/control/types/serviceAPIs.d.ts +105 -0
  498. package/dist/src/nonInteractive/control/types/serviceAPIs.js +7 -0
  499. package/dist/src/nonInteractive/control/types/serviceAPIs.js.map +1 -0
  500. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.d.ts +505 -0
  501. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js +1041 -0
  502. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js.map +1 -0
  503. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.d.ts +6 -0
  504. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js +1304 -0
  505. package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js.map +1 -0
  506. package/dist/src/nonInteractive/io/JsonOutputAdapter.d.ts +29 -0
  507. package/dist/src/nonInteractive/io/JsonOutputAdapter.js +64 -0
  508. package/dist/src/nonInteractive/io/JsonOutputAdapter.js.map +1 -0
  509. package/dist/src/nonInteractive/io/JsonOutputAdapter.test.d.ts +6 -0
  510. package/dist/src/nonInteractive/io/JsonOutputAdapter.test.js +684 -0
  511. package/dist/src/nonInteractive/io/JsonOutputAdapter.test.js.map +1 -0
  512. package/dist/src/nonInteractive/io/StreamJsonInputReader.d.ts +16 -0
  513. package/dist/src/nonInteractive/io/StreamJsonInputReader.js +54 -0
  514. package/dist/src/nonInteractive/io/StreamJsonInputReader.js.map +1 -0
  515. package/dist/src/nonInteractive/io/StreamJsonInputReader.test.d.ts +6 -0
  516. package/dist/src/nonInteractive/io/StreamJsonInputReader.test.js +178 -0
  517. package/dist/src/nonInteractive/io/StreamJsonInputReader.test.js.map +1 -0
  518. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.d.ts +84 -0
  519. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.dualOutput.test.d.ts +6 -0
  520. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.dualOutput.test.js +118 -0
  521. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.dualOutput.test.js.map +1 -0
  522. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.js +227 -0
  523. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.js.map +1 -0
  524. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.d.ts +6 -0
  525. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js +1046 -0
  526. package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js.map +1 -0
  527. package/dist/src/nonInteractive/io/index.d.ts +6 -0
  528. package/dist/src/nonInteractive/io/index.js +7 -0
  529. package/dist/src/nonInteractive/io/index.js.map +1 -0
  530. package/dist/src/nonInteractive/session.d.ts +8 -0
  531. package/dist/src/nonInteractive/session.js +664 -0
  532. package/dist/src/nonInteractive/session.js.map +1 -0
  533. package/dist/src/nonInteractive/session.test.d.ts +6 -0
  534. package/dist/src/nonInteractive/session.test.js +680 -0
  535. package/dist/src/nonInteractive/session.test.js.map +1 -0
  536. package/dist/src/nonInteractive/types.d.ts +415 -0
  537. package/dist/src/nonInteractive/types.js +77 -0
  538. package/dist/src/nonInteractive/types.js.map +1 -0
  539. package/dist/src/nonInteractiveCli.d.ts +33 -0
  540. package/dist/src/nonInteractiveCli.js +1058 -0
  541. package/dist/src/nonInteractiveCli.js.map +1 -0
  542. package/dist/src/nonInteractiveCliCommands.d.ts +59 -0
  543. package/dist/src/nonInteractiveCliCommands.js +326 -0
  544. package/dist/src/nonInteractiveCliCommands.js.map +1 -0
  545. package/dist/src/nonInteractiveCliCommands.test.d.ts +6 -0
  546. package/dist/src/nonInteractiveCliCommands.test.js +484 -0
  547. package/dist/src/nonInteractiveCliCommands.test.js.map +1 -0
  548. package/dist/src/patches/is-in-ci.d.ts +7 -0
  549. package/dist/src/patches/is-in-ci.js +15 -0
  550. package/dist/src/patches/is-in-ci.js.map +1 -0
  551. package/dist/src/remoteInput/RemoteInputContext.d.ts +8 -0
  552. package/dist/src/remoteInput/RemoteInputContext.js +9 -0
  553. package/dist/src/remoteInput/RemoteInputContext.js.map +1 -0
  554. package/dist/src/remoteInput/RemoteInputWatcher.d.ts +83 -0
  555. package/dist/src/remoteInput/RemoteInputWatcher.js +201 -0
  556. package/dist/src/remoteInput/RemoteInputWatcher.js.map +1 -0
  557. package/dist/src/remoteInput/RemoteInputWatcher.test.d.ts +6 -0
  558. package/dist/src/remoteInput/RemoteInputWatcher.test.js +100 -0
  559. package/dist/src/remoteInput/RemoteInputWatcher.test.js.map +1 -0
  560. package/dist/src/remoteInput/index.d.ts +7 -0
  561. package/dist/src/remoteInput/index.js +8 -0
  562. package/dist/src/remoteInput/index.js.map +1 -0
  563. package/dist/src/serve/auth/deviceFlow.d.ts +595 -0
  564. package/dist/src/serve/auth/deviceFlow.js +1243 -0
  565. package/dist/src/serve/auth/deviceFlow.js.map +1 -0
  566. package/dist/src/serve/auth/deviceFlow.test.d.ts +6 -0
  567. package/dist/src/serve/auth/deviceFlow.test.js +1314 -0
  568. package/dist/src/serve/auth/deviceFlow.test.js.map +1 -0
  569. package/dist/src/serve/auth/qwenDeviceFlowProvider.d.ts +30 -0
  570. package/dist/src/serve/auth/qwenDeviceFlowProvider.js +331 -0
  571. package/dist/src/serve/auth/qwenDeviceFlowProvider.js.map +1 -0
  572. package/dist/src/serve/auth/qwenDeviceFlowProvider.test.d.ts +6 -0
  573. package/dist/src/serve/auth/qwenDeviceFlowProvider.test.js +301 -0
  574. package/dist/src/serve/auth/qwenDeviceFlowProvider.test.js.map +1 -0
  575. package/dist/src/serve/auth.d.ts +101 -0
  576. package/dist/src/serve/auth.js +216 -0
  577. package/dist/src/serve/auth.js.map +1 -0
  578. package/dist/src/serve/capabilities.d.ts +196 -0
  579. package/dist/src/serve/capabilities.js +227 -0
  580. package/dist/src/serve/capabilities.js.map +1 -0
  581. package/dist/src/serve/daemonStatusProvider.d.ts +14 -0
  582. package/dist/src/serve/daemonStatusProvider.js +252 -0
  583. package/dist/src/serve/daemonStatusProvider.js.map +1 -0
  584. package/dist/src/serve/debugMode.d.ts +27 -0
  585. package/dist/src/serve/debugMode.js +33 -0
  586. package/dist/src/serve/debugMode.js.map +1 -0
  587. package/dist/src/serve/demo.d.ts +11 -0
  588. package/dist/src/serve/demo.js +640 -0
  589. package/dist/src/serve/demo.js.map +1 -0
  590. package/dist/src/serve/envSnapshot.d.ts +28 -0
  591. package/dist/src/serve/envSnapshot.js +199 -0
  592. package/dist/src/serve/envSnapshot.js.map +1 -0
  593. package/dist/src/serve/envSnapshot.test.d.ts +6 -0
  594. package/dist/src/serve/envSnapshot.test.js +181 -0
  595. package/dist/src/serve/envSnapshot.test.js.map +1 -0
  596. package/dist/src/serve/eventBus.d.ts +6 -0
  597. package/dist/src/serve/eventBus.js +15 -0
  598. package/dist/src/serve/eventBus.js.map +1 -0
  599. package/dist/src/serve/fs/audit.d.ts +144 -0
  600. package/dist/src/serve/fs/audit.js +193 -0
  601. package/dist/src/serve/fs/audit.js.map +1 -0
  602. package/dist/src/serve/fs/audit.test.d.ts +6 -0
  603. package/dist/src/serve/fs/audit.test.js +246 -0
  604. package/dist/src/serve/fs/audit.test.js.map +1 -0
  605. package/dist/src/serve/fs/contract.test.d.ts +6 -0
  606. package/dist/src/serve/fs/contract.test.js +211 -0
  607. package/dist/src/serve/fs/contract.test.js.map +1 -0
  608. package/dist/src/serve/fs/errors.d.ts +87 -0
  609. package/dist/src/serve/fs/errors.js +128 -0
  610. package/dist/src/serve/fs/errors.js.map +1 -0
  611. package/dist/src/serve/fs/errors.test.d.ts +6 -0
  612. package/dist/src/serve/fs/errors.test.js +152 -0
  613. package/dist/src/serve/fs/errors.test.js.map +1 -0
  614. package/dist/src/serve/fs/index.d.ts +10 -0
  615. package/dist/src/serve/fs/index.js +11 -0
  616. package/dist/src/serve/fs/index.js.map +1 -0
  617. package/dist/src/serve/fs/paths.d.ts +103 -0
  618. package/dist/src/serve/fs/paths.js +433 -0
  619. package/dist/src/serve/fs/paths.js.map +1 -0
  620. package/dist/src/serve/fs/paths.test.d.ts +6 -0
  621. package/dist/src/serve/fs/paths.test.js +309 -0
  622. package/dist/src/serve/fs/paths.test.js.map +1 -0
  623. package/dist/src/serve/fs/policy.d.ts +142 -0
  624. package/dist/src/serve/fs/policy.js +189 -0
  625. package/dist/src/serve/fs/policy.js.map +1 -0
  626. package/dist/src/serve/fs/policy.test.d.ts +6 -0
  627. package/dist/src/serve/fs/policy.test.js +193 -0
  628. package/dist/src/serve/fs/policy.test.js.map +1 -0
  629. package/dist/src/serve/fs/workspaceFileSystem.d.ts +157 -0
  630. package/dist/src/serve/fs/workspaceFileSystem.js +1377 -0
  631. package/dist/src/serve/fs/workspaceFileSystem.js.map +1 -0
  632. package/dist/src/serve/fs/workspaceFileSystem.test.d.ts +6 -0
  633. package/dist/src/serve/fs/workspaceFileSystem.test.js +880 -0
  634. package/dist/src/serve/fs/workspaceFileSystem.test.js.map +1 -0
  635. package/dist/src/serve/httpAcpBridge.d.ts +80 -0
  636. package/dist/src/serve/httpAcpBridge.js +3559 -0
  637. package/dist/src/serve/httpAcpBridge.js.map +1 -0
  638. package/dist/src/serve/httpAcpBridge.test.d.ts +6 -0
  639. package/dist/src/serve/httpAcpBridge.test.js +4987 -0
  640. package/dist/src/serve/httpAcpBridge.test.js.map +1 -0
  641. package/dist/src/serve/inMemoryChannel.d.ts +6 -0
  642. package/dist/src/serve/inMemoryChannel.js +14 -0
  643. package/dist/src/serve/inMemoryChannel.js.map +1 -0
  644. package/dist/src/serve/index.d.ts +15 -0
  645. package/dist/src/serve/index.js +16 -0
  646. package/dist/src/serve/index.js.map +1 -0
  647. package/dist/src/serve/loopbackBinds.d.ts +18 -0
  648. package/dist/src/serve/loopbackBinds.js +33 -0
  649. package/dist/src/serve/loopbackBinds.js.map +1 -0
  650. package/dist/src/serve/routes/workspaceFileRead.d.ts +90 -0
  651. package/dist/src/serve/routes/workspaceFileRead.js +458 -0
  652. package/dist/src/serve/routes/workspaceFileRead.js.map +1 -0
  653. package/dist/src/serve/routes/workspaceFileRead.test.d.ts +6 -0
  654. package/dist/src/serve/routes/workspaceFileRead.test.js +453 -0
  655. package/dist/src/serve/routes/workspaceFileRead.test.js.map +1 -0
  656. package/dist/src/serve/routes/workspaceFileWrite.d.ts +17 -0
  657. package/dist/src/serve/routes/workspaceFileWrite.js +224 -0
  658. package/dist/src/serve/routes/workspaceFileWrite.js.map +1 -0
  659. package/dist/src/serve/routes/workspaceFileWrite.test.d.ts +6 -0
  660. package/dist/src/serve/routes/workspaceFileWrite.test.js +223 -0
  661. package/dist/src/serve/routes/workspaceFileWrite.test.js.map +1 -0
  662. package/dist/src/serve/runQwenServe.d.ts +67 -0
  663. package/dist/src/serve/runQwenServe.js +616 -0
  664. package/dist/src/serve/runQwenServe.js.map +1 -0
  665. package/dist/src/serve/server.d.ts +125 -0
  666. package/dist/src/serve/server.js +2297 -0
  667. package/dist/src/serve/server.js.map +1 -0
  668. package/dist/src/serve/status.d.ts +6 -0
  669. package/dist/src/serve/status.js +13 -0
  670. package/dist/src/serve/status.js.map +1 -0
  671. package/dist/src/serve/types.d.ts +175 -0
  672. package/dist/src/serve/types.js +10 -0
  673. package/dist/src/serve/types.js.map +1 -0
  674. package/dist/src/serve/workspaceAgents.d.ts +47 -0
  675. package/dist/src/serve/workspaceAgents.js +1171 -0
  676. package/dist/src/serve/workspaceAgents.js.map +1 -0
  677. package/dist/src/serve/workspaceAgents.test.d.ts +6 -0
  678. package/dist/src/serve/workspaceAgents.test.js +823 -0
  679. package/dist/src/serve/workspaceAgents.test.js.map +1 -0
  680. package/dist/src/serve/workspaceMemory.d.ts +60 -0
  681. package/dist/src/serve/workspaceMemory.js +323 -0
  682. package/dist/src/serve/workspaceMemory.js.map +1 -0
  683. package/dist/src/serve/workspaceMemory.test.d.ts +6 -0
  684. package/dist/src/serve/workspaceMemory.test.js +418 -0
  685. package/dist/src/serve/workspaceMemory.test.js.map +1 -0
  686. package/dist/src/services/BuiltinCommandLoader.d.ts +24 -0
  687. package/dist/src/services/BuiltinCommandLoader.js +159 -0
  688. package/dist/src/services/BuiltinCommandLoader.js.map +1 -0
  689. package/dist/src/services/BuiltinCommandLoader.test.d.ts +6 -0
  690. package/dist/src/services/BuiltinCommandLoader.test.js +234 -0
  691. package/dist/src/services/BuiltinCommandLoader.test.js.map +1 -0
  692. package/dist/src/services/BundledSkillLoader.d.ts +17 -0
  693. package/dist/src/services/BundledSkillLoader.js +97 -0
  694. package/dist/src/services/BundledSkillLoader.js.map +1 -0
  695. package/dist/src/services/BundledSkillLoader.test.d.ts +6 -0
  696. package/dist/src/services/BundledSkillLoader.test.js +301 -0
  697. package/dist/src/services/BundledSkillLoader.test.js.map +1 -0
  698. package/dist/src/services/CommandService.d.ts +69 -0
  699. package/dist/src/services/CommandService.js +128 -0
  700. package/dist/src/services/CommandService.js.map +1 -0
  701. package/dist/src/services/CommandService.test.d.ts +6 -0
  702. package/dist/src/services/CommandService.test.js +263 -0
  703. package/dist/src/services/CommandService.test.js.map +1 -0
  704. package/dist/src/services/FileCommandLoader-extension.test.d.ts +6 -0
  705. package/dist/src/services/FileCommandLoader-extension.test.js +279 -0
  706. package/dist/src/services/FileCommandLoader-extension.test.js.map +1 -0
  707. package/dist/src/services/FileCommandLoader-markdown.test.d.ts +6 -0
  708. package/dist/src/services/FileCommandLoader-markdown.test.js +111 -0
  709. package/dist/src/services/FileCommandLoader-markdown.test.js.map +1 -0
  710. package/dist/src/services/FileCommandLoader.d.ts +64 -0
  711. package/dist/src/services/FileCommandLoader.js +259 -0
  712. package/dist/src/services/FileCommandLoader.js.map +1 -0
  713. package/dist/src/services/McpPromptLoader.d.ts +35 -0
  714. package/dist/src/services/McpPromptLoader.js +261 -0
  715. package/dist/src/services/McpPromptLoader.js.map +1 -0
  716. package/dist/src/services/McpPromptLoader.test.d.ts +6 -0
  717. package/dist/src/services/McpPromptLoader.test.js +341 -0
  718. package/dist/src/services/McpPromptLoader.test.js.map +1 -0
  719. package/dist/src/services/SkillCommandLoader.d.ts +23 -0
  720. package/dist/src/services/SkillCommandLoader.js +110 -0
  721. package/dist/src/services/SkillCommandLoader.js.map +1 -0
  722. package/dist/src/services/SkillCommandLoader.test.d.ts +6 -0
  723. package/dist/src/services/SkillCommandLoader.test.js +307 -0
  724. package/dist/src/services/SkillCommandLoader.test.js.map +1 -0
  725. package/dist/src/services/command-factory.d.ts +25 -0
  726. package/dist/src/services/command-factory.js +122 -0
  727. package/dist/src/services/command-factory.js.map +1 -0
  728. package/dist/src/services/command-factory.test.d.ts +6 -0
  729. package/dist/src/services/command-factory.test.js +31 -0
  730. package/dist/src/services/command-factory.test.js.map +1 -0
  731. package/dist/src/services/command-migration-tool.d.ts +39 -0
  732. package/dist/src/services/command-migration-tool.js +135 -0
  733. package/dist/src/services/command-migration-tool.js.map +1 -0
  734. package/dist/src/services/command-migration-tool.test.d.ts +6 -0
  735. package/dist/src/services/command-migration-tool.test.js +175 -0
  736. package/dist/src/services/command-migration-tool.test.js.map +1 -0
  737. package/dist/src/services/commandMetadata.d.ts +21 -0
  738. package/dist/src/services/commandMetadata.js +106 -0
  739. package/dist/src/services/commandMetadata.js.map +1 -0
  740. package/dist/src/services/commandMetadata.test.d.ts +6 -0
  741. package/dist/src/services/commandMetadata.test.js +216 -0
  742. package/dist/src/services/commandMetadata.test.js.map +1 -0
  743. package/dist/src/services/commandUtils.d.ts +36 -0
  744. package/dist/src/services/commandUtils.js +57 -0
  745. package/dist/src/services/commandUtils.js.map +1 -0
  746. package/dist/src/services/commandUtils.test.d.ts +6 -0
  747. package/dist/src/services/commandUtils.test.js +159 -0
  748. package/dist/src/services/commandUtils.test.js.map +1 -0
  749. package/dist/src/services/insight/generators/DataProcessor.d.ts +23 -0
  750. package/dist/src/services/insight/generators/DataProcessor.js +1001 -0
  751. package/dist/src/services/insight/generators/DataProcessor.js.map +1 -0
  752. package/dist/src/services/insight/generators/DataProcessor.test.d.ts +6 -0
  753. package/dist/src/services/insight/generators/DataProcessor.test.js +1210 -0
  754. package/dist/src/services/insight/generators/DataProcessor.test.js.map +1 -0
  755. package/dist/src/services/insight/generators/StaticInsightGenerator.d.ts +16 -0
  756. package/dist/src/services/insight/generators/StaticInsightGenerator.js +63 -0
  757. package/dist/src/services/insight/generators/StaticInsightGenerator.js.map +1 -0
  758. package/dist/src/services/insight/generators/StaticInsightGenerator.test.d.ts +6 -0
  759. package/dist/src/services/insight/generators/StaticInsightGenerator.test.js +60 -0
  760. package/dist/src/services/insight/generators/StaticInsightGenerator.test.js.map +1 -0
  761. package/dist/src/services/insight/generators/TemplateRenderer.d.ts +9 -0
  762. package/dist/src/services/insight/generators/TemplateRenderer.js +49 -0
  763. package/dist/src/services/insight/generators/TemplateRenderer.js.map +1 -0
  764. package/dist/src/services/insight/types/QualitativeInsightTypes.d.ts +74 -0
  765. package/dist/src/services/insight/types/QualitativeInsightTypes.js +2 -0
  766. package/dist/src/services/insight/types/QualitativeInsightTypes.js.map +1 -0
  767. package/dist/src/services/insight/types/StaticInsightTypes.d.ts +59 -0
  768. package/dist/src/services/insight/types/StaticInsightTypes.js +7 -0
  769. package/dist/src/services/insight/types/StaticInsightTypes.js.map +1 -0
  770. package/dist/src/services/markdown-command-parser.d.ts +52 -0
  771. package/dist/src/services/markdown-command-parser.js +60 -0
  772. package/dist/src/services/markdown-command-parser.js.map +1 -0
  773. package/dist/src/services/markdown-command-parser.test.d.ts +6 -0
  774. package/dist/src/services/markdown-command-parser.test.js +146 -0
  775. package/dist/src/services/markdown-command-parser.test.js.map +1 -0
  776. package/dist/src/services/notificationService.d.ts +19 -0
  777. package/dist/src/services/notificationService.js +64 -0
  778. package/dist/src/services/notificationService.js.map +1 -0
  779. package/dist/src/services/notificationService.test.d.ts +6 -0
  780. package/dist/src/services/notificationService.test.js +114 -0
  781. package/dist/src/services/notificationService.test.js.map +1 -0
  782. package/dist/src/services/prompt-processors/argumentProcessor.d.ts +16 -0
  783. package/dist/src/services/prompt-processors/argumentProcessor.js +21 -0
  784. package/dist/src/services/prompt-processors/argumentProcessor.js.map +1 -0
  785. package/dist/src/services/prompt-processors/atFileProcessor.d.ts +12 -0
  786. package/dist/src/services/prompt-processors/atFileProcessor.js +63 -0
  787. package/dist/src/services/prompt-processors/atFileProcessor.js.map +1 -0
  788. package/dist/src/services/prompt-processors/atFileProcessor.test.d.ts +6 -0
  789. package/dist/src/services/prompt-processors/atFileProcessor.test.js +174 -0
  790. package/dist/src/services/prompt-processors/atFileProcessor.test.js.map +1 -0
  791. package/dist/src/services/prompt-processors/injectionParser.d.ts +29 -0
  792. package/dist/src/services/prompt-processors/injectionParser.js +60 -0
  793. package/dist/src/services/prompt-processors/injectionParser.js.map +1 -0
  794. package/dist/src/services/prompt-processors/injectionParser.test.d.ts +6 -0
  795. package/dist/src/services/prompt-processors/injectionParser.test.js +189 -0
  796. package/dist/src/services/prompt-processors/injectionParser.test.js.map +1 -0
  797. package/dist/src/services/prompt-processors/shellProcessor.d.ts +27 -0
  798. package/dist/src/services/prompt-processors/shellProcessor.js +146 -0
  799. package/dist/src/services/prompt-processors/shellProcessor.js.map +1 -0
  800. package/dist/src/services/prompt-processors/types.d.ts +45 -0
  801. package/dist/src/services/prompt-processors/types.js +20 -0
  802. package/dist/src/services/prompt-processors/types.js.map +1 -0
  803. package/dist/src/services/test-commands/example.md +5 -0
  804. package/dist/src/services/tips/index.d.ts +10 -0
  805. package/dist/src/services/tips/index.js +21 -0
  806. package/dist/src/services/tips/index.js.map +1 -0
  807. package/dist/src/services/tips/tipHistory.d.ts +49 -0
  808. package/dist/src/services/tips/tipHistory.js +138 -0
  809. package/dist/src/services/tips/tipHistory.js.map +1 -0
  810. package/dist/src/services/tips/tipHistory.test.d.ts +6 -0
  811. package/dist/src/services/tips/tipHistory.test.js +102 -0
  812. package/dist/src/services/tips/tipHistory.test.js.map +1 -0
  813. package/dist/src/services/tips/tipRegistry.d.ts +32 -0
  814. package/dist/src/services/tips/tipRegistry.js +148 -0
  815. package/dist/src/services/tips/tipRegistry.js.map +1 -0
  816. package/dist/src/services/tips/tipRegistry.test.d.ts +6 -0
  817. package/dist/src/services/tips/tipRegistry.test.js +65 -0
  818. package/dist/src/services/tips/tipRegistry.test.js.map +1 -0
  819. package/dist/src/services/tips/tipScheduler.d.ts +21 -0
  820. package/dist/src/services/tips/tipScheduler.js +38 -0
  821. package/dist/src/services/tips/tipScheduler.js.map +1 -0
  822. package/dist/src/services/tips/tipScheduler.test.d.ts +6 -0
  823. package/dist/src/services/tips/tipScheduler.test.js +126 -0
  824. package/dist/src/services/tips/tipScheduler.test.js.map +1 -0
  825. package/dist/src/services/types.d.ts +22 -0
  826. package/dist/src/services/types.js +7 -0
  827. package/dist/src/services/types.js.map +1 -0
  828. package/dist/src/startup/worktreeStartup.d.ts +112 -0
  829. package/dist/src/startup/worktreeStartup.js +350 -0
  830. package/dist/src/startup/worktreeStartup.js.map +1 -0
  831. package/dist/src/startup/worktreeStartup.test.d.ts +6 -0
  832. package/dist/src/startup/worktreeStartup.test.js +332 -0
  833. package/dist/src/startup/worktreeStartup.test.js.map +1 -0
  834. package/dist/src/test-utils/customMatchers.d.ts +14 -0
  835. package/dist/src/test-utils/customMatchers.js +40 -0
  836. package/dist/src/test-utils/customMatchers.js.map +1 -0
  837. package/dist/src/test-utils/mockCommandContext.d.ts +18 -0
  838. package/dist/src/test-utils/mockCommandContext.js +107 -0
  839. package/dist/src/test-utils/mockCommandContext.js.map +1 -0
  840. package/dist/src/test-utils/mockCommandContext.test.d.ts +6 -0
  841. package/dist/src/test-utils/mockCommandContext.test.js +51 -0
  842. package/dist/src/test-utils/mockCommandContext.test.js.map +1 -0
  843. package/dist/src/test-utils/render.d.ts +14 -0
  844. package/dist/src/test-utils/render.js +15 -0
  845. package/dist/src/test-utils/render.js.map +1 -0
  846. package/dist/src/ui/App.d.ts +6 -0
  847. package/dist/src/ui/App.js +65 -0
  848. package/dist/src/ui/App.js.map +1 -0
  849. package/dist/src/ui/AppContainer.d.ts +24 -0
  850. package/dist/src/ui/AppContainer.js +2853 -0
  851. package/dist/src/ui/AppContainer.js.map +1 -0
  852. package/dist/src/ui/AppContainer.test.d.ts +6 -0
  853. package/dist/src/ui/AppContainer.test.js +2368 -0
  854. package/dist/src/ui/AppContainer.test.js.map +1 -0
  855. package/dist/src/ui/CommandFormatMigrationNudge.d.ts +14 -0
  856. package/dist/src/ui/CommandFormatMigrationNudge.js +44 -0
  857. package/dist/src/ui/CommandFormatMigrationNudge.js.map +1 -0
  858. package/dist/src/ui/FeedbackDialog.d.ts +9 -0
  859. package/dist/src/ui/FeedbackDialog.js +44 -0
  860. package/dist/src/ui/FeedbackDialog.js.map +1 -0
  861. package/dist/src/ui/IdeIntegrationNudge.d.ts +16 -0
  862. package/dist/src/ui/IdeIntegrationNudge.js +53 -0
  863. package/dist/src/ui/IdeIntegrationNudge.js.map +1 -0
  864. package/dist/src/ui/auth/AuthDialog.d.ts +7 -0
  865. package/dist/src/ui/auth/AuthDialog.js +214 -0
  866. package/dist/src/ui/auth/AuthDialog.js.map +1 -0
  867. package/dist/src/ui/auth/AuthDialog.test.d.ts +6 -0
  868. package/dist/src/ui/auth/AuthDialog.test.js +1029 -0
  869. package/dist/src/ui/auth/AuthDialog.test.js.map +1 -0
  870. package/dist/src/ui/auth/AuthInProgress.d.ts +11 -0
  871. package/dist/src/ui/auth/AuthInProgress.js +24 -0
  872. package/dist/src/ui/auth/AuthInProgress.js.map +1 -0
  873. package/dist/src/ui/auth/ProviderSetupSteps.d.ts +11 -0
  874. package/dist/src/ui/auth/ProviderSetupSteps.js +320 -0
  875. package/dist/src/ui/auth/ProviderSetupSteps.js.map +1 -0
  876. package/dist/src/ui/auth/ProviderSetupSteps.test.d.ts +6 -0
  877. package/dist/src/ui/auth/ProviderSetupSteps.test.js +322 -0
  878. package/dist/src/ui/auth/ProviderSetupSteps.test.js.map +1 -0
  879. package/dist/src/ui/auth/useAuth.d.ts +76 -0
  880. package/dist/src/ui/auth/useAuth.js +192 -0
  881. package/dist/src/ui/auth/useAuth.js.map +1 -0
  882. package/dist/src/ui/auth/useAuth.test.d.ts +6 -0
  883. package/dist/src/ui/auth/useAuth.test.js +267 -0
  884. package/dist/src/ui/auth/useAuth.test.js.map +1 -0
  885. package/dist/src/ui/auth/useProviderSetupFlow.d.ts +54 -0
  886. package/dist/src/ui/auth/useProviderSetupFlow.js +380 -0
  887. package/dist/src/ui/auth/useProviderSetupFlow.js.map +1 -0
  888. package/dist/src/ui/colors.d.ts +7 -0
  889. package/dist/src/ui/colors.js +60 -0
  890. package/dist/src/ui/colors.js.map +1 -0
  891. package/dist/src/ui/commands/aboutCommand.d.ts +7 -0
  892. package/dist/src/ui/commands/aboutCommand.js +69 -0
  893. package/dist/src/ui/commands/aboutCommand.js.map +1 -0
  894. package/dist/src/ui/commands/agentsCommand.d.ts +7 -0
  895. package/dist/src/ui/commands/agentsCommand.js +42 -0
  896. package/dist/src/ui/commands/agentsCommand.js.map +1 -0
  897. package/dist/src/ui/commands/approvalModeCommand.d.ts +7 -0
  898. package/dist/src/ui/commands/approvalModeCommand.js +89 -0
  899. package/dist/src/ui/commands/approvalModeCommand.js.map +1 -0
  900. package/dist/src/ui/commands/approvalModeCommand.test.d.ts +6 -0
  901. package/dist/src/ui/commands/approvalModeCommand.test.js +112 -0
  902. package/dist/src/ui/commands/approvalModeCommand.test.js.map +1 -0
  903. package/dist/src/ui/commands/arenaCommand.agentComplete.test.d.ts +6 -0
  904. package/dist/src/ui/commands/arenaCommand.agentComplete.test.js +118 -0
  905. package/dist/src/ui/commands/arenaCommand.agentComplete.test.js.map +1 -0
  906. package/dist/src/ui/commands/arenaCommand.d.ts +7 -0
  907. package/dist/src/ui/commands/arenaCommand.js +519 -0
  908. package/dist/src/ui/commands/arenaCommand.js.map +1 -0
  909. package/dist/src/ui/commands/arenaCommand.test.d.ts +6 -0
  910. package/dist/src/ui/commands/arenaCommand.test.js +352 -0
  911. package/dist/src/ui/commands/arenaCommand.test.js.map +1 -0
  912. package/dist/src/ui/commands/authCommand.d.ts +7 -0
  913. package/dist/src/ui/commands/authCommand.js +31 -0
  914. package/dist/src/ui/commands/authCommand.js.map +1 -0
  915. package/dist/src/ui/commands/branchCommand.d.ts +7 -0
  916. package/dist/src/ui/commands/branchCommand.js +49 -0
  917. package/dist/src/ui/commands/branchCommand.js.map +1 -0
  918. package/dist/src/ui/commands/branchCommand.test.d.ts +6 -0
  919. package/dist/src/ui/commands/branchCommand.test.js +57 -0
  920. package/dist/src/ui/commands/branchCommand.test.js.map +1 -0
  921. package/dist/src/ui/commands/btwCommand.d.ts +7 -0
  922. package/dist/src/ui/commands/btwCommand.js +164 -0
  923. package/dist/src/ui/commands/btwCommand.js.map +1 -0
  924. package/dist/src/ui/commands/btwCommand.test.d.ts +6 -0
  925. package/dist/src/ui/commands/btwCommand.test.js +338 -0
  926. package/dist/src/ui/commands/btwCommand.test.js.map +1 -0
  927. package/dist/src/ui/commands/bugCommand.d.ts +7 -0
  928. package/dist/src/ui/commands/bugCommand.js +54 -0
  929. package/dist/src/ui/commands/bugCommand.js.map +1 -0
  930. package/dist/src/ui/commands/clearCommand.d.ts +7 -0
  931. package/dist/src/ui/commands/clearCommand.js +122 -0
  932. package/dist/src/ui/commands/clearCommand.js.map +1 -0
  933. package/dist/src/ui/commands/compressCommand.d.ts +7 -0
  934. package/dist/src/ui/commands/compressCommand.js +178 -0
  935. package/dist/src/ui/commands/compressCommand.js.map +1 -0
  936. package/dist/src/ui/commands/contextCommand.d.ts +14 -0
  937. package/dist/src/ui/commands/contextCommand.js +443 -0
  938. package/dist/src/ui/commands/contextCommand.js.map +1 -0
  939. package/dist/src/ui/commands/contextCommand.test.d.ts +6 -0
  940. package/dist/src/ui/commands/contextCommand.test.js +184 -0
  941. package/dist/src/ui/commands/contextCommand.test.js.map +1 -0
  942. package/dist/src/ui/commands/copyCommand.d.ts +7 -0
  943. package/dist/src/ui/commands/copyCommand.js +374 -0
  944. package/dist/src/ui/commands/copyCommand.js.map +1 -0
  945. package/dist/src/ui/commands/deleteCommand.d.ts +7 -0
  946. package/dist/src/ui/commands/deleteCommand.js +19 -0
  947. package/dist/src/ui/commands/deleteCommand.js.map +1 -0
  948. package/dist/src/ui/commands/deleteCommand.test.d.ts +6 -0
  949. package/dist/src/ui/commands/deleteCommand.test.js +27 -0
  950. package/dist/src/ui/commands/deleteCommand.test.js.map +1 -0
  951. package/dist/src/ui/commands/diffCommand.d.ts +42 -0
  952. package/dist/src/ui/commands/diffCommand.js +206 -0
  953. package/dist/src/ui/commands/diffCommand.js.map +1 -0
  954. package/dist/src/ui/commands/diffCommand.test.d.ts +6 -0
  955. package/dist/src/ui/commands/diffCommand.test.js +482 -0
  956. package/dist/src/ui/commands/diffCommand.test.js.map +1 -0
  957. package/dist/src/ui/commands/directoryCommand.d.ts +13 -0
  958. package/dist/src/ui/commands/directoryCommand.js +252 -0
  959. package/dist/src/ui/commands/directoryCommand.js.map +1 -0
  960. package/dist/src/ui/commands/docsCommand.d.ts +7 -0
  961. package/dist/src/ui/commands/docsCommand.js +49 -0
  962. package/dist/src/ui/commands/docsCommand.js.map +1 -0
  963. package/dist/src/ui/commands/doctorCommand.d.ts +7 -0
  964. package/dist/src/ui/commands/doctorCommand.js +530 -0
  965. package/dist/src/ui/commands/doctorCommand.js.map +1 -0
  966. package/dist/src/ui/commands/doctorCommand.test.d.ts +6 -0
  967. package/dist/src/ui/commands/doctorCommand.test.js +804 -0
  968. package/dist/src/ui/commands/doctorCommand.test.js.map +1 -0
  969. package/dist/src/ui/commands/dreamCommand.d.ts +7 -0
  970. package/dist/src/ui/commands/dreamCommand.js +42 -0
  971. package/dist/src/ui/commands/dreamCommand.js.map +1 -0
  972. package/dist/src/ui/commands/dreamCommand.test.d.ts +6 -0
  973. package/dist/src/ui/commands/dreamCommand.test.js +39 -0
  974. package/dist/src/ui/commands/dreamCommand.test.js.map +1 -0
  975. package/dist/src/ui/commands/editorCommand.d.ts +7 -0
  976. package/dist/src/ui/commands/editorCommand.js +20 -0
  977. package/dist/src/ui/commands/editorCommand.js.map +1 -0
  978. package/dist/src/ui/commands/exportCommand.d.ts +10 -0
  979. package/dist/src/ui/commands/exportCommand.js +373 -0
  980. package/dist/src/ui/commands/exportCommand.js.map +1 -0
  981. package/dist/src/ui/commands/exportCommand.test.d.ts +6 -0
  982. package/dist/src/ui/commands/exportCommand.test.js +905 -0
  983. package/dist/src/ui/commands/exportCommand.test.js.map +1 -0
  984. package/dist/src/ui/commands/extensionsCommand.d.ts +10 -0
  985. package/dist/src/ui/commands/extensionsCommand.js +185 -0
  986. package/dist/src/ui/commands/extensionsCommand.js.map +1 -0
  987. package/dist/src/ui/commands/forgetCommand.d.ts +7 -0
  988. package/dist/src/ui/commands/forgetCommand.js +45 -0
  989. package/dist/src/ui/commands/forgetCommand.js.map +1 -0
  990. package/dist/src/ui/commands/forkCommand.d.ts +7 -0
  991. package/dist/src/ui/commands/forkCommand.js +163 -0
  992. package/dist/src/ui/commands/forkCommand.js.map +1 -0
  993. package/dist/src/ui/commands/forkCommand.test.d.ts +6 -0
  994. package/dist/src/ui/commands/forkCommand.test.js +229 -0
  995. package/dist/src/ui/commands/forkCommand.test.js.map +1 -0
  996. package/dist/src/ui/commands/goalCommand.d.ts +7 -0
  997. package/dist/src/ui/commands/goalCommand.js +181 -0
  998. package/dist/src/ui/commands/goalCommand.js.map +1 -0
  999. package/dist/src/ui/commands/goalCommand.test.d.ts +6 -0
  1000. package/dist/src/ui/commands/goalCommand.test.js +328 -0
  1001. package/dist/src/ui/commands/goalCommand.test.js.map +1 -0
  1002. package/dist/src/ui/commands/helpCommand.d.ts +7 -0
  1003. package/dist/src/ui/commands/helpCommand.js +21 -0
  1004. package/dist/src/ui/commands/helpCommand.js.map +1 -0
  1005. package/dist/src/ui/commands/hooksCommand.d.ts +7 -0
  1006. package/dist/src/ui/commands/hooksCommand.js +153 -0
  1007. package/dist/src/ui/commands/hooksCommand.js.map +1 -0
  1008. package/dist/src/ui/commands/hooksCommand.test.d.ts +6 -0
  1009. package/dist/src/ui/commands/hooksCommand.test.js +189 -0
  1010. package/dist/src/ui/commands/hooksCommand.test.js.map +1 -0
  1011. package/dist/src/ui/commands/ideCommand.d.ts +7 -0
  1012. package/dist/src/ui/commands/ideCommand.js +256 -0
  1013. package/dist/src/ui/commands/ideCommand.js.map +1 -0
  1014. package/dist/src/ui/commands/initCommand.d.ts +7 -0
  1015. package/dist/src/ui/commands/initCommand.js +119 -0
  1016. package/dist/src/ui/commands/initCommand.js.map +1 -0
  1017. package/dist/src/ui/commands/insightCommand.d.ts +7 -0
  1018. package/dist/src/ui/commands/insightCommand.js +195 -0
  1019. package/dist/src/ui/commands/insightCommand.js.map +1 -0
  1020. package/dist/src/ui/commands/insightCommand.test.d.ts +6 -0
  1021. package/dist/src/ui/commands/insightCommand.test.js +173 -0
  1022. package/dist/src/ui/commands/insightCommand.test.js.map +1 -0
  1023. package/dist/src/ui/commands/languageCommand.d.ts +7 -0
  1024. package/dist/src/ui/commands/languageCommand.js +291 -0
  1025. package/dist/src/ui/commands/languageCommand.js.map +1 -0
  1026. package/dist/src/ui/commands/languageCommand.test.d.ts +6 -0
  1027. package/dist/src/ui/commands/languageCommand.test.js +664 -0
  1028. package/dist/src/ui/commands/languageCommand.test.js.map +1 -0
  1029. package/dist/src/ui/commands/lspCommand.d.ts +7 -0
  1030. package/dist/src/ui/commands/lspCommand.js +62 -0
  1031. package/dist/src/ui/commands/lspCommand.js.map +1 -0
  1032. package/dist/src/ui/commands/lspCommand.test.d.ts +6 -0
  1033. package/dist/src/ui/commands/lspCommand.test.js +175 -0
  1034. package/dist/src/ui/commands/lspCommand.test.js.map +1 -0
  1035. package/dist/src/ui/commands/mcpCommand.d.ts +7 -0
  1036. package/dist/src/ui/commands/mcpCommand.js +21 -0
  1037. package/dist/src/ui/commands/mcpCommand.js.map +1 -0
  1038. package/dist/src/ui/commands/memoryCommand.d.ts +7 -0
  1039. package/dist/src/ui/commands/memoryCommand.js +21 -0
  1040. package/dist/src/ui/commands/memoryCommand.js.map +1 -0
  1041. package/dist/src/ui/commands/modelCommand.d.ts +7 -0
  1042. package/dist/src/ui/commands/modelCommand.js +226 -0
  1043. package/dist/src/ui/commands/modelCommand.js.map +1 -0
  1044. package/dist/src/ui/commands/modelCommand.test.d.ts +6 -0
  1045. package/dist/src/ui/commands/modelCommand.test.js +503 -0
  1046. package/dist/src/ui/commands/modelCommand.test.js.map +1 -0
  1047. package/dist/src/ui/commands/permissionsCommand.d.ts +7 -0
  1048. package/dist/src/ui/commands/permissionsCommand.js +20 -0
  1049. package/dist/src/ui/commands/permissionsCommand.js.map +1 -0
  1050. package/dist/src/ui/commands/permissionsCommand.test.d.ts +6 -0
  1051. package/dist/src/ui/commands/permissionsCommand.test.js +30 -0
  1052. package/dist/src/ui/commands/permissionsCommand.test.js.map +1 -0
  1053. package/dist/src/ui/commands/planCommand.d.ts +7 -0
  1054. package/dist/src/ui/commands/planCommand.js +88 -0
  1055. package/dist/src/ui/commands/planCommand.js.map +1 -0
  1056. package/dist/src/ui/commands/planCommand.test.d.ts +6 -0
  1057. package/dist/src/ui/commands/planCommand.test.js +113 -0
  1058. package/dist/src/ui/commands/planCommand.test.js.map +1 -0
  1059. package/dist/src/ui/commands/quitCommand.d.ts +7 -0
  1060. package/dist/src/ui/commands/quitCommand.js +38 -0
  1061. package/dist/src/ui/commands/quitCommand.js.map +1 -0
  1062. package/dist/src/ui/commands/recapCommand.d.ts +7 -0
  1063. package/dist/src/ui/commands/recapCommand.js +56 -0
  1064. package/dist/src/ui/commands/recapCommand.js.map +1 -0
  1065. package/dist/src/ui/commands/rememberCommand.d.ts +7 -0
  1066. package/dist/src/ui/commands/rememberCommand.js +54 -0
  1067. package/dist/src/ui/commands/rememberCommand.js.map +1 -0
  1068. package/dist/src/ui/commands/renameCommand.d.ts +7 -0
  1069. package/dist/src/ui/commands/renameCommand.js +208 -0
  1070. package/dist/src/ui/commands/renameCommand.js.map +1 -0
  1071. package/dist/src/ui/commands/renameCommand.test.d.ts +6 -0
  1072. package/dist/src/ui/commands/renameCommand.test.js +414 -0
  1073. package/dist/src/ui/commands/renameCommand.test.js.map +1 -0
  1074. package/dist/src/ui/commands/restoreCommand.d.ts +8 -0
  1075. package/dist/src/ui/commands/restoreCommand.js +159 -0
  1076. package/dist/src/ui/commands/restoreCommand.js.map +1 -0
  1077. package/dist/src/ui/commands/resumeCommand.d.ts +7 -0
  1078. package/dist/src/ui/commands/resumeCommand.js +65 -0
  1079. package/dist/src/ui/commands/resumeCommand.js.map +1 -0
  1080. package/dist/src/ui/commands/resumeCommand.test.d.ts +6 -0
  1081. package/dist/src/ui/commands/resumeCommand.test.js +135 -0
  1082. package/dist/src/ui/commands/resumeCommand.test.js.map +1 -0
  1083. package/dist/src/ui/commands/rewindCommand.d.ts +7 -0
  1084. package/dist/src/ui/commands/rewindCommand.js +20 -0
  1085. package/dist/src/ui/commands/rewindCommand.js.map +1 -0
  1086. package/dist/src/ui/commands/settingsCommand.d.ts +7 -0
  1087. package/dist/src/ui/commands/settingsCommand.js +20 -0
  1088. package/dist/src/ui/commands/settingsCommand.js.map +1 -0
  1089. package/dist/src/ui/commands/setupGithubCommand.d.ts +9 -0
  1090. package/dist/src/ui/commands/setupGithubCommand.js +165 -0
  1091. package/dist/src/ui/commands/setupGithubCommand.js.map +1 -0
  1092. package/dist/src/ui/commands/setupGithubCommand.test.d.ts +6 -0
  1093. package/dist/src/ui/commands/setupGithubCommand.test.js +164 -0
  1094. package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -0
  1095. package/dist/src/ui/commands/skillsCommand.d.ts +7 -0
  1096. package/dist/src/ui/commands/skillsCommand.js +63 -0
  1097. package/dist/src/ui/commands/skillsCommand.js.map +1 -0
  1098. package/dist/src/ui/commands/skillsCommand.test.d.ts +6 -0
  1099. package/dist/src/ui/commands/skillsCommand.test.js +136 -0
  1100. package/dist/src/ui/commands/skillsCommand.test.js.map +1 -0
  1101. package/dist/src/ui/commands/statsCommand.d.ts +7 -0
  1102. package/dist/src/ui/commands/statsCommand.js +130 -0
  1103. package/dist/src/ui/commands/statsCommand.js.map +1 -0
  1104. package/dist/src/ui/commands/statuslineCommand.d.ts +7 -0
  1105. package/dist/src/ui/commands/statuslineCommand.js +33 -0
  1106. package/dist/src/ui/commands/statuslineCommand.js.map +1 -0
  1107. package/dist/src/ui/commands/statuslineCommand.test.d.ts +6 -0
  1108. package/dist/src/ui/commands/statuslineCommand.test.js +54 -0
  1109. package/dist/src/ui/commands/statuslineCommand.test.js.map +1 -0
  1110. package/dist/src/ui/commands/summaryCommand.d.ts +7 -0
  1111. package/dist/src/ui/commands/summaryCommand.js +261 -0
  1112. package/dist/src/ui/commands/summaryCommand.js.map +1 -0
  1113. package/dist/src/ui/commands/tasksCommand.d.ts +7 -0
  1114. package/dist/src/ui/commands/tasksCommand.js +222 -0
  1115. package/dist/src/ui/commands/tasksCommand.js.map +1 -0
  1116. package/dist/src/ui/commands/tasksCommand.test.d.ts +6 -0
  1117. package/dist/src/ui/commands/tasksCommand.test.js +365 -0
  1118. package/dist/src/ui/commands/tasksCommand.test.js.map +1 -0
  1119. package/dist/src/ui/commands/terminalSetupCommand.d.ts +13 -0
  1120. package/dist/src/ui/commands/terminalSetupCommand.js +48 -0
  1121. package/dist/src/ui/commands/terminalSetupCommand.js.map +1 -0
  1122. package/dist/src/ui/commands/themeCommand.d.ts +7 -0
  1123. package/dist/src/ui/commands/themeCommand.js +20 -0
  1124. package/dist/src/ui/commands/themeCommand.js.map +1 -0
  1125. package/dist/src/ui/commands/toolsCommand.d.ts +7 -0
  1126. package/dist/src/ui/commands/toolsCommand.js +45 -0
  1127. package/dist/src/ui/commands/toolsCommand.js.map +1 -0
  1128. package/dist/src/ui/commands/trustCommand.d.ts +7 -0
  1129. package/dist/src/ui/commands/trustCommand.js +20 -0
  1130. package/dist/src/ui/commands/trustCommand.js.map +1 -0
  1131. package/dist/src/ui/commands/trustCommand.test.d.ts +6 -0
  1132. package/dist/src/ui/commands/trustCommand.test.js +30 -0
  1133. package/dist/src/ui/commands/trustCommand.test.js.map +1 -0
  1134. package/dist/src/ui/commands/types.d.ts +298 -0
  1135. package/dist/src/ui/commands/types.js +13 -0
  1136. package/dist/src/ui/commands/types.js.map +1 -0
  1137. package/dist/src/ui/commands/vimCommand.d.ts +7 -0
  1138. package/dist/src/ui/commands/vimCommand.js +27 -0
  1139. package/dist/src/ui/commands/vimCommand.js.map +1 -0
  1140. package/dist/src/ui/components/AboutBox.d.ts +12 -0
  1141. package/dist/src/ui/components/AboutBox.js +10 -0
  1142. package/dist/src/ui/components/AboutBox.js.map +1 -0
  1143. package/dist/src/ui/components/AnsiOutput.d.ts +20 -0
  1144. package/dist/src/ui/components/AnsiOutput.js +27 -0
  1145. package/dist/src/ui/components/AnsiOutput.js.map +1 -0
  1146. package/dist/src/ui/components/AnsiOutput.test.d.ts +6 -0
  1147. package/dist/src/ui/components/AnsiOutput.test.js +134 -0
  1148. package/dist/src/ui/components/AnsiOutput.test.js.map +1 -0
  1149. package/dist/src/ui/components/ApiKeyInput.d.ts +22 -0
  1150. package/dist/src/ui/components/ApiKeyInput.js +35 -0
  1151. package/dist/src/ui/components/ApiKeyInput.js.map +1 -0
  1152. package/dist/src/ui/components/AppHeader.d.ts +10 -0
  1153. package/dist/src/ui/components/AppHeader.js +49 -0
  1154. package/dist/src/ui/components/AppHeader.js.map +1 -0
  1155. package/dist/src/ui/components/AppHeader.test.d.ts +6 -0
  1156. package/dist/src/ui/components/AppHeader.test.js +109 -0
  1157. package/dist/src/ui/components/AppHeader.test.js.map +1 -0
  1158. package/dist/src/ui/components/ApprovalModeDialog.d.ts +21 -0
  1159. package/dist/src/ui/components/ApprovalModeDialog.js +109 -0
  1160. package/dist/src/ui/components/ApprovalModeDialog.js.map +1 -0
  1161. package/dist/src/ui/components/ApprovalModeDialog.test.d.ts +6 -0
  1162. package/dist/src/ui/components/ApprovalModeDialog.test.js +63 -0
  1163. package/dist/src/ui/components/ApprovalModeDialog.test.js.map +1 -0
  1164. package/dist/src/ui/components/AsciiArt.d.ts +1 -0
  1165. package/dist/src/ui/components/AsciiArt.js +54 -0
  1166. package/dist/src/ui/components/AsciiArt.js.map +1 -0
  1167. package/dist/src/ui/components/AutoAcceptIndicator.d.ts +12 -0
  1168. package/dist/src/ui/components/AutoAcceptIndicator.js +37 -0
  1169. package/dist/src/ui/components/AutoAcceptIndicator.js.map +1 -0
  1170. package/dist/src/ui/components/BaseTextInput.d.ts +74 -0
  1171. package/dist/src/ui/components/BaseTextInput.js +144 -0
  1172. package/dist/src/ui/components/BaseTextInput.js.map +1 -0
  1173. package/dist/src/ui/components/BaseTextInput.test.d.ts +6 -0
  1174. package/dist/src/ui/components/BaseTextInput.test.js +78 -0
  1175. package/dist/src/ui/components/BaseTextInput.test.js.map +1 -0
  1176. package/dist/src/ui/components/Composer.d.ts +6 -0
  1177. package/dist/src/ui/components/Composer.js +92 -0
  1178. package/dist/src/ui/components/Composer.js.map +1 -0
  1179. package/dist/src/ui/components/Composer.test.d.ts +6 -0
  1180. package/dist/src/ui/components/Composer.test.js +344 -0
  1181. package/dist/src/ui/components/Composer.test.js.map +1 -0
  1182. package/dist/src/ui/components/ConsentPrompt.d.ts +14 -0
  1183. package/dist/src/ui/components/ConsentPrompt.js +35 -0
  1184. package/dist/src/ui/components/ConsentPrompt.js.map +1 -0
  1185. package/dist/src/ui/components/ConsentPrompt.test.d.ts +6 -0
  1186. package/dist/src/ui/components/ConsentPrompt.test.js +110 -0
  1187. package/dist/src/ui/components/ConsentPrompt.test.js.map +1 -0
  1188. package/dist/src/ui/components/ContextSummaryDisplay.d.ts +20 -0
  1189. package/dist/src/ui/components/ContextSummaryDisplay.js +90 -0
  1190. package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -0
  1191. package/dist/src/ui/components/ContextUsageDisplay.d.ts +10 -0
  1192. package/dist/src/ui/components/ContextUsageDisplay.js +33 -0
  1193. package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -0
  1194. package/dist/src/ui/components/DebugModeNotification.d.ts +9 -0
  1195. package/dist/src/ui/components/DebugModeNotification.js +23 -0
  1196. package/dist/src/ui/components/DebugModeNotification.js.map +1 -0
  1197. package/dist/src/ui/components/DebugProfiler.d.ts +6 -0
  1198. package/dist/src/ui/components/DebugProfiler.js +27 -0
  1199. package/dist/src/ui/components/DebugProfiler.js.map +1 -0
  1200. package/dist/src/ui/components/DialogManager.d.ts +12 -0
  1201. package/dist/src/ui/components/DialogManager.js +247 -0
  1202. package/dist/src/ui/components/DialogManager.js.map +1 -0
  1203. package/dist/src/ui/components/DiffDialog.d.ts +15 -0
  1204. package/dist/src/ui/components/DiffDialog.js +412 -0
  1205. package/dist/src/ui/components/DiffDialog.js.map +1 -0
  1206. package/dist/src/ui/components/EditorSettingsDialog.d.ts +16 -0
  1207. package/dist/src/ui/components/EditorSettingsDialog.js +76 -0
  1208. package/dist/src/ui/components/EditorSettingsDialog.js.map +1 -0
  1209. package/dist/src/ui/components/ExitWarning.d.ts +7 -0
  1210. package/dist/src/ui/components/ExitWarning.js +9 -0
  1211. package/dist/src/ui/components/ExitWarning.js.map +1 -0
  1212. package/dist/src/ui/components/ExternalAuthProgress.d.ts +14 -0
  1213. package/dist/src/ui/components/ExternalAuthProgress.js +14 -0
  1214. package/dist/src/ui/components/ExternalAuthProgress.js.map +1 -0
  1215. package/dist/src/ui/components/ExternalAuthProgress.test.d.ts +6 -0
  1216. package/dist/src/ui/components/ExternalAuthProgress.test.js +20 -0
  1217. package/dist/src/ui/components/ExternalAuthProgress.test.js.map +1 -0
  1218. package/dist/src/ui/components/FolderTrustDialog.d.ts +17 -0
  1219. package/dist/src/ui/components/FolderTrustDialog.js +58 -0
  1220. package/dist/src/ui/components/FolderTrustDialog.js.map +1 -0
  1221. package/dist/src/ui/components/FolderTrustDialog.test.d.ts +6 -0
  1222. package/dist/src/ui/components/FolderTrustDialog.test.js +88 -0
  1223. package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -0
  1224. package/dist/src/ui/components/Footer.d.ts +7 -0
  1225. package/dist/src/ui/components/Footer.js +104 -0
  1226. package/dist/src/ui/components/Footer.js.map +1 -0
  1227. package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +22 -0
  1228. package/dist/src/ui/components/GeminiRespondingSpinner.js +47 -0
  1229. package/dist/src/ui/components/GeminiRespondingSpinner.js.map +1 -0
  1230. package/dist/src/ui/components/GeminiRespondingSpinner.test.d.ts +6 -0
  1231. package/dist/src/ui/components/GeminiRespondingSpinner.test.js +29 -0
  1232. package/dist/src/ui/components/GeminiRespondingSpinner.test.js.map +1 -0
  1233. package/dist/src/ui/components/GoalPill.d.ts +25 -0
  1234. package/dist/src/ui/components/GoalPill.js +77 -0
  1235. package/dist/src/ui/components/GoalPill.js.map +1 -0
  1236. package/dist/src/ui/components/GoalPill.test.d.ts +6 -0
  1237. package/dist/src/ui/components/GoalPill.test.js +56 -0
  1238. package/dist/src/ui/components/GoalPill.test.js.map +1 -0
  1239. package/dist/src/ui/components/Header.d.ts +62 -0
  1240. package/dist/src/ui/components/Header.js +155 -0
  1241. package/dist/src/ui/components/Header.js.map +1 -0
  1242. package/dist/src/ui/components/Header.test.d.ts +6 -0
  1243. package/dist/src/ui/components/Header.test.js +142 -0
  1244. package/dist/src/ui/components/Header.test.js.map +1 -0
  1245. package/dist/src/ui/components/Help.d.ts +18 -0
  1246. package/dist/src/ui/components/Help.js +236 -0
  1247. package/dist/src/ui/components/Help.js.map +1 -0
  1248. package/dist/src/ui/components/Help.test.d.ts +6 -0
  1249. package/dist/src/ui/components/Help.test.js +243 -0
  1250. package/dist/src/ui/components/Help.test.js.map +1 -0
  1251. package/dist/src/ui/components/HistoryItemDisplay.d.ts +39 -0
  1252. package/dist/src/ui/components/HistoryItemDisplay.js +51 -0
  1253. package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -0
  1254. package/dist/src/ui/components/HistoryItemDisplay.test.d.ts +6 -0
  1255. package/dist/src/ui/components/HistoryItemDisplay.test.js +197 -0
  1256. package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -0
  1257. package/dist/src/ui/components/IdeTrustChangeDialog.d.ts +11 -0
  1258. package/dist/src/ui/components/IdeTrustChangeDialog.js +34 -0
  1259. package/dist/src/ui/components/IdeTrustChangeDialog.js.map +1 -0
  1260. package/dist/src/ui/components/IdeTrustChangeDialog.test.d.ts +6 -0
  1261. package/dist/src/ui/components/IdeTrustChangeDialog.test.js +53 -0
  1262. package/dist/src/ui/components/IdeTrustChangeDialog.test.js.map +1 -0
  1263. package/dist/src/ui/components/InputPrompt.d.ts +63 -0
  1264. package/dist/src/ui/components/InputPrompt.js +1220 -0
  1265. package/dist/src/ui/components/InputPrompt.js.map +1 -0
  1266. package/dist/src/ui/components/KeyboardShortcuts.d.ts +7 -0
  1267. package/dist/src/ui/components/KeyboardShortcuts.js +78 -0
  1268. package/dist/src/ui/components/KeyboardShortcuts.js.map +1 -0
  1269. package/dist/src/ui/components/LoadingIndicator.d.ts +31 -0
  1270. package/dist/src/ui/components/LoadingIndicator.js +46 -0
  1271. package/dist/src/ui/components/LoadingIndicator.js.map +1 -0
  1272. package/dist/src/ui/components/LoadingIndicator.test.d.ts +6 -0
  1273. package/dist/src/ui/components/LoadingIndicator.test.js +246 -0
  1274. package/dist/src/ui/components/LoadingIndicator.test.js.map +1 -0
  1275. package/dist/src/ui/components/LoopDetectionConfirmation.d.ts +13 -0
  1276. package/dist/src/ui/components/LoopDetectionConfirmation.js +37 -0
  1277. package/dist/src/ui/components/LoopDetectionConfirmation.js.map +1 -0
  1278. package/dist/src/ui/components/LoopDetectionConfirmation.test.d.ts +6 -0
  1279. package/dist/src/ui/components/LoopDetectionConfirmation.test.js +28 -0
  1280. package/dist/src/ui/components/LoopDetectionConfirmation.test.js.map +1 -0
  1281. package/dist/src/ui/components/MainContent.d.ts +6 -0
  1282. package/dist/src/ui/components/MainContent.js +437 -0
  1283. package/dist/src/ui/components/MainContent.js.map +1 -0
  1284. package/dist/src/ui/components/MainContent.test.d.ts +6 -0
  1285. package/dist/src/ui/components/MainContent.test.js +621 -0
  1286. package/dist/src/ui/components/MainContent.test.js.map +1 -0
  1287. package/dist/src/ui/components/MemoryDialog.d.ts +10 -0
  1288. package/dist/src/ui/components/MemoryDialog.js +288 -0
  1289. package/dist/src/ui/components/MemoryDialog.js.map +1 -0
  1290. package/dist/src/ui/components/MemoryDialog.test.d.ts +6 -0
  1291. package/dist/src/ui/components/MemoryDialog.test.js +165 -0
  1292. package/dist/src/ui/components/MemoryDialog.test.js.map +1 -0
  1293. package/dist/src/ui/components/MemoryUsageDisplay.d.ts +7 -0
  1294. package/dist/src/ui/components/MemoryUsageDisplay.js +24 -0
  1295. package/dist/src/ui/components/MemoryUsageDisplay.js.map +1 -0
  1296. package/dist/src/ui/components/ModelDialog.d.ts +12 -0
  1297. package/dist/src/ui/components/ModelDialog.js +390 -0
  1298. package/dist/src/ui/components/ModelDialog.js.map +1 -0
  1299. package/dist/src/ui/components/ModelDialog.test.d.ts +6 -0
  1300. package/dist/src/ui/components/ModelDialog.test.js +489 -0
  1301. package/dist/src/ui/components/ModelDialog.test.js.map +1 -0
  1302. package/dist/src/ui/components/ModelStatsDisplay.d.ts +11 -0
  1303. package/dist/src/ui/components/ModelStatsDisplay.js +61 -0
  1304. package/dist/src/ui/components/ModelStatsDisplay.js.map +1 -0
  1305. package/dist/src/ui/components/Notifications.d.ts +6 -0
  1306. package/dist/src/ui/components/Notifications.js +20 -0
  1307. package/dist/src/ui/components/Notifications.js.map +1 -0
  1308. package/dist/src/ui/components/PermissionsDialog.d.ts +11 -0
  1309. package/dist/src/ui/components/PermissionsDialog.js +547 -0
  1310. package/dist/src/ui/components/PermissionsDialog.js.map +1 -0
  1311. package/dist/src/ui/components/PlanSummaryDisplay.d.ts +14 -0
  1312. package/dist/src/ui/components/PlanSummaryDisplay.js +10 -0
  1313. package/dist/src/ui/components/PlanSummaryDisplay.js.map +1 -0
  1314. package/dist/src/ui/components/PluginChoicePrompt.d.ts +18 -0
  1315. package/dist/src/ui/components/PluginChoicePrompt.js +96 -0
  1316. package/dist/src/ui/components/PluginChoicePrompt.js.map +1 -0
  1317. package/dist/src/ui/components/PluginChoicePrompt.test.d.ts +6 -0
  1318. package/dist/src/ui/components/PluginChoicePrompt.test.js +136 -0
  1319. package/dist/src/ui/components/PluginChoicePrompt.test.js.map +1 -0
  1320. package/dist/src/ui/components/PrepareLabel.d.ts +15 -0
  1321. package/dist/src/ui/components/PrepareLabel.js +72 -0
  1322. package/dist/src/ui/components/PrepareLabel.js.map +1 -0
  1323. package/dist/src/ui/components/PrepareLabel.test.d.ts +6 -0
  1324. package/dist/src/ui/components/PrepareLabel.test.js +71 -0
  1325. package/dist/src/ui/components/PrepareLabel.test.js.map +1 -0
  1326. package/dist/src/ui/components/ProviderUpdatePrompt.d.ts +12 -0
  1327. package/dist/src/ui/components/ProviderUpdatePrompt.js +49 -0
  1328. package/dist/src/ui/components/ProviderUpdatePrompt.js.map +1 -0
  1329. package/dist/src/ui/components/QueuedMessageDisplay.d.ts +9 -0
  1330. package/dist/src/ui/components/QueuedMessageDisplay.js +35 -0
  1331. package/dist/src/ui/components/QueuedMessageDisplay.js.map +1 -0
  1332. package/dist/src/ui/components/QueuedMessageDisplay.test.d.ts +6 -0
  1333. package/dist/src/ui/components/QueuedMessageDisplay.test.js +76 -0
  1334. package/dist/src/ui/components/QueuedMessageDisplay.test.js.map +1 -0
  1335. package/dist/src/ui/components/QuittingDisplay.d.ts +6 -0
  1336. package/dist/src/ui/components/QuittingDisplay.js +21 -0
  1337. package/dist/src/ui/components/QuittingDisplay.js.map +1 -0
  1338. package/dist/src/ui/components/QwenOAuthProgress.d.ts +16 -0
  1339. package/dist/src/ui/components/QwenOAuthProgress.js +65 -0
  1340. package/dist/src/ui/components/QwenOAuthProgress.js.map +1 -0
  1341. package/dist/src/ui/components/QwenOAuthProgress.test.d.ts +6 -0
  1342. package/dist/src/ui/components/QwenOAuthProgress.test.js +287 -0
  1343. package/dist/src/ui/components/QwenOAuthProgress.test.js.map +1 -0
  1344. package/dist/src/ui/components/RewindSelector.d.ts +22 -0
  1345. package/dist/src/ui/components/RewindSelector.js +264 -0
  1346. package/dist/src/ui/components/RewindSelector.js.map +1 -0
  1347. package/dist/src/ui/components/RewindSelector.test.d.ts +6 -0
  1348. package/dist/src/ui/components/RewindSelector.test.js +146 -0
  1349. package/dist/src/ui/components/RewindSelector.test.js.map +1 -0
  1350. package/dist/src/ui/components/SessionPicker.d.ts +55 -0
  1351. package/dist/src/ui/components/SessionPicker.js +142 -0
  1352. package/dist/src/ui/components/SessionPicker.js.map +1 -0
  1353. package/dist/src/ui/components/SessionPreview.d.ts +20 -0
  1354. package/dist/src/ui/components/SessionPreview.js +97 -0
  1355. package/dist/src/ui/components/SessionPreview.js.map +1 -0
  1356. package/dist/src/ui/components/SessionPreview.test.d.ts +1 -0
  1357. package/dist/src/ui/components/SessionPreview.test.js +124 -0
  1358. package/dist/src/ui/components/SessionPreview.test.js.map +1 -0
  1359. package/dist/src/ui/components/SessionSummaryDisplay.d.ts +12 -0
  1360. package/dist/src/ui/components/SessionSummaryDisplay.js +17 -0
  1361. package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -0
  1362. package/dist/src/ui/components/SettingInputPrompt.d.ts +15 -0
  1363. package/dist/src/ui/components/SettingInputPrompt.js +63 -0
  1364. package/dist/src/ui/components/SettingInputPrompt.js.map +1 -0
  1365. package/dist/src/ui/components/SettingInputPrompt.test.d.ts +6 -0
  1366. package/dist/src/ui/components/SettingInputPrompt.test.js +60 -0
  1367. package/dist/src/ui/components/SettingInputPrompt.test.js.map +1 -0
  1368. package/dist/src/ui/components/SettingsCorruptedDialog.d.ts +14 -0
  1369. package/dist/src/ui/components/SettingsCorruptedDialog.js +44 -0
  1370. package/dist/src/ui/components/SettingsCorruptedDialog.js.map +1 -0
  1371. package/dist/src/ui/components/SettingsCorruptedDialog.test.d.ts +6 -0
  1372. package/dist/src/ui/components/SettingsCorruptedDialog.test.js +162 -0
  1373. package/dist/src/ui/components/SettingsCorruptedDialog.test.js.map +1 -0
  1374. package/dist/src/ui/components/SettingsDialog.d.ts +18 -0
  1375. package/dist/src/ui/components/SettingsDialog.js +658 -0
  1376. package/dist/src/ui/components/SettingsDialog.js.map +1 -0
  1377. package/dist/src/ui/components/SettingsDialog.test.d.ts +6 -0
  1378. package/dist/src/ui/components/SettingsDialog.test.js +1127 -0
  1379. package/dist/src/ui/components/SettingsDialog.test.js.map +1 -0
  1380. package/dist/src/ui/components/ShellConfirmationDialog.d.ts +17 -0
  1381. package/dist/src/ui/components/ShellConfirmationDialog.js +75 -0
  1382. package/dist/src/ui/components/ShellConfirmationDialog.js.map +1 -0
  1383. package/dist/src/ui/components/ShellConfirmationDialog.test.d.ts +6 -0
  1384. package/dist/src/ui/components/ShellConfirmationDialog.test.js +167 -0
  1385. package/dist/src/ui/components/ShellConfirmationDialog.test.js.map +1 -0
  1386. package/dist/src/ui/components/ShellInputPrompt.d.ts +11 -0
  1387. package/dist/src/ui/components/ShellInputPrompt.js +42 -0
  1388. package/dist/src/ui/components/ShellInputPrompt.js.map +1 -0
  1389. package/dist/src/ui/components/ShellModeIndicator.d.ts +7 -0
  1390. package/dist/src/ui/components/ShellModeIndicator.js +5 -0
  1391. package/dist/src/ui/components/ShellModeIndicator.js.map +1 -0
  1392. package/dist/src/ui/components/ShowMoreLines.d.ts +10 -0
  1393. package/dist/src/ui/components/ShowMoreLines.js +24 -0
  1394. package/dist/src/ui/components/ShowMoreLines.js.map +1 -0
  1395. package/dist/src/ui/components/StandaloneSessionPicker.d.ts +11 -0
  1396. package/dist/src/ui/components/StandaloneSessionPicker.js +105 -0
  1397. package/dist/src/ui/components/StandaloneSessionPicker.js.map +1 -0
  1398. package/dist/src/ui/components/StandaloneSessionPicker.test.d.ts +6 -0
  1399. package/dist/src/ui/components/StandaloneSessionPicker.test.js +667 -0
  1400. package/dist/src/ui/components/StandaloneSessionPicker.test.js.map +1 -0
  1401. package/dist/src/ui/components/StatsActivityTab.d.ts +14 -0
  1402. package/dist/src/ui/components/StatsActivityTab.js +85 -0
  1403. package/dist/src/ui/components/StatsActivityTab.js.map +1 -0
  1404. package/dist/src/ui/components/StatsDialog.d.ts +12 -0
  1405. package/dist/src/ui/components/StatsDialog.js +104 -0
  1406. package/dist/src/ui/components/StatsDialog.js.map +1 -0
  1407. package/dist/src/ui/components/StatsDisplay.d.ts +13 -0
  1408. package/dist/src/ui/components/StatsDisplay.js +52 -0
  1409. package/dist/src/ui/components/StatsDisplay.js.map +1 -0
  1410. package/dist/src/ui/components/StatsEfficiencyTab.d.ts +11 -0
  1411. package/dist/src/ui/components/StatsEfficiencyTab.js +99 -0
  1412. package/dist/src/ui/components/StatsEfficiencyTab.js.map +1 -0
  1413. package/dist/src/ui/components/StatsHeatmapView.d.ts +12 -0
  1414. package/dist/src/ui/components/StatsHeatmapView.js +40 -0
  1415. package/dist/src/ui/components/StatsHeatmapView.js.map +1 -0
  1416. package/dist/src/ui/components/StatsSessionTab.d.ts +7 -0
  1417. package/dist/src/ui/components/StatsSessionTab.js +40 -0
  1418. package/dist/src/ui/components/StatsSessionTab.js.map +1 -0
  1419. package/dist/src/ui/components/StatusLineDialog.d.ts +22 -0
  1420. package/dist/src/ui/components/StatusLineDialog.js +140 -0
  1421. package/dist/src/ui/components/StatusLineDialog.js.map +1 -0
  1422. package/dist/src/ui/components/StatusLineDialog.test.d.ts +6 -0
  1423. package/dist/src/ui/components/StatusLineDialog.test.js +180 -0
  1424. package/dist/src/ui/components/StatusLineDialog.test.js.map +1 -0
  1425. package/dist/src/ui/components/StickyTodoList.d.ts +14 -0
  1426. package/dist/src/ui/components/StickyTodoList.js +45 -0
  1427. package/dist/src/ui/components/StickyTodoList.js.map +1 -0
  1428. package/dist/src/ui/components/StickyTodoList.test.d.ts +6 -0
  1429. package/dist/src/ui/components/StickyTodoList.test.js +128 -0
  1430. package/dist/src/ui/components/StickyTodoList.test.js.map +1 -0
  1431. package/dist/src/ui/components/SuggestionsDisplay.d.ts +47 -0
  1432. package/dist/src/ui/components/SuggestionsDisplay.js +43 -0
  1433. package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -0
  1434. package/dist/src/ui/components/SuggestionsDisplay.test.d.ts +6 -0
  1435. package/dist/src/ui/components/SuggestionsDisplay.test.js +39 -0
  1436. package/dist/src/ui/components/SuggestionsDisplay.test.js.map +1 -0
  1437. package/dist/src/ui/components/ThemeDialog.d.ts +20 -0
  1438. package/dist/src/ui/components/ThemeDialog.js +137 -0
  1439. package/dist/src/ui/components/ThemeDialog.js.map +1 -0
  1440. package/dist/src/ui/components/ThemeDialog.test.d.ts +6 -0
  1441. package/dist/src/ui/components/ThemeDialog.test.js +75 -0
  1442. package/dist/src/ui/components/ThemeDialog.test.js.map +1 -0
  1443. package/dist/src/ui/components/ThinkingDots.d.ts +11 -0
  1444. package/dist/src/ui/components/ThinkingDots.js +47 -0
  1445. package/dist/src/ui/components/ThinkingDots.js.map +1 -0
  1446. package/dist/src/ui/components/ThinkingIndicator.d.ts +7 -0
  1447. package/dist/src/ui/components/ThinkingIndicator.js +13 -0
  1448. package/dist/src/ui/components/ThinkingIndicator.js.map +1 -0
  1449. package/dist/src/ui/components/Tips.d.ts +6 -0
  1450. package/dist/src/ui/components/Tips.js +37 -0
  1451. package/dist/src/ui/components/Tips.js.map +1 -0
  1452. package/dist/src/ui/components/Tips.test.d.ts +6 -0
  1453. package/dist/src/ui/components/Tips.test.js +145 -0
  1454. package/dist/src/ui/components/Tips.test.js.map +1 -0
  1455. package/dist/src/ui/components/TodoDisplay.d.ts +16 -0
  1456. package/dist/src/ui/components/TodoDisplay.js +27 -0
  1457. package/dist/src/ui/components/TodoDisplay.js.map +1 -0
  1458. package/dist/src/ui/components/TodoDisplay.test.d.ts +6 -0
  1459. package/dist/src/ui/components/TodoDisplay.test.js +77 -0
  1460. package/dist/src/ui/components/TodoDisplay.test.js.map +1 -0
  1461. package/dist/src/ui/components/ToolStatsDisplay.d.ts +11 -0
  1462. package/dist/src/ui/components/ToolStatsDisplay.js +42 -0
  1463. package/dist/src/ui/components/ToolStatsDisplay.js.map +1 -0
  1464. package/dist/src/ui/components/TrustDialog.d.ts +13 -0
  1465. package/dist/src/ui/components/TrustDialog.js +48 -0
  1466. package/dist/src/ui/components/TrustDialog.js.map +1 -0
  1467. package/dist/src/ui/components/TrustDialog.test.d.ts +6 -0
  1468. package/dist/src/ui/components/TrustDialog.test.js +154 -0
  1469. package/dist/src/ui/components/TrustDialog.test.js.map +1 -0
  1470. package/dist/src/ui/components/UpdateNotification.d.ts +10 -0
  1471. package/dist/src/ui/components/UpdateNotification.js +10 -0
  1472. package/dist/src/ui/components/UpdateNotification.js.map +1 -0
  1473. package/dist/src/ui/components/WelcomeBackDialog.d.ts +13 -0
  1474. package/dist/src/ui/components/WelcomeBackDialog.js +43 -0
  1475. package/dist/src/ui/components/WelcomeBackDialog.js.map +1 -0
  1476. package/dist/src/ui/components/WorktreeExitDialog.d.ts +26 -0
  1477. package/dist/src/ui/components/WorktreeExitDialog.js +134 -0
  1478. package/dist/src/ui/components/WorktreeExitDialog.js.map +1 -0
  1479. package/dist/src/ui/components/WorktreeExitDialog.test.d.ts +6 -0
  1480. package/dist/src/ui/components/WorktreeExitDialog.test.js +41 -0
  1481. package/dist/src/ui/components/WorktreeExitDialog.test.js.map +1 -0
  1482. package/dist/src/ui/components/agent-view/AgentChatContent.d.ts +27 -0
  1483. package/dist/src/ui/components/agent-view/AgentChatContent.js +150 -0
  1484. package/dist/src/ui/components/agent-view/AgentChatContent.js.map +1 -0
  1485. package/dist/src/ui/components/agent-view/AgentChatView.d.ts +10 -0
  1486. package/dist/src/ui/components/agent-view/AgentChatView.js +24 -0
  1487. package/dist/src/ui/components/agent-view/AgentChatView.js.map +1 -0
  1488. package/dist/src/ui/components/agent-view/AgentComposer.d.ts +10 -0
  1489. package/dist/src/ui/components/agent-view/AgentComposer.js +183 -0
  1490. package/dist/src/ui/components/agent-view/AgentComposer.js.map +1 -0
  1491. package/dist/src/ui/components/agent-view/AgentFooter.d.ts +20 -0
  1492. package/dist/src/ui/components/agent-view/AgentFooter.js +15 -0
  1493. package/dist/src/ui/components/agent-view/AgentFooter.js.map +1 -0
  1494. package/dist/src/ui/components/agent-view/AgentHeader.d.ts +19 -0
  1495. package/dist/src/ui/components/agent-view/AgentHeader.js +13 -0
  1496. package/dist/src/ui/components/agent-view/AgentHeader.js.map +1 -0
  1497. package/dist/src/ui/components/agent-view/AgentTabBar.d.ts +6 -0
  1498. package/dist/src/ui/components/agent-view/AgentTabBar.js +110 -0
  1499. package/dist/src/ui/components/agent-view/AgentTabBar.js.map +1 -0
  1500. package/dist/src/ui/components/agent-view/AgentTabBar.test.d.ts +6 -0
  1501. package/dist/src/ui/components/agent-view/AgentTabBar.test.js +90 -0
  1502. package/dist/src/ui/components/agent-view/AgentTabBar.test.js.map +1 -0
  1503. package/dist/src/ui/components/agent-view/agentHistoryAdapter.d.ts +31 -0
  1504. package/dist/src/ui/components/agent-view/agentHistoryAdapter.js +148 -0
  1505. package/dist/src/ui/components/agent-view/agentHistoryAdapter.js.map +1 -0
  1506. package/dist/src/ui/components/agent-view/agentHistoryAdapter.test.d.ts +6 -0
  1507. package/dist/src/ui/components/agent-view/agentHistoryAdapter.test.js +318 -0
  1508. package/dist/src/ui/components/agent-view/agentHistoryAdapter.test.js.map +1 -0
  1509. package/dist/src/ui/components/agent-view/index.d.ts +11 -0
  1510. package/dist/src/ui/components/agent-view/index.js +12 -0
  1511. package/dist/src/ui/components/agent-view/index.js.map +1 -0
  1512. package/dist/src/ui/components/approvalModeVisuals.d.ts +11 -0
  1513. package/dist/src/ui/components/approvalModeVisuals.js +37 -0
  1514. package/dist/src/ui/components/approvalModeVisuals.js.map +1 -0
  1515. package/dist/src/ui/components/approvalModeVisuals.test.d.ts +6 -0
  1516. package/dist/src/ui/components/approvalModeVisuals.test.js +32 -0
  1517. package/dist/src/ui/components/approvalModeVisuals.test.js.map +1 -0
  1518. package/dist/src/ui/components/arena/ArenaCards.d.ts +21 -0
  1519. package/dist/src/ui/components/arena/ArenaCards.js +99 -0
  1520. package/dist/src/ui/components/arena/ArenaCards.js.map +1 -0
  1521. package/dist/src/ui/components/arena/ArenaCards.test.d.ts +6 -0
  1522. package/dist/src/ui/components/arena/ArenaCards.test.js +128 -0
  1523. package/dist/src/ui/components/arena/ArenaCards.test.js.map +1 -0
  1524. package/dist/src/ui/components/arena/ArenaSelectDialog.d.ts +16 -0
  1525. package/dist/src/ui/components/arena/ArenaSelectDialog.js +213 -0
  1526. package/dist/src/ui/components/arena/ArenaSelectDialog.js.map +1 -0
  1527. package/dist/src/ui/components/arena/ArenaSelectDialog.test.d.ts +6 -0
  1528. package/dist/src/ui/components/arena/ArenaSelectDialog.test.js +149 -0
  1529. package/dist/src/ui/components/arena/ArenaSelectDialog.test.js.map +1 -0
  1530. package/dist/src/ui/components/arena/ArenaStartDialog.d.ts +12 -0
  1531. package/dist/src/ui/components/arena/ArenaStartDialog.js +49 -0
  1532. package/dist/src/ui/components/arena/ArenaStartDialog.js.map +1 -0
  1533. package/dist/src/ui/components/arena/ArenaStatusDialog.d.ts +14 -0
  1534. package/dist/src/ui/components/arena/ArenaStatusDialog.js +111 -0
  1535. package/dist/src/ui/components/arena/ArenaStatusDialog.js.map +1 -0
  1536. package/dist/src/ui/components/arena/ArenaStopDialog.d.ts +15 -0
  1537. package/dist/src/ui/components/arena/ArenaStopDialog.js +113 -0
  1538. package/dist/src/ui/components/arena/ArenaStopDialog.js.map +1 -0
  1539. package/dist/src/ui/components/background-view/BackgroundTasksDialog.d.ts +17 -0
  1540. package/dist/src/ui/components/background-view/BackgroundTasksDialog.js +614 -0
  1541. package/dist/src/ui/components/background-view/BackgroundTasksDialog.js.map +1 -0
  1542. package/dist/src/ui/components/background-view/BackgroundTasksDialog.test.d.ts +6 -0
  1543. package/dist/src/ui/components/background-view/BackgroundTasksDialog.test.js +606 -0
  1544. package/dist/src/ui/components/background-view/BackgroundTasksDialog.test.js.map +1 -0
  1545. package/dist/src/ui/components/background-view/BackgroundTasksPill.d.ts +14 -0
  1546. package/dist/src/ui/components/background-view/BackgroundTasksPill.js +94 -0
  1547. package/dist/src/ui/components/background-view/BackgroundTasksPill.js.map +1 -0
  1548. package/dist/src/ui/components/background-view/BackgroundTasksPill.test.d.ts +6 -0
  1549. package/dist/src/ui/components/background-view/BackgroundTasksPill.test.js +158 -0
  1550. package/dist/src/ui/components/background-view/BackgroundTasksPill.test.js.map +1 -0
  1551. package/dist/src/ui/components/background-view/LiveAgentPanel.d.ts +43 -0
  1552. package/dist/src/ui/components/background-view/LiveAgentPanel.js +361 -0
  1553. package/dist/src/ui/components/background-view/LiveAgentPanel.js.map +1 -0
  1554. package/dist/src/ui/components/background-view/LiveAgentPanel.test.d.ts +6 -0
  1555. package/dist/src/ui/components/background-view/LiveAgentPanel.test.js +595 -0
  1556. package/dist/src/ui/components/background-view/LiveAgentPanel.test.js.map +1 -0
  1557. package/dist/src/ui/components/extensions/ExtensionsManagerDialog.d.ts +12 -0
  1558. package/dist/src/ui/components/extensions/ExtensionsManagerDialog.js +337 -0
  1559. package/dist/src/ui/components/extensions/ExtensionsManagerDialog.js.map +1 -0
  1560. package/dist/src/ui/components/extensions/ExtensionsManagerDialog.test.d.ts +6 -0
  1561. package/dist/src/ui/components/extensions/ExtensionsManagerDialog.test.js +90 -0
  1562. package/dist/src/ui/components/extensions/ExtensionsManagerDialog.test.js.map +1 -0
  1563. package/dist/src/ui/components/extensions/index.d.ts +8 -0
  1564. package/dist/src/ui/components/extensions/index.js +8 -0
  1565. package/dist/src/ui/components/extensions/index.js.map +1 -0
  1566. package/dist/src/ui/components/extensions/steps/ActionSelectionStep.d.ts +15 -0
  1567. package/dist/src/ui/components/extensions/steps/ActionSelectionStep.js +75 -0
  1568. package/dist/src/ui/components/extensions/steps/ActionSelectionStep.js.map +1 -0
  1569. package/dist/src/ui/components/extensions/steps/ActionSelectionStep.test.d.ts +6 -0
  1570. package/dist/src/ui/components/extensions/steps/ActionSelectionStep.test.js +56 -0
  1571. package/dist/src/ui/components/extensions/steps/ActionSelectionStep.test.js.map +1 -0
  1572. package/dist/src/ui/components/extensions/steps/ExtensionDetailStep.d.ts +11 -0
  1573. package/dist/src/ui/components/extensions/steps/ExtensionDetailStep.js +23 -0
  1574. package/dist/src/ui/components/extensions/steps/ExtensionDetailStep.js.map +1 -0
  1575. package/dist/src/ui/components/extensions/steps/ExtensionListStep.d.ts +13 -0
  1576. package/dist/src/ui/components/extensions/steps/ExtensionListStep.js +105 -0
  1577. package/dist/src/ui/components/extensions/steps/ExtensionListStep.js.map +1 -0
  1578. package/dist/src/ui/components/extensions/steps/ExtensionListStep.test.d.ts +6 -0
  1579. package/dist/src/ui/components/extensions/steps/ExtensionListStep.test.js +74 -0
  1580. package/dist/src/ui/components/extensions/steps/ExtensionListStep.test.js.map +1 -0
  1581. package/dist/src/ui/components/extensions/steps/ScopeSelectStep.d.ts +13 -0
  1582. package/dist/src/ui/components/extensions/steps/ScopeSelectStep.js +40 -0
  1583. package/dist/src/ui/components/extensions/steps/ScopeSelectStep.js.map +1 -0
  1584. package/dist/src/ui/components/extensions/steps/UninstallConfirmStep.d.ts +13 -0
  1585. package/dist/src/ui/components/extensions/steps/UninstallConfirmStep.js +38 -0
  1586. package/dist/src/ui/components/extensions/steps/UninstallConfirmStep.js.map +1 -0
  1587. package/dist/src/ui/components/extensions/steps/index.d.ts +10 -0
  1588. package/dist/src/ui/components/extensions/steps/index.js +11 -0
  1589. package/dist/src/ui/components/extensions/steps/index.js.map +1 -0
  1590. package/dist/src/ui/components/extensions/types.d.ts +73 -0
  1591. package/dist/src/ui/components/extensions/types.js +18 -0
  1592. package/dist/src/ui/components/extensions/types.js.map +1 -0
  1593. package/dist/src/ui/components/hooks/HandlerListBody.d.ts +12 -0
  1594. package/dist/src/ui/components/hooks/HandlerListBody.js +54 -0
  1595. package/dist/src/ui/components/hooks/HandlerListBody.js.map +1 -0
  1596. package/dist/src/ui/components/hooks/HandlerListBody.test.d.ts +6 -0
  1597. package/dist/src/ui/components/hooks/HandlerListBody.test.js +175 -0
  1598. package/dist/src/ui/components/hooks/HandlerListBody.test.js.map +1 -0
  1599. package/dist/src/ui/components/hooks/HookConfigDetailStep.d.ts +12 -0
  1600. package/dist/src/ui/components/hooks/HookConfigDetailStep.js +48 -0
  1601. package/dist/src/ui/components/hooks/HookConfigDetailStep.js.map +1 -0
  1602. package/dist/src/ui/components/hooks/HookConfigDetailStep.test.d.ts +6 -0
  1603. package/dist/src/ui/components/hooks/HookConfigDetailStep.test.js +236 -0
  1604. package/dist/src/ui/components/hooks/HookConfigDetailStep.test.js.map +1 -0
  1605. package/dist/src/ui/components/hooks/HookDetailStep.d.ts +12 -0
  1606. package/dist/src/ui/components/hooks/HookDetailStep.js +11 -0
  1607. package/dist/src/ui/components/hooks/HookDetailStep.js.map +1 -0
  1608. package/dist/src/ui/components/hooks/HookDetailStep.test.d.ts +6 -0
  1609. package/dist/src/ui/components/hooks/HookDetailStep.test.js +241 -0
  1610. package/dist/src/ui/components/hooks/HookDetailStep.test.js.map +1 -0
  1611. package/dist/src/ui/components/hooks/HookEventHandlerListStep.d.ts +12 -0
  1612. package/dist/src/ui/components/hooks/HookEventHandlerListStep.js +18 -0
  1613. package/dist/src/ui/components/hooks/HookEventHandlerListStep.js.map +1 -0
  1614. package/dist/src/ui/components/hooks/HookEventHeader.d.ts +13 -0
  1615. package/dist/src/ui/components/hooks/HookEventHeader.js +23 -0
  1616. package/dist/src/ui/components/hooks/HookEventHeader.js.map +1 -0
  1617. package/dist/src/ui/components/hooks/HookEventMatcherListStep.d.ts +12 -0
  1618. package/dist/src/ui/components/hooks/HookEventMatcherListStep.js +28 -0
  1619. package/dist/src/ui/components/hooks/HookEventMatcherListStep.js.map +1 -0
  1620. package/dist/src/ui/components/hooks/HookMatcherDetailStep.d.ts +13 -0
  1621. package/dist/src/ui/components/hooks/HookMatcherDetailStep.js +16 -0
  1622. package/dist/src/ui/components/hooks/HookMatcherDetailStep.js.map +1 -0
  1623. package/dist/src/ui/components/hooks/HookMatcherDetailStep.test.d.ts +6 -0
  1624. package/dist/src/ui/components/hooks/HookMatcherDetailStep.test.js +154 -0
  1625. package/dist/src/ui/components/hooks/HookMatcherDetailStep.test.js.map +1 -0
  1626. package/dist/src/ui/components/hooks/HooksDisabledStep.d.ts +10 -0
  1627. package/dist/src/ui/components/hooks/HooksDisabledStep.js +23 -0
  1628. package/dist/src/ui/components/hooks/HooksDisabledStep.js.map +1 -0
  1629. package/dist/src/ui/components/hooks/HooksDisabledStep.test.d.ts +6 -0
  1630. package/dist/src/ui/components/hooks/HooksDisabledStep.test.js +86 -0
  1631. package/dist/src/ui/components/hooks/HooksDisabledStep.test.js.map +1 -0
  1632. package/dist/src/ui/components/hooks/HooksListStep.d.ts +12 -0
  1633. package/dist/src/ui/components/hooks/HooksListStep.js +32 -0
  1634. package/dist/src/ui/components/hooks/HooksListStep.js.map +1 -0
  1635. package/dist/src/ui/components/hooks/HooksListStep.test.d.ts +6 -0
  1636. package/dist/src/ui/components/hooks/HooksListStep.test.js +144 -0
  1637. package/dist/src/ui/components/hooks/HooksListStep.test.js.map +1 -0
  1638. package/dist/src/ui/components/hooks/HooksManagementDialog.d.ts +7 -0
  1639. package/dist/src/ui/components/hooks/HooksManagementDialog.js +418 -0
  1640. package/dist/src/ui/components/hooks/HooksManagementDialog.js.map +1 -0
  1641. package/dist/src/ui/components/hooks/HooksManagementDialog.test.d.ts +6 -0
  1642. package/dist/src/ui/components/hooks/HooksManagementDialog.test.js +305 -0
  1643. package/dist/src/ui/components/hooks/HooksManagementDialog.test.js.map +1 -0
  1644. package/dist/src/ui/components/hooks/constants.d.ts +26 -0
  1645. package/dist/src/ui/components/hooks/constants.js +227 -0
  1646. package/dist/src/ui/components/hooks/constants.js.map +1 -0
  1647. package/dist/src/ui/components/hooks/constants.test.d.ts +6 -0
  1648. package/dist/src/ui/components/hooks/constants.test.js +317 -0
  1649. package/dist/src/ui/components/hooks/constants.test.js.map +1 -0
  1650. package/dist/src/ui/components/hooks/index.d.ts +12 -0
  1651. package/dist/src/ui/components/hooks/index.js +13 -0
  1652. package/dist/src/ui/components/hooks/index.js.map +1 -0
  1653. package/dist/src/ui/components/hooks/matcherGrouping.d.ts +9 -0
  1654. package/dist/src/ui/components/hooks/matcherGrouping.js +35 -0
  1655. package/dist/src/ui/components/hooks/matcherGrouping.js.map +1 -0
  1656. package/dist/src/ui/components/hooks/matcherGrouping.test.d.ts +6 -0
  1657. package/dist/src/ui/components/hooks/matcherGrouping.test.js +183 -0
  1658. package/dist/src/ui/components/hooks/matcherGrouping.test.js.map +1 -0
  1659. package/dist/src/ui/components/hooks/sourceLabels.d.ts +13 -0
  1660. package/dist/src/ui/components/hooks/sourceLabels.js +35 -0
  1661. package/dist/src/ui/components/hooks/sourceLabels.js.map +1 -0
  1662. package/dist/src/ui/components/hooks/sourceLabels.test.d.ts +6 -0
  1663. package/dist/src/ui/components/hooks/sourceLabels.test.js +81 -0
  1664. package/dist/src/ui/components/hooks/sourceLabels.test.js.map +1 -0
  1665. package/dist/src/ui/components/hooks/types.d.ts +42 -0
  1666. package/dist/src/ui/components/hooks/types.js +13 -0
  1667. package/dist/src/ui/components/hooks/types.js.map +1 -0
  1668. package/dist/src/ui/components/mcp/MCPHealthPill.d.ts +24 -0
  1669. package/dist/src/ui/components/mcp/MCPHealthPill.js +33 -0
  1670. package/dist/src/ui/components/mcp/MCPHealthPill.js.map +1 -0
  1671. package/dist/src/ui/components/mcp/MCPHealthPill.test.d.ts +6 -0
  1672. package/dist/src/ui/components/mcp/MCPHealthPill.test.js +42 -0
  1673. package/dist/src/ui/components/mcp/MCPHealthPill.test.js.map +1 -0
  1674. package/dist/src/ui/components/mcp/MCPManagementDialog.d.ts +7 -0
  1675. package/dist/src/ui/components/mcp/MCPManagementDialog.js +472 -0
  1676. package/dist/src/ui/components/mcp/MCPManagementDialog.js.map +1 -0
  1677. package/dist/src/ui/components/mcp/constants.d.ts +29 -0
  1678. package/dist/src/ui/components/mcp/constants.js +34 -0
  1679. package/dist/src/ui/components/mcp/constants.js.map +1 -0
  1680. package/dist/src/ui/components/mcp/index.d.ts +12 -0
  1681. package/dist/src/ui/components/mcp/index.js +15 -0
  1682. package/dist/src/ui/components/mcp/index.js.map +1 -0
  1683. package/dist/src/ui/components/mcp/steps/AuthenticateStep.d.ts +7 -0
  1684. package/dist/src/ui/components/mcp/steps/AuthenticateStep.js +187 -0
  1685. package/dist/src/ui/components/mcp/steps/AuthenticateStep.js.map +1 -0
  1686. package/dist/src/ui/components/mcp/steps/DisableScopeSelectStep.d.ts +7 -0
  1687. package/dist/src/ui/components/mcp/steps/DisableScopeSelectStep.js +44 -0
  1688. package/dist/src/ui/components/mcp/steps/DisableScopeSelectStep.js.map +1 -0
  1689. package/dist/src/ui/components/mcp/steps/ServerDetailStep.d.ts +7 -0
  1690. package/dist/src/ui/components/mcp/steps/ServerDetailStep.js +108 -0
  1691. package/dist/src/ui/components/mcp/steps/ServerDetailStep.js.map +1 -0
  1692. package/dist/src/ui/components/mcp/steps/ServerListStep.d.ts +7 -0
  1693. package/dist/src/ui/components/mcp/steps/ServerListStep.js +74 -0
  1694. package/dist/src/ui/components/mcp/steps/ServerListStep.js.map +1 -0
  1695. package/dist/src/ui/components/mcp/steps/ServerListStep.test.d.ts +6 -0
  1696. package/dist/src/ui/components/mcp/steps/ServerListStep.test.js +60 -0
  1697. package/dist/src/ui/components/mcp/steps/ServerListStep.test.js.map +1 -0
  1698. package/dist/src/ui/components/mcp/steps/ToolDetailStep.d.ts +7 -0
  1699. package/dist/src/ui/components/mcp/steps/ToolDetailStep.js +49 -0
  1700. package/dist/src/ui/components/mcp/steps/ToolDetailStep.js.map +1 -0
  1701. package/dist/src/ui/components/mcp/steps/ToolListStep.d.ts +7 -0
  1702. package/dist/src/ui/components/mcp/steps/ToolListStep.js +80 -0
  1703. package/dist/src/ui/components/mcp/steps/ToolListStep.js.map +1 -0
  1704. package/dist/src/ui/components/mcp/steps/ToolListStep.test.d.ts +6 -0
  1705. package/dist/src/ui/components/mcp/steps/ToolListStep.test.js +55 -0
  1706. package/dist/src/ui/components/mcp/steps/ToolListStep.test.js.map +1 -0
  1707. package/dist/src/ui/components/mcp/types.d.ts +177 -0
  1708. package/dist/src/ui/components/mcp/types.js +17 -0
  1709. package/dist/src/ui/components/mcp/types.js.map +1 -0
  1710. package/dist/src/ui/components/mcp/utils.d.ts +40 -0
  1711. package/dist/src/ui/components/mcp/utils.js +126 -0
  1712. package/dist/src/ui/components/mcp/utils.js.map +1 -0
  1713. package/dist/src/ui/components/mcp/utils.test.d.ts +6 -0
  1714. package/dist/src/ui/components/mcp/utils.test.js +130 -0
  1715. package/dist/src/ui/components/mcp/utils.test.js.map +1 -0
  1716. package/dist/src/ui/components/messages/AskUserQuestionDialog.d.ts +14 -0
  1717. package/dist/src/ui/components/messages/AskUserQuestionDialog.js +291 -0
  1718. package/dist/src/ui/components/messages/AskUserQuestionDialog.js.map +1 -0
  1719. package/dist/src/ui/components/messages/AskUserQuestionDialog.test.d.ts +6 -0
  1720. package/dist/src/ui/components/messages/AskUserQuestionDialog.test.js +281 -0
  1721. package/dist/src/ui/components/messages/AskUserQuestionDialog.test.js.map +1 -0
  1722. package/dist/src/ui/components/messages/BtwMessage.d.ts +14 -0
  1723. package/dist/src/ui/components/messages/BtwMessage.js +30 -0
  1724. package/dist/src/ui/components/messages/BtwMessage.js.map +1 -0
  1725. package/dist/src/ui/components/messages/BtwMessage.test.d.ts +6 -0
  1726. package/dist/src/ui/components/messages/BtwMessage.test.js +60 -0
  1727. package/dist/src/ui/components/messages/BtwMessage.test.js.map +1 -0
  1728. package/dist/src/ui/components/messages/CompactToolGroupDisplay.d.ts +20 -0
  1729. package/dist/src/ui/components/messages/CompactToolGroupDisplay.js +80 -0
  1730. package/dist/src/ui/components/messages/CompactToolGroupDisplay.js.map +1 -0
  1731. package/dist/src/ui/components/messages/CompactToolGroupDisplay.test.d.ts +6 -0
  1732. package/dist/src/ui/components/messages/CompactToolGroupDisplay.test.js +139 -0
  1733. package/dist/src/ui/components/messages/CompactToolGroupDisplay.test.js.map +1 -0
  1734. package/dist/src/ui/components/messages/CompressionMessage.d.ts +10 -0
  1735. package/dist/src/ui/components/messages/CompressionMessage.js +50 -0
  1736. package/dist/src/ui/components/messages/CompressionMessage.js.map +1 -0
  1737. package/dist/src/ui/components/messages/CompressionMessage.test.d.ts +6 -0
  1738. package/dist/src/ui/components/messages/CompressionMessage.test.js +160 -0
  1739. package/dist/src/ui/components/messages/CompressionMessage.test.js.map +1 -0
  1740. package/dist/src/ui/components/messages/ConversationMessages.d.ts +46 -0
  1741. package/dist/src/ui/components/messages/ConversationMessages.js +32 -0
  1742. package/dist/src/ui/components/messages/ConversationMessages.js.map +1 -0
  1743. package/dist/src/ui/components/messages/DiffRenderer.d.ts +19 -0
  1744. package/dist/src/ui/components/messages/DiffRenderer.js +219 -0
  1745. package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -0
  1746. package/dist/src/ui/components/messages/DiffRenderer.test.d.ts +6 -0
  1747. package/dist/src/ui/components/messages/DiffRenderer.test.js +296 -0
  1748. package/dist/src/ui/components/messages/DiffRenderer.test.js.map +1 -0
  1749. package/dist/src/ui/components/messages/DiffStatsDisplay.d.ts +18 -0
  1750. package/dist/src/ui/components/messages/DiffStatsDisplay.js +50 -0
  1751. package/dist/src/ui/components/messages/DiffStatsDisplay.js.map +1 -0
  1752. package/dist/src/ui/components/messages/DiffStatsDisplay.test.d.ts +6 -0
  1753. package/dist/src/ui/components/messages/DiffStatsDisplay.test.js +165 -0
  1754. package/dist/src/ui/components/messages/DiffStatsDisplay.test.js.map +1 -0
  1755. package/dist/src/ui/components/messages/GoalStatusMessage.d.ts +16 -0
  1756. package/dist/src/ui/components/messages/GoalStatusMessage.js +76 -0
  1757. package/dist/src/ui/components/messages/GoalStatusMessage.js.map +1 -0
  1758. package/dist/src/ui/components/messages/GoalStatusMessage.test.d.ts +6 -0
  1759. package/dist/src/ui/components/messages/GoalStatusMessage.test.js +32 -0
  1760. package/dist/src/ui/components/messages/GoalStatusMessage.test.js.map +1 -0
  1761. package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.d.ts +33 -0
  1762. package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.js +196 -0
  1763. package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.js.map +1 -0
  1764. package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.test.d.ts +6 -0
  1765. package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.test.js +219 -0
  1766. package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.test.js.map +1 -0
  1767. package/dist/src/ui/components/messages/InsightProgressMessage.d.ts +12 -0
  1768. package/dist/src/ui/components/messages/InsightProgressMessage.js +20 -0
  1769. package/dist/src/ui/components/messages/InsightProgressMessage.js.map +1 -0
  1770. package/dist/src/ui/components/messages/MemorySavedMessage.d.ts +18 -0
  1771. package/dist/src/ui/components/messages/MemorySavedMessage.js +15 -0
  1772. package/dist/src/ui/components/messages/MemorySavedMessage.js.map +1 -0
  1773. package/dist/src/ui/components/messages/StatusMessages.d.ts +33 -0
  1774. package/dist/src/ui/components/messages/StatusMessages.js +28 -0
  1775. package/dist/src/ui/components/messages/StatusMessages.js.map +1 -0
  1776. package/dist/src/ui/components/messages/StatusMessages.test.d.ts +6 -0
  1777. package/dist/src/ui/components/messages/StatusMessages.test.js +21 -0
  1778. package/dist/src/ui/components/messages/StatusMessages.test.js.map +1 -0
  1779. package/dist/src/ui/components/messages/SummaryMessage.d.ts +11 -0
  1780. package/dist/src/ui/components/messages/SummaryMessage.js +38 -0
  1781. package/dist/src/ui/components/messages/SummaryMessage.js.map +1 -0
  1782. package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +16 -0
  1783. package/dist/src/ui/components/messages/ToolConfirmationMessage.js +352 -0
  1784. package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -0
  1785. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.d.ts +6 -0
  1786. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +312 -0
  1787. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -0
  1788. package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +58 -0
  1789. package/dist/src/ui/components/messages/ToolGroupMessage.js +278 -0
  1790. package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -0
  1791. package/dist/src/ui/components/messages/ToolGroupMessage.test.d.ts +6 -0
  1792. package/dist/src/ui/components/messages/ToolGroupMessage.test.js +619 -0
  1793. package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -0
  1794. package/dist/src/ui/components/messages/ToolMessage.d.ts +39 -0
  1795. package/dist/src/ui/components/messages/ToolMessage.js +400 -0
  1796. package/dist/src/ui/components/messages/ToolMessage.js.map +1 -0
  1797. package/dist/src/ui/components/messages/ToolMessage.test.d.ts +6 -0
  1798. package/dist/src/ui/components/messages/ToolMessage.test.js +575 -0
  1799. package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -0
  1800. package/dist/src/ui/components/shared/BaseSelectionList.d.ts +40 -0
  1801. package/dist/src/ui/components/shared/BaseSelectionList.js +75 -0
  1802. package/dist/src/ui/components/shared/BaseSelectionList.js.map +1 -0
  1803. package/dist/src/ui/components/shared/BaseSelectionList.test.d.ts +6 -0
  1804. package/dist/src/ui/components/shared/BaseSelectionList.test.js +376 -0
  1805. package/dist/src/ui/components/shared/BaseSelectionList.test.js.map +1 -0
  1806. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.d.ts +37 -0
  1807. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js +13 -0
  1808. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js.map +1 -0
  1809. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.d.ts +6 -0
  1810. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js +79 -0
  1811. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js.map +1 -0
  1812. package/dist/src/ui/components/shared/EnumSelector.d.ts +18 -0
  1813. package/dist/src/ui/components/shared/EnumSelector.js +44 -0
  1814. package/dist/src/ui/components/shared/EnumSelector.js.map +1 -0
  1815. package/dist/src/ui/components/shared/EnumSelector.test.d.ts +6 -0
  1816. package/dist/src/ui/components/shared/EnumSelector.test.js +70 -0
  1817. package/dist/src/ui/components/shared/EnumSelector.test.js.map +1 -0
  1818. package/dist/src/ui/components/shared/MaxSizedBox.d.ts +61 -0
  1819. package/dist/src/ui/components/shared/MaxSizedBox.js +453 -0
  1820. package/dist/src/ui/components/shared/MaxSizedBox.js.map +1 -0
  1821. package/dist/src/ui/components/shared/MaxSizedBox.test.d.ts +6 -0
  1822. package/dist/src/ui/components/shared/MaxSizedBox.test.js +154 -0
  1823. package/dist/src/ui/components/shared/MaxSizedBox.test.js.map +1 -0
  1824. package/dist/src/ui/components/shared/MultiSelect.d.ts +30 -0
  1825. package/dist/src/ui/components/shared/MultiSelect.js +94 -0
  1826. package/dist/src/ui/components/shared/MultiSelect.js.map +1 -0
  1827. package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +45 -0
  1828. package/dist/src/ui/components/shared/RadioButtonSelect.js +21 -0
  1829. package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -0
  1830. package/dist/src/ui/components/shared/RadioButtonSelect.test.d.ts +6 -0
  1831. package/dist/src/ui/components/shared/RadioButtonSelect.test.js +134 -0
  1832. package/dist/src/ui/components/shared/RadioButtonSelect.test.js.map +1 -0
  1833. package/dist/src/ui/components/shared/ScopeSelector.d.ts +19 -0
  1834. package/dist/src/ui/components/shared/ScopeSelector.js +16 -0
  1835. package/dist/src/ui/components/shared/ScopeSelector.js.map +1 -0
  1836. package/dist/src/ui/components/shared/ScrollableList.d.ts +19 -0
  1837. package/dist/src/ui/components/shared/ScrollableList.js +97 -0
  1838. package/dist/src/ui/components/shared/ScrollableList.js.map +1 -0
  1839. package/dist/src/ui/components/shared/ScrollableList.test.d.ts +6 -0
  1840. package/dist/src/ui/components/shared/ScrollableList.test.js +158 -0
  1841. package/dist/src/ui/components/shared/ScrollableList.test.js.map +1 -0
  1842. package/dist/src/ui/components/shared/StaticRender.d.ts +25 -0
  1843. package/dist/src/ui/components/shared/StaticRender.js +25 -0
  1844. package/dist/src/ui/components/shared/StaticRender.js.map +1 -0
  1845. package/dist/src/ui/components/shared/TextInput.d.ts +25 -0
  1846. package/dist/src/ui/components/shared/TextInput.js +163 -0
  1847. package/dist/src/ui/components/shared/TextInput.js.map +1 -0
  1848. package/dist/src/ui/components/shared/TextInput.test.d.ts +6 -0
  1849. package/dist/src/ui/components/shared/TextInput.test.js +91 -0
  1850. package/dist/src/ui/components/shared/TextInput.test.js.map +1 -0
  1851. package/dist/src/ui/components/shared/ToolElapsedTime.d.ts +30 -0
  1852. package/dist/src/ui/components/shared/ToolElapsedTime.js +43 -0
  1853. package/dist/src/ui/components/shared/ToolElapsedTime.js.map +1 -0
  1854. package/dist/src/ui/components/shared/ToolElapsedTime.test.d.ts +6 -0
  1855. package/dist/src/ui/components/shared/ToolElapsedTime.test.js +63 -0
  1856. package/dist/src/ui/components/shared/ToolElapsedTime.test.js.map +1 -0
  1857. package/dist/src/ui/components/shared/ToolStatusIndicator.d.ts +14 -0
  1858. package/dist/src/ui/components/shared/ToolStatusIndicator.js +13 -0
  1859. package/dist/src/ui/components/shared/ToolStatusIndicator.js.map +1 -0
  1860. package/dist/src/ui/components/shared/VirtualizedList.d.ts +49 -0
  1861. package/dist/src/ui/components/shared/VirtualizedList.js +529 -0
  1862. package/dist/src/ui/components/shared/VirtualizedList.js.map +1 -0
  1863. package/dist/src/ui/components/shared/VirtualizedList.test.d.ts +6 -0
  1864. package/dist/src/ui/components/shared/VirtualizedList.test.js +371 -0
  1865. package/dist/src/ui/components/shared/VirtualizedList.test.js.map +1 -0
  1866. package/dist/src/ui/components/shared/text-buffer-external-editor.test.d.ts +6 -0
  1867. package/dist/src/ui/components/shared/text-buffer-external-editor.test.js +657 -0
  1868. package/dist/src/ui/components/shared/text-buffer-external-editor.test.js.map +1 -0
  1869. package/dist/src/ui/components/shared/text-buffer.d.ts +503 -0
  1870. package/dist/src/ui/components/shared/text-buffer.js +2181 -0
  1871. package/dist/src/ui/components/shared/text-buffer.js.map +1 -0
  1872. package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +74 -0
  1873. package/dist/src/ui/components/shared/vim-buffer-actions.js +612 -0
  1874. package/dist/src/ui/components/shared/vim-buffer-actions.js.map +1 -0
  1875. package/dist/src/ui/components/skills/SkillsManagerDialog.d.ts +44 -0
  1876. package/dist/src/ui/components/skills/SkillsManagerDialog.js +423 -0
  1877. package/dist/src/ui/components/skills/SkillsManagerDialog.js.map +1 -0
  1878. package/dist/src/ui/components/stats-helpers.d.ts +30 -0
  1879. package/dist/src/ui/components/stats-helpers.js +79 -0
  1880. package/dist/src/ui/components/stats-helpers.js.map +1 -0
  1881. package/dist/src/ui/components/subagents/constants.d.ts +23 -0
  1882. package/dist/src/ui/components/subagents/constants.js +67 -0
  1883. package/dist/src/ui/components/subagents/constants.js.map +1 -0
  1884. package/dist/src/ui/components/subagents/create/AgentCreationWizard.d.ts +15 -0
  1885. package/dist/src/ui/components/subagents/create/AgentCreationWizard.js +173 -0
  1886. package/dist/src/ui/components/subagents/create/AgentCreationWizard.js.map +1 -0
  1887. package/dist/src/ui/components/subagents/create/ColorSelector.d.ts +15 -0
  1888. package/dist/src/ui/components/subagents/create/ColorSelector.js +43 -0
  1889. package/dist/src/ui/components/subagents/create/ColorSelector.js.map +1 -0
  1890. package/dist/src/ui/components/subagents/create/CreationSummary.d.ts +10 -0
  1891. package/dist/src/ui/components/subagents/create/CreationSummary.js +176 -0
  1892. package/dist/src/ui/components/subagents/create/CreationSummary.js.map +1 -0
  1893. package/dist/src/ui/components/subagents/create/DescriptionInput.d.ts +10 -0
  1894. package/dist/src/ui/components/subagents/create/DescriptionInput.js +107 -0
  1895. package/dist/src/ui/components/subagents/create/DescriptionInput.js.map +1 -0
  1896. package/dist/src/ui/components/subagents/create/GenerationMethodSelector.d.ts +10 -0
  1897. package/dist/src/ui/components/subagents/create/GenerationMethodSelector.js +39 -0
  1898. package/dist/src/ui/components/subagents/create/GenerationMethodSelector.js.map +1 -0
  1899. package/dist/src/ui/components/subagents/create/LocationSelector.d.ts +10 -0
  1900. package/dist/src/ui/components/subagents/create/LocationSelector.js +39 -0
  1901. package/dist/src/ui/components/subagents/create/LocationSelector.js.map +1 -0
  1902. package/dist/src/ui/components/subagents/create/TextEntryStep.d.ts +26 -0
  1903. package/dist/src/ui/components/subagents/create/TextEntryStep.js +28 -0
  1904. package/dist/src/ui/components/subagents/create/TextEntryStep.js.map +1 -0
  1905. package/dist/src/ui/components/subagents/create/ToolSelector.d.ts +16 -0
  1906. package/dist/src/ui/components/subagents/create/ToolSelector.js +145 -0
  1907. package/dist/src/ui/components/subagents/create/ToolSelector.js.map +1 -0
  1908. package/dist/src/ui/components/subagents/index.d.ts +7 -0
  1909. package/dist/src/ui/components/subagents/index.js +13 -0
  1910. package/dist/src/ui/components/subagents/index.js.map +1 -0
  1911. package/dist/src/ui/components/subagents/manage/ActionSelectionStep.d.ts +13 -0
  1912. package/dist/src/ui/components/subagents/manage/ActionSelectionStep.js +73 -0
  1913. package/dist/src/ui/components/subagents/manage/ActionSelectionStep.js.map +1 -0
  1914. package/dist/src/ui/components/subagents/manage/AgentDeleteStep.d.ts +13 -0
  1915. package/dist/src/ui/components/subagents/manage/AgentDeleteStep.js +38 -0
  1916. package/dist/src/ui/components/subagents/manage/AgentDeleteStep.js.map +1 -0
  1917. package/dist/src/ui/components/subagents/manage/AgentEditStep.d.ts +15 -0
  1918. package/dist/src/ui/components/subagents/manage/AgentEditStep.js +76 -0
  1919. package/dist/src/ui/components/subagents/manage/AgentEditStep.js.map +1 -0
  1920. package/dist/src/ui/components/subagents/manage/AgentSelectionStep.d.ts +12 -0
  1921. package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js +342 -0
  1922. package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js.map +1 -0
  1923. package/dist/src/ui/components/subagents/manage/AgentSelectionStep.test.d.ts +6 -0
  1924. package/dist/src/ui/components/subagents/manage/AgentSelectionStep.test.js +56 -0
  1925. package/dist/src/ui/components/subagents/manage/AgentSelectionStep.test.js.map +1 -0
  1926. package/dist/src/ui/components/subagents/manage/AgentViewerStep.d.ts +11 -0
  1927. package/dist/src/ui/components/subagents/manage/AgentViewerStep.js +20 -0
  1928. package/dist/src/ui/components/subagents/manage/AgentViewerStep.js.map +1 -0
  1929. package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.d.ts +15 -0
  1930. package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.js +214 -0
  1931. package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.js.map +1 -0
  1932. package/dist/src/ui/components/subagents/reducers.d.ts +14 -0
  1933. package/dist/src/ui/components/subagents/reducers.js +162 -0
  1934. package/dist/src/ui/components/subagents/reducers.js.map +1 -0
  1935. package/dist/src/ui/components/subagents/types.d.ts +137 -0
  1936. package/dist/src/ui/components/subagents/types.js +15 -0
  1937. package/dist/src/ui/components/subagents/types.js.map +1 -0
  1938. package/dist/src/ui/components/subagents/utils.d.ts +15 -0
  1939. package/dist/src/ui/components/subagents/utils.js +79 -0
  1940. package/dist/src/ui/components/subagents/utils.js.map +1 -0
  1941. package/dist/src/ui/components/views/ContextUsage.d.ts +23 -0
  1942. package/dist/src/ui/components/views/ContextUsage.js +130 -0
  1943. package/dist/src/ui/components/views/ContextUsage.js.map +1 -0
  1944. package/dist/src/ui/components/views/ContextUsage.test.d.ts +6 -0
  1945. package/dist/src/ui/components/views/ContextUsage.test.js +76 -0
  1946. package/dist/src/ui/components/views/ContextUsage.test.js.map +1 -0
  1947. package/dist/src/ui/components/views/DoctorReport.d.ts +18 -0
  1948. package/dist/src/ui/components/views/DoctorReport.js +45 -0
  1949. package/dist/src/ui/components/views/DoctorReport.js.map +1 -0
  1950. package/dist/src/ui/components/views/ExtensionsList.d.ts +6 -0
  1951. package/dist/src/ui/components/views/ExtensionsList.js +49 -0
  1952. package/dist/src/ui/components/views/ExtensionsList.js.map +1 -0
  1953. package/dist/src/ui/components/views/ExtensionsList.test.d.ts +6 -0
  1954. package/dist/src/ui/components/views/ExtensionsList.test.js +88 -0
  1955. package/dist/src/ui/components/views/ExtensionsList.test.js.map +1 -0
  1956. package/dist/src/ui/components/views/McpStatus.d.ts +27 -0
  1957. package/dist/src/ui/components/views/McpStatus.js +90 -0
  1958. package/dist/src/ui/components/views/McpStatus.js.map +1 -0
  1959. package/dist/src/ui/components/views/McpStatus.test.d.ts +6 -0
  1960. package/dist/src/ui/components/views/McpStatus.test.js +117 -0
  1961. package/dist/src/ui/components/views/McpStatus.test.js.map +1 -0
  1962. package/dist/src/ui/components/views/SkillsList.d.ts +12 -0
  1963. package/dist/src/ui/components/views/SkillsList.js +7 -0
  1964. package/dist/src/ui/components/views/SkillsList.js.map +1 -0
  1965. package/dist/src/ui/components/views/ToolsList.d.ts +14 -0
  1966. package/dist/src/ui/components/views/ToolsList.js +8 -0
  1967. package/dist/src/ui/components/views/ToolsList.js.map +1 -0
  1968. package/dist/src/ui/components/views/ToolsList.test.d.ts +6 -0
  1969. package/dist/src/ui/components/views/ToolsList.test.js +45 -0
  1970. package/dist/src/ui/components/views/ToolsList.test.js.map +1 -0
  1971. package/dist/src/ui/constants.d.ts +18 -0
  1972. package/dist/src/ui/constants.js +23 -0
  1973. package/dist/src/ui/constants.js.map +1 -0
  1974. package/dist/src/ui/contexts/AgentViewContext.d.ts +49 -0
  1975. package/dist/src/ui/contexts/AgentViewContext.js +187 -0
  1976. package/dist/src/ui/contexts/AgentViewContext.js.map +1 -0
  1977. package/dist/src/ui/contexts/AppContext.d.ts +11 -0
  1978. package/dist/src/ui/contexts/AppContext.js +15 -0
  1979. package/dist/src/ui/contexts/AppContext.js.map +1 -0
  1980. package/dist/src/ui/contexts/BackgroundTaskViewContext.d.ts +60 -0
  1981. package/dist/src/ui/contexts/BackgroundTaskViewContext.js +238 -0
  1982. package/dist/src/ui/contexts/BackgroundTaskViewContext.js.map +1 -0
  1983. package/dist/src/ui/contexts/CompactModeContext.d.ts +13 -0
  1984. package/dist/src/ui/contexts/CompactModeContext.js +13 -0
  1985. package/dist/src/ui/contexts/CompactModeContext.js.map +1 -0
  1986. package/dist/src/ui/contexts/ConfigContext.d.ts +9 -0
  1987. package/dist/src/ui/contexts/ConfigContext.js +16 -0
  1988. package/dist/src/ui/contexts/ConfigContext.js.map +1 -0
  1989. package/dist/src/ui/contexts/KeypressContext.d.ts +40 -0
  1990. package/dist/src/ui/contexts/KeypressContext.js +959 -0
  1991. package/dist/src/ui/contexts/KeypressContext.js.map +1 -0
  1992. package/dist/src/ui/contexts/KeypressContext.test.d.ts +6 -0
  1993. package/dist/src/ui/contexts/KeypressContext.test.js +1360 -0
  1994. package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -0
  1995. package/dist/src/ui/contexts/OverflowContext.d.ts +19 -0
  1996. package/dist/src/ui/contexts/OverflowContext.js +38 -0
  1997. package/dist/src/ui/contexts/OverflowContext.js.map +1 -0
  1998. package/dist/src/ui/contexts/RenderModeContext.d.ts +14 -0
  1999. package/dist/src/ui/contexts/RenderModeContext.js +15 -0
  2000. package/dist/src/ui/contexts/RenderModeContext.js.map +1 -0
  2001. package/dist/src/ui/contexts/SessionContext.d.ts +47 -0
  2002. package/dist/src/ui/contexts/SessionContext.js +180 -0
  2003. package/dist/src/ui/contexts/SessionContext.js.map +1 -0
  2004. package/dist/src/ui/contexts/SettingsContext.d.ts +9 -0
  2005. package/dist/src/ui/contexts/SettingsContext.js +15 -0
  2006. package/dist/src/ui/contexts/SettingsContext.js.map +1 -0
  2007. package/dist/src/ui/contexts/ShellFocusContext.d.ts +7 -0
  2008. package/dist/src/ui/contexts/ShellFocusContext.js +9 -0
  2009. package/dist/src/ui/contexts/ShellFocusContext.js.map +1 -0
  2010. package/dist/src/ui/contexts/StreamingContext.d.ts +9 -0
  2011. package/dist/src/ui/contexts/StreamingContext.js +15 -0
  2012. package/dist/src/ui/contexts/StreamingContext.js.map +1 -0
  2013. package/dist/src/ui/contexts/TerminalOutputContext.d.ts +12 -0
  2014. package/dist/src/ui/contexts/TerminalOutputContext.js +11 -0
  2015. package/dist/src/ui/contexts/TerminalOutputContext.js.map +1 -0
  2016. package/dist/src/ui/contexts/UIActionsContext.d.ts +91 -0
  2017. package/dist/src/ui/contexts/UIActionsContext.js +22 -0
  2018. package/dist/src/ui/contexts/UIActionsContext.js.map +1 -0
  2019. package/dist/src/ui/contexts/UIStateContext.d.ts +158 -0
  2020. package/dist/src/ui/contexts/UIStateContext.js +20 -0
  2021. package/dist/src/ui/contexts/UIStateContext.js.map +1 -0
  2022. package/dist/src/ui/contexts/VimModeContext.d.ts +31 -0
  2023. package/dist/src/ui/contexts/VimModeContext.js +60 -0
  2024. package/dist/src/ui/contexts/VimModeContext.js.map +1 -0
  2025. package/dist/src/ui/contexts/VimModeContext.test.d.ts +11 -0
  2026. package/dist/src/ui/contexts/VimModeContext.test.js +99 -0
  2027. package/dist/src/ui/contexts/VimModeContext.test.js.map +1 -0
  2028. package/dist/src/ui/daemon/DaemonTuiAdapter.d.ts +101 -0
  2029. package/dist/src/ui/daemon/DaemonTuiAdapter.js +695 -0
  2030. package/dist/src/ui/daemon/DaemonTuiAdapter.js.map +1 -0
  2031. package/dist/src/ui/daemon/DaemonTuiAdapter.test.d.ts +6 -0
  2032. package/dist/src/ui/daemon/DaemonTuiAdapter.test.js +784 -0
  2033. package/dist/src/ui/daemon/DaemonTuiAdapter.test.js.map +1 -0
  2034. package/dist/src/ui/editors/editorSettingsManager.d.ts +19 -0
  2035. package/dist/src/ui/editors/editorSettingsManager.js +48 -0
  2036. package/dist/src/ui/editors/editorSettingsManager.js.map +1 -0
  2037. package/dist/src/ui/hooks/atCommandProcessor.d.ts +33 -0
  2038. package/dist/src/ui/hooks/atCommandProcessor.js +344 -0
  2039. package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -0
  2040. package/dist/src/ui/hooks/atCommandProcessor.test.d.ts +6 -0
  2041. package/dist/src/ui/hooks/atCommandProcessor.test.js +871 -0
  2042. package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -0
  2043. package/dist/src/ui/hooks/keyToAnsi.d.ts +15 -0
  2044. package/dist/src/ui/hooks/keyToAnsi.js +67 -0
  2045. package/dist/src/ui/hooks/keyToAnsi.js.map +1 -0
  2046. package/dist/src/ui/hooks/shellCommandProcessor.d.ts +18 -0
  2047. package/dist/src/ui/hooks/shellCommandProcessor.js +287 -0
  2048. package/dist/src/ui/hooks/shellCommandProcessor.js.map +1 -0
  2049. package/dist/src/ui/hooks/shellCommandProcessor.test.d.ts +6 -0
  2050. package/dist/src/ui/hooks/shellCommandProcessor.test.js +509 -0
  2051. package/dist/src/ui/hooks/shellCommandProcessor.test.js.map +1 -0
  2052. package/dist/src/ui/hooks/slashCommandProcessor.d.ts +71 -0
  2053. package/dist/src/ui/hooks/slashCommandProcessor.js +837 -0
  2054. package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -0
  2055. package/dist/src/ui/hooks/useAgentStreamingState.d.ts +29 -0
  2056. package/dist/src/ui/hooks/useAgentStreamingState.js +109 -0
  2057. package/dist/src/ui/hooks/useAgentStreamingState.js.map +1 -0
  2058. package/dist/src/ui/hooks/useAgentsManagerDialog.d.ts +11 -0
  2059. package/dist/src/ui/hooks/useAgentsManagerDialog.js +21 -0
  2060. package/dist/src/ui/hooks/useAgentsManagerDialog.js.map +1 -0
  2061. package/dist/src/ui/hooks/useAnimatedScrollbar.d.ts +37 -0
  2062. package/dist/src/ui/hooks/useAnimatedScrollbar.js +44 -0
  2063. package/dist/src/ui/hooks/useAnimatedScrollbar.js.map +1 -0
  2064. package/dist/src/ui/hooks/useAnimatedScrollbar.test.d.ts +6 -0
  2065. package/dist/src/ui/hooks/useAnimatedScrollbar.test.js +74 -0
  2066. package/dist/src/ui/hooks/useAnimatedScrollbar.test.js.map +1 -0
  2067. package/dist/src/ui/hooks/useAnimationFrame.d.ts +25 -0
  2068. package/dist/src/ui/hooks/useAnimationFrame.js +86 -0
  2069. package/dist/src/ui/hooks/useAnimationFrame.js.map +1 -0
  2070. package/dist/src/ui/hooks/useApprovalModeCommand.d.ts +14 -0
  2071. package/dist/src/ui/hooks/useApprovalModeCommand.js +33 -0
  2072. package/dist/src/ui/hooks/useApprovalModeCommand.js.map +1 -0
  2073. package/dist/src/ui/hooks/useArenaCommand.d.ts +13 -0
  2074. package/dist/src/ui/hooks/useArenaCommand.js +21 -0
  2075. package/dist/src/ui/hooks/useArenaCommand.js.map +1 -0
  2076. package/dist/src/ui/hooks/useArenaInProcess.d.ts +14 -0
  2077. package/dist/src/ui/hooks/useArenaInProcess.js +136 -0
  2078. package/dist/src/ui/hooks/useArenaInProcess.js.map +1 -0
  2079. package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
  2080. package/dist/src/ui/hooks/useAtCompletion.js +184 -0
  2081. package/dist/src/ui/hooks/useAtCompletion.js.map +1 -0
  2082. package/dist/src/ui/hooks/useAttentionNotifications.d.ts +22 -0
  2083. package/dist/src/ui/hooks/useAttentionNotifications.js +89 -0
  2084. package/dist/src/ui/hooks/useAttentionNotifications.js.map +1 -0
  2085. package/dist/src/ui/hooks/useAttentionNotifications.test.d.ts +6 -0
  2086. package/dist/src/ui/hooks/useAttentionNotifications.test.js +222 -0
  2087. package/dist/src/ui/hooks/useAttentionNotifications.test.js.map +1 -0
  2088. package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +32 -0
  2089. package/dist/src/ui/hooks/useAutoAcceptIndicator.js +124 -0
  2090. package/dist/src/ui/hooks/useAutoAcceptIndicator.js.map +1 -0
  2091. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.d.ts +6 -0
  2092. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js +379 -0
  2093. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -0
  2094. package/dist/src/ui/hooks/useAwaySummary.d.ts +35 -0
  2095. package/dist/src/ui/hooks/useAwaySummary.js +141 -0
  2096. package/dist/src/ui/hooks/useAwaySummary.js.map +1 -0
  2097. package/dist/src/ui/hooks/useAwaySummary.test.d.ts +6 -0
  2098. package/dist/src/ui/hooks/useAwaySummary.test.js +103 -0
  2099. package/dist/src/ui/hooks/useAwaySummary.test.js.map +1 -0
  2100. package/dist/src/ui/hooks/useBackgroundTaskView.d.ts +69 -0
  2101. package/dist/src/ui/hooks/useBackgroundTaskView.js +217 -0
  2102. package/dist/src/ui/hooks/useBackgroundTaskView.js.map +1 -0
  2103. package/dist/src/ui/hooks/useBackgroundTaskView.test.d.ts +6 -0
  2104. package/dist/src/ui/hooks/useBackgroundTaskView.test.js +455 -0
  2105. package/dist/src/ui/hooks/useBackgroundTaskView.test.js.map +1 -0
  2106. package/dist/src/ui/hooks/useBatchedScroll.d.ts +14 -0
  2107. package/dist/src/ui/hooks/useBatchedScroll.js +25 -0
  2108. package/dist/src/ui/hooks/useBatchedScroll.js.map +1 -0
  2109. package/dist/src/ui/hooks/useBatchedScroll.test.d.ts +6 -0
  2110. package/dist/src/ui/hooks/useBatchedScroll.test.js +42 -0
  2111. package/dist/src/ui/hooks/useBatchedScroll.test.js.map +1 -0
  2112. package/dist/src/ui/hooks/useBracketedPaste.d.ts +12 -0
  2113. package/dist/src/ui/hooks/useBracketedPaste.js +32 -0
  2114. package/dist/src/ui/hooks/useBracketedPaste.js.map +1 -0
  2115. package/dist/src/ui/hooks/useBranchCommand.d.ts +33 -0
  2116. package/dist/src/ui/hooks/useBranchCommand.js +230 -0
  2117. package/dist/src/ui/hooks/useBranchCommand.js.map +1 -0
  2118. package/dist/src/ui/hooks/useBranchCommand.test.d.ts +6 -0
  2119. package/dist/src/ui/hooks/useBranchCommand.test.js +386 -0
  2120. package/dist/src/ui/hooks/useBranchCommand.test.js.map +1 -0
  2121. package/dist/src/ui/hooks/useCommandCompletion.d.ts +37 -0
  2122. package/dist/src/ui/hooks/useCommandCompletion.js +227 -0
  2123. package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
  2124. package/dist/src/ui/hooks/useCommandMigration.d.ts +16 -0
  2125. package/dist/src/ui/hooks/useCommandMigration.js +40 -0
  2126. package/dist/src/ui/hooks/useCommandMigration.js.map +1 -0
  2127. package/dist/src/ui/hooks/useCompletion.d.ts +24 -0
  2128. package/dist/src/ui/hooks/useCompletion.js +88 -0
  2129. package/dist/src/ui/hooks/useCompletion.js.map +1 -0
  2130. package/dist/src/ui/hooks/useConfigInitMessage.d.ts +6 -0
  2131. package/dist/src/ui/hooks/useConfigInitMessage.js +45 -0
  2132. package/dist/src/ui/hooks/useConfigInitMessage.js.map +1 -0
  2133. package/dist/src/ui/hooks/useConfigInitMessage.test.d.ts +6 -0
  2134. package/dist/src/ui/hooks/useConfigInitMessage.test.js +80 -0
  2135. package/dist/src/ui/hooks/useConfigInitMessage.test.js.map +1 -0
  2136. package/dist/src/ui/hooks/useContextualTips.d.ts +19 -0
  2137. package/dist/src/ui/hooks/useContextualTips.js +65 -0
  2138. package/dist/src/ui/hooks/useContextualTips.js.map +1 -0
  2139. package/dist/src/ui/hooks/useDeleteCommand.d.ts +19 -0
  2140. package/dist/src/ui/hooks/useDeleteCommand.js +167 -0
  2141. package/dist/src/ui/hooks/useDeleteCommand.js.map +1 -0
  2142. package/dist/src/ui/hooks/useDeleteCommand.test.d.ts +6 -0
  2143. package/dist/src/ui/hooks/useDeleteCommand.test.js +391 -0
  2144. package/dist/src/ui/hooks/useDeleteCommand.test.js.map +1 -0
  2145. package/dist/src/ui/hooks/useDialogClose.d.ts +48 -0
  2146. package/dist/src/ui/hooks/useDialogClose.js +102 -0
  2147. package/dist/src/ui/hooks/useDialogClose.js.map +1 -0
  2148. package/dist/src/ui/hooks/useDiffData.d.ts +32 -0
  2149. package/dist/src/ui/hooks/useDiffData.js +72 -0
  2150. package/dist/src/ui/hooks/useDiffData.js.map +1 -0
  2151. package/dist/src/ui/hooks/useDoublePress.d.ts +18 -0
  2152. package/dist/src/ui/hooks/useDoublePress.js +47 -0
  2153. package/dist/src/ui/hooks/useDoublePress.js.map +1 -0
  2154. package/dist/src/ui/hooks/useEditorSettings.d.ts +16 -0
  2155. package/dist/src/ui/hooks/useEditorSettings.js +43 -0
  2156. package/dist/src/ui/hooks/useEditorSettings.js.map +1 -0
  2157. package/dist/src/ui/hooks/useEditorSettings.test.d.ts +6 -0
  2158. package/dist/src/ui/hooks/useEditorSettings.test.js +164 -0
  2159. package/dist/src/ui/hooks/useEditorSettings.test.js.map +1 -0
  2160. package/dist/src/ui/hooks/useExportCompletion.d.ts +70 -0
  2161. package/dist/src/ui/hooks/useExportCompletion.js +208 -0
  2162. package/dist/src/ui/hooks/useExportCompletion.js.map +1 -0
  2163. package/dist/src/ui/hooks/useExportCompletion.test.d.ts +6 -0
  2164. package/dist/src/ui/hooks/useExportCompletion.test.js +190 -0
  2165. package/dist/src/ui/hooks/useExportCompletion.test.js.map +1 -0
  2166. package/dist/src/ui/hooks/useExtensionUpdates.d.ts +71 -0
  2167. package/dist/src/ui/hooks/useExtensionUpdates.js +229 -0
  2168. package/dist/src/ui/hooks/useExtensionUpdates.js.map +1 -0
  2169. package/dist/src/ui/hooks/useExtensionUpdates.test.d.ts +6 -0
  2170. package/dist/src/ui/hooks/useExtensionUpdates.test.js +455 -0
  2171. package/dist/src/ui/hooks/useExtensionUpdates.test.js.map +1 -0
  2172. package/dist/src/ui/hooks/useExtensionsManagerDialog.d.ts +12 -0
  2173. package/dist/src/ui/hooks/useExtensionsManagerDialog.js +21 -0
  2174. package/dist/src/ui/hooks/useExtensionsManagerDialog.js.map +1 -0
  2175. package/dist/src/ui/hooks/useFeedbackDialog.d.ts +18 -0
  2176. package/dist/src/ui/hooks/useFeedbackDialog.js +130 -0
  2177. package/dist/src/ui/hooks/useFeedbackDialog.js.map +1 -0
  2178. package/dist/src/ui/hooks/useFocus.d.ts +10 -0
  2179. package/dist/src/ui/hooks/useFocus.js +51 -0
  2180. package/dist/src/ui/hooks/useFocus.js.map +1 -0
  2181. package/dist/src/ui/hooks/useFolderTrust.d.ts +13 -0
  2182. package/dist/src/ui/hooks/useFolderTrust.js +60 -0
  2183. package/dist/src/ui/hooks/useFolderTrust.js.map +1 -0
  2184. package/dist/src/ui/hooks/useFollowupSuggestions.d.ts +53 -0
  2185. package/dist/src/ui/hooks/useFollowupSuggestions.js +89 -0
  2186. package/dist/src/ui/hooks/useFollowupSuggestions.js.map +1 -0
  2187. package/dist/src/ui/hooks/useGeminiStream.d.ts +76 -0
  2188. package/dist/src/ui/hooks/useGeminiStream.js +1899 -0
  2189. package/dist/src/ui/hooks/useGeminiStream.js.map +1 -0
  2190. package/dist/src/ui/hooks/useGitBranchName.d.ts +6 -0
  2191. package/dist/src/ui/hooks/useGitBranchName.js +61 -0
  2192. package/dist/src/ui/hooks/useGitBranchName.js.map +1 -0
  2193. package/dist/src/ui/hooks/useGitBranchName.test.d.ts +6 -0
  2194. package/dist/src/ui/hooks/useGitBranchName.test.js +192 -0
  2195. package/dist/src/ui/hooks/useGitBranchName.test.js.map +1 -0
  2196. package/dist/src/ui/hooks/useHistoryManager.d.ts +24 -0
  2197. package/dist/src/ui/hooks/useHistoryManager.js +183 -0
  2198. package/dist/src/ui/hooks/useHistoryManager.js.map +1 -0
  2199. package/dist/src/ui/hooks/useHistoryManager.test.d.ts +6 -0
  2200. package/dist/src/ui/hooks/useHistoryManager.test.js +495 -0
  2201. package/dist/src/ui/hooks/useHistoryManager.test.js.map +1 -0
  2202. package/dist/src/ui/hooks/useHooksDialog.d.ts +11 -0
  2203. package/dist/src/ui/hooks/useHooksDialog.js +21 -0
  2204. package/dist/src/ui/hooks/useHooksDialog.js.map +1 -0
  2205. package/dist/src/ui/hooks/useIdeTrustListener.d.ts +16 -0
  2206. package/dist/src/ui/hooks/useIdeTrustListener.js +65 -0
  2207. package/dist/src/ui/hooks/useIdeTrustListener.js.map +1 -0
  2208. package/dist/src/ui/hooks/useIdeTrustListener.test.d.ts +6 -0
  2209. package/dist/src/ui/hooks/useIdeTrustListener.test.js +183 -0
  2210. package/dist/src/ui/hooks/useIdeTrustListener.test.js.map +1 -0
  2211. package/dist/src/ui/hooks/useInitializationAuthError.d.ts +22 -0
  2212. package/dist/src/ui/hooks/useInitializationAuthError.js +40 -0
  2213. package/dist/src/ui/hooks/useInitializationAuthError.js.map +1 -0
  2214. package/dist/src/ui/hooks/useInputHistory.d.ts +20 -0
  2215. package/dist/src/ui/hooks/useInputHistory.js +85 -0
  2216. package/dist/src/ui/hooks/useInputHistory.js.map +1 -0
  2217. package/dist/src/ui/hooks/useInputHistory.test.d.ts +6 -0
  2218. package/dist/src/ui/hooks/useInputHistory.test.js +207 -0
  2219. package/dist/src/ui/hooks/useInputHistory.test.js.map +1 -0
  2220. package/dist/src/ui/hooks/useInputHistoryStore.d.ts +19 -0
  2221. package/dist/src/ui/hooks/useInputHistoryStore.js +83 -0
  2222. package/dist/src/ui/hooks/useInputHistoryStore.js.map +1 -0
  2223. package/dist/src/ui/hooks/useInputHistoryStore.test.d.ts +6 -0
  2224. package/dist/src/ui/hooks/useInputHistoryStore.test.js +231 -0
  2225. package/dist/src/ui/hooks/useInputHistoryStore.test.js.map +1 -0
  2226. package/dist/src/ui/hooks/useKeypress.d.ts +17 -0
  2227. package/dist/src/ui/hooks/useKeypress.js +27 -0
  2228. package/dist/src/ui/hooks/useKeypress.js.map +1 -0
  2229. package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +15 -0
  2230. package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +20 -0
  2231. package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +1 -0
  2232. package/dist/src/ui/hooks/useLaunchEditor.d.ts +5 -0
  2233. package/dist/src/ui/hooks/useLaunchEditor.js +75 -0
  2234. package/dist/src/ui/hooks/useLaunchEditor.js.map +1 -0
  2235. package/dist/src/ui/hooks/useLoadingIndicator.d.ts +11 -0
  2236. package/dist/src/ui/hooks/useLoadingIndicator.js +50 -0
  2237. package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -0
  2238. package/dist/src/ui/hooks/useLoadingIndicator.test.d.ts +6 -0
  2239. package/dist/src/ui/hooks/useLoadingIndicator.test.js +172 -0
  2240. package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -0
  2241. package/dist/src/ui/hooks/useLogger.d.ts +11 -0
  2242. package/dist/src/ui/hooks/useLogger.js +32 -0
  2243. package/dist/src/ui/hooks/useLogger.js.map +1 -0
  2244. package/dist/src/ui/hooks/useMCPHealth.d.ts +16 -0
  2245. package/dist/src/ui/hooks/useMCPHealth.js +56 -0
  2246. package/dist/src/ui/hooks/useMCPHealth.js.map +1 -0
  2247. package/dist/src/ui/hooks/useMcpDialog.d.ts +11 -0
  2248. package/dist/src/ui/hooks/useMcpDialog.js +21 -0
  2249. package/dist/src/ui/hooks/useMcpDialog.js.map +1 -0
  2250. package/dist/src/ui/hooks/useMemoryDialog.d.ts +11 -0
  2251. package/dist/src/ui/hooks/useMemoryDialog.js +21 -0
  2252. package/dist/src/ui/hooks/useMemoryDialog.js.map +1 -0
  2253. package/dist/src/ui/hooks/useMemoryMonitor.d.ts +17 -0
  2254. package/dist/src/ui/hooks/useMemoryMonitor.js +83 -0
  2255. package/dist/src/ui/hooks/useMemoryMonitor.js.map +1 -0
  2256. package/dist/src/ui/hooks/useMemoryMonitor.test.d.ts +6 -0
  2257. package/dist/src/ui/hooks/useMemoryMonitor.test.js +153 -0
  2258. package/dist/src/ui/hooks/useMemoryMonitor.test.js.map +1 -0
  2259. package/dist/src/ui/hooks/useMessageQueue.d.ts +18 -0
  2260. package/dist/src/ui/hooks/useMessageQueue.js +67 -0
  2261. package/dist/src/ui/hooks/useMessageQueue.js.map +1 -0
  2262. package/dist/src/ui/hooks/useMessageQueue.test.d.ts +6 -0
  2263. package/dist/src/ui/hooks/useMessageQueue.test.js +219 -0
  2264. package/dist/src/ui/hooks/useMessageQueue.test.js.map +1 -0
  2265. package/dist/src/ui/hooks/useModelCommand.d.ts +15 -0
  2266. package/dist/src/ui/hooks/useModelCommand.js +25 -0
  2267. package/dist/src/ui/hooks/useModelCommand.js.map +1 -0
  2268. package/dist/src/ui/hooks/useModelCommand.test.d.ts +6 -0
  2269. package/dist/src/ui/hooks/useModelCommand.test.js +35 -0
  2270. package/dist/src/ui/hooks/useModelCommand.test.js.map +1 -0
  2271. package/dist/src/ui/hooks/useMouseEvents.d.ts +44 -0
  2272. package/dist/src/ui/hooks/useMouseEvents.js +85 -0
  2273. package/dist/src/ui/hooks/useMouseEvents.js.map +1 -0
  2274. package/dist/src/ui/hooks/usePhraseCycler.d.ts +14 -0
  2275. package/dist/src/ui/hooks/usePhraseCycler.js +70 -0
  2276. package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -0
  2277. package/dist/src/ui/hooks/usePreferredEditor.d.ts +7 -0
  2278. package/dist/src/ui/hooks/usePreferredEditor.js +25 -0
  2279. package/dist/src/ui/hooks/usePreferredEditor.js.map +1 -0
  2280. package/dist/src/ui/hooks/useProviderUpdates.d.ts +33 -0
  2281. package/dist/src/ui/hooks/useProviderUpdates.js +215 -0
  2282. package/dist/src/ui/hooks/useProviderUpdates.js.map +1 -0
  2283. package/dist/src/ui/hooks/useProviderUpdates.test.d.ts +6 -0
  2284. package/dist/src/ui/hooks/useProviderUpdates.test.js +293 -0
  2285. package/dist/src/ui/hooks/useProviderUpdates.test.js.map +1 -0
  2286. package/dist/src/ui/hooks/useQwenAuth.d.ts +20 -0
  2287. package/dist/src/ui/hooks/useQwenAuth.js +74 -0
  2288. package/dist/src/ui/hooks/useQwenAuth.js.map +1 -0
  2289. package/dist/src/ui/hooks/useQwenAuth.test.d.ts +6 -0
  2290. package/dist/src/ui/hooks/useQwenAuth.test.js +266 -0
  2291. package/dist/src/ui/hooks/useQwenAuth.test.js.map +1 -0
  2292. package/dist/src/ui/hooks/useReactToolScheduler.d.ts +33 -0
  2293. package/dist/src/ui/hooks/useReactToolScheduler.js +236 -0
  2294. package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -0
  2295. package/dist/src/ui/hooks/useRefreshMemoryCommand.d.ts +6 -0
  2296. package/dist/src/ui/hooks/useRefreshMemoryCommand.js +7 -0
  2297. package/dist/src/ui/hooks/useRefreshMemoryCommand.js.map +1 -0
  2298. package/dist/src/ui/hooks/useResumeCommand.d.ts +31 -0
  2299. package/dist/src/ui/hooks/useResumeCommand.js +114 -0
  2300. package/dist/src/ui/hooks/useResumeCommand.js.map +1 -0
  2301. package/dist/src/ui/hooks/useResumeCommand.test.d.ts +6 -0
  2302. package/dist/src/ui/hooks/useResumeCommand.test.js +349 -0
  2303. package/dist/src/ui/hooks/useResumeCommand.test.js.map +1 -0
  2304. package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +19 -0
  2305. package/dist/src/ui/hooks/useReverseSearchCompletion.js +103 -0
  2306. package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +1 -0
  2307. package/dist/src/ui/hooks/useReverseSearchCompletion.test.d.ts +6 -0
  2308. package/dist/src/ui/hooks/useReverseSearchCompletion.test.js +163 -0
  2309. package/dist/src/ui/hooks/useReverseSearchCompletion.test.js.map +1 -0
  2310. package/dist/src/ui/hooks/useSelectionList.d.ts +41 -0
  2311. package/dist/src/ui/hooks/useSelectionList.js +276 -0
  2312. package/dist/src/ui/hooks/useSelectionList.js.map +1 -0
  2313. package/dist/src/ui/hooks/useSelectionList.test.d.ts +6 -0
  2314. package/dist/src/ui/hooks/useSelectionList.test.js +782 -0
  2315. package/dist/src/ui/hooks/useSelectionList.test.js.map +1 -0
  2316. package/dist/src/ui/hooks/useSessionPicker.d.ts +95 -0
  2317. package/dist/src/ui/hooks/useSessionPicker.js +383 -0
  2318. package/dist/src/ui/hooks/useSessionPicker.js.map +1 -0
  2319. package/dist/src/ui/hooks/useSessionPicker.test.d.ts +6 -0
  2320. package/dist/src/ui/hooks/useSessionPicker.test.js +94 -0
  2321. package/dist/src/ui/hooks/useSessionPicker.test.js.map +1 -0
  2322. package/dist/src/ui/hooks/useSessionSearchInput.d.ts +69 -0
  2323. package/dist/src/ui/hooks/useSessionSearchInput.js +124 -0
  2324. package/dist/src/ui/hooks/useSessionSearchInput.js.map +1 -0
  2325. package/dist/src/ui/hooks/useSessionSearchInput.test.d.ts +6 -0
  2326. package/dist/src/ui/hooks/useSessionSearchInput.test.js +342 -0
  2327. package/dist/src/ui/hooks/useSessionSearchInput.test.js.map +1 -0
  2328. package/dist/src/ui/hooks/useSettingsCommand.d.ts +10 -0
  2329. package/dist/src/ui/hooks/useSettingsCommand.js +21 -0
  2330. package/dist/src/ui/hooks/useSettingsCommand.js.map +1 -0
  2331. package/dist/src/ui/hooks/useShellHistory.d.ts +14 -0
  2332. package/dist/src/ui/hooks/useShellHistory.js +112 -0
  2333. package/dist/src/ui/hooks/useShellHistory.js.map +1 -0
  2334. package/dist/src/ui/hooks/useShellHistory.test.d.ts +6 -0
  2335. package/dist/src/ui/hooks/useShellHistory.test.js +193 -0
  2336. package/dist/src/ui/hooks/useShellHistory.test.js.map +1 -0
  2337. package/dist/src/ui/hooks/useShowMemoryCommand.d.ts +9 -0
  2338. package/dist/src/ui/hooks/useShowMemoryCommand.js +55 -0
  2339. package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -0
  2340. package/dist/src/ui/hooks/useSkillsManagerDialog.d.ts +11 -0
  2341. package/dist/src/ui/hooks/useSkillsManagerDialog.js +21 -0
  2342. package/dist/src/ui/hooks/useSkillsManagerDialog.js.map +1 -0
  2343. package/dist/src/ui/hooks/useSlashCompletion.d.ts +27 -0
  2344. package/dist/src/ui/hooks/useSlashCompletion.integration.test.d.ts +6 -0
  2345. package/dist/src/ui/hooks/useSlashCompletion.integration.test.js +84 -0
  2346. package/dist/src/ui/hooks/useSlashCompletion.integration.test.js.map +1 -0
  2347. package/dist/src/ui/hooks/useSlashCompletion.js +490 -0
  2348. package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -0
  2349. package/dist/src/ui/hooks/useSlashCompletion.test.d.ts +9 -0
  2350. package/dist/src/ui/hooks/useSlashCompletion.test.js +805 -0
  2351. package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -0
  2352. package/dist/src/ui/hooks/useStateAndRef.d.ts +7 -0
  2353. package/dist/src/ui/hooks/useStateAndRef.js +26 -0
  2354. package/dist/src/ui/hooks/useStateAndRef.js.map +1 -0
  2355. package/dist/src/ui/hooks/useStatsDialog.d.ts +11 -0
  2356. package/dist/src/ui/hooks/useStatsDialog.js +13 -0
  2357. package/dist/src/ui/hooks/useStatsDialog.js.map +1 -0
  2358. package/dist/src/ui/hooks/useStatusLine.d.ts +84 -0
  2359. package/dist/src/ui/hooks/useStatusLine.js +528 -0
  2360. package/dist/src/ui/hooks/useStatusLine.js.map +1 -0
  2361. package/dist/src/ui/hooks/useStatusLine.test.d.ts +6 -0
  2362. package/dist/src/ui/hooks/useStatusLine.test.js +1039 -0
  2363. package/dist/src/ui/hooks/useStatusLine.test.js.map +1 -0
  2364. package/dist/src/ui/hooks/useSubagentCreateDialog.d.ts +10 -0
  2365. package/dist/src/ui/hooks/useSubagentCreateDialog.js +21 -0
  2366. package/dist/src/ui/hooks/useSubagentCreateDialog.js.map +1 -0
  2367. package/dist/src/ui/hooks/useTerminalNotification.d.ts +32 -0
  2368. package/dist/src/ui/hooks/useTerminalNotification.js +45 -0
  2369. package/dist/src/ui/hooks/useTerminalNotification.js.map +1 -0
  2370. package/dist/src/ui/hooks/useTerminalNotification.test.d.ts +6 -0
  2371. package/dist/src/ui/hooks/useTerminalNotification.test.js +69 -0
  2372. package/dist/src/ui/hooks/useTerminalNotification.test.js.map +1 -0
  2373. package/dist/src/ui/hooks/useTerminalProgress.d.ts +12 -0
  2374. package/dist/src/ui/hooks/useTerminalProgress.js +76 -0
  2375. package/dist/src/ui/hooks/useTerminalProgress.js.map +1 -0
  2376. package/dist/src/ui/hooks/useTerminalSize.d.ts +13 -0
  2377. package/dist/src/ui/hooks/useTerminalSize.js +30 -0
  2378. package/dist/src/ui/hooks/useTerminalSize.js.map +1 -0
  2379. package/dist/src/ui/hooks/useThemeCommand.d.ts +15 -0
  2380. package/dist/src/ui/hooks/useThemeCommand.js +85 -0
  2381. package/dist/src/ui/hooks/useThemeCommand.js.map +1 -0
  2382. package/dist/src/ui/hooks/useThemeCommand.test.d.ts +6 -0
  2383. package/dist/src/ui/hooks/useThemeCommand.test.js +42 -0
  2384. package/dist/src/ui/hooks/useThemeCommand.test.js.map +1 -0
  2385. package/dist/src/ui/hooks/useTimer.d.ts +12 -0
  2386. package/dist/src/ui/hooks/useTimer.js +58 -0
  2387. package/dist/src/ui/hooks/useTimer.js.map +1 -0
  2388. package/dist/src/ui/hooks/useTimer.test.d.ts +6 -0
  2389. package/dist/src/ui/hooks/useTimer.test.js +90 -0
  2390. package/dist/src/ui/hooks/useTimer.test.js.map +1 -0
  2391. package/dist/src/ui/hooks/useTomlMigration.d.ts +1 -0
  2392. package/dist/src/ui/hooks/useTomlMigration.js +2 -0
  2393. package/dist/src/ui/hooks/useTomlMigration.js.map +1 -0
  2394. package/dist/src/ui/hooks/useToolScheduler.test.d.ts +6 -0
  2395. package/dist/src/ui/hooks/useToolScheduler.test.js +624 -0
  2396. package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -0
  2397. package/dist/src/ui/hooks/useTrustModify.d.ts +17 -0
  2398. package/dist/src/ui/hooks/useTrustModify.js +78 -0
  2399. package/dist/src/ui/hooks/useTrustModify.js.map +1 -0
  2400. package/dist/src/ui/hooks/useTrustModify.test.d.ts +6 -0
  2401. package/dist/src/ui/hooks/useTrustModify.test.js +182 -0
  2402. package/dist/src/ui/hooks/useTrustModify.test.js.map +1 -0
  2403. package/dist/src/ui/hooks/useTurnDiffs.d.ts +34 -0
  2404. package/dist/src/ui/hooks/useTurnDiffs.js +130 -0
  2405. package/dist/src/ui/hooks/useTurnDiffs.js.map +1 -0
  2406. package/dist/src/ui/hooks/useTurnDiffs.test.d.ts +6 -0
  2407. package/dist/src/ui/hooks/useTurnDiffs.test.js +164 -0
  2408. package/dist/src/ui/hooks/useTurnDiffs.test.js.map +1 -0
  2409. package/dist/src/ui/hooks/useWelcomeBack.d.ts +23 -0
  2410. package/dist/src/ui/hooks/useWelcomeBack.js +99 -0
  2411. package/dist/src/ui/hooks/useWelcomeBack.js.map +1 -0
  2412. package/dist/src/ui/hooks/useWelcomeBack.test.d.ts +6 -0
  2413. package/dist/src/ui/hooks/useWelcomeBack.test.js +94 -0
  2414. package/dist/src/ui/hooks/useWelcomeBack.test.js.map +1 -0
  2415. package/dist/src/ui/hooks/useWorktreeSession.d.ts +26 -0
  2416. package/dist/src/ui/hooks/useWorktreeSession.js +92 -0
  2417. package/dist/src/ui/hooks/useWorktreeSession.js.map +1 -0
  2418. package/dist/src/ui/hooks/useWorktreeSession.test.d.ts +6 -0
  2419. package/dist/src/ui/hooks/useWorktreeSession.test.js +84 -0
  2420. package/dist/src/ui/hooks/useWorktreeSession.test.js.map +1 -0
  2421. package/dist/src/ui/hooks/vim.d.ts +13 -0
  2422. package/dist/src/ui/hooks/vim.js +1637 -0
  2423. package/dist/src/ui/hooks/vim.js.map +1 -0
  2424. package/dist/src/ui/hooks/vim.test.d.ts +6 -0
  2425. package/dist/src/ui/hooks/vim.test.js +1975 -0
  2426. package/dist/src/ui/hooks/vim.test.js.map +1 -0
  2427. package/dist/src/ui/keyMatchers.d.ts +27 -0
  2428. package/dist/src/ui/keyMatchers.js +71 -0
  2429. package/dist/src/ui/keyMatchers.js.map +1 -0
  2430. package/dist/src/ui/keyMatchers.test.d.ts +6 -0
  2431. package/dist/src/ui/keyMatchers.test.js +421 -0
  2432. package/dist/src/ui/keyMatchers.test.js.map +1 -0
  2433. package/dist/src/ui/layouts/DefaultAppLayout.d.ts +7 -0
  2434. package/dist/src/ui/layouts/DefaultAppLayout.js +49 -0
  2435. package/dist/src/ui/layouts/DefaultAppLayout.js.map +1 -0
  2436. package/dist/src/ui/layouts/DefaultAppLayout.test.d.ts +6 -0
  2437. package/dist/src/ui/layouts/DefaultAppLayout.test.js +185 -0
  2438. package/dist/src/ui/layouts/DefaultAppLayout.test.js.map +1 -0
  2439. package/dist/src/ui/layouts/ScreenReaderAppLayout.d.ts +7 -0
  2440. package/dist/src/ui/layouts/ScreenReaderAppLayout.js +27 -0
  2441. package/dist/src/ui/layouts/ScreenReaderAppLayout.js.map +1 -0
  2442. package/dist/src/ui/layouts/ScreenReaderAppLayout.test.d.ts +6 -0
  2443. package/dist/src/ui/layouts/ScreenReaderAppLayout.test.js +135 -0
  2444. package/dist/src/ui/layouts/ScreenReaderAppLayout.test.js.map +1 -0
  2445. package/dist/src/ui/models/availableModels.d.ts +30 -0
  2446. package/dist/src/ui/models/availableModels.js +103 -0
  2447. package/dist/src/ui/models/availableModels.js.map +1 -0
  2448. package/dist/src/ui/models/availableModels.test.d.ts +6 -0
  2449. package/dist/src/ui/models/availableModels.test.js +142 -0
  2450. package/dist/src/ui/models/availableModels.test.js.map +1 -0
  2451. package/dist/src/ui/noninteractive/nonInteractiveUi.d.ts +12 -0
  2452. package/dist/src/ui/noninteractive/nonInteractiveUi.js +33 -0
  2453. package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +1 -0
  2454. package/dist/src/ui/semantic-colors.d.ts +7 -0
  2455. package/dist/src/ui/semantic-colors.js +24 -0
  2456. package/dist/src/ui/semantic-colors.js.map +1 -0
  2457. package/dist/src/ui/state/extensions.d.ts +43 -0
  2458. package/dist/src/ui/state/extensions.js +63 -0
  2459. package/dist/src/ui/state/extensions.js.map +1 -0
  2460. package/dist/src/ui/statusLinePresets.d.ts +79 -0
  2461. package/dist/src/ui/statusLinePresets.js +310 -0
  2462. package/dist/src/ui/statusLinePresets.js.map +1 -0
  2463. package/dist/src/ui/statusLinePresets.test.d.ts +6 -0
  2464. package/dist/src/ui/statusLinePresets.test.js +221 -0
  2465. package/dist/src/ui/statusLinePresets.test.js.map +1 -0
  2466. package/dist/src/ui/textConstants.d.ts +9 -0
  2467. package/dist/src/ui/textConstants.js +10 -0
  2468. package/dist/src/ui/textConstants.js.map +1 -0
  2469. package/dist/src/ui/themes/ansi-light.d.ts +7 -0
  2470. package/dist/src/ui/themes/ansi-light.js +144 -0
  2471. package/dist/src/ui/themes/ansi-light.js.map +1 -0
  2472. package/dist/src/ui/themes/ansi.d.ts +7 -0
  2473. package/dist/src/ui/themes/ansi.js +154 -0
  2474. package/dist/src/ui/themes/ansi.js.map +1 -0
  2475. package/dist/src/ui/themes/atom-one-dark.d.ts +7 -0
  2476. package/dist/src/ui/themes/atom-one-dark.js +140 -0
  2477. package/dist/src/ui/themes/atom-one-dark.js.map +1 -0
  2478. package/dist/src/ui/themes/ayu-light.d.ts +7 -0
  2479. package/dist/src/ui/themes/ayu-light.js +132 -0
  2480. package/dist/src/ui/themes/ayu-light.js.map +1 -0
  2481. package/dist/src/ui/themes/ayu.d.ts +7 -0
  2482. package/dist/src/ui/themes/ayu.js +106 -0
  2483. package/dist/src/ui/themes/ayu.js.map +1 -0
  2484. package/dist/src/ui/themes/color-utils.d.ts +21 -0
  2485. package/dist/src/ui/themes/color-utils.js +223 -0
  2486. package/dist/src/ui/themes/color-utils.js.map +1 -0
  2487. package/dist/src/ui/themes/color-utils.test.d.ts +6 -0
  2488. package/dist/src/ui/themes/color-utils.test.js +197 -0
  2489. package/dist/src/ui/themes/color-utils.test.js.map +1 -0
  2490. package/dist/src/ui/themes/default-light.d.ts +7 -0
  2491. package/dist/src/ui/themes/default-light.js +100 -0
  2492. package/dist/src/ui/themes/default-light.js.map +1 -0
  2493. package/dist/src/ui/themes/default.d.ts +7 -0
  2494. package/dist/src/ui/themes/default.js +143 -0
  2495. package/dist/src/ui/themes/default.js.map +1 -0
  2496. package/dist/src/ui/themes/detect-terminal-theme.d.ts +75 -0
  2497. package/dist/src/ui/themes/detect-terminal-theme.js +228 -0
  2498. package/dist/src/ui/themes/detect-terminal-theme.js.map +1 -0
  2499. package/dist/src/ui/themes/detect-terminal-theme.test.d.ts +6 -0
  2500. package/dist/src/ui/themes/detect-terminal-theme.test.js +269 -0
  2501. package/dist/src/ui/themes/detect-terminal-theme.test.js.map +1 -0
  2502. package/dist/src/ui/themes/dracula.d.ts +7 -0
  2503. package/dist/src/ui/themes/dracula.js +117 -0
  2504. package/dist/src/ui/themes/dracula.js.map +1 -0
  2505. package/dist/src/ui/themes/github-dark.d.ts +7 -0
  2506. package/dist/src/ui/themes/github-dark.js +140 -0
  2507. package/dist/src/ui/themes/github-dark.js.map +1 -0
  2508. package/dist/src/ui/themes/github-light.d.ts +7 -0
  2509. package/dist/src/ui/themes/github-light.js +142 -0
  2510. package/dist/src/ui/themes/github-light.js.map +1 -0
  2511. package/dist/src/ui/themes/googlecode.d.ts +7 -0
  2512. package/dist/src/ui/themes/googlecode.js +139 -0
  2513. package/dist/src/ui/themes/googlecode.js.map +1 -0
  2514. package/dist/src/ui/themes/no-color.d.ts +7 -0
  2515. package/dist/src/ui/themes/no-color.js +120 -0
  2516. package/dist/src/ui/themes/no-color.js.map +1 -0
  2517. package/dist/src/ui/themes/qwen-dark.d.ts +7 -0
  2518. package/dist/src/ui/themes/qwen-dark.js +107 -0
  2519. package/dist/src/ui/themes/qwen-dark.js.map +1 -0
  2520. package/dist/src/ui/themes/qwen-light.d.ts +7 -0
  2521. package/dist/src/ui/themes/qwen-light.js +133 -0
  2522. package/dist/src/ui/themes/qwen-light.js.map +1 -0
  2523. package/dist/src/ui/themes/semantic-tokens.d.ts +40 -0
  2524. package/dist/src/ui/themes/semantic-tokens.js +103 -0
  2525. package/dist/src/ui/themes/semantic-tokens.js.map +1 -0
  2526. package/dist/src/ui/themes/shades-of-purple.d.ts +11 -0
  2527. package/dist/src/ui/themes/shades-of-purple.js +306 -0
  2528. package/dist/src/ui/themes/shades-of-purple.js.map +1 -0
  2529. package/dist/src/ui/themes/theme-manager.d.ts +91 -0
  2530. package/dist/src/ui/themes/theme-manager.js +311 -0
  2531. package/dist/src/ui/themes/theme-manager.js.map +1 -0
  2532. package/dist/src/ui/themes/theme-manager.test.d.ts +6 -0
  2533. package/dist/src/ui/themes/theme-manager.test.js +188 -0
  2534. package/dist/src/ui/themes/theme-manager.test.js.map +1 -0
  2535. package/dist/src/ui/themes/theme.d.ts +137 -0
  2536. package/dist/src/ui/themes/theme.js +393 -0
  2537. package/dist/src/ui/themes/theme.js.map +1 -0
  2538. package/dist/src/ui/themes/xcode.d.ts +7 -0
  2539. package/dist/src/ui/themes/xcode.js +147 -0
  2540. package/dist/src/ui/themes/xcode.js.map +1 -0
  2541. package/dist/src/ui/types.d.ts +620 -0
  2542. package/dist/src/ui/types.js +77 -0
  2543. package/dist/src/ui/types.js.map +1 -0
  2544. package/dist/src/ui/utils/CodeColorizer.d.ts +18 -0
  2545. package/dist/src/ui/utils/CodeColorizer.js +155 -0
  2546. package/dist/src/ui/utils/CodeColorizer.js.map +1 -0
  2547. package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +18 -0
  2548. package/dist/src/ui/utils/InlineMarkdownRenderer.js +173 -0
  2549. package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -0
  2550. package/dist/src/ui/utils/InlineMarkdownRenderer.test.d.ts +6 -0
  2551. package/dist/src/ui/utils/InlineMarkdownRenderer.test.js +303 -0
  2552. package/dist/src/ui/utils/InlineMarkdownRenderer.test.js.map +1 -0
  2553. package/dist/src/ui/utils/MarkdownDisplay.d.ts +25 -0
  2554. package/dist/src/ui/utils/MarkdownDisplay.js +420 -0
  2555. package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -0
  2556. package/dist/src/ui/utils/MarkdownDisplay.test.d.ts +6 -0
  2557. package/dist/src/ui/utils/MarkdownDisplay.test.js +702 -0
  2558. package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -0
  2559. package/dist/src/ui/utils/MermaidDiagram.d.ts +15 -0
  2560. package/dist/src/ui/utils/MermaidDiagram.js +88 -0
  2561. package/dist/src/ui/utils/MermaidDiagram.js.map +1 -0
  2562. package/dist/src/ui/utils/MermaidDiagram.test.d.ts +6 -0
  2563. package/dist/src/ui/utils/MermaidDiagram.test.js +90 -0
  2564. package/dist/src/ui/utils/MermaidDiagram.test.js.map +1 -0
  2565. package/dist/src/ui/utils/TableRenderer.d.ts +30 -0
  2566. package/dist/src/ui/utils/TableRenderer.js +563 -0
  2567. package/dist/src/ui/utils/TableRenderer.js.map +1 -0
  2568. package/dist/src/ui/utils/TableRenderer.test.d.ts +6 -0
  2569. package/dist/src/ui/utils/TableRenderer.test.js +568 -0
  2570. package/dist/src/ui/utils/TableRenderer.test.js.map +1 -0
  2571. package/dist/src/ui/utils/approvalModeDisplay.d.ts +8 -0
  2572. package/dist/src/ui/utils/approvalModeDisplay.js +34 -0
  2573. package/dist/src/ui/utils/approvalModeDisplay.js.map +1 -0
  2574. package/dist/src/ui/utils/approvalModeDisplay.test.d.ts +6 -0
  2575. package/dist/src/ui/utils/approvalModeDisplay.test.js +35 -0
  2576. package/dist/src/ui/utils/approvalModeDisplay.test.js.map +1 -0
  2577. package/dist/src/ui/utils/asciiCharts.d.ts +44 -0
  2578. package/dist/src/ui/utils/asciiCharts.js +307 -0
  2579. package/dist/src/ui/utils/asciiCharts.js.map +1 -0
  2580. package/dist/src/ui/utils/asciiCharts.test.d.ts +6 -0
  2581. package/dist/src/ui/utils/asciiCharts.test.js +208 -0
  2582. package/dist/src/ui/utils/asciiCharts.test.js.map +1 -0
  2583. package/dist/src/ui/utils/backgroundWorkUtils.d.ts +8 -0
  2584. package/dist/src/ui/utils/backgroundWorkUtils.js +16 -0
  2585. package/dist/src/ui/utils/backgroundWorkUtils.js.map +1 -0
  2586. package/dist/src/ui/utils/backgroundWorkUtils.test.d.ts +6 -0
  2587. package/dist/src/ui/utils/backgroundWorkUtils.test.js +85 -0
  2588. package/dist/src/ui/utils/backgroundWorkUtils.test.js.map +1 -0
  2589. package/dist/src/ui/utils/clipboardUtils.d.ts +28 -0
  2590. package/dist/src/ui/utils/clipboardUtils.js +522 -0
  2591. package/dist/src/ui/utils/clipboardUtils.js.map +1 -0
  2592. package/dist/src/ui/utils/clipboardUtils.test.d.ts +6 -0
  2593. package/dist/src/ui/utils/clipboardUtils.test.js +465 -0
  2594. package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -0
  2595. package/dist/src/ui/utils/commandUtils.d.ts +112 -0
  2596. package/dist/src/ui/utils/commandUtils.js +285 -0
  2597. package/dist/src/ui/utils/commandUtils.js.map +1 -0
  2598. package/dist/src/ui/utils/commandUtils.test.d.ts +6 -0
  2599. package/dist/src/ui/utils/commandUtils.test.js +560 -0
  2600. package/dist/src/ui/utils/commandUtils.test.js.map +1 -0
  2601. package/dist/src/ui/utils/computeStats.d.ts +10 -0
  2602. package/dist/src/ui/utils/computeStats.js +57 -0
  2603. package/dist/src/ui/utils/computeStats.js.map +1 -0
  2604. package/dist/src/ui/utils/customBanner.d.ts +35 -0
  2605. package/dist/src/ui/utils/customBanner.js +361 -0
  2606. package/dist/src/ui/utils/customBanner.js.map +1 -0
  2607. package/dist/src/ui/utils/customBanner.test.d.ts +6 -0
  2608. package/dist/src/ui/utils/customBanner.test.js +439 -0
  2609. package/dist/src/ui/utils/customBanner.test.js.map +1 -0
  2610. package/dist/src/ui/utils/displayUtils.d.ts +25 -0
  2611. package/dist/src/ui/utils/displayUtils.js +46 -0
  2612. package/dist/src/ui/utils/displayUtils.js.map +1 -0
  2613. package/dist/src/ui/utils/displayUtils.test.d.ts +6 -0
  2614. package/dist/src/ui/utils/displayUtils.test.js +61 -0
  2615. package/dist/src/ui/utils/displayUtils.test.js.map +1 -0
  2616. package/dist/src/ui/utils/export/collect.d.ts +16 -0
  2617. package/dist/src/ui/utils/export/collect.js +509 -0
  2618. package/dist/src/ui/utils/export/collect.js.map +1 -0
  2619. package/dist/src/ui/utils/export/collect.test.d.ts +6 -0
  2620. package/dist/src/ui/utils/export/collect.test.js +80 -0
  2621. package/dist/src/ui/utils/export/collect.test.js.map +1 -0
  2622. package/dist/src/ui/utils/export/formatters/html.d.ts +23 -0
  2623. package/dist/src/ui/utils/export/formatters/html.js +65 -0
  2624. package/dist/src/ui/utils/export/formatters/html.js.map +1 -0
  2625. package/dist/src/ui/utils/export/formatters/json.d.ts +11 -0
  2626. package/dist/src/ui/utils/export/formatters/json.js +13 -0
  2627. package/dist/src/ui/utils/export/formatters/json.js.map +1 -0
  2628. package/dist/src/ui/utils/export/formatters/jsonl.d.ts +11 -0
  2629. package/dist/src/ui/utils/export/formatters/jsonl.js +69 -0
  2630. package/dist/src/ui/utils/export/formatters/jsonl.js.map +1 -0
  2631. package/dist/src/ui/utils/export/formatters/markdown.d.ts +10 -0
  2632. package/dist/src/ui/utils/export/formatters/markdown.js +254 -0
  2633. package/dist/src/ui/utils/export/formatters/markdown.js.map +1 -0
  2634. package/dist/src/ui/utils/export/index.d.ts +13 -0
  2635. package/dist/src/ui/utils/export/index.js +13 -0
  2636. package/dist/src/ui/utils/export/index.js.map +1 -0
  2637. package/dist/src/ui/utils/export/normalize.d.ts +12 -0
  2638. package/dist/src/ui/utils/export/normalize.js +279 -0
  2639. package/dist/src/ui/utils/export/normalize.js.map +1 -0
  2640. package/dist/src/ui/utils/export/normalize.test.d.ts +6 -0
  2641. package/dist/src/ui/utils/export/normalize.test.js +62 -0
  2642. package/dist/src/ui/utils/export/normalize.test.js.map +1 -0
  2643. package/dist/src/ui/utils/export/types.d.ts +93 -0
  2644. package/dist/src/ui/utils/export/types.js +7 -0
  2645. package/dist/src/ui/utils/export/types.js.map +1 -0
  2646. package/dist/src/ui/utils/export/utils.d.ts +9 -0
  2647. package/dist/src/ui/utils/export/utils.js +13 -0
  2648. package/dist/src/ui/utils/export/utils.js.map +1 -0
  2649. package/dist/src/ui/utils/formatters.d.ts +28 -0
  2650. package/dist/src/ui/utils/formatters.js +100 -0
  2651. package/dist/src/ui/utils/formatters.js.map +1 -0
  2652. package/dist/src/ui/utils/formatters.test.d.ts +6 -0
  2653. package/dist/src/ui/utils/formatters.test.js +141 -0
  2654. package/dist/src/ui/utils/formatters.test.js.map +1 -0
  2655. package/dist/src/ui/utils/gradientUtils.d.ts +6 -0
  2656. package/dist/src/ui/utils/gradientUtils.js +11 -0
  2657. package/dist/src/ui/utils/gradientUtils.js.map +1 -0
  2658. package/dist/src/ui/utils/highlight.d.ts +12 -0
  2659. package/dist/src/ui/utils/highlight.js +90 -0
  2660. package/dist/src/ui/utils/highlight.js.map +1 -0
  2661. package/dist/src/ui/utils/highlight.test.d.ts +6 -0
  2662. package/dist/src/ui/utils/highlight.test.js +173 -0
  2663. package/dist/src/ui/utils/highlight.test.js.map +1 -0
  2664. package/dist/src/ui/utils/historyMapping.d.ts +44 -0
  2665. package/dist/src/ui/utils/historyMapping.js +110 -0
  2666. package/dist/src/ui/utils/historyMapping.js.map +1 -0
  2667. package/dist/src/ui/utils/historyMapping.test.d.ts +6 -0
  2668. package/dist/src/ui/utils/historyMapping.test.js +376 -0
  2669. package/dist/src/ui/utils/historyMapping.test.js.map +1 -0
  2670. package/dist/src/ui/utils/historyUtils.d.ts +34 -0
  2671. package/dist/src/ui/utils/historyUtils.js +117 -0
  2672. package/dist/src/ui/utils/historyUtils.js.map +1 -0
  2673. package/dist/src/ui/utils/historyUtils.test.d.ts +6 -0
  2674. package/dist/src/ui/utils/historyUtils.test.js +107 -0
  2675. package/dist/src/ui/utils/historyUtils.test.js.map +1 -0
  2676. package/dist/src/ui/utils/isNarrowWidth.d.ts +6 -0
  2677. package/dist/src/ui/utils/isNarrowWidth.js +9 -0
  2678. package/dist/src/ui/utils/isNarrowWidth.js.map +1 -0
  2679. package/dist/src/ui/utils/kittyProtocolDetector.d.ts +19 -0
  2680. package/dist/src/ui/utils/kittyProtocolDetector.js +115 -0
  2681. package/dist/src/ui/utils/kittyProtocolDetector.js.map +1 -0
  2682. package/dist/src/ui/utils/latexRenderer.d.ts +6 -0
  2683. package/dist/src/ui/utils/latexRenderer.js +187 -0
  2684. package/dist/src/ui/utils/latexRenderer.js.map +1 -0
  2685. package/dist/src/ui/utils/latexRenderer.test.d.ts +6 -0
  2686. package/dist/src/ui/utils/latexRenderer.test.js +27 -0
  2687. package/dist/src/ui/utils/latexRenderer.test.js.map +1 -0
  2688. package/dist/src/ui/utils/layoutUtils.d.ts +32 -0
  2689. package/dist/src/ui/utils/layoutUtils.js +46 -0
  2690. package/dist/src/ui/utils/layoutUtils.js.map +1 -0
  2691. package/dist/src/ui/utils/layoutUtils.test.d.ts +6 -0
  2692. package/dist/src/ui/utils/layoutUtils.test.js +30 -0
  2693. package/dist/src/ui/utils/layoutUtils.test.js.map +1 -0
  2694. package/dist/src/ui/utils/lowlightLoader.d.ts +43 -0
  2695. package/dist/src/ui/utils/lowlightLoader.js +88 -0
  2696. package/dist/src/ui/utils/lowlightLoader.js.map +1 -0
  2697. package/dist/src/ui/utils/lowlightLoader.test.d.ts +6 -0
  2698. package/dist/src/ui/utils/lowlightLoader.test.js +120 -0
  2699. package/dist/src/ui/utils/lowlightLoader.test.js.map +1 -0
  2700. package/dist/src/ui/utils/markdownUtilities.d.ts +6 -0
  2701. package/dist/src/ui/utils/markdownUtilities.js +110 -0
  2702. package/dist/src/ui/utils/markdownUtilities.js.map +1 -0
  2703. package/dist/src/ui/utils/markdownUtilities.test.d.ts +6 -0
  2704. package/dist/src/ui/utils/markdownUtilities.test.js +42 -0
  2705. package/dist/src/ui/utils/markdownUtilities.test.js.map +1 -0
  2706. package/dist/src/ui/utils/mergeCompactToolGroups.d.ts +62 -0
  2707. package/dist/src/ui/utils/mergeCompactToolGroups.js +212 -0
  2708. package/dist/src/ui/utils/mergeCompactToolGroups.js.map +1 -0
  2709. package/dist/src/ui/utils/mergeCompactToolGroups.test.d.ts +6 -0
  2710. package/dist/src/ui/utils/mergeCompactToolGroups.test.js +473 -0
  2711. package/dist/src/ui/utils/mergeCompactToolGroups.test.js.map +1 -0
  2712. package/dist/src/ui/utils/mermaidImageRenderer.d.ts +54 -0
  2713. package/dist/src/ui/utils/mermaidImageRenderer.js +955 -0
  2714. package/dist/src/ui/utils/mermaidImageRenderer.js.map +1 -0
  2715. package/dist/src/ui/utils/mermaidImageRenderer.test.d.ts +6 -0
  2716. package/dist/src/ui/utils/mermaidImageRenderer.test.js +528 -0
  2717. package/dist/src/ui/utils/mermaidImageRenderer.test.js.map +1 -0
  2718. package/dist/src/ui/utils/mermaidVisualRenderer.d.ts +12 -0
  2719. package/dist/src/ui/utils/mermaidVisualRenderer.js +1097 -0
  2720. package/dist/src/ui/utils/mermaidVisualRenderer.js.map +1 -0
  2721. package/dist/src/ui/utils/mermaidVisualRenderer.test.d.ts +6 -0
  2722. package/dist/src/ui/utils/mermaidVisualRenderer.test.js +69 -0
  2723. package/dist/src/ui/utils/mermaidVisualRenderer.test.js.map +1 -0
  2724. package/dist/src/ui/utils/modelsBySource.d.ts +47 -0
  2725. package/dist/src/ui/utils/modelsBySource.js +89 -0
  2726. package/dist/src/ui/utils/modelsBySource.js.map +1 -0
  2727. package/dist/src/ui/utils/modelsBySource.test.d.ts +6 -0
  2728. package/dist/src/ui/utils/modelsBySource.test.js +111 -0
  2729. package/dist/src/ui/utils/modelsBySource.test.js.map +1 -0
  2730. package/dist/src/ui/utils/mouse.d.ts +39 -0
  2731. package/dist/src/ui/utils/mouse.js +169 -0
  2732. package/dist/src/ui/utils/mouse.js.map +1 -0
  2733. package/dist/src/ui/utils/mouse.test.d.ts +6 -0
  2734. package/dist/src/ui/utils/mouse.test.js +117 -0
  2735. package/dist/src/ui/utils/mouse.test.js.map +1 -0
  2736. package/dist/src/ui/utils/osc8.d.ts +124 -0
  2737. package/dist/src/ui/utils/osc8.js +463 -0
  2738. package/dist/src/ui/utils/osc8.js.map +1 -0
  2739. package/dist/src/ui/utils/osc8.test.d.ts +6 -0
  2740. package/dist/src/ui/utils/osc8.test.js +494 -0
  2741. package/dist/src/ui/utils/osc8.test.js.map +1 -0
  2742. package/dist/src/ui/utils/platformConstants.d.ts +75 -0
  2743. package/dist/src/ui/utils/platformConstants.js +78 -0
  2744. package/dist/src/ui/utils/platformConstants.js.map +1 -0
  2745. package/dist/src/ui/utils/restoreGoal.d.ts +47 -0
  2746. package/dist/src/ui/utils/restoreGoal.js +124 -0
  2747. package/dist/src/ui/utils/restoreGoal.js.map +1 -0
  2748. package/dist/src/ui/utils/restoreGoal.test.d.ts +6 -0
  2749. package/dist/src/ui/utils/restoreGoal.test.js +220 -0
  2750. package/dist/src/ui/utils/restoreGoal.test.js.map +1 -0
  2751. package/dist/src/ui/utils/resumeHistoryUtils.d.ts +22 -0
  2752. package/dist/src/ui/utils/resumeHistoryUtils.js +410 -0
  2753. package/dist/src/ui/utils/resumeHistoryUtils.js.map +1 -0
  2754. package/dist/src/ui/utils/resumeHistoryUtils.test.d.ts +6 -0
  2755. package/dist/src/ui/utils/resumeHistoryUtils.test.js +378 -0
  2756. package/dist/src/ui/utils/resumeHistoryUtils.test.js.map +1 -0
  2757. package/dist/src/ui/utils/sessionPickerUtils.d.ts +35 -0
  2758. package/dist/src/ui/utils/sessionPickerUtils.js +69 -0
  2759. package/dist/src/ui/utils/sessionPickerUtils.js.map +1 -0
  2760. package/dist/src/ui/utils/sessionPickerUtils.test.d.ts +6 -0
  2761. package/dist/src/ui/utils/sessionPickerUtils.test.js +79 -0
  2762. package/dist/src/ui/utils/sessionPickerUtils.test.js.map +1 -0
  2763. package/dist/src/ui/utils/statsDataService.d.ts +49 -0
  2764. package/dist/src/ui/utils/statsDataService.js +221 -0
  2765. package/dist/src/ui/utils/statsDataService.js.map +1 -0
  2766. package/dist/src/ui/utils/statsDataService.test.d.ts +6 -0
  2767. package/dist/src/ui/utils/statsDataService.test.js +406 -0
  2768. package/dist/src/ui/utils/statsDataService.test.js.map +1 -0
  2769. package/dist/src/ui/utils/synchronizedOutput.d.ts +16 -0
  2770. package/dist/src/ui/utils/synchronizedOutput.js +88 -0
  2771. package/dist/src/ui/utils/synchronizedOutput.js.map +1 -0
  2772. package/dist/src/ui/utils/synchronizedOutput.test.d.ts +6 -0
  2773. package/dist/src/ui/utils/synchronizedOutput.test.js +154 -0
  2774. package/dist/src/ui/utils/synchronizedOutput.test.js.map +1 -0
  2775. package/dist/src/ui/utils/terminalRedrawOptimizer.d.ts +21 -0
  2776. package/dist/src/ui/utils/terminalRedrawOptimizer.js +108 -0
  2777. package/dist/src/ui/utils/terminalRedrawOptimizer.js.map +1 -0
  2778. package/dist/src/ui/utils/terminalRedrawOptimizer.test.d.ts +6 -0
  2779. package/dist/src/ui/utils/terminalRedrawOptimizer.test.js +85 -0
  2780. package/dist/src/ui/utils/terminalRedrawOptimizer.test.js.map +1 -0
  2781. package/dist/src/ui/utils/terminalSetup.d.ts +30 -0
  2782. package/dist/src/ui/utils/terminalSetup.js +310 -0
  2783. package/dist/src/ui/utils/terminalSetup.js.map +1 -0
  2784. package/dist/src/ui/utils/textUtils.d.ts +86 -0
  2785. package/dist/src/ui/utils/textUtils.js +360 -0
  2786. package/dist/src/ui/utils/textUtils.js.map +1 -0
  2787. package/dist/src/ui/utils/textUtils.test.d.ts +6 -0
  2788. package/dist/src/ui/utils/textUtils.test.js +269 -0
  2789. package/dist/src/ui/utils/textUtils.test.js.map +1 -0
  2790. package/dist/src/ui/utils/todoSnapshot.d.ts +13 -0
  2791. package/dist/src/ui/utils/todoSnapshot.js +133 -0
  2792. package/dist/src/ui/utils/todoSnapshot.js.map +1 -0
  2793. package/dist/src/ui/utils/todoSnapshot.test.d.ts +6 -0
  2794. package/dist/src/ui/utils/todoSnapshot.test.js +281 -0
  2795. package/dist/src/ui/utils/todoSnapshot.test.js.map +1 -0
  2796. package/dist/src/ui/utils/updateCheck.d.ts +12 -0
  2797. package/dist/src/ui/utils/updateCheck.js +80 -0
  2798. package/dist/src/ui/utils/updateCheck.js.map +1 -0
  2799. package/dist/src/ui/utils/updateCheck.test.d.ts +6 -0
  2800. package/dist/src/ui/utils/updateCheck.test.js +145 -0
  2801. package/dist/src/ui/utils/updateCheck.test.js.map +1 -0
  2802. package/dist/src/utils/acpModelUtils.d.ts +39 -0
  2803. package/dist/src/utils/acpModelUtils.js +61 -0
  2804. package/dist/src/utils/acpModelUtils.js.map +1 -0
  2805. package/dist/src/utils/acpModelUtils.test.d.ts +6 -0
  2806. package/dist/src/utils/acpModelUtils.test.js +31 -0
  2807. package/dist/src/utils/acpModelUtils.test.js.map +1 -0
  2808. package/dist/src/utils/apiPreconnect.d.ts +22 -0
  2809. package/dist/src/utils/apiPreconnect.js +188 -0
  2810. package/dist/src/utils/apiPreconnect.js.map +1 -0
  2811. package/dist/src/utils/apiPreconnect.test.d.ts +6 -0
  2812. package/dist/src/utils/apiPreconnect.test.js +252 -0
  2813. package/dist/src/utils/apiPreconnect.test.js.map +1 -0
  2814. package/dist/src/utils/checks.d.ts +19 -0
  2815. package/dist/src/utils/checks.js +24 -0
  2816. package/dist/src/utils/checks.js.map +1 -0
  2817. package/dist/src/utils/cleanup.d.ts +23 -0
  2818. package/dist/src/utils/cleanup.js +96 -0
  2819. package/dist/src/utils/cleanup.js.map +1 -0
  2820. package/dist/src/utils/commands.d.ts +20 -0
  2821. package/dist/src/utils/commands.js +53 -0
  2822. package/dist/src/utils/commands.js.map +1 -0
  2823. package/dist/src/utils/commands.test.d.ts +6 -0
  2824. package/dist/src/utils/commands.test.js +115 -0
  2825. package/dist/src/utils/commands.test.js.map +1 -0
  2826. package/dist/src/utils/commentJson.d.ts +25 -0
  2827. package/dist/src/utils/commentJson.js +113 -0
  2828. package/dist/src/utils/commentJson.js.map +1 -0
  2829. package/dist/src/utils/commentJson.test.d.ts +6 -0
  2830. package/dist/src/utils/commentJson.test.js +385 -0
  2831. package/dist/src/utils/commentJson.test.js.map +1 -0
  2832. package/dist/src/utils/costCalculator.d.ts +14 -0
  2833. package/dist/src/utils/costCalculator.js +19 -0
  2834. package/dist/src/utils/costCalculator.js.map +1 -0
  2835. package/dist/src/utils/costCalculator.test.d.ts +6 -0
  2836. package/dist/src/utils/costCalculator.test.js +177 -0
  2837. package/dist/src/utils/costCalculator.test.js.map +1 -0
  2838. package/dist/src/utils/cpuProfiler.d.ts +63 -0
  2839. package/dist/src/utils/cpuProfiler.js +341 -0
  2840. package/dist/src/utils/cpuProfiler.js.map +1 -0
  2841. package/dist/src/utils/cpuProfiler.test.d.ts +6 -0
  2842. package/dist/src/utils/cpuProfiler.test.js +293 -0
  2843. package/dist/src/utils/cpuProfiler.test.js.map +1 -0
  2844. package/dist/src/utils/deepMerge.d.ts +9 -0
  2845. package/dist/src/utils/deepMerge.js +58 -0
  2846. package/dist/src/utils/deepMerge.js.map +1 -0
  2847. package/dist/src/utils/deepMerge.test.d.ts +6 -0
  2848. package/dist/src/utils/deepMerge.test.js +143 -0
  2849. package/dist/src/utils/deepMerge.test.js.map +1 -0
  2850. package/dist/src/utils/dialogScopeUtils.d.ts +28 -0
  2851. package/dist/src/utils/dialogScopeUtils.js +51 -0
  2852. package/dist/src/utils/dialogScopeUtils.js.map +1 -0
  2853. package/dist/src/utils/doctorChecks.d.ts +11 -0
  2854. package/dist/src/utils/doctorChecks.js +351 -0
  2855. package/dist/src/utils/doctorChecks.js.map +1 -0
  2856. package/dist/src/utils/doctorChecks.test.d.ts +6 -0
  2857. package/dist/src/utils/doctorChecks.test.js +280 -0
  2858. package/dist/src/utils/doctorChecks.test.js.map +1 -0
  2859. package/dist/src/utils/earlyInputCapture.d.ts +33 -0
  2860. package/dist/src/utils/earlyInputCapture.js +311 -0
  2861. package/dist/src/utils/earlyInputCapture.js.map +1 -0
  2862. package/dist/src/utils/earlyInputCapture.test.d.ts +6 -0
  2863. package/dist/src/utils/earlyInputCapture.test.js +274 -0
  2864. package/dist/src/utils/earlyInputCapture.test.js.map +1 -0
  2865. package/dist/src/utils/envVarResolver.d.ts +39 -0
  2866. package/dist/src/utils/envVarResolver.js +100 -0
  2867. package/dist/src/utils/envVarResolver.js.map +1 -0
  2868. package/dist/src/utils/envVarResolver.test.d.ts +6 -0
  2869. package/dist/src/utils/envVarResolver.test.js +221 -0
  2870. package/dist/src/utils/envVarResolver.test.js.map +1 -0
  2871. package/dist/src/utils/errors.d.ts +76 -0
  2872. package/dist/src/utils/errors.js +237 -0
  2873. package/dist/src/utils/errors.js.map +1 -0
  2874. package/dist/src/utils/errors.test.d.ts +6 -0
  2875. package/dist/src/utils/errors.test.js +536 -0
  2876. package/dist/src/utils/errors.test.js.map +1 -0
  2877. package/dist/src/utils/events.d.ts +13 -0
  2878. package/dist/src/utils/events.js +15 -0
  2879. package/dist/src/utils/events.js.map +1 -0
  2880. package/dist/src/utils/gitUtils.d.ts +30 -0
  2881. package/dist/src/utils/gitUtils.js +108 -0
  2882. package/dist/src/utils/gitUtils.js.map +1 -0
  2883. package/dist/src/utils/gitUtils.test.d.ts +6 -0
  2884. package/dist/src/utils/gitUtils.test.js +172 -0
  2885. package/dist/src/utils/gitUtils.test.js.map +1 -0
  2886. package/dist/src/utils/handleAutoUpdate.d.ts +16 -0
  2887. package/dist/src/utils/handleAutoUpdate.js +144 -0
  2888. package/dist/src/utils/handleAutoUpdate.js.map +1 -0
  2889. package/dist/src/utils/headlessSafetyWarnings.d.ts +21 -0
  2890. package/dist/src/utils/headlessSafetyWarnings.js +45 -0
  2891. package/dist/src/utils/headlessSafetyWarnings.js.map +1 -0
  2892. package/dist/src/utils/headlessSafetyWarnings.test.d.ts +6 -0
  2893. package/dist/src/utils/headlessSafetyWarnings.test.js +66 -0
  2894. package/dist/src/utils/headlessSafetyWarnings.test.js.map +1 -0
  2895. package/dist/src/utils/housekeeping/cleanup.d.ts +15 -0
  2896. package/dist/src/utils/housekeeping/cleanup.js +69 -0
  2897. package/dist/src/utils/housekeeping/cleanup.js.map +1 -0
  2898. package/dist/src/utils/housekeeping/cleanup.test.d.ts +6 -0
  2899. package/dist/src/utils/housekeeping/cleanup.test.js +166 -0
  2900. package/dist/src/utils/housekeeping/cleanup.test.js.map +1 -0
  2901. package/dist/src/utils/housekeeping/lastInteractionAt.d.ts +9 -0
  2902. package/dist/src/utils/housekeeping/lastInteractionAt.js +22 -0
  2903. package/dist/src/utils/housekeeping/lastInteractionAt.js.map +1 -0
  2904. package/dist/src/utils/housekeeping/scheduler.d.ts +17 -0
  2905. package/dist/src/utils/housekeeping/scheduler.js +130 -0
  2906. package/dist/src/utils/housekeeping/scheduler.js.map +1 -0
  2907. package/dist/src/utils/housekeeping/scheduler.test.d.ts +6 -0
  2908. package/dist/src/utils/housekeeping/scheduler.test.js +190 -0
  2909. package/dist/src/utils/housekeeping/scheduler.test.js.map +1 -0
  2910. package/dist/src/utils/housekeeping/throttledOnce.d.ts +13 -0
  2911. package/dist/src/utils/housekeeping/throttledOnce.js +110 -0
  2912. package/dist/src/utils/housekeeping/throttledOnce.js.map +1 -0
  2913. package/dist/src/utils/housekeeping/throttledOnce.test.d.ts +6 -0
  2914. package/dist/src/utils/housekeeping/throttledOnce.test.js +94 -0
  2915. package/dist/src/utils/housekeeping/throttledOnce.test.js.map +1 -0
  2916. package/dist/src/utils/installationInfo.d.ts +26 -0
  2917. package/dist/src/utils/installationInfo.js +266 -0
  2918. package/dist/src/utils/installationInfo.js.map +1 -0
  2919. package/dist/src/utils/installationInfo.test.d.ts +6 -0
  2920. package/dist/src/utils/installationInfo.test.js +466 -0
  2921. package/dist/src/utils/installationInfo.test.js.map +1 -0
  2922. package/dist/src/utils/languageUtils.d.ts +40 -0
  2923. package/dist/src/utils/languageUtils.js +163 -0
  2924. package/dist/src/utils/languageUtils.js.map +1 -0
  2925. package/dist/src/utils/languageUtils.test.d.ts +6 -0
  2926. package/dist/src/utils/languageUtils.test.js +341 -0
  2927. package/dist/src/utils/languageUtils.test.js.map +1 -0
  2928. package/dist/src/utils/math.d.ts +13 -0
  2929. package/dist/src/utils/math.js +14 -0
  2930. package/dist/src/utils/math.js.map +1 -0
  2931. package/dist/src/utils/memoryDiagnostics.d.ts +65 -0
  2932. package/dist/src/utils/memoryDiagnostics.js +365 -0
  2933. package/dist/src/utils/memoryDiagnostics.js.map +1 -0
  2934. package/dist/src/utils/memoryDiagnostics.test.d.ts +6 -0
  2935. package/dist/src/utils/memoryDiagnostics.test.js +641 -0
  2936. package/dist/src/utils/memoryDiagnostics.test.js.map +1 -0
  2937. package/dist/src/utils/modelConfigUtils.d.ts +55 -0
  2938. package/dist/src/utils/modelConfigUtils.js +186 -0
  2939. package/dist/src/utils/modelConfigUtils.js.map +1 -0
  2940. package/dist/src/utils/modelConfigUtils.test.d.ts +6 -0
  2941. package/dist/src/utils/modelConfigUtils.test.js +1247 -0
  2942. package/dist/src/utils/modelConfigUtils.test.js.map +1 -0
  2943. package/dist/src/utils/nonInteractiveHelpers.d.ts +101 -0
  2944. package/dist/src/utils/nonInteractiveHelpers.js +479 -0
  2945. package/dist/src/utils/nonInteractiveHelpers.js.map +1 -0
  2946. package/dist/src/utils/nonInteractiveHelpers.test.d.ts +6 -0
  2947. package/dist/src/utils/nonInteractiveHelpers.test.js +1038 -0
  2948. package/dist/src/utils/nonInteractiveHelpers.test.js.map +1 -0
  2949. package/dist/src/utils/osc.d.ts +91 -0
  2950. package/dist/src/utils/osc.js +162 -0
  2951. package/dist/src/utils/osc.js.map +1 -0
  2952. package/dist/src/utils/osc.test.d.ts +6 -0
  2953. package/dist/src/utils/osc.test.js +217 -0
  2954. package/dist/src/utils/osc.test.js.map +1 -0
  2955. package/dist/src/utils/package.d.ts +12 -0
  2956. package/dist/src/utils/package.js +24 -0
  2957. package/dist/src/utils/package.js.map +1 -0
  2958. package/dist/src/utils/processUtils.d.ts +13 -0
  2959. package/dist/src/utils/processUtils.js +18 -0
  2960. package/dist/src/utils/processUtils.js.map +1 -0
  2961. package/dist/src/utils/processUtils.test.d.ts +6 -0
  2962. package/dist/src/utils/processUtils.test.js +20 -0
  2963. package/dist/src/utils/processUtils.test.js.map +1 -0
  2964. package/dist/src/utils/readStdin.d.ts +6 -0
  2965. package/dist/src/utils/readStdin.js +60 -0
  2966. package/dist/src/utils/readStdin.js.map +1 -0
  2967. package/dist/src/utils/readStdin.test.d.ts +6 -0
  2968. package/dist/src/utils/readStdin.test.js +88 -0
  2969. package/dist/src/utils/readStdin.test.js.map +1 -0
  2970. package/dist/src/utils/relaunch.d.ts +9 -0
  2971. package/dist/src/utils/relaunch.js +68 -0
  2972. package/dist/src/utils/relaunch.js.map +1 -0
  2973. package/dist/src/utils/relaunch.test.d.ts +6 -0
  2974. package/dist/src/utils/relaunch.test.js +291 -0
  2975. package/dist/src/utils/relaunch.test.js.map +1 -0
  2976. package/dist/src/utils/resolvePath.d.ts +6 -0
  2977. package/dist/src/utils/resolvePath.js +21 -0
  2978. package/dist/src/utils/resolvePath.js.map +1 -0
  2979. package/dist/src/utils/runBudget.d.ts +116 -0
  2980. package/dist/src/utils/runBudget.js +235 -0
  2981. package/dist/src/utils/runBudget.js.map +1 -0
  2982. package/dist/src/utils/runBudget.test.d.ts +6 -0
  2983. package/dist/src/utils/runBudget.test.js +187 -0
  2984. package/dist/src/utils/runBudget.test.js.map +1 -0
  2985. package/dist/src/utils/sandbox-macos-permissive-closed.sb +33 -0
  2986. package/dist/src/utils/sandbox-macos-permissive-open.sb +28 -0
  2987. package/dist/src/utils/sandbox-macos-permissive-proxied.sb +38 -0
  2988. package/dist/src/utils/sandbox-macos-restrictive-closed.sb +94 -0
  2989. package/dist/src/utils/sandbox-macos-restrictive-open.sb +97 -0
  2990. package/dist/src/utils/sandbox-macos-restrictive-proxied.sb +99 -0
  2991. package/dist/src/utils/sandbox.d.ts +7 -0
  2992. package/dist/src/utils/sandbox.js +788 -0
  2993. package/dist/src/utils/sandbox.js.map +1 -0
  2994. package/dist/src/utils/sessionPaths.d.ts +19 -0
  2995. package/dist/src/utils/sessionPaths.js +141 -0
  2996. package/dist/src/utils/sessionPaths.js.map +1 -0
  2997. package/dist/src/utils/sessionPaths.test.d.ts +6 -0
  2998. package/dist/src/utils/sessionPaths.test.js +249 -0
  2999. package/dist/src/utils/sessionPaths.test.js.map +1 -0
  3000. package/dist/src/utils/settingsUtils.d.ts +167 -0
  3001. package/dist/src/utils/settingsUtils.js +532 -0
  3002. package/dist/src/utils/settingsUtils.js.map +1 -0
  3003. package/dist/src/utils/settingsUtils.test.d.ts +6 -0
  3004. package/dist/src/utils/settingsUtils.test.js +849 -0
  3005. package/dist/src/utils/settingsUtils.test.js.map +1 -0
  3006. package/dist/src/utils/spawnWrapper.d.ts +7 -0
  3007. package/dist/src/utils/spawnWrapper.js +8 -0
  3008. package/dist/src/utils/spawnWrapper.js.map +1 -0
  3009. package/dist/src/utils/standalone-update-verify.d.ts +12 -0
  3010. package/dist/src/utils/standalone-update-verify.js +43 -0
  3011. package/dist/src/utils/standalone-update-verify.js.map +1 -0
  3012. package/dist/src/utils/standalone-update-verify.test.d.ts +6 -0
  3013. package/dist/src/utils/standalone-update-verify.test.js +27 -0
  3014. package/dist/src/utils/standalone-update-verify.test.js.map +1 -0
  3015. package/dist/src/utils/standalone-update.d.ts +27 -0
  3016. package/dist/src/utils/standalone-update.js +714 -0
  3017. package/dist/src/utils/standalone-update.js.map +1 -0
  3018. package/dist/src/utils/standalone-update.test.d.ts +6 -0
  3019. package/dist/src/utils/standalone-update.test.js +301 -0
  3020. package/dist/src/utils/standalone-update.test.js.map +1 -0
  3021. package/dist/src/utils/startupProfiler.d.ts +90 -0
  3022. package/dist/src/utils/startupProfiler.js +267 -0
  3023. package/dist/src/utils/startupProfiler.js.map +1 -0
  3024. package/dist/src/utils/startupProfiler.test.d.ts +1 -0
  3025. package/dist/src/utils/startupProfiler.test.js +293 -0
  3026. package/dist/src/utils/startupProfiler.test.js.map +1 -0
  3027. package/dist/src/utils/startupWarnings.d.ts +6 -0
  3028. package/dist/src/utils/startupWarnings.js +40 -0
  3029. package/dist/src/utils/startupWarnings.js.map +1 -0
  3030. package/dist/src/utils/stdioHelpers.d.ts +31 -0
  3031. package/dist/src/utils/stdioHelpers.js +38 -0
  3032. package/dist/src/utils/stdioHelpers.js.map +1 -0
  3033. package/dist/src/utils/systemInfo.d.ts +78 -0
  3034. package/dist/src/utils/systemInfo.js +208 -0
  3035. package/dist/src/utils/systemInfo.js.map +1 -0
  3036. package/dist/src/utils/systemInfo.test.d.ts +6 -0
  3037. package/dist/src/utils/systemInfo.test.js +380 -0
  3038. package/dist/src/utils/systemInfo.test.js.map +1 -0
  3039. package/dist/src/utils/systemInfoFields.d.ts +18 -0
  3040. package/dist/src/utils/systemInfoFields.js +102 -0
  3041. package/dist/src/utils/systemInfoFields.js.map +1 -0
  3042. package/dist/src/utils/systemInfoFields.test.d.ts +6 -0
  3043. package/dist/src/utils/systemInfoFields.test.js +74 -0
  3044. package/dist/src/utils/systemInfoFields.test.js.map +1 -0
  3045. package/dist/src/utils/terminalSequence.d.ts +21 -0
  3046. package/dist/src/utils/terminalSequence.js +124 -0
  3047. package/dist/src/utils/terminalSequence.js.map +1 -0
  3048. package/dist/src/utils/terminalSequence.test.d.ts +6 -0
  3049. package/dist/src/utils/terminalSequence.test.js +132 -0
  3050. package/dist/src/utils/terminalSequence.test.js.map +1 -0
  3051. package/dist/src/utils/truncatedDiffPreview.d.ts +6 -0
  3052. package/dist/src/utils/truncatedDiffPreview.js +18 -0
  3053. package/dist/src/utils/truncatedDiffPreview.js.map +1 -0
  3054. package/dist/src/utils/updateEventEmitter.d.ts +11 -0
  3055. package/dist/src/utils/updateEventEmitter.js +12 -0
  3056. package/dist/src/utils/updateEventEmitter.js.map +1 -0
  3057. package/dist/src/utils/userPromptExpansionHook.d.ts +9 -0
  3058. package/dist/src/utils/userPromptExpansionHook.js +30 -0
  3059. package/dist/src/utils/userPromptExpansionHook.js.map +1 -0
  3060. package/dist/src/utils/userPromptExpansionHook.test.d.ts +6 -0
  3061. package/dist/src/utils/userPromptExpansionHook.test.js +69 -0
  3062. package/dist/src/utils/userPromptExpansionHook.test.js.map +1 -0
  3063. package/dist/src/utils/userStartupWarnings.d.ts +12 -0
  3064. package/dist/src/utils/userStartupWarnings.js +74 -0
  3065. package/dist/src/utils/userStartupWarnings.js.map +1 -0
  3066. package/dist/src/utils/userStartupWarnings.test.d.ts +6 -0
  3067. package/dist/src/utils/userStartupWarnings.test.js +88 -0
  3068. package/dist/src/utils/userStartupWarnings.test.js.map +1 -0
  3069. package/dist/src/utils/version.d.ts +6 -0
  3070. package/dist/src/utils/version.js +11 -0
  3071. package/dist/src/utils/version.js.map +1 -0
  3072. package/dist/src/utils/warningHandler.d.ts +29 -0
  3073. package/dist/src/utils/warningHandler.js +100 -0
  3074. package/dist/src/utils/warningHandler.js.map +1 -0
  3075. package/dist/src/utils/warningHandler.test.d.ts +6 -0
  3076. package/dist/src/utils/warningHandler.test.js +185 -0
  3077. package/dist/src/utils/warningHandler.test.js.map +1 -0
  3078. package/dist/src/utils/windowTitle.d.ts +12 -0
  3079. package/dist/src/utils/windowTitle.js +19 -0
  3080. package/dist/src/utils/windowTitle.js.map +1 -0
  3081. package/dist/src/utils/windowTitle.test.d.ts +6 -0
  3082. package/dist/src/utils/windowTitle.test.js +49 -0
  3083. package/dist/src/utils/windowTitle.test.js.map +1 -0
  3084. package/dist/src/utils/writeWithBackup.d.ts +49 -0
  3085. package/dist/src/utils/writeWithBackup.js +136 -0
  3086. package/dist/src/utils/writeWithBackup.js.map +1 -0
  3087. package/dist/src/utils/writeWithBackup.test.d.ts +6 -0
  3088. package/dist/src/utils/writeWithBackup.test.js +177 -0
  3089. package/dist/src/utils/writeWithBackup.test.js.map +1 -0
  3090. package/dist/src/validateNonInterActiveAuth.d.ts +8 -0
  3091. package/dist/src/validateNonInterActiveAuth.js +66 -0
  3092. package/dist/src/validateNonInterActiveAuth.js.map +1 -0
  3093. package/dist/tsconfig.tsbuildinfo +1 -0
  3094. package/package.json +121 -0
@@ -0,0 +1,2161 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2025 Qwen
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ // English translations for Qwen Code CLI
8
+ // The key serves as both the translation key and the default English text
9
+
10
+ export default {
11
+ // ============================================================================
12
+ // Help / UI Components
13
+ // ============================================================================
14
+ // Attachment hints
15
+ '↑ to manage attachments': '↑ to manage attachments',
16
+ '← → select, Delete to remove, ↓ to exit':
17
+ '← → select, Delete to remove, ↓ to exit',
18
+ 'Attachments: ': 'Attachments: ',
19
+ 'Basics:': 'Basics:',
20
+ 'Add context': 'Add context',
21
+ 'Use {{symbol}} to specify files for context (e.g., {{example}}) to target specific files or folders.':
22
+ 'Use {{symbol}} to specify files for context (e.g., {{example}}) to target specific files or folders.',
23
+ '@': '@',
24
+ '@src/myFile.ts': '@src/myFile.ts',
25
+ 'Shell mode': 'Shell mode',
26
+ 'YOLO mode': 'YOLO mode',
27
+ 'Auto mode': 'Auto mode',
28
+ 'plan mode': 'plan mode',
29
+ 'auto-accept edits': 'auto-accept edits',
30
+ 'Accepting edits': 'Accepting edits',
31
+ '(shift + tab to cycle)': '(shift + tab to cycle)',
32
+ '(tab to cycle)': '(tab to cycle)',
33
+ 'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).':
34
+ 'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).',
35
+ '!': '!',
36
+ '!npm run start': '!npm run start',
37
+ 'start server': 'start server',
38
+ 'Commands:': 'Commands:',
39
+ 'shell command': 'shell command',
40
+ 'Model Context Protocol command (from external servers)':
41
+ 'Model Context Protocol command (from external servers)',
42
+ 'Keyboard Shortcuts:': 'Keyboard Shortcuts:',
43
+ 'Toggle this help display': 'Toggle this help display',
44
+ 'Toggle shell mode': 'Toggle shell mode',
45
+ 'Open command menu': 'Open command menu',
46
+ 'Add file context': 'Add file context',
47
+ 'Accept suggestion / Autocomplete': 'Accept suggestion / Autocomplete',
48
+ 'Reverse search history': 'Reverse search history',
49
+ 'Press ? again to close': 'Press ? again to close',
50
+ // Keyboard shortcuts panel descriptions
51
+ 'for shell mode': 'for shell mode',
52
+ 'for commands': 'for commands',
53
+ 'for file paths': 'for file paths',
54
+ 'to clear input': 'to clear input',
55
+ 'to cycle approvals': 'to cycle approvals',
56
+ 'to quit': 'to quit',
57
+ 'for newline': 'for newline',
58
+ 'to clear screen': 'to clear screen',
59
+ 'to search history': 'to search history',
60
+ 'to paste images': 'to paste images',
61
+ 'for external editor': 'for external editor',
62
+ 'to toggle compact mode': 'to toggle compact mode',
63
+ 'Jump through words in the input': 'Jump through words in the input',
64
+ 'Close dialogs, cancel requests, or quit application':
65
+ 'Close dialogs, cancel requests, or quit application',
66
+ 'New line': 'New line',
67
+ 'New line (Alt+Enter works for certain linux distros)':
68
+ 'New line (Alt+Enter works for certain linux distros)',
69
+ 'Clear the screen': 'Clear the screen',
70
+ 'Open input in external editor': 'Open input in external editor',
71
+ 'Send message': 'Send message',
72
+ 'Initializing...': 'Initializing...',
73
+ 'Connecting to MCP servers... ({{connected}}/{{total}})':
74
+ 'Connecting to MCP servers... ({{connected}}/{{total}})',
75
+ 'Type your message or @path/to/file': 'Type your message or @path/to/file',
76
+ '? for shortcuts': '? for shortcuts',
77
+ "Press 'i' for INSERT mode and 'Esc' for NORMAL mode.":
78
+ "Press 'i' for INSERT mode and 'Esc' for NORMAL mode.",
79
+ 'Cancel operation / Clear input (double press)':
80
+ 'Cancel operation / Clear input (double press)',
81
+ 'Cycle approval modes': 'Cycle approval modes',
82
+ 'Cycle through your prompt history': 'Cycle through your prompt history',
83
+ 'For a full list of shortcuts, see {{docPath}}':
84
+ 'For a full list of shortcuts, see {{docPath}}',
85
+ 'docs/keyboard-shortcuts.md': 'docs/keyboard-shortcuts.md',
86
+ 'for help on Tulex Code': 'for help on Tulex Code',
87
+ 'show version info': 'show version info',
88
+ 'show paths for current session files and logs':
89
+ 'show paths for current session files and logs',
90
+ 'submit a bug report': 'submit a bug report',
91
+ Status: 'Status',
92
+
93
+ // ============================================================================
94
+ // System Information Fields
95
+ // ============================================================================
96
+ 'Tulex Code': 'Tulex Code',
97
+ Runtime: 'Runtime',
98
+ OS: 'OS',
99
+ Auth: 'Auth',
100
+ Model: 'Model',
101
+ 'Fast Model': 'Fast Model',
102
+ Sandbox: 'Sandbox',
103
+ 'Session ID': 'Session ID',
104
+ 'Base URL': 'Base URL',
105
+ Proxy: 'Proxy',
106
+ 'Memory Usage': 'Memory Usage',
107
+ 'IDE Client': 'IDE Client',
108
+
109
+ // ============================================================================
110
+ // Commands - General
111
+ // ============================================================================
112
+ 'Analyzes the project and creates a tailored Tulex.md file.':
113
+ 'Analyzes the project and creates a tailored Tulex.md file.',
114
+ 'List available Tulex Code tools. Usage: /tools [desc]':
115
+ 'List available Tulex Code tools. Usage: /tools [desc]',
116
+ 'Open the skills panel (browse, search, toggle, pick).':
117
+ 'Open the skills panel (browse, search, toggle, pick).',
118
+ // SkillsManagerDialog (the panel `/skills` opens)
119
+ 'Manage Skills': 'Manage Skills',
120
+ 'Skills configuration saved.': 'Skills configuration saved.',
121
+ 'Skills configuration saved, but refresh failed: {{error}}. Restart to ensure the new state is applied.':
122
+ 'Skills configuration saved, but refresh failed: {{error}}. Restart to ensure the new state is applied.',
123
+ 'Workspace is untrusted; workspace settings are ignored by the merged config. Run /trust first to persist skills changes here, or edit ~/.qwen/settings.json directly to manage skills at user scope.':
124
+ 'Workspace is untrusted; workspace settings are ignored by the merged config. Run /trust first to persist skills changes here, or edit ~/.qwen/settings.json directly to manage skills at user scope.',
125
+ 'SkillManager not available.': 'SkillManager not available.',
126
+ 'Loading skills…': 'Loading skills…',
127
+ 'Failed to load skills: {{error}}': 'Failed to load skills: {{error}}',
128
+ 'Failed to save skills configuration: {{error}}':
129
+ 'Failed to save skills configuration: {{error}}',
130
+ 'All available skills are disabled. Edit ~/.qwen/settings.json or .qwen/settings.json (skills.disabled) to re-enable.':
131
+ 'All available skills are disabled. Edit ~/.qwen/settings.json or .qwen/settings.json (skills.disabled) to re-enable.',
132
+ 'Press esc to close.': 'Press esc to close.',
133
+ '{{count}} skills · ': '{{count}} skills · ',
134
+ '{{matched}} / {{total}} skills · ': '{{matched}} / {{total}} skills · ',
135
+ 'Space toggle · Enter pick (fill input) · Esc save & exit · workspace scope':
136
+ 'Space toggle · Enter pick (fill input) · Esc save & exit · workspace scope',
137
+ 'Search:': 'Search:',
138
+ 'type to filter…': 'type to filter…',
139
+ 'No skills are currently available.': 'No skills are currently available.',
140
+ 'All available skills are locked at a higher scope (see below).':
141
+ 'All available skills are locked at a higher scope (see below).',
142
+ 'No skills match the search.': 'No skills match the search.',
143
+ 'Locked by higher-scope settings (cannot toggle here):':
144
+ 'Locked by higher-scope settings (cannot toggle here):',
145
+ 'higher scope': 'higher scope',
146
+ ' {{name}} {{description}} [locked: {{scope}}]':
147
+ ' {{name}} {{description}} [locked: {{scope}}]',
148
+ '↑/↓ navigate · backspace edits search':
149
+ '↑/↓ navigate · backspace edits search',
150
+ Bundled: 'Bundled',
151
+ 'Available Tulex Code CLI tools:': 'Available Tulex Code CLI tools:',
152
+ 'No tools available': 'No tools available',
153
+ 'View or change the approval mode for tool usage':
154
+ 'View or change the approval mode for tool usage',
155
+ 'Invalid approval mode "{{arg}}". Valid modes: {{modes}}':
156
+ 'Invalid approval mode "{{arg}}". Valid modes: {{modes}}',
157
+ 'Approval mode set to "{{mode}}"': 'Approval mode set to "{{mode}}"',
158
+ 'View or change the language setting': 'View or change the language setting',
159
+ 'List background tasks (text dump — interactive dialog opens via the footer pill)':
160
+ 'List background tasks (text dump — interactive dialog opens via the footer pill)',
161
+ 'Delete a previous session': 'Delete a previous session',
162
+ 'Run installation and environment diagnostics':
163
+ 'Run installation and environment diagnostics',
164
+ 'Browse dynamic model catalogs and choose which models stay enabled locally':
165
+ 'Browse dynamic model catalogs and choose which models stay enabled locally',
166
+ 'Generate a one-line session recap now':
167
+ 'Generate a one-line session recap now',
168
+ 'Rename the current conversation. --auto lets the fast model pick a title.':
169
+ 'Rename the current conversation. --auto lets the fast model pick a title.',
170
+ 'Rewind conversation to a previous turn':
171
+ 'Rewind conversation to a previous turn',
172
+ 'Rewind Conversation': 'Rewind Conversation',
173
+ 'No user turns to rewind to.': 'No user turns to rewind to.',
174
+ 'Rewind to: ': 'Rewind to: ',
175
+ 'Restore code and conversation': 'Restore code and conversation',
176
+ 'Restore conversation only': 'Restore conversation only',
177
+ 'Restore code only': 'Restore code only',
178
+ 'Never mind': 'Never mind',
179
+ 'Computing file changes...': 'Computing file changes...',
180
+ 'Restoring...': 'Restoring...',
181
+ 'Restored {{count}} file(s).': 'Restored {{count}} file(s).',
182
+ 'Failed to restore files: {{error}}': 'Failed to restore files: {{error}}',
183
+ 'Rewind failed: {{error}}': 'Rewind failed: {{error}}',
184
+ 'Cannot rewind conversation: no active model client.':
185
+ 'Cannot rewind conversation: no active model client.',
186
+ 'Code restored, but conversation could not be rewound (no active client).':
187
+ 'Code restored, but conversation could not be rewound (no active client).',
188
+ 'Conversation rewound. Edit your prompt and press Enter to continue.':
189
+ 'Conversation rewound. Edit your prompt and press Enter to continue.',
190
+ 'Rewinding does not affect files edited manually or via shell commands.':
191
+ 'Rewinding does not affect files edited manually or via shell commands.',
192
+ 'Cannot rewind to a turn that was compressed. Try a more recent turn.':
193
+ 'Cannot rewind to a turn that was compressed. Try a more recent turn.',
194
+ 'File restore is unavailable for this turn (no captured file changes, or this turn predates the current session).':
195
+ 'File restore is unavailable for this turn (no captured file changes, or this turn predates the current session).',
196
+ '(+{{insertions}} -{{deletions}} in {{count}} file)':
197
+ '(+{{insertions}} -{{deletions}} in {{count}} file)',
198
+ '(+{{insertions}} -{{deletions}} in {{count}} files)':
199
+ '(+{{insertions}} -{{deletions}} in {{count}} files)',
200
+ 'Failed to restore {{count}} file(s): {{files}}':
201
+ 'Failed to restore {{count}} file(s): {{files}}',
202
+ 'Cannot restore files: this turn was created before file checkpointing was enabled.':
203
+ 'Cannot restore files: this turn was created before file checkpointing was enabled.',
204
+ 'No files needed to be restored.': 'No files needed to be restored.',
205
+ '↑↓ to navigate · Enter to select · Esc to go back':
206
+ '↑↓ to navigate · Enter to select · Esc to go back',
207
+ '↑↓ to navigate · Enter to select · Esc to cancel':
208
+ '↑↓ to navigate · Enter to select · Esc to cancel',
209
+ 'Enter/Y to confirm · Esc/N to go back':
210
+ 'Enter/Y to confirm · Esc/N to go back',
211
+ 'change the theme': 'change the theme',
212
+ 'Select Theme': 'Select Theme',
213
+ Preview: 'Preview',
214
+ '(Use Enter to select, Tab to configure scope)':
215
+ '(Use Enter to select, Tab to configure scope)',
216
+ '(Use Enter to apply scope, Tab to go back)':
217
+ '(Use Enter to apply scope, Tab to go back)',
218
+ 'Theme configuration unavailable due to NO_COLOR env variable.':
219
+ 'Theme configuration unavailable due to NO_COLOR env variable.',
220
+ 'Theme "{{themeName}}" not found.': 'Theme "{{themeName}}" not found.',
221
+ 'Theme "{{themeName}}" not found in selected scope.':
222
+ 'Theme "{{themeName}}" not found in selected scope.',
223
+ 'Clear conversation history and free up context':
224
+ 'Clear conversation history and free up context',
225
+ 'Compresses the context by replacing it with a summary.':
226
+ 'Compresses the context by replacing it with a summary.',
227
+ 'open full Qwen Code documentation in your browser':
228
+ 'open full Qwen Code documentation in your browser',
229
+ 'Configuration not available.': 'Configuration not available.',
230
+ 'Connect an LLM provider': 'Connect an LLM provider',
231
+ 'Copy the last AI response to clipboard (/copy N for Nth-latest)':
232
+ 'Copy the last AI response to clipboard (/copy N for Nth-latest)',
233
+ 'Show working-tree change stats versus HEAD':
234
+ 'Show working-tree change stats versus HEAD',
235
+ 'Could not determine current working directory.':
236
+ 'Could not determine current working directory.',
237
+ 'Failed to compute git diff stats': 'Failed to compute git diff stats',
238
+ 'No diff available. Either this is not a git repository, HEAD is missing, or a merge/rebase/cherry-pick/revert is in progress.':
239
+ 'No diff available. Either this is not a git repository, HEAD is missing, or a merge/rebase/cherry-pick/revert is in progress.',
240
+ 'Clean working tree — no changes against HEAD.':
241
+ 'Clean working tree — no changes against HEAD.',
242
+ '{{count}} file changed, +{{added}} / -{{removed}}':
243
+ '{{count}} file changed, +{{added}} / -{{removed}}',
244
+ '{{count}} files changed, +{{added}} / -{{removed}}':
245
+ '{{count}} files changed, +{{added}} / -{{removed}}',
246
+ '{{count}} file changed': '{{count}} file changed',
247
+ '{{count}} files changed': '{{count}} files changed',
248
+ '…and {{hidden}} more (showing first {{shown}})':
249
+ '…and {{hidden}} more (showing first {{shown}})',
250
+ '(binary)': '(binary)',
251
+ '(binary, new)': '(binary, new)',
252
+ '(new)': '(new)',
253
+ '(new, partial)': '(new, partial)',
254
+ '(deleted)': '(deleted)',
255
+ '(binary, deleted)': '(binary, deleted)',
256
+
257
+ // ============================================================================
258
+ // Commands - Agents
259
+ // ============================================================================
260
+ 'Manage subagents for specialized task delegation.':
261
+ 'Manage subagents for specialized task delegation.',
262
+ 'Manage existing subagents (view, edit, delete).':
263
+ 'Manage existing subagents (view, edit, delete).',
264
+ 'Create a new subagent with guided setup.':
265
+ 'Create a new subagent with guided setup.',
266
+
267
+ // ============================================================================
268
+ // Agents - Management Dialog
269
+ // ============================================================================
270
+ Agents: 'Agents',
271
+ 'Choose Action': 'Choose Action',
272
+ 'Edit {{name}}': 'Edit {{name}}',
273
+ 'Edit Tools: {{name}}': 'Edit Tools: {{name}}',
274
+ 'Edit Color: {{name}}': 'Edit Color: {{name}}',
275
+ 'Delete {{name}}': 'Delete {{name}}',
276
+ 'Unknown Step': 'Unknown Step',
277
+ 'Esc to close': 'Esc to close',
278
+ 'Enter to select, ↑↓ to navigate, Esc to close':
279
+ 'Enter to select, ↑↓ to navigate, Esc to close',
280
+ 'Esc to go back': 'Esc to go back',
281
+ 'Enter to confirm, Esc to cancel': 'Enter to confirm, Esc to cancel',
282
+ 'Enter to select, ↑↓ to navigate, Esc to go back':
283
+ 'Enter to select, ↑↓ to navigate, Esc to go back',
284
+ 'Enter to submit, Esc to go back': 'Enter to submit, Esc to go back',
285
+ 'Invalid step: {{step}}': 'Invalid step: {{step}}',
286
+ 'No subagents found.': 'No subagents found.',
287
+ "Use '/agents create' to create your first subagent.":
288
+ "Use '/agents create' to create your first subagent.",
289
+ '(built-in)': '(built-in)',
290
+ '(overridden by project level agent)': '(overridden by project level agent)',
291
+ 'Project Level ({{path}})': 'Project Level ({{path}})',
292
+ 'User Level ({{path}})': 'User Level ({{path}})',
293
+ 'Built-in Agents': 'Built-in Agents',
294
+ 'Extension Agents': 'Extension Agents',
295
+ 'Using: {{count}} agents': 'Using: {{count}} agents',
296
+ 'View Agent': 'View Agent',
297
+ 'Edit Agent': 'Edit Agent',
298
+ 'Delete Agent': 'Delete Agent',
299
+ Back: 'Back',
300
+ 'No agent selected': 'No agent selected',
301
+ 'File Path: ': 'File Path: ',
302
+ 'Tools: ': 'Tools: ',
303
+ 'Color: ': 'Color: ',
304
+ 'Description:': 'Description:',
305
+ 'System Prompt:': 'System Prompt:',
306
+ 'Open in editor': 'Open in editor',
307
+ 'Edit tools': 'Edit tools',
308
+ 'Edit color': 'Edit color',
309
+ '❌ Error:': '❌ Error:',
310
+ 'Are you sure you want to delete agent "{{name}}"?':
311
+ 'Are you sure you want to delete agent "{{name}}"?',
312
+ // ============================================================================
313
+ // Agents - Creation Wizard
314
+ // ============================================================================
315
+ 'Project Level (.qwen/agents/)': 'Project Level (.qwen/agents/)',
316
+ 'User Level (~/.qwen/agents/)': 'User Level (~/.qwen/agents/)',
317
+ '✅ Subagent Created Successfully!': '✅ Subagent Created Successfully!',
318
+ 'Subagent "{{name}}" has been saved to {{level}} level.':
319
+ 'Subagent "{{name}}" has been saved to {{level}} level.',
320
+ 'Name: ': 'Name: ',
321
+ 'Location: ': 'Location: ',
322
+ '❌ Error saving subagent:': '❌ Error saving subagent:',
323
+ 'Warnings:': 'Warnings:',
324
+ 'Name "{{name}}" already exists at {{level}} level - will overwrite existing subagent':
325
+ 'Name "{{name}}" already exists at {{level}} level - will overwrite existing subagent',
326
+ 'Name "{{name}}" exists at user level - project level will take precedence':
327
+ 'Name "{{name}}" exists at user level - project level will take precedence',
328
+ 'Name "{{name}}" exists at project level - existing subagent will take precedence':
329
+ 'Name "{{name}}" exists at project level - existing subagent will take precedence',
330
+ 'Description is over {{length}} characters':
331
+ 'Description is over {{length}} characters',
332
+ 'System prompt is over {{length}} characters':
333
+ 'System prompt is over {{length}} characters',
334
+ // Agents - Creation Wizard Steps
335
+ 'Step {{n}}: Choose Location': 'Step {{n}}: Choose Location',
336
+ 'Step {{n}}: Choose Generation Method':
337
+ 'Step {{n}}: Choose Generation Method',
338
+ 'Generate with Tulex Code (Recommended)':
339
+ 'Generate with Tulex Code (Recommended)',
340
+ 'Manual Creation': 'Manual Creation',
341
+ 'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)':
342
+ 'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)',
343
+ 'e.g., Expert code reviewer that reviews code based on best practices...':
344
+ 'e.g., Expert code reviewer that reviews code based on best practices...',
345
+ 'Generating subagent configuration...':
346
+ 'Generating subagent configuration...',
347
+ 'Failed to generate subagent: {{error}}':
348
+ 'Failed to generate subagent: {{error}}',
349
+ 'Step {{n}}: Describe Your Subagent': 'Step {{n}}: Describe Your Subagent',
350
+ 'Step {{n}}: Enter Subagent Name': 'Step {{n}}: Enter Subagent Name',
351
+ 'Step {{n}}: Enter System Prompt': 'Step {{n}}: Enter System Prompt',
352
+ 'Step {{n}}: Enter Description': 'Step {{n}}: Enter Description',
353
+ // Agents - Tool Selection
354
+ 'Step {{n}}: Select Tools': 'Step {{n}}: Select Tools',
355
+ 'All Tools (Default)': 'All Tools (Default)',
356
+ 'All Tools': 'All Tools',
357
+ 'Read-only Tools': 'Read-only Tools',
358
+ 'Read & Edit Tools': 'Read & Edit Tools',
359
+ 'Read & Edit & Execution Tools': 'Read & Edit & Execution Tools',
360
+ 'All tools selected, including MCP tools':
361
+ 'All tools selected, including MCP tools',
362
+ 'Selected tools:': 'Selected tools:',
363
+ 'Read-only tools:': 'Read-only tools:',
364
+ 'Edit tools:': 'Edit tools:',
365
+ 'Execution tools:': 'Execution tools:',
366
+ 'Step {{n}}: Choose Background Color': 'Step {{n}}: Choose Background Color',
367
+ 'Step {{n}}: Confirm and Save': 'Step {{n}}: Confirm and Save',
368
+ // Agents - Navigation & Instructions
369
+ 'Esc to cancel': 'Esc to cancel',
370
+ 'Press Enter to save, e to save and edit, Esc to go back':
371
+ 'Press Enter to save, e to save and edit, Esc to go back',
372
+ 'Press Enter to continue, {{navigation}}Esc to {{action}}':
373
+ 'Press Enter to continue, {{navigation}}Esc to {{action}}',
374
+ cancel: 'cancel',
375
+ 'go back': 'go back',
376
+ '↑↓ to navigate, ': '↑↓ to navigate, ',
377
+ 'Enter a clear, unique name for this subagent.':
378
+ 'Enter a clear, unique name for this subagent.',
379
+ 'e.g., Code Reviewer': 'e.g., Code Reviewer',
380
+ 'Name cannot be empty.': 'Name cannot be empty.',
381
+ "Write the system prompt that defines this subagent's behavior. Be comprehensive for best results.":
382
+ "Write the system prompt that defines this subagent's behavior. Be comprehensive for best results.",
383
+ 'e.g., You are an expert code reviewer...':
384
+ 'e.g., You are an expert code reviewer...',
385
+ 'System prompt cannot be empty.': 'System prompt cannot be empty.',
386
+ 'Describe when and how this subagent should be used.':
387
+ 'Describe when and how this subagent should be used.',
388
+ 'e.g., Reviews code for best practices and potential bugs.':
389
+ 'e.g., Reviews code for best practices and potential bugs.',
390
+ 'Description cannot be empty.': 'Description cannot be empty.',
391
+ 'Failed to launch editor: {{error}}': 'Failed to launch editor: {{error}}',
392
+ 'Failed to save and edit subagent: {{error}}':
393
+ 'Failed to save and edit subagent: {{error}}',
394
+
395
+ // ============================================================================
396
+ // Extensions - Management Dialog
397
+ // ============================================================================
398
+ 'Manage Extensions': 'Manage Extensions',
399
+ 'Extension Details': 'Extension Details',
400
+ 'View Extension': 'View Extension',
401
+ 'Update Extension': 'Update Extension',
402
+ 'Disable Extension': 'Disable Extension',
403
+ 'Enable Extension': 'Enable Extension',
404
+ 'Uninstall Extension': 'Uninstall Extension',
405
+ 'Select Scope': 'Select Scope',
406
+ 'User Scope': 'User Scope',
407
+ 'Workspace Scope': 'Workspace Scope',
408
+ 'No extensions found.': 'No extensions found.',
409
+ 'Updating...': 'Updating...',
410
+ Unknown: 'Unknown',
411
+ Error: 'Error',
412
+ 'Stopped because': 'Stopped because',
413
+ 'Version:': 'Version:',
414
+ 'Status:': 'Status:',
415
+ 'Are you sure you want to uninstall extension "{{name}}"?':
416
+ 'Are you sure you want to uninstall extension "{{name}}"?',
417
+ 'This action cannot be undone.': 'This action cannot be undone.',
418
+ 'Extension "{{name}}" updated successfully.':
419
+ 'Extension "{{name}}" updated successfully.',
420
+ // Extension dialog - missing keys
421
+ 'Name:': 'Name:',
422
+ 'MCP Servers:': 'MCP Servers:',
423
+ 'Settings:': 'Settings:',
424
+ active: 'active',
425
+ disabled: 'disabled',
426
+ enabled: 'enabled',
427
+ 'View Details': 'View Details',
428
+ 'Update failed:': 'Update failed:',
429
+ 'Updating {{name}}...': 'Updating {{name}}...',
430
+ 'Update complete!': 'Update complete!',
431
+ 'User (global)': 'User (global)',
432
+ 'Workspace (project-specific)': 'Workspace (project-specific)',
433
+ 'Disable "{{name}}" - Select Scope': 'Disable "{{name}}" - Select Scope',
434
+ 'Enable "{{name}}" - Select Scope': 'Enable "{{name}}" - Select Scope',
435
+ 'No extension selected': 'No extension selected',
436
+ '{{count}} extensions installed': '{{count}} extensions installed',
437
+ "Use '/extensions install' to install your first extension.":
438
+ "Use '/extensions install' to install your first extension.",
439
+ // Update status values
440
+ 'up to date': 'up to date',
441
+ 'update available': 'update available',
442
+ 'checking...': 'checking...',
443
+ 'not updatable': 'not updatable',
444
+ error: 'error',
445
+
446
+ // ============================================================================
447
+ // Commands - General (continued)
448
+ // ============================================================================
449
+ 'View and edit Qwen Code settings': 'View and edit Qwen Code settings',
450
+ Settings: 'Settings',
451
+ 'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.':
452
+ 'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.',
453
+ // ============================================================================
454
+ // Settings Labels
455
+ // ============================================================================
456
+ 'Vim Mode': 'Vim Mode',
457
+ 'Attribution: commit': 'Attribution: commit',
458
+ 'Terminal Bell Notification': 'Terminal Bell Notification',
459
+ 'Enable Usage Statistics': 'Enable Usage Statistics',
460
+ Theme: 'Theme',
461
+ 'Preferred Editor': 'Preferred Editor',
462
+ 'Auto-connect to IDE': 'Auto-connect to IDE',
463
+ 'Debug Keystroke Logging': 'Debug Keystroke Logging',
464
+ 'Language: UI': 'Language: UI',
465
+ 'Language: Model': 'Language: Model',
466
+ 'Output Format': 'Output Format',
467
+ 'Hide Window Title': 'Hide Window Title',
468
+ 'Show Status in Title': 'Show Status in Title',
469
+ 'Hide Tips': 'Hide Tips',
470
+ 'Show Line Numbers in Code': 'Show Line Numbers in Code',
471
+ 'Show Citations': 'Show Citations',
472
+ 'Custom Witty Phrases': 'Custom Witty Phrases',
473
+ 'Show Welcome Back Dialog': 'Show Welcome Back Dialog',
474
+ 'Enable User Feedback': 'Enable User Feedback',
475
+ 'How is Tulex doing this session? (optional)':
476
+ 'How is Tulex doing this session? (optional)',
477
+ Bad: 'Bad',
478
+ Fine: 'Fine',
479
+ Good: 'Good',
480
+ Dismiss: 'Dismiss',
481
+ 'Screen Reader Mode': 'Screen Reader Mode',
482
+ 'Max Session Turns': 'Max Session Turns',
483
+ 'Skip Next Speaker Check': 'Skip Next Speaker Check',
484
+ 'Skip Loop Detection': 'Skip Loop Detection',
485
+ 'Skip Startup Context': 'Skip Startup Context',
486
+ 'Enable OpenAI Logging': 'Enable OpenAI Logging',
487
+ 'OpenAI Logging Directory': 'OpenAI Logging Directory',
488
+ Timeout: 'Timeout',
489
+ 'Max Retries': 'Max Retries',
490
+ 'Load Memory From Include Directories':
491
+ 'Load Memory From Include Directories',
492
+ 'Respect .gitignore': 'Respect .gitignore',
493
+ 'Respect .qwenignore': 'Respect .qwenignore',
494
+ 'Enable Recursive File Search': 'Enable Recursive File Search',
495
+ 'Interactive Shell (PTY)': 'Interactive Shell (PTY)',
496
+ 'Show Color': 'Show Color',
497
+ 'Auto Accept': 'Auto Accept',
498
+ 'Use Ripgrep': 'Use Ripgrep',
499
+ 'Use Builtin Ripgrep': 'Use Builtin Ripgrep',
500
+ 'Tool Output Truncation Threshold': 'Tool Output Truncation Threshold',
501
+ 'Tool Output Truncation Lines': 'Tool Output Truncation Lines',
502
+ 'Folder Trust': 'Folder Trust',
503
+ 'Tool Schema Compliance': 'Tool Schema Compliance',
504
+ // Settings enum options
505
+ 'Auto (detect from system)': 'Auto (detect from system)',
506
+ 'Auto (detect terminal theme)': 'Auto (detect terminal theme)',
507
+ Auto: 'Auto',
508
+ Text: 'Text',
509
+ JSON: 'JSON',
510
+ Plan: 'Plan',
511
+ 'Ask permissions': 'Ask permissions',
512
+ 'Auto Edit': 'Auto Edit',
513
+ YOLO: 'YOLO',
514
+ 'toggle vim mode on/off': 'toggle vim mode on/off',
515
+ 'Show usage statistics dashboard.': 'Show usage statistics dashboard.',
516
+ 'Show model-specific usage statistics.':
517
+ 'Show model-specific usage statistics.',
518
+ 'Show tool-specific usage statistics.':
519
+ 'Show tool-specific usage statistics.',
520
+ 'exit the cli': 'exit the cli',
521
+ 'Manage workspace directories': 'Manage workspace directories',
522
+ 'Add directories to the workspace. Use comma to separate multiple paths':
523
+ 'Add directories to the workspace. Use comma to separate multiple paths',
524
+ 'Show all directories in the workspace':
525
+ 'Show all directories in the workspace',
526
+ 'set external editor preference': 'set external editor preference',
527
+ 'Select Editor': 'Select Editor',
528
+ 'Editor Preference': 'Editor Preference',
529
+ 'These editors are currently supported. Please note that some editors cannot be used in sandbox mode.':
530
+ 'These editors are currently supported. Please note that some editors cannot be used in sandbox mode.',
531
+ 'Your preferred editor is:': 'Your preferred editor is:',
532
+ 'Manage extensions': 'Manage extensions',
533
+ 'Manage installed extensions': 'Manage installed extensions',
534
+ 'Disable an extension': 'Disable an extension',
535
+ 'Enable an extension': 'Enable an extension',
536
+ 'Install an extension from a git repo or local path':
537
+ 'Install an extension from a git repo or local path',
538
+ 'Uninstall an extension': 'Uninstall an extension',
539
+ 'No extensions installed.': 'No extensions installed.',
540
+ 'Extension "{{name}}" not found.': 'Extension "{{name}}" not found.',
541
+ 'No extensions to update.': 'No extensions to update.',
542
+ 'Usage: /extensions install <source>': 'Usage: /extensions install <source>',
543
+ 'Installing extension from "{{source}}"...':
544
+ 'Installing extension from "{{source}}"...',
545
+ 'Extension "{{name}}" installed successfully.':
546
+ 'Extension "{{name}}" installed successfully.',
547
+ 'Failed to install extension from "{{source}}": {{error}}':
548
+ 'Failed to install extension from "{{source}}": {{error}}',
549
+ 'Do you want to continue? [Y/n]: ': 'Do you want to continue? [Y/n]: ',
550
+ 'Do you want to continue?': 'Do you want to continue?',
551
+ 'Installing extension "{{name}}".': 'Installing extension "{{name}}".',
552
+ '**Extensions may introduce unexpected behavior. Ensure you have investigated the extension source and trust the author.**':
553
+ '**Extensions may introduce unexpected behavior. Ensure you have investigated the extension source and trust the author.**',
554
+ 'This extension will run the following MCP servers:':
555
+ 'This extension will run the following MCP servers:',
556
+ local: 'local',
557
+ remote: 'remote',
558
+ 'This extension will add the following commands: {{commands}}.':
559
+ 'This extension will add the following commands: {{commands}}.',
560
+ 'This extension will append info to your QWEN.md context using {{fileName}}':
561
+ 'This extension will append info to your QWEN.md context using {{fileName}}',
562
+ 'This extension will install the following skills:':
563
+ 'This extension will install the following skills:',
564
+ 'This extension will install the following subagents:':
565
+ 'This extension will install the following subagents:',
566
+ 'Installation cancelled for "{{name}}".':
567
+ 'Installation cancelled for "{{name}}".',
568
+ 'You are installing an extension from {{originSource}}. Some features may not work perfectly with Qwen Code.':
569
+ 'You are installing an extension from {{originSource}}. Some features may not work perfectly with Qwen Code.',
570
+ '--ref and --auto-update are not applicable for marketplace extensions.':
571
+ '--ref and --auto-update are not applicable for marketplace extensions.',
572
+ 'Extension "{{name}}" installed successfully and enabled.':
573
+ 'Extension "{{name}}" installed successfully and enabled.',
574
+ 'The github URL, local path, or marketplace source (marketplace-url:plugin-name) of the extension to install.':
575
+ 'The github URL, local path, or marketplace source (marketplace-url:plugin-name) of the extension to install.',
576
+ 'The git ref to install from.': 'The git ref to install from.',
577
+ 'Enable auto-update for this extension.':
578
+ 'Enable auto-update for this extension.',
579
+ 'Enable pre-release versions for this extension.':
580
+ 'Enable pre-release versions for this extension.',
581
+ 'Acknowledge the security risks of installing an extension and skip the confirmation prompt.':
582
+ 'Acknowledge the security risks of installing an extension and skip the confirmation prompt.',
583
+ 'The source argument must be provided.':
584
+ 'The source argument must be provided.',
585
+ 'Extension "{{name}}" successfully uninstalled.':
586
+ 'Extension "{{name}}" successfully uninstalled.',
587
+ 'Uninstalls an extension.': 'Uninstalls an extension.',
588
+ 'The name or source path of the extension to uninstall.':
589
+ 'The name or source path of the extension to uninstall.',
590
+ 'Please include the name of the extension to uninstall as a positional argument.':
591
+ 'Please include the name of the extension to uninstall as a positional argument.',
592
+ 'Enables an extension.': 'Enables an extension.',
593
+ 'The name of the extension to enable.':
594
+ 'The name of the extension to enable.',
595
+ 'The scope to enable the extenison in. If not set, will be enabled in all scopes.':
596
+ 'The scope to enable the extenison in. If not set, will be enabled in all scopes.',
597
+ 'Extension "{{name}}" successfully enabled for scope "{{scope}}".':
598
+ 'Extension "{{name}}" successfully enabled for scope "{{scope}}".',
599
+ 'Extension "{{name}}" successfully enabled in all scopes.':
600
+ 'Extension "{{name}}" successfully enabled in all scopes.',
601
+ 'Invalid scope: {{scope}}. Please use one of {{scopes}}.':
602
+ 'Invalid scope: {{scope}}. Please use one of {{scopes}}.',
603
+ 'Disables an extension.': 'Disables an extension.',
604
+ 'The name of the extension to disable.':
605
+ 'The name of the extension to disable.',
606
+ 'The scope to disable the extenison in.':
607
+ 'The scope to disable the extenison in.',
608
+ 'Extension "{{name}}" successfully disabled for scope "{{scope}}".':
609
+ 'Extension "{{name}}" successfully disabled for scope "{{scope}}".',
610
+ 'Extension "{{name}}" successfully updated: {{oldVersion}} → {{newVersion}}.':
611
+ 'Extension "{{name}}" successfully updated: {{oldVersion}} → {{newVersion}}.',
612
+ 'Unable to install extension "{{name}}" due to missing install metadata':
613
+ 'Unable to install extension "{{name}}" due to missing install metadata',
614
+ 'Extension "{{name}}" is already up to date.':
615
+ 'Extension "{{name}}" is already up to date.',
616
+ 'Updates all extensions or a named extension to the latest version.':
617
+ 'Updates all extensions or a named extension to the latest version.',
618
+ 'Update all extensions.': 'Update all extensions.',
619
+ 'The name of the extension to update.':
620
+ 'The name of the extension to update.',
621
+ 'Either an extension name or --all must be provided':
622
+ 'Either an extension name or --all must be provided',
623
+ 'Lists installed extensions.': 'Lists installed extensions.',
624
+ 'Path:': 'Path:',
625
+ 'Source:': 'Source:',
626
+ 'Type:': 'Type:',
627
+ 'Ref:': 'Ref:',
628
+ 'Release tag:': 'Release tag:',
629
+ 'Enabled (User):': 'Enabled (User):',
630
+ 'Enabled (Workspace):': 'Enabled (Workspace):',
631
+ 'Context files:': 'Context files:',
632
+ 'Skills:': 'Skills:',
633
+ 'Agents:': 'Agents:',
634
+ 'MCP servers:': 'MCP servers:',
635
+ 'Link extension failed to install.': 'Link extension failed to install.',
636
+ 'Extension "{{name}}" linked successfully and enabled.':
637
+ 'Extension "{{name}}" linked successfully and enabled.',
638
+ 'Links an extension from a local path. Updates made to the local path will always be reflected.':
639
+ 'Links an extension from a local path. Updates made to the local path will always be reflected.',
640
+ 'The name of the extension to link.': 'The name of the extension to link.',
641
+ 'Set a specific setting for an extension.':
642
+ 'Set a specific setting for an extension.',
643
+ 'Name of the extension to configure.': 'Name of the extension to configure.',
644
+ 'The setting to configure (name or env var).':
645
+ 'The setting to configure (name or env var).',
646
+ 'The scope to set the setting in.': 'The scope to set the setting in.',
647
+ 'List all settings for an extension.': 'List all settings for an extension.',
648
+ 'Name of the extension.': 'Name of the extension.',
649
+ 'Extension "{{name}}" has no settings to configure.':
650
+ 'Extension "{{name}}" has no settings to configure.',
651
+ 'Settings for "{{name}}":': 'Settings for "{{name}}":',
652
+ '(workspace)': '(workspace)',
653
+ '(user)': '(user)',
654
+ '[not set]': '[not set]',
655
+ '[value stored in keychain]': '[value stored in keychain]',
656
+ 'Value:': 'Value:',
657
+ 'Manage extension settings': 'Manage extension settings',
658
+ 'Manage extension settings.': 'Manage extension settings.',
659
+ 'You need to specify a command (set or list).':
660
+ 'You need to specify a command (set or list).',
661
+ // ============================================================================
662
+ // Plugin Choice / Marketplace
663
+ // ============================================================================
664
+ 'No plugins available in this marketplace.':
665
+ 'No plugins available in this marketplace.',
666
+ 'Select a plugin to install from marketplace "{{name}}":':
667
+ 'Select a plugin to install from marketplace "{{name}}":',
668
+ 'Plugin selection cancelled.': 'Plugin selection cancelled.',
669
+ 'Select a plugin from "{{name}}"': 'Select a plugin from "{{name}}"',
670
+ 'Use ↑↓ or j/k to navigate, Enter to select, Escape to cancel':
671
+ 'Use ↑↓ or j/k to navigate, Enter to select, Escape to cancel',
672
+ '{{count}} more above': '{{count}} more above',
673
+ '{{count}} more below': '{{count}} more below',
674
+ 'manage IDE integration': 'manage IDE integration',
675
+ 'check status of IDE integration': 'check status of IDE integration',
676
+ 'install required IDE companion for {{ideName}}':
677
+ 'install required IDE companion for {{ideName}}',
678
+ 'enable IDE integration': 'enable IDE integration',
679
+ 'disable IDE integration': 'disable IDE integration',
680
+ '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.':
681
+ '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.',
682
+ 'Set up GitHub Actions': 'Set up GitHub Actions',
683
+ 'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)':
684
+ 'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)',
685
+ 'Please restart your terminal for the changes to take effect.':
686
+ 'Please restart your terminal for the changes to take effect.',
687
+ 'Failed to configure terminal: {{error}}':
688
+ 'Failed to configure terminal: {{error}}',
689
+ 'Could not determine {{terminalName}} config path on Windows: APPDATA environment variable is not set.':
690
+ 'Could not determine {{terminalName}} config path on Windows: APPDATA environment variable is not set.',
691
+ '{{terminalName}} keybindings.json exists but is not a valid JSON array. Please fix the file manually or delete it to allow automatic configuration.':
692
+ '{{terminalName}} keybindings.json exists but is not a valid JSON array. Please fix the file manually or delete it to allow automatic configuration.',
693
+ 'File: {{file}}': 'File: {{file}}',
694
+ 'Failed to parse {{terminalName}} keybindings.json. The file contains invalid JSON. Please fix the file manually or delete it to allow automatic configuration.':
695
+ 'Failed to parse {{terminalName}} keybindings.json. The file contains invalid JSON. Please fix the file manually or delete it to allow automatic configuration.',
696
+ 'Error: {{error}}': 'Error: {{error}}',
697
+ 'Shift+Enter binding already exists': 'Shift+Enter binding already exists',
698
+ 'Ctrl+Enter binding already exists': 'Ctrl+Enter binding already exists',
699
+ 'Existing keybindings detected. Will not modify to avoid conflicts.':
700
+ 'Existing keybindings detected. Will not modify to avoid conflicts.',
701
+ 'Please check and modify manually if needed: {{file}}':
702
+ 'Please check and modify manually if needed: {{file}}',
703
+ 'Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.':
704
+ 'Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.',
705
+ 'Modified: {{file}}': 'Modified: {{file}}',
706
+ '{{terminalName}} keybindings already configured.':
707
+ '{{terminalName}} keybindings already configured.',
708
+ 'Failed to configure {{terminalName}}.':
709
+ 'Failed to configure {{terminalName}}.',
710
+ 'Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).':
711
+ 'Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).',
712
+ // ============================================================================
713
+ // Commands - Hooks
714
+ // ============================================================================
715
+ 'Manage Tulex Code hooks': 'Manage Tulex Code hooks',
716
+ 'List all configured hooks': 'List all configured hooks',
717
+ // Hooks - Dialog
718
+ Hooks: 'Hooks',
719
+ 'Loading hooks...': 'Loading hooks...',
720
+ 'Error loading hooks:': 'Error loading hooks:',
721
+ 'Press Escape to close': 'Press Escape to close',
722
+ 'Press Escape, Ctrl+C, or Ctrl+D to cancel':
723
+ 'Press Escape, Ctrl+C, or Ctrl+D to cancel',
724
+ 'Press Space, Enter, or Escape to dismiss':
725
+ 'Press Space, Enter, or Escape to dismiss',
726
+ 'No hook selected': 'No hook selected',
727
+ // Hooks - List Step
728
+ 'No hook events found.': 'No hook events found.',
729
+ '{{count}} hook configured': '{{count}} hook configured',
730
+ '{{count}} hooks configured': '{{count}} hooks configured',
731
+ 'This menu is read-only. To add or modify hooks, edit settings.json directly or ask Qwen Code.':
732
+ 'This menu is read-only. To add or modify hooks, edit settings.json directly or ask Qwen Code.',
733
+ 'Enter to select · Esc to cancel': 'Enter to select · Esc to cancel',
734
+ // Hooks - Detail Step
735
+ 'Exit codes:': 'Exit codes:',
736
+ 'Configured hooks:': 'Configured hooks:',
737
+ 'No hooks configured for this event.': 'No hooks configured for this event.',
738
+ 'To add hooks, edit settings.json directly or ask Qwen.':
739
+ 'To add hooks, edit settings.json directly or ask Qwen.',
740
+ 'Enter to select · Esc to go back': 'Enter to select · Esc to go back',
741
+ // Hooks - Config Detail Step
742
+ 'Hook details': 'Hook details',
743
+ 'Event:': 'Event:',
744
+ 'Extension:': 'Extension:',
745
+ 'Desc:': 'Desc:',
746
+ 'No hook config selected': 'No hook config selected',
747
+ 'To modify or remove this hook, edit settings.json directly or ask Qwen to help.':
748
+ 'To modify or remove this hook, edit settings.json directly or ask Qwen to help.',
749
+ // Hooks - Disabled Step
750
+ 'Hook Configuration - Disabled': 'Hook Configuration - Disabled',
751
+ 'All hooks are currently disabled. You have {{count}} that are not running.':
752
+ 'All hooks are currently disabled. You have {{count}} that are not running.',
753
+ '{{count}} configured hook': '{{count}} configured hook',
754
+ '{{count}} configured hooks': '{{count}} configured hooks',
755
+ 'When hooks are disabled:': 'When hooks are disabled:',
756
+ 'No hook commands will execute': 'No hook commands will execute',
757
+ 'StatusLine will not be displayed': 'StatusLine will not be displayed',
758
+ 'Tool operations will proceed without hook validation':
759
+ 'Tool operations will proceed without hook validation',
760
+ 'To re-enable hooks, remove "disableAllHooks" from settings.json or ask Qwen Code.':
761
+ 'To re-enable hooks, remove "disableAllHooks" from settings.json or ask Qwen Code.',
762
+ // Hooks - Source
763
+ Project: 'Project',
764
+ User: 'User',
765
+ Skill: 'Skill',
766
+ System: 'System',
767
+ Extension: 'Extension',
768
+ 'Local Settings': 'Local Settings',
769
+ 'User Settings': 'User Settings',
770
+ 'System Settings': 'System Settings',
771
+ Extensions: 'Extensions',
772
+ 'Session (temporary)': 'Session (temporary)',
773
+ // Hooks - Event Descriptions (short)
774
+ 'Before tool execution': 'Before tool execution',
775
+ 'After tool execution': 'After tool execution',
776
+ 'After tool execution fails': 'After tool execution fails',
777
+ 'When notifications are sent': 'When notifications are sent',
778
+ 'When the user submits a prompt': 'When the user submits a prompt',
779
+ 'When a slash command expands into a prompt':
780
+ 'When a slash command expands into a prompt',
781
+ 'When a new session is started': 'When a new session is started',
782
+ 'Right before Tulex Code concludes its response':
783
+ 'Right before Tulex Code concludes its response',
784
+ 'When a subagent (Agent tool call) is started':
785
+ 'When a subagent (Agent tool call) is started',
786
+ 'Right before a subagent concludes its response':
787
+ 'Right before a subagent concludes its response',
788
+ 'Before conversation compaction': 'Before conversation compaction',
789
+ 'When a session is ending': 'When a session is ending',
790
+ 'When a permission dialog is displayed':
791
+ 'When a permission dialog is displayed',
792
+ 'When a new todo item is created': 'When a new todo item is created',
793
+ 'When a todo item is marked as completed':
794
+ 'When a todo item is marked as completed',
795
+ // Hooks - Event Descriptions (detailed)
796
+ 'Input to command is JSON of tool call arguments.':
797
+ 'Input to command is JSON of tool call arguments.',
798
+ 'Input to command is JSON with fields "inputs" (tool call arguments) and "response" (tool call response).':
799
+ 'Input to command is JSON with fields "inputs" (tool call arguments) and "response" (tool call response).',
800
+ 'Input to command is JSON with tool_name, tool_input, tool_use_id, error, error_type, is_interrupt, and is_timeout.':
801
+ 'Input to command is JSON with tool_name, tool_input, tool_use_id, error, error_type, is_interrupt, and is_timeout.',
802
+ 'Input to command is JSON with notification message and type.':
803
+ 'Input to command is JSON with notification message and type.',
804
+ 'Input to command is JSON with original user prompt text.':
805
+ 'Input to command is JSON with original user prompt text.',
806
+ 'Input to command is JSON with command_name, command_args, and expanded prompt text.':
807
+ 'Input to command is JSON with command_name, command_args, and expanded prompt text.',
808
+ 'Input to command is JSON with session start source.':
809
+ 'Input to command is JSON with session start source.',
810
+ 'Input to command is JSON with session end reason.':
811
+ 'Input to command is JSON with session end reason.',
812
+ 'Input to command is JSON with agent_id and agent_type.':
813
+ 'Input to command is JSON with agent_id and agent_type.',
814
+ 'Input to command is JSON with agent_id, agent_type, and agent_transcript_path.':
815
+ 'Input to command is JSON with agent_id, agent_type, and agent_transcript_path.',
816
+ 'Input to command is JSON with compaction details.':
817
+ 'Input to command is JSON with compaction details.',
818
+ 'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
819
+ 'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.',
820
+ 'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
821
+ 'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.',
822
+ 'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
823
+ 'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.',
824
+ // Hooks - Exit Code Descriptions
825
+ 'stdout/stderr not shown': 'stdout/stderr not shown',
826
+ 'show stderr to model and continue conversation':
827
+ 'show stderr to model and continue conversation',
828
+ 'show stderr to user only': 'show stderr to user only',
829
+ 'stdout shown in transcript mode (ctrl+o)':
830
+ 'stdout shown in transcript mode (ctrl+o)',
831
+ 'show stderr to model immediately': 'show stderr to model immediately',
832
+ 'show stderr to user only but continue with tool call':
833
+ 'show stderr to user only but continue with tool call',
834
+ 'block processing, erase original prompt, and show stderr to user only':
835
+ 'block processing, erase original prompt, and show stderr to user only',
836
+ 'block expanded prompt submission and show stderr to user only':
837
+ 'block expanded prompt submission and show stderr to user only',
838
+ 'stdout shown to Tulex': 'stdout shown to Tulex',
839
+ 'show stderr to user only (blocking errors ignored)':
840
+ 'show stderr to user only (blocking errors ignored)',
841
+ 'command completes successfully': 'command completes successfully',
842
+ 'stdout shown to subagent': 'stdout shown to subagent',
843
+ 'show stderr to subagent and continue having it run':
844
+ 'show stderr to subagent and continue having it run',
845
+ 'stdout appended as custom compact instructions':
846
+ 'stdout appended as custom compact instructions',
847
+ 'block compaction': 'block compaction',
848
+ 'show stderr to user only but continue with compaction':
849
+ 'show stderr to user only but continue with compaction',
850
+ 'use hook decision if provided': 'use hook decision if provided',
851
+ 'allow todo creation': 'allow todo creation',
852
+ 'block todo creation and show reason to model':
853
+ 'block todo creation and show reason to model',
854
+ 'allow todo completion': 'allow todo completion',
855
+ 'block todo completion and show reason to model':
856
+ 'block todo completion and show reason to model',
857
+ // Hooks - Messages
858
+ 'Config not loaded.': 'Config not loaded.',
859
+ 'Hooks are not enabled. Enable hooks in settings to use this feature.':
860
+ 'Hooks are not enabled. Enable hooks in settings to use this feature.',
861
+ // ============================================================================
862
+ // Commands - Session Export
863
+ // ============================================================================
864
+ 'Export current session message history to a file':
865
+ 'Export current session message history to a file',
866
+ 'Export session to HTML format': 'Export session to HTML format',
867
+ 'Export session to JSON format': 'Export session to JSON format',
868
+ 'Export session to JSONL format (one message per line)':
869
+ 'Export session to JSONL format (one message per line)',
870
+ 'Export session to markdown format': 'Export session to markdown format',
871
+
872
+ // ============================================================================
873
+ // Commands - Insights
874
+ // ============================================================================
875
+ 'generate personalized programming insights from your chat history':
876
+ 'generate personalized programming insights from your chat history',
877
+
878
+ // ============================================================================
879
+ // Commands - Session History
880
+ // ============================================================================
881
+ 'Resume a previous session': 'Resume a previous session',
882
+ 'Fork the current conversation into a new session':
883
+ 'Fork the current conversation into a new session',
884
+ 'Spawn a background agent that inherits the full conversation':
885
+ 'Spawn a background agent that inherits the full conversation',
886
+ 'Please provide a directive. Usage: /fork <directive>':
887
+ 'Please provide a directive. Usage: /fork <directive>',
888
+ 'Cannot fork while a response or tool call is in progress. Wait for it to finish or resolve the pending tool call.':
889
+ 'Cannot fork while a response or tool call is in progress. Wait for it to finish or resolve the pending tool call.',
890
+ 'Cannot fork before the first conversation turn.':
891
+ 'Cannot fork before the first conversation turn.',
892
+ 'The /fork command requires the fork feature gate. Set QWEN_CODE_ENABLE_FORK_SUBAGENT=1 to enable it.':
893
+ 'The /fork command requires the fork feature gate. Set QWEN_CODE_ENABLE_FORK_SUBAGENT=1 to enable it.',
894
+ 'The agent tool is unavailable; cannot fork.':
895
+ 'The agent tool is unavailable; cannot fork.',
896
+ 'Failed to launch fork: {{error}}': 'Failed to launch fork: {{error}}',
897
+ 'the background agent could not be started.':
898
+ 'the background agent could not be started.',
899
+ 'User launched a background fork via /fork: {{directive}}':
900
+ 'User launched a background fork via /fork: {{directive}}',
901
+ 'Forked into a background agent. It inherits this conversation and runs without blocking — track it in the background tasks panel; it reports back when done.':
902
+ 'Forked into a background agent. It inherits this conversation and runs without blocking — track it in the background tasks panel; it reports back when done.',
903
+ 'Cannot branch while a response or tool call is in progress. Wait for it to finish or resolve the pending tool call.':
904
+ 'Cannot branch while a response or tool call is in progress. Wait for it to finish or resolve the pending tool call.',
905
+ 'No conversation to branch.': 'No conversation to branch.',
906
+ 'Restore a tool call. This will reset the conversation and file history to the state it was in when the tool call was suggested':
907
+ 'Restore a tool call. This will reset the conversation and file history to the state it was in when the tool call was suggested',
908
+ 'Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.':
909
+ 'Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.',
910
+ 'Terminal "{{terminal}}" is not supported yet.':
911
+ 'Terminal "{{terminal}}" is not supported yet.',
912
+
913
+ // ============================================================================
914
+ // Commands - Language
915
+ // ============================================================================
916
+ 'Invalid language. Available: {{options}}':
917
+ 'Invalid language. Available: {{options}}',
918
+ 'Language subcommands do not accept additional arguments.':
919
+ 'Language subcommands do not accept additional arguments.',
920
+ 'Current UI language: {{lang}}': 'Current UI language: {{lang}}',
921
+ 'Current LLM output language: {{lang}}':
922
+ 'Current LLM output language: {{lang}}',
923
+ 'Set UI language': 'Set UI language',
924
+ 'Set LLM output language': 'Set LLM output language',
925
+ 'Usage: /language ui [{{options}}]': 'Usage: /language ui [{{options}}]',
926
+ 'Usage: /language output <language>': 'Usage: /language output <language>',
927
+ 'Example: /language output 中文': 'Example: /language output 中文',
928
+ 'Example: /language output English': 'Example: /language output English',
929
+ 'Example: /language output 日本語': 'Example: /language output 日本語',
930
+ 'UI language changed to {{lang}}': 'UI language changed to {{lang}}',
931
+ 'LLM output language set to {{lang}}': 'LLM output language set to {{lang}}',
932
+ 'Please restart the application for the changes to take effect.':
933
+ 'Please restart the application for the changes to take effect.',
934
+ 'Failed to generate LLM output language rule file: {{error}}':
935
+ 'Failed to generate LLM output language rule file: {{error}}',
936
+ 'Invalid command. Available subcommands:':
937
+ 'Invalid command. Available subcommands:',
938
+ 'Available subcommands:': 'Available subcommands:',
939
+ 'To request additional UI language packs, please open an issue on GitHub.':
940
+ 'To request additional UI language packs, please open an issue on GitHub.',
941
+ 'Available options:': 'Available options:',
942
+ 'Set UI language to {{name}}': 'Set UI language to {{name}}',
943
+
944
+ // ============================================================================
945
+ // Commands - Approval Mode
946
+ // ============================================================================
947
+ 'Tool Approval Mode': 'Tool Approval Mode',
948
+ 'Analyze only, do not modify files or execute commands':
949
+ 'Analyze only, do not modify files or execute commands',
950
+ 'Require approval for file edits or shell commands':
951
+ 'Require approval for file edits or shell commands',
952
+ 'Automatically approve file edits': 'Automatically approve file edits',
953
+ 'Use classifier to automatically approve safe tool calls':
954
+ 'Use classifier to automatically approve safe tool calls',
955
+ 'Automatically approve all tools': 'Automatically approve all tools',
956
+ 'Workspace approval mode exists and takes priority. User-level change will have no effect.':
957
+ 'Workspace approval mode exists and takes priority. User-level change will have no effect.',
958
+ 'Apply To': 'Apply To',
959
+ 'Workspace Settings': 'Workspace Settings',
960
+ 'Open auto-memory folder': 'Open auto-memory folder',
961
+ 'Auto-memory: {{status}}': 'Auto-memory: {{status}}',
962
+ 'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
963
+ 'Auto-dream: {{status}} · {{lastDream}} · /dream to run',
964
+ 'Auto-skill: {{status}}': 'Auto-skill: {{status}}',
965
+ never: 'never',
966
+ on: 'on',
967
+ off: 'off',
968
+ 'Remove matching entries from managed auto-memory.':
969
+ 'Remove matching entries from managed auto-memory.',
970
+ 'Usage: /forget <memory text to remove>':
971
+ 'Usage: /forget <memory text to remove>',
972
+ 'No managed auto-memory entries matched: {{query}}':
973
+ 'No managed auto-memory entries matched: {{query}}',
974
+ 'Consolidate managed auto-memory topic files.':
975
+ 'Consolidate managed auto-memory topic files.',
976
+ 'Open MCP management dialog': 'Open MCP management dialog',
977
+ 'Could not retrieve tool registry.': 'Could not retrieve tool registry.',
978
+ "Successfully authenticated and refreshed tools for '{{name}}'.":
979
+ "Successfully authenticated and refreshed tools for '{{name}}'.",
980
+ "Re-discovering tools from '{{name}}'...":
981
+ "Re-discovering tools from '{{name}}'...",
982
+ "Discovered {{count}} tool(s) from '{{name}}'.":
983
+ "Discovered {{count}} tool(s) from '{{name}}'.",
984
+ 'Authentication complete. Returning to server details...':
985
+ 'Authentication complete. Returning to server details...',
986
+ 'Authentication successful.': 'Authentication successful.',
987
+ // ============================================================================
988
+ // MCP Management Dialog
989
+ // ============================================================================
990
+ 'Manage MCP servers': 'Manage MCP servers',
991
+ 'Server Detail': 'Server Detail',
992
+ Tools: 'Tools',
993
+ 'Tool Detail': 'Tool Detail',
994
+ 'Loading...': 'Loading...',
995
+ 'Unknown step': 'Unknown step',
996
+ 'Esc to back': 'Esc to back',
997
+ '↑↓ to navigate · Enter to select · Esc to close':
998
+ '↑↓ to navigate · Enter to select · Esc to close',
999
+ '↑↓ to navigate · Enter to select · Esc to back':
1000
+ '↑↓ to navigate · Enter to select · Esc to back',
1001
+ '↑↓ to navigate · Enter to confirm · Esc to back':
1002
+ '↑↓ to navigate · Enter to confirm · Esc to back',
1003
+ 'User Settings (global)': 'User Settings (global)',
1004
+ 'Workspace Settings (project-specific)':
1005
+ 'Workspace Settings (project-specific)',
1006
+ 'Disable server:': 'Disable server:',
1007
+ 'Select where to add the server to the exclude list:':
1008
+ 'Select where to add the server to the exclude list:',
1009
+ 'Press Enter to confirm, Esc to cancel':
1010
+ 'Press Enter to confirm, Esc to cancel',
1011
+ 'View tools': 'View tools',
1012
+ Reconnect: 'Reconnect',
1013
+ Enable: 'Enable',
1014
+ Disable: 'Disable',
1015
+ Authenticate: 'Authenticate',
1016
+ 'Re-authenticate': 'Re-authenticate',
1017
+ 'Clear Authentication': 'Clear Authentication',
1018
+ 'Server:': 'Server:',
1019
+ 'Command:': 'Command:',
1020
+ 'Working Directory:': 'Working Directory:',
1021
+ 'No server selected': 'No server selected',
1022
+ prompts: 'prompts',
1023
+ 'Error:': 'Error:',
1024
+ tool: 'tool',
1025
+ tools: 'tools',
1026
+ connected: 'connected',
1027
+ connecting: 'connecting',
1028
+ disconnected: 'disconnected',
1029
+
1030
+ // MCP Server List
1031
+ 'User MCPs': 'User MCPs',
1032
+ 'Project MCPs': 'Project MCPs',
1033
+ 'Extension MCPs': 'Extension MCPs',
1034
+ server: 'server',
1035
+ servers: 'servers',
1036
+ 'Add MCP servers to your settings to get started.':
1037
+ 'Add MCP servers to your settings to get started.',
1038
+ 'Run qwen --debug to see error logs': 'Run qwen --debug to see error logs',
1039
+
1040
+ // MCP OAuth Authentication
1041
+ 'OAuth Authentication': 'OAuth Authentication',
1042
+ 'Authenticating... Please complete the login in your browser.':
1043
+ 'Authenticating... Please complete the login in your browser.',
1044
+ 'Press c to copy the authorization URL to your clipboard.':
1045
+ 'Press c to copy the authorization URL to your clipboard.',
1046
+ 'Copy request sent to your terminal. If paste is empty, copy the URL above manually.':
1047
+ 'Copy request sent to your terminal. If paste is empty, copy the URL above manually.',
1048
+ 'Cannot write to terminal — copy the URL above manually.':
1049
+ 'Cannot write to terminal — copy the URL above manually.',
1050
+ // MCP Tool List
1051
+ 'No tools available for this server.': 'No tools available for this server.',
1052
+ destructive: 'destructive',
1053
+ 'read-only': 'read-only',
1054
+ 'open-world': 'open-world',
1055
+ idempotent: 'idempotent',
1056
+ 'Tools for {{serverName}}': 'Tools for {{serverName}}',
1057
+ '{{current}}/{{total}}': '{{current}}/{{total}}',
1058
+
1059
+ // MCP Tool Detail
1060
+ required: 'required',
1061
+ Parameters: 'Parameters',
1062
+ 'No tool selected': 'No tool selected',
1063
+ Server: 'Server',
1064
+
1065
+ // Invalid tool related translations
1066
+ '{{count}} invalid tools': '{{count}} invalid tools',
1067
+ invalid: 'invalid',
1068
+ 'invalid: {{reason}}': 'invalid: {{reason}}',
1069
+ 'missing name': 'missing name',
1070
+ 'missing description': 'missing description',
1071
+ '(unnamed)': '(unnamed)',
1072
+ 'Warning: This tool cannot be called by the LLM':
1073
+ 'Warning: This tool cannot be called by the LLM',
1074
+ Reason: 'Reason',
1075
+ 'Tools must have both name and description to be used by the LLM.':
1076
+ 'Tools must have both name and description to be used by the LLM.',
1077
+ // ===========================================================
1078
+ // Commands - Summary
1079
+ // ============================================================================
1080
+ 'Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md':
1081
+ 'Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md',
1082
+ 'No chat client available to generate summary.':
1083
+ 'No chat client available to generate summary.',
1084
+ 'Already generating summary, wait for previous request to complete':
1085
+ 'Already generating summary, wait for previous request to complete',
1086
+ 'No conversation found to summarize.': 'No conversation found to summarize.',
1087
+ 'Failed to generate project context summary: {{error}}':
1088
+ 'Failed to generate project context summary: {{error}}',
1089
+ 'Saved project summary to {{filePathForDisplay}}.':
1090
+ 'Saved project summary to {{filePathForDisplay}}.',
1091
+ 'Saving project summary...': 'Saving project summary...',
1092
+ 'Generating project summary...': 'Generating project summary...',
1093
+ 'Processing summary...': 'Processing summary...',
1094
+ 'Project summary generated and saved successfully!':
1095
+ 'Project summary generated and saved successfully!',
1096
+ 'Saved to: {{filePath}}': 'Saved to: {{filePath}}',
1097
+ 'Failed to generate summary - no text content received from LLM response':
1098
+ 'Failed to generate summary - no text content received from LLM response',
1099
+
1100
+ // ============================================================================
1101
+ // Commands - Model
1102
+ // ============================================================================
1103
+ 'Switch the model for this session (--fast for suggestion model, [model-id] to switch immediately).':
1104
+ 'Switch the model for this session (--fast for suggestion model, [model-id] to switch immediately).',
1105
+ 'Set a lighter model for prompt suggestions and speculative execution':
1106
+ 'Set a lighter model for prompt suggestions and speculative execution',
1107
+ 'Content generator configuration not available.':
1108
+ 'Content generator configuration not available.',
1109
+ 'Authentication type not available.': 'Authentication type not available.',
1110
+ 'No models available for the current authentication type ({{authType}}).':
1111
+ 'No models available for the current authentication type ({{authType}}).',
1112
+ // Needs translation
1113
+ ' (not in model registry)': ' (not in model registry)',
1114
+
1115
+ // ============================================================================
1116
+ // Commands - Clear
1117
+ // ============================================================================
1118
+ 'Starting a new session, resetting chat, and clearing terminal.':
1119
+ 'Starting a new session, resetting chat, and clearing terminal.',
1120
+ 'Starting a new session and clearing.':
1121
+ 'Starting a new session and clearing.',
1122
+
1123
+ // ============================================================================
1124
+ // Commands - Compress
1125
+ // ============================================================================
1126
+ 'Already compressing, wait for previous request to complete':
1127
+ 'Already compressing, wait for previous request to complete',
1128
+ 'Failed to compress chat history.': 'Failed to compress chat history.',
1129
+ 'Failed to compress chat history: {{error}}':
1130
+ 'Failed to compress chat history: {{error}}',
1131
+ 'Compressing chat history': 'Compressing chat history',
1132
+ 'Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.':
1133
+ 'Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.',
1134
+ 'Compression was not beneficial for this history size.':
1135
+ 'Compression was not beneficial for this history size.',
1136
+ 'Chat history compression did not reduce size. This may indicate issues with the compression prompt.':
1137
+ 'Chat history compression did not reduce size. This may indicate issues with the compression prompt.',
1138
+ 'Could not compress chat history due to a token counting error.':
1139
+ 'Could not compress chat history due to a token counting error.',
1140
+ // ============================================================================
1141
+ // Commands - Directory
1142
+ // ============================================================================
1143
+ 'Configuration is not available.': 'Configuration is not available.',
1144
+ 'Please provide at least one path to add.':
1145
+ 'Please provide at least one path to add.',
1146
+ 'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.':
1147
+ 'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.',
1148
+ "Error adding '{{path}}': {{error}}": "Error adding '{{path}}': {{error}}",
1149
+ 'Successfully added Tulex.md files from the following directories if there are:\n- {{directories}}':
1150
+ 'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}',
1151
+ 'Error refreshing memory: {{error}}': 'Error refreshing memory: {{error}}',
1152
+ 'Successfully added directories:\n- {{directories}}':
1153
+ 'Successfully added directories:\n- {{directories}}',
1154
+ 'Current workspace directories:\n{{directories}}':
1155
+ 'Current workspace directories:\n{{directories}}',
1156
+
1157
+ // ============================================================================
1158
+ // Commands - Docs
1159
+ // ============================================================================
1160
+ 'Please open the following URL in your browser to view the documentation:\n{{url}}':
1161
+ 'Please open the following URL in your browser to view the documentation:\n{{url}}',
1162
+ 'Opening documentation in your browser: {{url}}':
1163
+ 'Opening documentation in your browser: {{url}}',
1164
+
1165
+ // ============================================================================
1166
+ // Dialogs - Tool Confirmation
1167
+ // ============================================================================
1168
+ 'Do you want to proceed?': 'Do you want to proceed?',
1169
+ 'Yes, allow once': 'Yes, allow once',
1170
+ 'Allow always': 'Allow always',
1171
+ Yes: 'Yes',
1172
+ No: 'No',
1173
+ 'No (esc)': 'No (esc)',
1174
+ 'Modify in progress:': 'Modify in progress:',
1175
+ 'Save and close external editor to continue':
1176
+ 'Save and close external editor to continue',
1177
+ 'Apply this change?': 'Apply this change?',
1178
+ 'Yes, allow always': 'Yes, allow always',
1179
+ 'Modify with external editor': 'Modify with external editor',
1180
+ 'No, suggest changes (esc)': 'No, suggest changes (esc)',
1181
+ "Allow execution of: '{{command}}'?": "Allow execution of: '{{command}}'?",
1182
+ 'Always allow in this project': 'Always allow in this project',
1183
+ 'Always allow {{action}} in this project':
1184
+ 'Always allow {{action}} in this project',
1185
+ 'Always allow for this user': 'Always allow for this user',
1186
+ 'Always allow {{action}} for this user':
1187
+ 'Always allow {{action}} for this user',
1188
+ 'Yes, restore previous mode ({{mode}})':
1189
+ 'Yes, restore previous mode ({{mode}})',
1190
+ 'Yes, and auto-accept edits': 'Yes, and auto-accept edits',
1191
+ 'Yes, and manually approve edits': 'Yes, and manually approve edits',
1192
+ 'No, keep planning (esc)': 'No, keep planning (esc)',
1193
+ 'URLs to fetch:': 'URLs to fetch:',
1194
+ 'MCP Server: {{server}}': 'MCP Server: {{server}}',
1195
+ 'Tool: {{tool}}': 'Tool: {{tool}}',
1196
+ 'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?':
1197
+ 'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?',
1198
+ // ============================================================================
1199
+ // Dialogs - Shell Confirmation
1200
+ // ============================================================================
1201
+ 'Shell Command Execution': 'Shell Command Execution',
1202
+ 'A custom command wants to run the following shell commands:':
1203
+ 'A custom command wants to run the following shell commands:',
1204
+ // ============================================================================
1205
+ // Dialogs - Welcome Back
1206
+ // ============================================================================
1207
+ 'Current Plan:': 'Current Plan:',
1208
+ 'Progress: {{done}}/{{total}} tasks completed':
1209
+ 'Progress: {{done}}/{{total}} tasks completed',
1210
+ ', {{inProgress}} in progress': ', {{inProgress}} in progress',
1211
+ 'Pending Tasks:': 'Pending Tasks:',
1212
+ 'What would you like to do?': 'What would you like to do?',
1213
+ 'Choose how to proceed with your session:':
1214
+ 'Choose how to proceed with your session:',
1215
+ 'Start new chat session': 'Start new chat session',
1216
+ 'Continue previous conversation': 'Continue previous conversation',
1217
+ '👋 Welcome back! (Last updated: {{timeAgo}})':
1218
+ '👋 Welcome back! (Last updated: {{timeAgo}})',
1219
+ '🎯 Overall Goal:': '🎯 Overall Goal:',
1220
+ 'Connect a Provider': 'Connect a Provider',
1221
+ 'You must connect a provider to proceed. Press Ctrl+C again to exit.':
1222
+ 'You must connect a provider to proceed. Press Ctrl+C again to exit.',
1223
+ 'Terms of Services and Privacy Notice':
1224
+ 'Terms of Services and Privacy Notice',
1225
+ 'Tulex OAuth': 'Tulex OAuth',
1226
+ 'Discontinued — switch to Coding Plan or API Key':
1227
+ 'Discontinued — switch to Coding Plan or API Key',
1228
+ 'Tulex OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
1229
+ 'Tulex OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.',
1230
+ 'Tulex OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
1231
+ 'Tulex OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.',
1232
+ '\n⚠ Tulex OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
1233
+ '\n⚠ Tulex OAuth free tier was discontinued on 2026-04-15. Please select another option.\n',
1234
+ 'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
1235
+ 'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models',
1236
+ 'For teams \u00B7 Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
1237
+ 'For teams \u00B7 Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models',
1238
+ 'For individual developers \u00B7 Pay per model call \u00B7 5-hour/weekly quotas':
1239
+ 'For individual developers \u00B7 Pay per model call \u00B7 5-hour/weekly quotas',
1240
+ Subscribe: 'Subscribe',
1241
+ 'Paid subscription plans from Alibaba Cloud ModelStudio':
1242
+ 'Paid subscription plans from Alibaba Cloud ModelStudio',
1243
+ 'Select Subscription Plan': 'Select Subscription Plan',
1244
+ 'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
1245
+ 'Alibaba Cloud Token Plan': 'Alibaba Cloud Token Plan',
1246
+ 'Pay-as-you-go tokens \u00B7 Configure ModelStudio standard API key':
1247
+ 'Pay-as-you-go tokens \u00B7 Configure ModelStudio standard API key',
1248
+ 'For individuals \u00B7 Pay-as-you-go tokens \u00B7 Dedicated Token Plan endpoint':
1249
+ 'For individuals \u00B7 Pay-as-you-go tokens \u00B7 Dedicated Token Plan endpoint',
1250
+ 'For teams/companies \u00B7 Credits deducted by token usage \u00B7 Dedicated API key and base URL':
1251
+ 'For teams/companies \u00B7 Credits deducted by token usage \u00B7 Dedicated API key and base URL',
1252
+ 'Token Plan documentation': 'Token Plan documentation',
1253
+ 'Bring your own API key': 'Bring your own API key',
1254
+ 'Browser-based authentication with third-party providers (e.g. OpenRouter, ModelScope)':
1255
+ 'Browser-based authentication with third-party providers (e.g. OpenRouter, ModelScope)',
1256
+ 'Authentication is enforced to be {{enforcedType}}, but you are currently using {{currentType}}.':
1257
+ 'Authentication is enforced to be {{enforcedType}}, but you are currently using {{currentType}}.',
1258
+ 'Tulex OAuth Authentication': 'Tulex OAuth Authentication',
1259
+ 'Please visit this URL to authorize:': 'Please visit this URL to authorize:',
1260
+ 'Waiting for authorization': 'Waiting for authorization',
1261
+ 'Time remaining:': 'Time remaining:',
1262
+ 'Tulex OAuth Authentication Timeout': 'Tulex OAuth Authentication Timeout',
1263
+ 'OAuth token expired (over {{seconds}} seconds). Please select authentication method again.':
1264
+ 'OAuth token expired (over {{seconds}} seconds). Please select authentication method again.',
1265
+ 'Press any key to return to authentication type selection.':
1266
+ 'Press any key to return to authentication type selection.',
1267
+ 'Waiting for Tulex OAuth authentication...':
1268
+ 'Waiting for Tulex OAuth authentication...',
1269
+ 'Authentication timed out. Please try again.':
1270
+ 'Authentication timed out. Please try again.',
1271
+ 'Waiting for auth... (Press ESC or CTRL+C to cancel)':
1272
+ 'Waiting for auth... (Press ESC or CTRL+C to cancel)',
1273
+ 'Missing API key for OpenAI-compatible auth. Set settings.security.auth.apiKey, or set the {{envKeyHint}} environment variable.':
1274
+ 'Missing API key for OpenAI-compatible auth. Set settings.security.auth.apiKey, or set the {{envKeyHint}} environment variable.',
1275
+ '{{envKeyHint}} environment variable not found. Please set it in your .env file or environment variables.':
1276
+ '{{envKeyHint}} environment variable not found. Please set it in your .env file or environment variables.',
1277
+ '{{envKeyHint}} environment variable not found (or set settings.security.auth.apiKey). Please set it in your .env file or environment variables.':
1278
+ '{{envKeyHint}} environment variable not found (or set settings.security.auth.apiKey). Please set it in your .env file or environment variables.',
1279
+ 'Missing API key for OpenAI-compatible auth. Set the {{envKeyHint}} environment variable.':
1280
+ 'Missing API key for OpenAI-compatible auth. Set the {{envKeyHint}} environment variable.',
1281
+ 'Anthropic provider missing required baseUrl in modelProviders[].baseUrl.':
1282
+ 'Anthropic provider missing required baseUrl in modelProviders[].baseUrl.',
1283
+ 'ANTHROPIC_BASE_URL environment variable not found.':
1284
+ 'ANTHROPIC_BASE_URL environment variable not found.',
1285
+ 'Invalid auth method selected.': 'Invalid auth method selected.',
1286
+ 'Failed to authenticate. Message: {{message}}':
1287
+ 'Failed to authenticate. Message: {{message}}',
1288
+ 'Authenticated successfully with {{authType}} credentials.':
1289
+ 'Authenticated successfully with {{authType}} credentials.',
1290
+ 'Invalid QWEN_DEFAULT_AUTH_TYPE value: "{{value}}". Valid values are: {{validValues}}':
1291
+ 'Invalid QWEN_DEFAULT_AUTH_TYPE value: "{{value}}". Valid values are: {{validValues}}',
1292
+ // ============================================================================
1293
+ // Dialogs - Model
1294
+ // ============================================================================
1295
+ 'Select Model': 'Select Model',
1296
+ 'API Key': 'API Key',
1297
+ '(default)': '(default)',
1298
+ '(not set)': '(not set)',
1299
+ Modality: 'Modality',
1300
+ 'Context Window': 'Context Window',
1301
+ text: 'text',
1302
+ 'text-only': 'text-only',
1303
+ image: 'image',
1304
+ pdf: 'pdf',
1305
+ audio: 'audio',
1306
+ video: 'video',
1307
+ 'not set': 'not set',
1308
+ none: 'none',
1309
+ unknown: 'unknown',
1310
+ // ============================================================================
1311
+ // Dialogs - Permissions
1312
+ // ============================================================================
1313
+ 'Manage folder trust settings': 'Manage folder trust settings',
1314
+ 'Manage permission rules': 'Manage permission rules',
1315
+ Allow: 'Allow',
1316
+ Ask: 'Ask',
1317
+ Deny: 'Deny',
1318
+ Workspace: 'Workspace',
1319
+ "Qwen Code won't ask before using allowed tools.":
1320
+ "Qwen Code won't ask before using allowed tools.",
1321
+ 'Qwen Code will ask before using these tools.':
1322
+ 'Qwen Code will ask before using these tools.',
1323
+ 'Qwen Code is not allowed to use denied tools.':
1324
+ 'Qwen Code is not allowed to use denied tools.',
1325
+ 'Manage trusted directories for this workspace.':
1326
+ 'Manage trusted directories for this workspace.',
1327
+ 'Any use of the {{tool}} tool': 'Any use of the {{tool}} tool',
1328
+ "{{tool}} commands matching '{{pattern}}'":
1329
+ "{{tool}} commands matching '{{pattern}}'",
1330
+ 'From user settings': 'From user settings',
1331
+ 'From project settings': 'From project settings',
1332
+ 'From session': 'From session',
1333
+ 'Project settings': 'Project settings',
1334
+ 'Checked in at .qwen/settings.json': 'Checked in at .qwen/settings.json',
1335
+ 'User settings': 'User settings',
1336
+ 'Saved in at ~/.qwen/settings.json': 'Saved in at ~/.qwen/settings.json',
1337
+ 'Add a new rule…': 'Add a new rule…',
1338
+ 'Add {{type}} permission rule': 'Add {{type}} permission rule',
1339
+ 'Permission rules are a tool name, optionally followed by a specifier in parentheses.':
1340
+ 'Permission rules are a tool name, optionally followed by a specifier in parentheses.',
1341
+ 'e.g.,': 'e.g.,',
1342
+ or: 'or',
1343
+ 'Enter permission rule…': 'Enter permission rule…',
1344
+ 'Enter to submit · Esc to cancel': 'Enter to submit · Esc to cancel',
1345
+ 'Where should this rule be saved?': 'Where should this rule be saved?',
1346
+ 'Enter to confirm · Esc to cancel': 'Enter to confirm · Esc to cancel',
1347
+ 'Delete {{type}} rule?': 'Delete {{type}} rule?',
1348
+ 'Are you sure you want to delete this permission rule?':
1349
+ 'Are you sure you want to delete this permission rule?',
1350
+ 'Permissions:': 'Permissions:',
1351
+ '(←/→ or tab to cycle)': '(←/→ or tab to cycle)',
1352
+ 'Press ↑↓ to navigate · Enter to select · Type to search · Esc to cancel':
1353
+ 'Press ↑↓ to navigate · Enter to select · Type to search · Esc to cancel',
1354
+ 'Search…': 'Search…',
1355
+ // Workspace directory management
1356
+ 'Add directory…': 'Add directory…',
1357
+ 'Add directory to workspace': 'Add directory to workspace',
1358
+ 'Qwen Code can read files in the workspace, and make edits when auto-accept edits is on.':
1359
+ 'Qwen Code can read files in the workspace, and make edits when auto-accept edits is on.',
1360
+ 'Tulex Code will be able to read files in this directory and make edits when auto-accept edits is on.':
1361
+ 'Tulex Code will be able to read files in this directory and make edits when auto-accept edits is on.',
1362
+ 'Enter the path to the directory:': 'Enter the path to the directory:',
1363
+ 'Enter directory path…': 'Enter directory path…',
1364
+ 'Tab to complete · Enter to add · Esc to cancel':
1365
+ 'Tab to complete · Enter to add · Esc to cancel',
1366
+ 'Remove directory?': 'Remove directory?',
1367
+ 'Are you sure you want to remove this directory from the workspace?':
1368
+ 'Are you sure you want to remove this directory from the workspace?',
1369
+ ' (Original working directory)': ' (Original working directory)',
1370
+ ' (from settings)': ' (from settings)',
1371
+ 'Directory does not exist.': 'Directory does not exist.',
1372
+ 'Path is not a directory.': 'Path is not a directory.',
1373
+ 'This directory is already in the workspace.':
1374
+ 'This directory is already in the workspace.',
1375
+ 'Already covered by existing directory: {{dir}}':
1376
+ 'Already covered by existing directory: {{dir}}',
1377
+
1378
+ // ============================================================================
1379
+ // Status Bar
1380
+ // ============================================================================
1381
+ 'Using:': 'Using:',
1382
+ '{{count}} open file': '{{count}} open file',
1383
+ '{{count}} open files': '{{count}} open files',
1384
+ '(ctrl+g to view)': '(ctrl+g to view)',
1385
+ '{{count}} {{name}} file': '{{count}} {{name}} file',
1386
+ '{{count}} {{name}} files': '{{count}} {{name}} files',
1387
+ '{{count}} MCP server': '{{count}} MCP server',
1388
+ '{{count}} MCP servers': '{{count}} MCP servers',
1389
+ '{{count}} Blocked': '{{count}} Blocked',
1390
+ '(ctrl+t to view)': '(ctrl+t to view)',
1391
+ '(ctrl+t to toggle)': '(ctrl+t to toggle)',
1392
+ 'Press Ctrl+C again to exit.': 'Press Ctrl+C again to exit.',
1393
+ 'Press Ctrl+D again to exit.': 'Press Ctrl+D again to exit.',
1394
+ 'Press Esc again to clear.': 'Press Esc again to clear.',
1395
+ 'Press ↑ to edit queued messages': 'Press ↑ to edit queued messages',
1396
+
1397
+ // ============================================================================
1398
+ // MCP Status
1399
+ // ============================================================================
1400
+ 'No MCP servers configured.': 'No MCP servers configured.',
1401
+ '⏳ MCP servers are starting up ({{count}} initializing)...':
1402
+ '⏳ MCP servers are starting up ({{count}} initializing)...',
1403
+ 'Note: First startup may take longer. Tool availability will update automatically.':
1404
+ 'Note: First startup may take longer. Tool availability will update automatically.',
1405
+ 'Configured MCP servers:': 'Configured MCP servers:',
1406
+ Ready: 'Ready',
1407
+ 'Starting... (first startup may take longer)':
1408
+ 'Starting... (first startup may take longer)',
1409
+ Disconnected: 'Disconnected',
1410
+ '{{count}} tool': '{{count}} tool',
1411
+ '{{count}} tools': '{{count}} tools',
1412
+ '{{count}} prompt': '{{count}} prompt',
1413
+ '{{count}} prompts': '{{count}} prompts',
1414
+ '(from {{extensionName}})': '(from {{extensionName}})',
1415
+ OAuth: 'OAuth',
1416
+ 'OAuth expired': 'OAuth expired',
1417
+ 'OAuth not authenticated': 'OAuth not authenticated',
1418
+ 'tools and prompts will appear when ready':
1419
+ 'tools and prompts will appear when ready',
1420
+ '{{count}} tools cached': '{{count}} tools cached',
1421
+ 'Tools:': 'Tools:',
1422
+ 'Parameters:': 'Parameters:',
1423
+ 'Prompts:': 'Prompts:',
1424
+ Blocked: 'Blocked',
1425
+ '💡 Tips:': '💡 Tips:',
1426
+ Use: 'Use',
1427
+ 'to show server and tool descriptions':
1428
+ 'to show server and tool descriptions',
1429
+ 'to show tool parameter schemas': 'to show tool parameter schemas',
1430
+ 'to hide descriptions': 'to hide descriptions',
1431
+ 'to authenticate with OAuth-enabled servers':
1432
+ 'to authenticate with OAuth-enabled servers',
1433
+ Press: 'Press',
1434
+ 'to toggle tool descriptions on/off': 'to toggle tool descriptions on/off',
1435
+ "Starting OAuth authentication for MCP server '{{name}}'...":
1436
+ "Starting OAuth authentication for MCP server '{{name}}'...",
1437
+ // ============================================================================
1438
+ // Startup Tips
1439
+ // ============================================================================
1440
+ 'Tips:': 'Tips:',
1441
+ 'Use /compress when the conversation gets long to summarize history and free up context.':
1442
+ 'Use /compress when the conversation gets long to summarize history and free up context.',
1443
+ 'Start a fresh idea with /clear or /new; the previous session stays available in history.':
1444
+ 'Start a fresh idea with /clear or /new; the previous session stays available in history.',
1445
+ 'Use /bug to submit issues to the maintainers when something goes off.':
1446
+ 'Use /bug to submit issues to the maintainers when something goes off.',
1447
+ 'Switch auth type quickly with /auth.':
1448
+ 'Switch auth type quickly with /auth.',
1449
+ 'You can run any shell commands from Qwen Code using ! (e.g. !ls).':
1450
+ 'You can run any shell commands from Qwen Code using ! (e.g. !ls).',
1451
+ 'Type / to open the command popup; Tab autocompletes slash commands and saved prompts.':
1452
+ 'Type / to open the command popup; Tab autocompletes slash commands and saved prompts.',
1453
+ 'You can resume a previous conversation by running qwen --continue or qwen --resume.':
1454
+ 'You can resume a previous conversation by running qwen --continue or qwen --resume.',
1455
+ 'You can switch permission mode quickly with Shift+Tab or /approval-mode.':
1456
+ 'You can switch permission mode quickly with Shift+Tab or /approval-mode.',
1457
+ 'You can switch permission mode quickly with Tab or /approval-mode.':
1458
+ 'You can switch permission mode quickly with Tab or /approval-mode.',
1459
+ 'Try /insight to generate personalized insights from your chat history.':
1460
+ 'Try /insight to generate personalized insights from your chat history.',
1461
+ 'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
1462
+ 'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.',
1463
+ 'Add a QWEN.md file to give Qwen Code persistent project context.':
1464
+ 'Add a QWEN.md file to give Qwen Code persistent project context.',
1465
+ 'Use /btw to ask a quick side question without disrupting the conversation.':
1466
+ 'Use /btw to ask a quick side question without disrupting the conversation.',
1467
+ 'Context is almost full! Run /compress now or start /new to continue.':
1468
+ 'Context is almost full! Run /compress now or start /new to continue.',
1469
+ 'Context is getting full. Use /compress to free up space.':
1470
+ 'Context is getting full. Use /compress to free up space.',
1471
+ 'Long conversation? /compress summarizes history to free context.':
1472
+ 'Long conversation? /compress summarizes history to free context.',
1473
+
1474
+ // ============================================================================
1475
+ // Exit Screen / Stats
1476
+ // ============================================================================
1477
+ 'Agent powering down. Goodbye!': 'Agent powering down. Goodbye!',
1478
+ 'To continue this session, run': 'To continue this session, run',
1479
+ 'Interaction Summary': 'Interaction Summary',
1480
+ 'Session ID:': 'Session ID:',
1481
+ 'Tool Calls:': 'Tool Calls:',
1482
+ 'Success Rate:': 'Success Rate:',
1483
+ 'User Agreement:': 'User Agreement:',
1484
+ reviewed: 'reviewed',
1485
+ 'Code Changes:': 'Code Changes:',
1486
+ Performance: 'Performance',
1487
+ 'Wall Time:': 'Wall Time:',
1488
+ 'Agent Active:': 'Agent Active:',
1489
+ 'API Time:': 'API Time:',
1490
+ 'Tool Time:': 'Tool Time:',
1491
+ 'Session Stats': 'Session Stats',
1492
+ 'Model Usage': 'Model Usage',
1493
+ Reqs: 'Reqs',
1494
+ 'Input Tokens': 'Input Tokens',
1495
+ 'Output Tokens': 'Output Tokens',
1496
+ 'Savings Highlight:': 'Savings Highlight:',
1497
+ 'of input tokens were served from the cache, reducing costs.':
1498
+ 'of input tokens were served from the cache, reducing costs.',
1499
+ 'Tip: For a full token breakdown, run `/stats model`.':
1500
+ 'Tip: For a full token breakdown, run `/stats model`.',
1501
+ 'Model Stats For Nerds': 'Model Stats For Nerds',
1502
+ 'Tool Stats For Nerds': 'Tool Stats For Nerds',
1503
+ Metric: 'Metric',
1504
+ API: 'API',
1505
+ Requests: 'Requests',
1506
+ Errors: 'Errors',
1507
+ 'Avg Latency': 'Avg Latency',
1508
+ Tokens: 'Tokens',
1509
+ Total: 'Total',
1510
+ Prompt: 'Prompt',
1511
+ Cached: 'Cached',
1512
+ Thoughts: 'Thoughts',
1513
+ Output: 'Output',
1514
+ 'No API calls have been made in this session.':
1515
+ 'No API calls have been made in this session.',
1516
+ 'Tool Name': 'Tool Name',
1517
+ Calls: 'Calls',
1518
+ 'Success Rate': 'Success Rate',
1519
+ 'Avg Duration': 'Avg Duration',
1520
+ 'User Decision Summary': 'User Decision Summary',
1521
+ 'Total Reviewed Suggestions:': 'Total Reviewed Suggestions:',
1522
+ ' » Accepted:': ' » Accepted:',
1523
+ ' » Rejected:': ' » Rejected:',
1524
+ ' » Modified:': ' » Modified:',
1525
+ ' Overall Agreement Rate:': ' Overall Agreement Rate:',
1526
+ 'No tool calls have been made in this session.':
1527
+ 'No tool calls have been made in this session.',
1528
+ 'Session start time is unavailable, cannot calculate stats.':
1529
+ 'Session start time is unavailable, cannot calculate stats.',
1530
+
1531
+ // ============================================================================
1532
+ // Command Format Migration
1533
+ // ============================================================================
1534
+ 'Command Format Migration': 'Command Format Migration',
1535
+ 'Found {{count}} TOML command file:': 'Found {{count}} TOML command file:',
1536
+ 'Found {{count}} TOML command files:': 'Found {{count}} TOML command files:',
1537
+ 'Current tasks': 'Current tasks',
1538
+ 'Background tasks': 'Background tasks',
1539
+ 'No tasks currently running': 'No tasks currently running',
1540
+ 'No entry to show.': 'No entry to show.',
1541
+ Running: 'Running',
1542
+ Paused: 'Paused',
1543
+ Completed: 'Completed',
1544
+ Failed: 'Failed',
1545
+ Stopped: 'Stopped',
1546
+ Shell: 'Shell',
1547
+ Monitor: 'Monitor',
1548
+ Command: 'Command',
1549
+ Dream: 'Dream',
1550
+ '[dream] memory consolidation': '[dream] memory consolidation',
1551
+ '[dream] memory consolidation (reviewing {{count}} session)':
1552
+ '[dream] memory consolidation (reviewing {{count}} session)',
1553
+ '[dream] memory consolidation (reviewing {{count}} sessions)':
1554
+ '[dream] memory consolidation (reviewing {{count}} sessions)',
1555
+ '{{count}} session': '{{count}} session',
1556
+ '{{count}} sessions': '{{count}} sessions',
1557
+ '{{count}} topic': '{{count}} topic',
1558
+ '{{count}} topics': '{{count}} topics',
1559
+ '{{count}} tokens': '{{count}} tokens',
1560
+ '{{count}} tool call': '{{count}} tool call',
1561
+ '{{count}} tool calls': '{{count}} tool calls',
1562
+ '{{count}} event': '{{count}} event',
1563
+ '{{count}} events': '{{count}} events',
1564
+ '{{count}} dropped': '{{count}} dropped',
1565
+ 'pid {{pid}}': 'pid {{pid}}',
1566
+ 'exit {{exitCode}}': 'exit {{exitCode}}',
1567
+ 'Sessions reviewing': 'Sessions reviewing',
1568
+ Progress: 'Progress',
1569
+ 'Resume blocked': 'Resume blocked',
1570
+ 'Working dir': 'Working dir',
1571
+ 'Output file': 'Output file',
1572
+ 'Topics touched ({{count}})': 'Topics touched ({{count}})',
1573
+ '{{count}} more': '{{count}} more',
1574
+ 'Lock release warning': 'Lock release warning',
1575
+ 'Metadata write warning': 'Metadata write warning',
1576
+ "Subsequent dreams may be skipped as locked until the next session's staleness sweep cleans the file.":
1577
+ "Subsequent dreams may be skipped as locked until the next session's staleness sweep cleans the file.",
1578
+ "The scheduler gate did not see this dream's timestamp; the next dream cycle may re-fire sooner than usual.":
1579
+ "The scheduler gate did not see this dream's timestamp; the next dream cycle may re-fire sooner than usual.",
1580
+ '... and {{count}} more': '... and {{count}} more',
1581
+ 'The TOML format is deprecated. Would you like to migrate them to Markdown format?':
1582
+ 'The TOML format is deprecated. Would you like to migrate them to Markdown format?',
1583
+ '(Backups will be created and original files will be preserved)':
1584
+ '(Backups will be created and original files will be preserved)',
1585
+
1586
+ // ============================================================================
1587
+ // Loading Phrases
1588
+ // ============================================================================
1589
+ 'Waiting for user confirmation...': 'Waiting for user confirmation...',
1590
+ // ============================================================================
1591
+ // Loading Phrases
1592
+ // ============================================================================
1593
+ WITTY_LOADING_PHRASES: [
1594
+ "I'm Feeling Lucky",
1595
+ 'Shipping awesomeness... ',
1596
+ 'Painting the serifs back on...',
1597
+ 'Navigating the slime mold...',
1598
+ 'Consulting the digital spirits...',
1599
+ 'Reticulating splines...',
1600
+ 'Warming up the AI hamsters...',
1601
+ 'Asking the magic conch shell...',
1602
+ 'Generating witty retort...',
1603
+ 'Polishing the algorithms...',
1604
+ "Don't rush perfection (or my code)...",
1605
+ 'Brewing fresh bytes...',
1606
+ 'Counting electrons...',
1607
+ 'Engaging cognitive processors...',
1608
+ 'Checking for syntax errors in the universe...',
1609
+ 'One moment, optimizing humor...',
1610
+ 'Shuffling punchlines...',
1611
+ 'Untangling neural nets...',
1612
+ 'Compiling brilliance...',
1613
+ 'Loading wit.exe...',
1614
+ 'Summoning the cloud of wisdom...',
1615
+ 'Preparing a witty response...',
1616
+ "Just a sec, I'm debugging reality...",
1617
+ 'Confuzzling the options...',
1618
+ 'Tuning the cosmic frequencies...',
1619
+ 'Crafting a response worthy of your patience...',
1620
+ 'Compiling the 1s and 0s...',
1621
+ 'Resolving dependencies... and existential crises...',
1622
+ 'Defragmenting memories... both RAM and personal...',
1623
+ 'Rebooting the humor module...',
1624
+ 'Caching the essentials (mostly cat memes)...',
1625
+ 'Optimizing for ludicrous speed',
1626
+ "Swapping bits... don't tell the bytes...",
1627
+ 'Garbage collecting... be right back...',
1628
+ 'Assembling the interwebs...',
1629
+ 'Converting coffee into code...',
1630
+ 'Updating the syntax for reality...',
1631
+ 'Rewiring the synapses...',
1632
+ 'Looking for a misplaced semicolon...',
1633
+ "Greasin' the cogs of the machine...",
1634
+ 'Pre-heating the servers...',
1635
+ 'Calibrating the flux capacitor...',
1636
+ 'Engaging the improbability drive...',
1637
+ 'Channeling the Force...',
1638
+ 'Aligning the stars for optimal response...',
1639
+ 'So say we all...',
1640
+ 'Loading the next great idea...',
1641
+ "Just a moment, I'm in the zone...",
1642
+ 'Preparing to dazzle you with brilliance...',
1643
+ "Just a tick, I'm polishing my wit...",
1644
+ "Hold tight, I'm crafting a masterpiece...",
1645
+ "Just a jiffy, I'm debugging the universe...",
1646
+ "Just a moment, I'm aligning the pixels...",
1647
+ "Just a sec, I'm optimizing the humor...",
1648
+ "Just a moment, I'm tuning the algorithms...",
1649
+ 'Warp speed engaged...',
1650
+ 'Mining for more Dilithium crystals...',
1651
+ "Don't panic...",
1652
+ 'Following the white rabbit...',
1653
+ 'The truth is in here... somewhere...',
1654
+ 'Blowing on the cartridge...',
1655
+ 'Loading... Do a barrel roll!',
1656
+ 'Waiting for the respawn...',
1657
+ 'Finishing the Kessel Run in less than 12 parsecs...',
1658
+ "The cake is not a lie, it's just still loading...",
1659
+ 'Fiddling with the character creation screen...',
1660
+ "Just a moment, I'm finding the right meme...",
1661
+ "Pressing 'A' to continue...",
1662
+ 'Herding digital cats...',
1663
+ 'Polishing the pixels...',
1664
+ 'Finding a suitable loading screen pun...',
1665
+ 'Distracting you with this witty phrase...',
1666
+ 'Almost there... probably...',
1667
+ 'Our hamsters are working as fast as they can...',
1668
+ 'Giving Cloudy a pat on the head...',
1669
+ 'Petting the cat...',
1670
+ 'Rickrolling my boss...',
1671
+ 'Never gonna give you up, never gonna let you down...',
1672
+ 'Slapping the bass...',
1673
+ 'Tasting the snozberries...',
1674
+ "I'm going the distance, I'm going for speed...",
1675
+ 'Is this the real life? Is this just fantasy?...',
1676
+ "I've got a good feeling about this...",
1677
+ 'Poking the bear...',
1678
+ 'Doing research on the latest memes...',
1679
+ 'Figuring out how to make this more witty...',
1680
+ 'Hmmm... let me think...',
1681
+ 'What do you call a fish with no eyes? A fsh...',
1682
+ 'Why did the computer go to therapy? It had too many bytes...',
1683
+ "Why don't programmers like nature? It has too many bugs...",
1684
+ 'Why do programmers prefer dark mode? Because light attracts bugs...',
1685
+ 'Why did the developer go broke? Because they used up all their cache...',
1686
+ "What can you do with a broken pencil? Nothing, it's pointless...",
1687
+ 'Applying percussive maintenance...',
1688
+ 'Searching for the correct USB orientation...',
1689
+ 'Ensuring the magic smoke stays inside the wires...',
1690
+ 'Trying to exit Vim...',
1691
+ 'Spinning up the hamster wheel...',
1692
+ "That's not a bug, it's an undocumented feature...",
1693
+ 'Engage.',
1694
+ "I'll be back... with an answer.",
1695
+ 'My other process is a TARDIS...',
1696
+ 'Communing with the machine spirit...',
1697
+ 'Letting the thoughts marinate...',
1698
+ 'Just remembered where I put my keys...',
1699
+ 'Pondering the orb...',
1700
+ "I've seen things you people wouldn't believe... like a user who reads loading messages.",
1701
+ 'Initiating thoughtful gaze...',
1702
+ "What's a computer's favorite snack? Microchips.",
1703
+ "Why do Java developers wear glasses? Because they don't C#.",
1704
+ 'Charging the laser... pew pew!',
1705
+ 'Dividing by zero... just kidding!',
1706
+ 'Looking for an adult superviso... I mean, processing.',
1707
+ 'Making it go beep boop.',
1708
+ 'Buffering... because even AIs need a moment.',
1709
+ 'Entangling quantum particles for a faster response...',
1710
+ 'Polishing the chrome... on the algorithms.',
1711
+ 'Are you not entertained? (Working on it!)',
1712
+ 'Summoning the code gremlins... to help, of course.',
1713
+ 'Just waiting for the dial-up tone to finish...',
1714
+ 'Recalibrating the humor-o-meter.',
1715
+ 'My other loading screen is even funnier.',
1716
+ "Pretty sure there's a cat walking on the keyboard somewhere...",
1717
+ 'Enhancing... Enhancing... Still loading.',
1718
+ "It's not a bug, it's a feature... of this loading screen.",
1719
+ 'Have you tried turning it off and on again? (The loading screen, not me.)',
1720
+ 'Constructing additional pylons...',
1721
+
1722
+ // ============================================================================
1723
+ // Tulex-themed additions
1724
+ // ============================================================================
1725
+ 'Tulex is parsing your code...',
1726
+ 'Tulex mode activated...',
1727
+ 'Tulex is thinking deeply...',
1728
+ 'Engaging Tulex CLI...',
1729
+ 'Tulex is analyzing the project...',
1730
+ 'Tulex is making magic happen...',
1731
+ 'Tulex\'s agentic brain working...',
1732
+ 'Let Tulex work its magic...',
1733
+ 'Tulex is in autonomous mode...',
1734
+ 'Tulex is crafting the solution...',
1735
+ 'Tulex neural engine firing up...',
1736
+ 'Tulex is reading your files...',
1737
+ 'Tulex is pair-programming with you...',
1738
+ 'Tulex is finding the perfect fix...',
1739
+ 'Tulex is orchestrating brilliance...',
1740
+ 'Tulex is multitasking elegantly...',
1741
+ 'Tulex is diving deep into context...',
1742
+ 'Tulex is synthesizing the answer...',
1743
+ 'Tulex is in flow state...',
1744
+ 'Tulex is decoding your intent...',
1745
+ 'Tulex is building momentum...',
1746
+ 'Tulex is connecting the patterns...',
1747
+ 'Tulex is pulling from experience...',
1748
+ 'Tulex is weaving it all together...',
1749
+ 'Tulex is seeing the big picture...',
1750
+ 'Tulex\'s reasoning in progress...',
1751
+ 'Tulex is having a breakthrough...',
1752
+ 'Tulex is precision-focused...',
1753
+ 'Tulex is in the zone...',
1754
+ 'Let Tulex cook for a moment...',
1755
+ 'Tulex is crafting with care...',
1756
+ 'Tulex\'s wisdom downloading...',
1757
+ 'Tulex is finding elegant solutions...',
1758
+ 'Tulex is orchestrating your code...',
1759
+ 'Tulex is autonomously working...',
1760
+ 'Tulex\'s agentic drive engaged...',
1761
+ 'Tulex is optimizing the approach...',
1762
+ 'Tulex is building something beautiful...',
1763
+ 'Tulex is in creative mode...',
1764
+ 'Tulex is synthesizing brilliance...',
1765
+ 'Tulex is your pair programmer...',
1766
+ 'Tulex is processing your request...',
1767
+ 'Tulex is contextualizing everything...',
1768
+ 'Tulex is ready to execute...',
1769
+ 'Tulex is bringing your ideas to life...',
1770
+
1771
+
1772
+ ],
1773
+
1774
+ // ============================================================================
1775
+ // Extension Settings Input
1776
+ // ============================================================================
1777
+ 'Enter value...': 'Enter value...',
1778
+ 'Enter sensitive value...': 'Enter sensitive value...',
1779
+ 'Press Enter to submit, Escape to cancel':
1780
+ 'Press Enter to submit, Escape to cancel',
1781
+
1782
+ // ============================================================================
1783
+ // Command Migration Tool
1784
+ // ============================================================================
1785
+ 'Markdown file already exists: {{filename}}':
1786
+ 'Markdown file already exists: {{filename}}',
1787
+ 'TOML Command Format Deprecation Notice':
1788
+ 'TOML Command Format Deprecation Notice',
1789
+ 'Found {{count}} command file(s) in TOML format:':
1790
+ 'Found {{count}} command file(s) in TOML format:',
1791
+ 'The TOML format for commands is being deprecated in favor of Markdown format.':
1792
+ 'The TOML format for commands is being deprecated in favor of Markdown format.',
1793
+ 'Markdown format is more readable and easier to edit.':
1794
+ 'Markdown format is more readable and easier to edit.',
1795
+ 'You can migrate these files automatically using:':
1796
+ 'You can migrate these files automatically using:',
1797
+ 'Or manually convert each file:': 'Or manually convert each file:',
1798
+ 'TOML: prompt = "..." / description = "..."':
1799
+ 'TOML: prompt = "..." / description = "..."',
1800
+ 'Markdown: YAML frontmatter + content':
1801
+ 'Markdown: YAML frontmatter + content',
1802
+ 'The migration tool will:': 'The migration tool will:',
1803
+ 'Convert TOML files to Markdown': 'Convert TOML files to Markdown',
1804
+ 'Create backups of original files': 'Create backups of original files',
1805
+ 'Preserve all command functionality': 'Preserve all command functionality',
1806
+ 'TOML format will continue to work for now, but migration is recommended.':
1807
+ 'TOML format will continue to work for now, but migration is recommended.',
1808
+
1809
+ // ============================================================================
1810
+ // Extensions - Explore Command
1811
+ // ============================================================================
1812
+ 'Open extensions page in your browser':
1813
+ 'Open extensions page in your browser',
1814
+ 'Unknown extensions source: {{source}}.':
1815
+ 'Unknown extensions source: {{source}}.',
1816
+ 'Would open extensions page in your browser: {{url}} (skipped in test environment)':
1817
+ 'Would open extensions page in your browser: {{url}} (skipped in test environment)',
1818
+ 'View available extensions at {{url}}':
1819
+ 'View available extensions at {{url}}',
1820
+ 'Opening extensions page in your browser: {{url}}':
1821
+ 'Opening extensions page in your browser: {{url}}',
1822
+ 'Failed to open browser. Check out the extensions gallery at {{url}}':
1823
+ 'Failed to open browser. Check out the extensions gallery at {{url}}',
1824
+ 'Retrying in {{seconds}} seconds… (attempt {{attempt}}/{{maxRetries}})':
1825
+ 'Retrying in {{seconds}} seconds… (attempt {{attempt}}/{{maxRetries}})',
1826
+ 'Press Ctrl+Y to retry': 'Press Ctrl+Y to retry',
1827
+ 'No failed request to retry.': 'No failed request to retry.',
1828
+ 'to retry last request': 'to retry last request',
1829
+
1830
+ // ============================================================================
1831
+ // Coding Plan Authentication
1832
+ // ============================================================================
1833
+ 'API key cannot be empty.': 'API key cannot be empty.',
1834
+ 'Invalid API key. Coding Plan API keys start with "sk-sp-". Please check.':
1835
+ 'Invalid API key. Coding Plan API keys start with "sk-sp-". Please check.',
1836
+ 'You can get your Coding Plan API key here':
1837
+ 'You can get your Coding Plan API key here',
1838
+ 'You can get your Token Plan API key here':
1839
+ 'You can get your Token Plan API key here',
1840
+ 'API key is stored in settings.env. You can migrate it to a .env file for better security.':
1841
+ 'API key is stored in settings.env. You can migrate it to a .env file for better security.',
1842
+ 'New model configurations are available for Alibaba Cloud Coding Plan. Update now?':
1843
+ 'New model configurations are available for Alibaba Cloud Coding Plan. Update now?',
1844
+ 'Coding Plan configuration updated successfully. New models are now available.':
1845
+ 'Coding Plan configuration updated successfully. New models are now available.',
1846
+ 'Coding Plan API key not found. Please re-authenticate with Coding Plan.':
1847
+ 'Coding Plan API key not found. Please re-authenticate with Coding Plan.',
1848
+ 'Failed to update Coding Plan configuration: {{message}}':
1849
+ 'Failed to update Coding Plan configuration: {{message}}',
1850
+
1851
+ // ============================================================================
1852
+ // Custom API Key Configuration
1853
+ // ============================================================================
1854
+ 'You can configure your API key and models in settings.json':
1855
+ 'You can configure your API key and models in settings.json',
1856
+ 'Refer to the documentation for setup instructions':
1857
+ 'Refer to the documentation for setup instructions',
1858
+
1859
+ // ============================================================================
1860
+ // Auth Dialog - View Titles and Labels
1861
+ // ============================================================================
1862
+ 'Coding Plan': 'Coding Plan',
1863
+ Custom: 'Custom',
1864
+ 'Select Region for Coding Plan': 'Select Region for Coding Plan',
1865
+ 'Choose based on where your account is registered':
1866
+ 'Choose based on where your account is registered',
1867
+ 'Enter Coding Plan API Key': 'Enter Coding Plan API Key',
1868
+ 'Enter Token Plan API Key': 'Enter Token Plan API Key',
1869
+
1870
+ // ============================================================================
1871
+ // Coding Plan International Updates
1872
+ // ============================================================================
1873
+ 'New model configurations are available for {{region}}. Update now?':
1874
+ 'New model configurations are available for {{region}}. Update now?',
1875
+ '{{region}} configuration updated successfully. Model switched to "{{model}}".':
1876
+ '{{region}} configuration updated successfully. Model switched to "{{model}}".',
1877
+ // ============================================================================
1878
+ // Context Usage Component
1879
+ // ============================================================================
1880
+ 'Context Usage': 'Context Usage',
1881
+ '% used': '% used',
1882
+ '% context used': '% context used',
1883
+ 'Context exceeds limit! Use /compress or /clear to reduce.':
1884
+ 'Context exceeds limit! Use /compress or /clear to reduce.',
1885
+ 'No API response yet. Send a message to see actual usage.':
1886
+ 'No API response yet. Send a message to see actual usage.',
1887
+ 'Estimated pre-conversation overhead': 'Estimated pre-conversation overhead',
1888
+ 'Context window': 'Context window',
1889
+ tokens: 'tokens',
1890
+ Used: 'Used',
1891
+ Free: 'Free',
1892
+ 'Autocompact buffer': 'Autocompact buffer',
1893
+ 'Usage by category': 'Usage by category',
1894
+ 'System prompt': 'System prompt',
1895
+ 'Built-in tools': 'Built-in tools',
1896
+ 'MCP tools': 'MCP tools',
1897
+ 'Memory files': 'Memory files',
1898
+ Skills: 'Skills',
1899
+ Messages: 'Messages',
1900
+ 'Run /context detail for per-item breakdown.':
1901
+ 'Run /context detail for per-item breakdown.',
1902
+ 'Show context window usage breakdown. Use "/context detail" for per-item breakdown.':
1903
+ 'Show context window usage breakdown. Use "/context detail" for per-item breakdown.',
1904
+ 'body loaded': 'body loaded',
1905
+ memory: 'memory',
1906
+ '{{region}} configuration updated successfully.':
1907
+ '{{region}} configuration updated successfully.',
1908
+ 'Authenticated successfully with {{region}}. API key and model configs saved to settings.json.':
1909
+ 'Authenticated successfully with {{region}}. API key and model configs saved to settings.json.',
1910
+ 'Tip: Use /model to switch between available Coding Plan models.':
1911
+ 'Tip: Use /model to switch between available Coding Plan models.',
1912
+ 'Type something...': 'Type something...',
1913
+ Submit: 'Submit',
1914
+ 'Submit answers': 'Submit answers',
1915
+ Cancel: 'Cancel',
1916
+ 'Your answers:': 'Your answers:',
1917
+ '(not answered)': '(not answered)',
1918
+ 'Ready to submit your answers?': 'Ready to submit your answers?',
1919
+ '↑/↓: Navigate | ←/→: Switch tabs | Enter: Select':
1920
+ '↑/↓: Navigate | ←/→: Switch tabs | Enter: Select',
1921
+ '↑/↓: Navigate | Enter: Select | Esc: Cancel':
1922
+ '↑/↓: Navigate | Enter: Select | Esc: Cancel',
1923
+ 'Authenticate using Qwen OAuth': 'Authenticate using Qwen OAuth',
1924
+ 'Authenticate using Alibaba Cloud Coding Plan':
1925
+ 'Authenticate using Alibaba Cloud Coding Plan',
1926
+ 'Region for Coding Plan (china/global)':
1927
+ 'Region for Coding Plan (china/global)',
1928
+ 'API key for Coding Plan': 'API key for Coding Plan',
1929
+ 'Show current authentication status': 'Show current authentication status',
1930
+ 'Authentication completed successfully.':
1931
+ 'Authentication completed successfully.',
1932
+ 'Starting Qwen OAuth authentication...':
1933
+ 'Starting Qwen OAuth authentication...',
1934
+ 'Successfully authenticated with Qwen OAuth.':
1935
+ 'Successfully authenticated with Qwen OAuth.',
1936
+ 'Failed to authenticate with Qwen OAuth: {{error}}':
1937
+ 'Failed to authenticate with Qwen OAuth: {{error}}',
1938
+ 'Processing Alibaba Cloud Coding Plan authentication...':
1939
+ 'Processing Alibaba Cloud Coding Plan authentication...',
1940
+ 'Successfully authenticated with Alibaba Cloud Coding Plan.':
1941
+ 'Successfully authenticated with Alibaba Cloud Coding Plan.',
1942
+ 'Failed to authenticate with Coding Plan: {{error}}':
1943
+ 'Failed to authenticate with Coding Plan: {{error}}',
1944
+ '中国 (China)': '中国 (China)',
1945
+ '阿里云百炼 (aliyun.com)': '阿里云百炼 (aliyun.com)',
1946
+ Global: 'Global',
1947
+ 'Alibaba Cloud (alibabacloud.com)': 'Alibaba Cloud (alibabacloud.com)',
1948
+ 'Select region for Coding Plan:': 'Select region for Coding Plan:',
1949
+ 'Enter your Coding Plan API key: ': 'Enter your Coding Plan API key: ',
1950
+ 'Select authentication method:': 'Select authentication method:',
1951
+ '\n=== Authentication Status ===\n': '\n=== Authentication Status ===\n',
1952
+ '⚠️ No authentication method configured.\n':
1953
+ '⚠️ No authentication method configured.\n',
1954
+ 'Run one of the following commands to get started:\n':
1955
+ 'Run one of the following commands to get started:\n',
1956
+ ' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
1957
+ ' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)',
1958
+ 'Or simply run:': 'Or simply run:',
1959
+ ' qwen auth - Interactive authentication setup\n':
1960
+ ' qwen auth - Interactive authentication setup\n',
1961
+ '✓ Authentication Method: Qwen OAuth': '✓ Authentication Method: Qwen OAuth',
1962
+ ' Type: Free tier (discontinued 2026-04-15)':
1963
+ ' Type: Free tier (discontinued 2026-04-15)',
1964
+ ' Limit: No longer available': ' Limit: No longer available',
1965
+ 'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
1966
+ 'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.',
1967
+ '✓ Authentication Method: Alibaba Cloud Coding Plan':
1968
+ '✓ Authentication Method: Alibaba Cloud Coding Plan',
1969
+ '中国 (China) - 阿里云百炼': '中国 (China) - 阿里云百炼',
1970
+ 'Global - Alibaba Cloud': 'Global - Alibaba Cloud',
1971
+ ' Region: {{region}}': ' Region: {{region}}',
1972
+ ' Current Model: {{model}}': ' Current Model: {{model}}',
1973
+ ' Config Version: {{version}}': ' Config Version: {{version}}',
1974
+ ' Status: API key configured\n': ' Status: API key configured\n',
1975
+ '⚠️ Authentication Method: Alibaba Cloud Coding Plan (Incomplete)':
1976
+ '⚠️ Authentication Method: Alibaba Cloud Coding Plan (Incomplete)',
1977
+ ' Issue: API key not found in environment or settings\n':
1978
+ ' Issue: API key not found in environment or settings\n',
1979
+ ' Run `qwen auth coding-plan` to re-configure.\n':
1980
+ ' Run `qwen auth coding-plan` to re-configure.\n',
1981
+ '✓ Authentication Method: {{type}}': '✓ Authentication Method: {{type}}',
1982
+ ' Status: Configured\n': ' Status: Configured\n',
1983
+ 'Failed to check authentication status: {{error}}':
1984
+ 'Failed to check authentication status: {{error}}',
1985
+ 'Select an option:': 'Select an option:',
1986
+ 'Raw mode not available. Please run in an interactive terminal.':
1987
+ 'Raw mode not available. Please run in an interactive terminal.',
1988
+ '(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
1989
+ '(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n',
1990
+ 'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
1991
+ 'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).',
1992
+ 'Press Ctrl+O to show full tool output':
1993
+ 'Press Ctrl+O to show full tool output',
1994
+ 'Switch to plan mode or exit plan mode':
1995
+ 'Switch to plan mode or exit plan mode',
1996
+ 'Set a goal — keep working until the condition is met':
1997
+ 'Set a goal — keep working until the condition is met',
1998
+ 'Exited plan mode. Previous approval mode restored.':
1999
+ 'Exited plan mode. Previous approval mode restored.',
2000
+ 'Enabled plan mode. The agent will analyze and plan without executing tools.':
2001
+ 'Enabled plan mode. The agent will analyze and plan without executing tools.',
2002
+ 'Already in plan mode. Use "/plan exit" to exit plan mode.':
2003
+ 'Already in plan mode. Use "/plan exit" to exit plan mode.',
2004
+ 'Not in plan mode. Use "/plan" to enter plan mode first.':
2005
+ 'Not in plan mode. Use "/plan" to enter plan mode first.',
2006
+ "Set up Qwen Code's status line UI": "Set up Qwen Code's status line UI",
2007
+
2008
+ // === Core: added from PR #3328 ===
2009
+ 'Open the memory manager.': 'Open the memory manager.',
2010
+ 'Show current process memory diagnostics':
2011
+ 'Show current process memory diagnostics',
2012
+ 'Record a CPU profile for Chrome DevTools analysis':
2013
+ 'Record a CPU profile for Chrome DevTools analysis',
2014
+ 'Roll back a standalone update to the previous version':
2015
+ 'Roll back a standalone update to the previous version',
2016
+ 'Rollback is not available in ACP mode.':
2017
+ 'Rollback is not available in ACP mode.',
2018
+ 'Rollback is only available for standalone installations.':
2019
+ 'Rollback is only available for standalone installations.',
2020
+ 'Rollback successful. Restart your terminal to use the previous version.':
2021
+ 'Rollback successful. Restart your terminal to use the previous version.',
2022
+ 'Rollback failed:': 'Rollback failed:',
2023
+ 'Rollback on Windows requires manual intervention. Rename tulex-code.old to tulex-code in your installation directory.':
2024
+ 'Rollback on Windows requires manual intervention. Rename tulex-code.old to tulex-code in your installation directory.',
2025
+ 'Save a durable memory to the memory system.':
2026
+ 'Save a durable memory to the memory system.',
2027
+ 'Ask a quick side question without affecting the main conversation':
2028
+ 'Ask a quick side question without affecting the main conversation',
2029
+ 'Manage Arena sessions': 'Manage Arena sessions',
2030
+ 'Start an Arena session with multiple models competing on the same task':
2031
+ 'Start an Arena session with multiple models competing on the same task',
2032
+ 'Stop the current Arena session': 'Stop the current Arena session',
2033
+ 'Show the current Arena session status':
2034
+ 'Show the current Arena session status',
2035
+ 'Select a model result and merge its diff into the current workspace':
2036
+ 'Select a model result and merge its diff into the current workspace',
2037
+ 'No running Arena session found.': 'No running Arena session found.',
2038
+ 'No Arena session found. Start one with /arena start.':
2039
+ 'No Arena session found. Start one with /arena start.',
2040
+ 'Arena session is still running. Wait for it to complete or use /arena stop first.':
2041
+ 'Arena session is still running. Wait for it to complete or use /arena stop first.',
2042
+ 'No successful agent results to select from. All agents failed or were cancelled.':
2043
+ 'No successful agent results to select from. All agents failed or were cancelled.',
2044
+ 'Use /arena stop to end the session.': 'Use /arena stop to end the session.',
2045
+ 'No idle agent found matching "{{name}}".':
2046
+ 'No idle agent found matching "{{name}}".',
2047
+ 'Failed to apply changes from {{label}}: {{error}}':
2048
+ 'Failed to apply changes from {{label}}: {{error}}',
2049
+ 'Applied changes from {{label}} to workspace. Arena session complete.':
2050
+ 'Applied changes from {{label}} to workspace. Arena session complete.',
2051
+ 'Discard all Arena results and clean up worktrees?':
2052
+ 'Discard all Arena results and clean up worktrees?',
2053
+ 'Arena results discarded. All worktrees cleaned up.':
2054
+ 'Arena results discarded. All worktrees cleaned up.',
2055
+ 'Arena is not supported in non-interactive mode. Use interactive mode to start an Arena session.':
2056
+ 'Arena is not supported in non-interactive mode. Use interactive mode to start an Arena session.',
2057
+ 'Arena is not supported in non-interactive mode. Use interactive mode to stop an Arena session.':
2058
+ 'Arena is not supported in non-interactive mode. Use interactive mode to stop an Arena session.',
2059
+ 'Arena is not supported in non-interactive mode.':
2060
+ 'Arena is not supported in non-interactive mode.',
2061
+ 'An Arena session exists. Use /arena stop or /arena select to end it before starting a new one.':
2062
+ 'An Arena session exists. Use /arena stop or /arena select to end it before starting a new one.',
2063
+ 'Usage: /arena start --models model1,model2 <task>':
2064
+ 'Usage: /arena start --models model1,model2 <task>',
2065
+ 'Models to compete (required, at least 2)':
2066
+ 'Models to compete (required, at least 2)',
2067
+ 'Format: authType:modelId or just modelId':
2068
+ 'Format: authType:modelId or just modelId',
2069
+ 'Arena requires at least 2 models. Use --models model1,model2 to specify.':
2070
+ 'Arena requires at least 2 models. Use --models model1,model2 to specify.',
2071
+ 'Arena started with {{count}} agents on task: "{{task}}"\nModels:\n{{modelList}}':
2072
+ 'Arena started with {{count}} agents on task: "{{task}}"\nModels:\n{{modelList}}',
2073
+ 'Arena panes are running in tmux. Attach with: `{{command}}`':
2074
+ 'Arena panes are running in tmux. Attach with: `{{command}}`',
2075
+ '[{{label}}] failed: {{error}}': '[{{label}}] failed: {{error}}',
2076
+ 'Loading suggestions...': 'Loading suggestions...',
2077
+ 'Show per-item context usage breakdown.':
2078
+ 'Show per-item context usage breakdown.',
2079
+
2080
+ // ============================================================================
2081
+ // Stats
2082
+ // ============================================================================
2083
+
2084
+ // statsCommand non-interactive output
2085
+ 'Session duration: {{duration}}': 'Session duration: {{duration}}',
2086
+ 'Prompts: {{count}}': 'Prompts: {{count}}',
2087
+ 'API requests: {{count}}': 'API requests: {{count}}',
2088
+ 'Tokens — prompt: {{prompt}}, output: {{output}}':
2089
+ 'Tokens — prompt: {{prompt}}, output: {{output}}',
2090
+ 'Tool calls: {{total}} ({{success}} ok, {{fail}} fail)':
2091
+ 'Tool calls: {{total}} ({{success}} ok, {{fail}} fail)',
2092
+ 'Files: +{{added}} / -{{removed}} lines':
2093
+ 'Files: +{{added}} / -{{removed}} lines',
2094
+ prompt: 'prompt',
2095
+ output: 'output',
2096
+ cached: 'cached',
2097
+ 'Estimated cost: ${{cost}}': 'Estimated cost: ${{cost}}',
2098
+ 'No model usage data yet.': 'No model usage data yet.',
2099
+ 'No tool usage data yet.': 'No tool usage data yet.',
2100
+
2101
+ // StatsDialog
2102
+ Models: 'Models',
2103
+ 'All time': 'All time',
2104
+ 'Last 7 days': 'Last 7 days',
2105
+ 'Last 30 days': 'Last 30 days',
2106
+ 'N/A': 'N/A',
2107
+ Sessions: 'Sessions',
2108
+ days: 'days',
2109
+ Input: 'Input',
2110
+ 'Tool calls': 'Tool calls',
2111
+ 'Code changes': 'Code changes',
2112
+ Projects: 'Projects',
2113
+ Name: 'Name',
2114
+ Duration: 'Duration',
2115
+ 'Activity Heatmap': 'Activity Heatmap',
2116
+ 'Loading stats...': 'Loading stats...',
2117
+ '\u2191 tabs \u00b7 r to cycle dates \u00b7 esc to close':
2118
+ '\u2191 tabs \u00b7 r to cycle dates \u00b7 esc to close',
2119
+ Cost: 'Cost',
2120
+ Less: 'Less',
2121
+ More: 'More',
2122
+ '(no data)': '(no data)',
2123
+ d: 'd',
2124
+ h: 'h',
2125
+ m: 'm',
2126
+
2127
+ // Stats Dashboard — keyboard hints (not translated)
2128
+ 'tab \xB7 esc': 'tab \xB7 esc',
2129
+ 'tab \xB7 r dates \xB7 \u2190\u2192 month \xB7 esc':
2130
+ 'tab \xB7 r dates \xB7 \u2190\u2192 month \xB7 esc',
2131
+ 'tab \xB7 r dates \xB7 esc': 'tab \xB7 r dates \xB7 esc',
2132
+
2133
+ // Stats Dashboard — labels
2134
+ Session: 'Session',
2135
+ Activity: 'Activity',
2136
+ Efficiency: 'Efficiency',
2137
+ Success: 'Success',
2138
+ Today: 'Today',
2139
+ 'Cache Hit Rate': 'Cache Hit Rate',
2140
+ 'Tool Success': 'Tool Success',
2141
+ 'Tool Leaderboard': 'Tool Leaderboard',
2142
+ Time: 'Time',
2143
+ Cache: 'Cache',
2144
+ Latency: 'Latency',
2145
+ 'Code Impact': 'Code Impact',
2146
+ 'Failed to load stats. Press r to retry.':
2147
+ 'Failed to load stats. Press r to retry.',
2148
+ net: 'net',
2149
+ streak: 'streak',
2150
+ best: 'best',
2151
+ 'Token Trend': 'Token Trend',
2152
+ 'In/Out': 'In/Out',
2153
+ 'API Requests': 'API Requests',
2154
+ 'Tool Calls': 'Tool Calls',
2155
+ 'Success rate': 'Success rate',
2156
+ 'Code Changes': 'Code Changes',
2157
+ Tool: 'Tool',
2158
+ reqs: 'reqs',
2159
+ in: 'in',
2160
+ out: 'out',
2161
+ };