@zgsm/costrict-cli 0.0.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 (1983) hide show
  1. package/dist/.last_build +0 -0
  2. package/dist/index.d.ts +7 -0
  3. package/dist/index.js +30 -0
  4. package/dist/index.js.map +1 -0
  5. package/dist/package.json +93 -0
  6. package/dist/src/commands/extensions/disable.d.ts +13 -0
  7. package/dist/src/commands/extensions/disable.js +69 -0
  8. package/dist/src/commands/extensions/disable.js.map +1 -0
  9. package/dist/src/commands/extensions/disable.test.d.ts +6 -0
  10. package/dist/src/commands/extensions/disable.test.js +169 -0
  11. package/dist/src/commands/extensions/disable.test.js.map +1 -0
  12. package/dist/src/commands/extensions/enable.d.ts +13 -0
  13. package/dist/src/commands/extensions/enable.js +71 -0
  14. package/dist/src/commands/extensions/enable.js.map +1 -0
  15. package/dist/src/commands/extensions/enable.test.d.ts +6 -0
  16. package/dist/src/commands/extensions/enable.test.js +150 -0
  17. package/dist/src/commands/extensions/enable.test.js.map +1 -0
  18. package/dist/src/commands/extensions/examples/context/GEMINI.md +14 -0
  19. package/dist/src/commands/extensions/examples/context/gemini-extension.json +4 -0
  20. package/dist/src/commands/extensions/examples/custom-commands/commands/fs/grep-code.toml +6 -0
  21. package/dist/src/commands/extensions/examples/custom-commands/gemini-extension.json +4 -0
  22. package/dist/src/commands/extensions/examples/exclude-tools/gemini-extension.json +5 -0
  23. package/dist/src/commands/extensions/examples/mcp-server/example.d.ts +6 -0
  24. package/dist/src/commands/extensions/examples/mcp-server/example.js +46 -0
  25. package/dist/src/commands/extensions/examples/mcp-server/example.js.map +1 -0
  26. package/dist/src/commands/extensions/examples/mcp-server/example.test.d.ts +6 -0
  27. package/dist/src/commands/extensions/examples/mcp-server/example.test.js +111 -0
  28. package/dist/src/commands/extensions/examples/mcp-server/example.test.js.map +1 -0
  29. package/dist/src/commands/extensions/examples/mcp-server/example.test.ts +135 -0
  30. package/dist/src/commands/extensions/examples/mcp-server/example.ts +60 -0
  31. package/dist/src/commands/extensions/examples/mcp-server/gemini-extension.json +11 -0
  32. package/dist/src/commands/extensions/examples/mcp-server/package.json +18 -0
  33. package/dist/src/commands/extensions/examples/mcp-server/tsconfig.json +13 -0
  34. package/dist/src/commands/extensions/install.d.ts +16 -0
  35. package/dist/src/commands/extensions/install.js +111 -0
  36. package/dist/src/commands/extensions/install.js.map +1 -0
  37. package/dist/src/commands/extensions/install.test.d.ts +6 -0
  38. package/dist/src/commands/extensions/install.test.js +122 -0
  39. package/dist/src/commands/extensions/install.test.js.map +1 -0
  40. package/dist/src/commands/extensions/link.d.ts +13 -0
  41. package/dist/src/commands/extensions/link.js +64 -0
  42. package/dist/src/commands/extensions/link.js.map +1 -0
  43. package/dist/src/commands/extensions/link.test.d.ts +6 -0
  44. package/dist/src/commands/extensions/link.test.js +137 -0
  45. package/dist/src/commands/extensions/link.test.js.map +1 -0
  46. package/dist/src/commands/extensions/list.d.ts +8 -0
  47. package/dist/src/commands/extensions/list.js +45 -0
  48. package/dist/src/commands/extensions/list.js.map +1 -0
  49. package/dist/src/commands/extensions/list.test.d.ts +6 -0
  50. package/dist/src/commands/extensions/list.test.js +111 -0
  51. package/dist/src/commands/extensions/list.test.js.map +1 -0
  52. package/dist/src/commands/extensions/new.d.ts +7 -0
  53. package/dist/src/commands/extensions/new.js +86 -0
  54. package/dist/src/commands/extensions/new.js.map +1 -0
  55. package/dist/src/commands/extensions/new.test.d.ts +6 -0
  56. package/dist/src/commands/extensions/new.test.js +62 -0
  57. package/dist/src/commands/extensions/new.test.js.map +1 -0
  58. package/dist/src/commands/extensions/settings.d.ts +7 -0
  59. package/dist/src/commands/extensions/settings.js +111 -0
  60. package/dist/src/commands/extensions/settings.js.map +1 -0
  61. package/dist/src/commands/extensions/uninstall.d.ts +12 -0
  62. package/dist/src/commands/extensions/uninstall.js +67 -0
  63. package/dist/src/commands/extensions/uninstall.js.map +1 -0
  64. package/dist/src/commands/extensions/uninstall.test.d.ts +6 -0
  65. package/dist/src/commands/extensions/uninstall.test.js +199 -0
  66. package/dist/src/commands/extensions/uninstall.test.js.map +1 -0
  67. package/dist/src/commands/extensions/update.d.ts +13 -0
  68. package/dist/src/commands/extensions/update.js +107 -0
  69. package/dist/src/commands/extensions/update.js.map +1 -0
  70. package/dist/src/commands/extensions/update.test.d.ts +6 -0
  71. package/dist/src/commands/extensions/update.test.js +170 -0
  72. package/dist/src/commands/extensions/update.test.js.map +1 -0
  73. package/dist/src/commands/extensions/utils.d.ts +13 -0
  74. package/dist/src/commands/extensions/utils.js +29 -0
  75. package/dist/src/commands/extensions/utils.js.map +1 -0
  76. package/dist/src/commands/extensions/validate.d.ts +12 -0
  77. package/dist/src/commands/extensions/validate.js +85 -0
  78. package/dist/src/commands/extensions/validate.js.map +1 -0
  79. package/dist/src/commands/extensions/validate.test.d.ts +6 -0
  80. package/dist/src/commands/extensions/validate.test.js +96 -0
  81. package/dist/src/commands/extensions/validate.test.js.map +1 -0
  82. package/dist/src/commands/extensions.d.ts +7 -0
  83. package/dist/src/commands/extensions.js +40 -0
  84. package/dist/src/commands/extensions.js.map +1 -0
  85. package/dist/src/commands/extensions.test.d.ts +6 -0
  86. package/dist/src/commands/extensions.test.js +67 -0
  87. package/dist/src/commands/extensions.test.js.map +1 -0
  88. package/dist/src/commands/hooks/migrate.d.ts +11 -0
  89. package/dist/src/commands/hooks/migrate.js +206 -0
  90. package/dist/src/commands/hooks/migrate.js.map +1 -0
  91. package/dist/src/commands/hooks/migrate.test.d.ts +6 -0
  92. package/dist/src/commands/hooks/migrate.test.js +389 -0
  93. package/dist/src/commands/hooks/migrate.test.js.map +1 -0
  94. package/dist/src/commands/hooks.d.ts +7 -0
  95. package/dist/src/commands/hooks.js +22 -0
  96. package/dist/src/commands/hooks.js.map +1 -0
  97. package/dist/src/commands/mcp/add.d.ts +7 -0
  98. package/dist/src/commands/mcp/add.js +178 -0
  99. package/dist/src/commands/mcp/add.js.map +1 -0
  100. package/dist/src/commands/mcp/add.test.d.ts +6 -0
  101. package/dist/src/commands/mcp/add.test.js +274 -0
  102. package/dist/src/commands/mcp/add.test.js.map +1 -0
  103. package/dist/src/commands/mcp/list.d.ts +8 -0
  104. package/dist/src/commands/mcp/list.js +122 -0
  105. package/dist/src/commands/mcp/list.js.map +1 -0
  106. package/dist/src/commands/mcp/list.test.d.ts +6 -0
  107. package/dist/src/commands/mcp/list.test.js +126 -0
  108. package/dist/src/commands/mcp/list.test.js.map +1 -0
  109. package/dist/src/commands/mcp/remove.d.ts +7 -0
  110. package/dist/src/commands/mcp/remove.js +47 -0
  111. package/dist/src/commands/mcp/remove.js.map +1 -0
  112. package/dist/src/commands/mcp/remove.test.d.ts +6 -0
  113. package/dist/src/commands/mcp/remove.test.js +189 -0
  114. package/dist/src/commands/mcp/remove.test.js.map +1 -0
  115. package/dist/src/commands/mcp.d.ts +7 -0
  116. package/dist/src/commands/mcp.js +25 -0
  117. package/dist/src/commands/mcp.js.map +1 -0
  118. package/dist/src/commands/mcp.test.d.ts +6 -0
  119. package/dist/src/commands/mcp.test.js +63 -0
  120. package/dist/src/commands/mcp.test.js.map +1 -0
  121. package/dist/src/commands/utils.d.ts +6 -0
  122. package/dist/src/commands/utils.js +11 -0
  123. package/dist/src/commands/utils.js.map +1 -0
  124. package/dist/src/commands/utils.test.d.ts +6 -0
  125. package/dist/src/commands/utils.test.js +35 -0
  126. package/dist/src/commands/utils.test.js.map +1 -0
  127. package/dist/src/config/auth.d.ts +6 -0
  128. package/dist/src/config/auth.js +53 -0
  129. package/dist/src/config/auth.js.map +1 -0
  130. package/dist/src/config/auth.test.d.ts +6 -0
  131. package/dist/src/config/auth.test.js +145 -0
  132. package/dist/src/config/auth.test.js.map +1 -0
  133. package/dist/src/config/config.d.ts +36 -0
  134. package/dist/src/config/config.integration.test.d.ts +6 -0
  135. package/dist/src/config/config.integration.test.js +204 -0
  136. package/dist/src/config/config.integration.test.js.map +1 -0
  137. package/dist/src/config/config.js +518 -0
  138. package/dist/src/config/config.js.map +1 -0
  139. package/dist/src/config/config.test.d.ts +6 -0
  140. package/dist/src/config/config.test.js +1953 -0
  141. package/dist/src/config/config.test.js.map +1 -0
  142. package/dist/src/config/extension-manager.d.ts +64 -0
  143. package/dist/src/config/extension-manager.js +517 -0
  144. package/dist/src/config/extension-manager.js.map +1 -0
  145. package/dist/src/config/extension.d.ts +28 -0
  146. package/dist/src/config/extension.js +20 -0
  147. package/dist/src/config/extension.js.map +1 -0
  148. package/dist/src/config/extension.test.d.ts +6 -0
  149. package/dist/src/config/extension.test.js +1542 -0
  150. package/dist/src/config/extension.test.js.map +1 -0
  151. package/dist/src/config/extensions/consent.d.ts +38 -0
  152. package/dist/src/config/extensions/consent.js +126 -0
  153. package/dist/src/config/extensions/consent.js.map +1 -0
  154. package/dist/src/config/extensions/consent.test.d.ts +6 -0
  155. package/dist/src/config/extensions/consent.test.js +162 -0
  156. package/dist/src/config/extensions/consent.test.js.map +1 -0
  157. package/dist/src/config/extensions/extensionEnablement.d.ts +47 -0
  158. package/dist/src/config/extensions/extensionEnablement.js +190 -0
  159. package/dist/src/config/extensions/extensionEnablement.js.map +1 -0
  160. package/dist/src/config/extensions/extensionEnablement.test.d.ts +6 -0
  161. package/dist/src/config/extensions/extensionEnablement.test.js +404 -0
  162. package/dist/src/config/extensions/extensionEnablement.test.js.map +1 -0
  163. package/dist/src/config/extensions/extensionSettings.d.ts +21 -0
  164. package/dist/src/config/extensions/extensionSettings.js +184 -0
  165. package/dist/src/config/extensions/extensionSettings.js.map +1 -0
  166. package/dist/src/config/extensions/extensionSettings.test.d.ts +6 -0
  167. package/dist/src/config/extensions/extensionSettings.test.js +493 -0
  168. package/dist/src/config/extensions/extensionSettings.test.js.map +1 -0
  169. package/dist/src/config/extensions/github.d.ts +50 -0
  170. package/dist/src/config/extensions/github.js +416 -0
  171. package/dist/src/config/extensions/github.js.map +1 -0
  172. package/dist/src/config/extensions/github.test.d.ts +6 -0
  173. package/dist/src/config/extensions/github.test.js +441 -0
  174. package/dist/src/config/extensions/github.test.js.map +1 -0
  175. package/dist/src/config/extensions/github_fetch.d.ts +7 -0
  176. package/dist/src/config/extensions/github_fetch.js +46 -0
  177. package/dist/src/config/extensions/github_fetch.js.map +1 -0
  178. package/dist/src/config/extensions/github_fetch.test.d.ts +6 -0
  179. package/dist/src/config/extensions/github_fetch.test.js +169 -0
  180. package/dist/src/config/extensions/github_fetch.test.js.map +1 -0
  181. package/dist/src/config/extensions/storage.d.ts +14 -0
  182. package/dist/src/config/extensions/storage.js +32 -0
  183. package/dist/src/config/extensions/storage.js.map +1 -0
  184. package/dist/src/config/extensions/storage.test.d.ts +6 -0
  185. package/dist/src/config/extensions/storage.test.js +64 -0
  186. package/dist/src/config/extensions/storage.test.js.map +1 -0
  187. package/dist/src/config/extensions/update.d.ts +20 -0
  188. package/dist/src/config/extensions/update.js +120 -0
  189. package/dist/src/config/extensions/update.js.map +1 -0
  190. package/dist/src/config/extensions/update.test.d.ts +6 -0
  191. package/dist/src/config/extensions/update.test.js +231 -0
  192. package/dist/src/config/extensions/update.test.js.map +1 -0
  193. package/dist/src/config/extensions/variableSchema.d.ts +32 -0
  194. package/dist/src/config/extensions/variableSchema.js +22 -0
  195. package/dist/src/config/extensions/variableSchema.js.map +1 -0
  196. package/dist/src/config/extensions/variables.d.ts +21 -0
  197. package/dist/src/config/extensions/variables.js +46 -0
  198. package/dist/src/config/extensions/variables.js.map +1 -0
  199. package/dist/src/config/extensions/variables.test.d.ts +6 -0
  200. package/dist/src/config/extensions/variables.test.js +103 -0
  201. package/dist/src/config/extensions/variables.test.js.map +1 -0
  202. package/dist/src/config/keyBindings.d.ts +93 -0
  203. package/dist/src/config/keyBindings.js +305 -0
  204. package/dist/src/config/keyBindings.js.map +1 -0
  205. package/dist/src/config/keyBindings.test.d.ts +6 -0
  206. package/dist/src/config/keyBindings.test.js +93 -0
  207. package/dist/src/config/keyBindings.test.js.map +1 -0
  208. package/dist/src/config/policy-engine.integration.test.d.ts +6 -0
  209. package/dist/src/config/policy-engine.integration.test.js +291 -0
  210. package/dist/src/config/policy-engine.integration.test.js.map +1 -0
  211. package/dist/src/config/policy.d.ts +9 -0
  212. package/dist/src/config/policy.js +21 -0
  213. package/dist/src/config/policy.js.map +1 -0
  214. package/dist/src/config/sandboxConfig.d.ts +12 -0
  215. package/dist/src/config/sandboxConfig.js +74 -0
  216. package/dist/src/config/sandboxConfig.js.map +1 -0
  217. package/dist/src/config/sandboxConfig.test.d.ts +6 -0
  218. package/dist/src/config/sandboxConfig.test.js +178 -0
  219. package/dist/src/config/sandboxConfig.test.js.map +1 -0
  220. package/dist/src/config/settingPaths.d.ts +10 -0
  221. package/dist/src/config/settingPaths.js +11 -0
  222. package/dist/src/config/settingPaths.js.map +1 -0
  223. package/dist/src/config/settingPaths.test.d.ts +6 -0
  224. package/dist/src/config/settingPaths.test.js +22 -0
  225. package/dist/src/config/settingPaths.test.js.map +1 -0
  226. package/dist/src/config/settings-validation.d.ts +23 -0
  227. package/dist/src/config/settings-validation.js +249 -0
  228. package/dist/src/config/settings-validation.js.map +1 -0
  229. package/dist/src/config/settings-validation.test.d.ts +6 -0
  230. package/dist/src/config/settings-validation.test.js +322 -0
  231. package/dist/src/config/settings-validation.test.js.map +1 -0
  232. package/dist/src/config/settings.d.ts +85 -0
  233. package/dist/src/config/settings.js +618 -0
  234. package/dist/src/config/settings.js.map +1 -0
  235. package/dist/src/config/settings.test.d.ts +6 -0
  236. package/dist/src/config/settings.test.js +1955 -0
  237. package/dist/src/config/settings.test.js.map +1 -0
  238. package/dist/src/config/settingsSchema.d.ts +1511 -0
  239. package/dist/src/config/settingsSchema.js +1756 -0
  240. package/dist/src/config/settingsSchema.js.map +1 -0
  241. package/dist/src/config/settingsSchema.test.d.ts +6 -0
  242. package/dist/src/config/settingsSchema.test.js +271 -0
  243. package/dist/src/config/settingsSchema.test.js.map +1 -0
  244. package/dist/src/config/settings_repro.test.d.ts +6 -0
  245. package/dist/src/config/settings_repro.test.js +162 -0
  246. package/dist/src/config/settings_repro.test.js.map +1 -0
  247. package/dist/src/config/trustedFolders.d.ts +55 -0
  248. package/dist/src/config/trustedFolders.js +176 -0
  249. package/dist/src/config/trustedFolders.js.map +1 -0
  250. package/dist/src/config/trustedFolders.test.d.ts +6 -0
  251. package/dist/src/config/trustedFolders.test.js +340 -0
  252. package/dist/src/config/trustedFolders.test.js.map +1 -0
  253. package/dist/src/core/auth.d.ts +13 -0
  254. package/dist/src/core/auth.js +27 -0
  255. package/dist/src/core/auth.js.map +1 -0
  256. package/dist/src/core/auth.test.d.ts +6 -0
  257. package/dist/src/core/auth.test.js +43 -0
  258. package/dist/src/core/auth.test.js.map +1 -0
  259. package/dist/src/core/initializer.d.ts +21 -0
  260. package/dist/src/core/initializer.js +36 -0
  261. package/dist/src/core/initializer.js.map +1 -0
  262. package/dist/src/core/initializer.test.d.ts +6 -0
  263. package/dist/src/core/initializer.test.js +101 -0
  264. package/dist/src/core/initializer.test.js.map +1 -0
  265. package/dist/src/core/theme.d.ts +12 -0
  266. package/dist/src/core/theme.js +20 -0
  267. package/dist/src/core/theme.js.map +1 -0
  268. package/dist/src/core/theme.test.d.ts +6 -0
  269. package/dist/src/core/theme.test.js +46 -0
  270. package/dist/src/core/theme.test.js.map +1 -0
  271. package/dist/src/gemini.d.ts +14 -0
  272. package/dist/src/gemini.js +494 -0
  273. package/dist/src/gemini.js.map +1 -0
  274. package/dist/src/gemini.test.d.ts +6 -0
  275. package/dist/src/gemini.test.js +1238 -0
  276. package/dist/src/gemini.test.js.map +1 -0
  277. package/dist/src/gemini_cleanup.test.d.ts +6 -0
  278. package/dist/src/gemini_cleanup.test.js +202 -0
  279. package/dist/src/gemini_cleanup.test.js.map +1 -0
  280. package/dist/src/generated/git-commit.d.ts +7 -0
  281. package/dist/src/generated/git-commit.js +10 -0
  282. package/dist/src/generated/git-commit.js.map +1 -0
  283. package/dist/src/nonInteractiveCli.d.ts +17 -0
  284. package/dist/src/nonInteractiveCli.js +335 -0
  285. package/dist/src/nonInteractiveCli.js.map +1 -0
  286. package/dist/src/nonInteractiveCli.test.d.ts +6 -0
  287. package/dist/src/nonInteractiveCli.test.js +1333 -0
  288. package/dist/src/nonInteractiveCli.test.js.map +1 -0
  289. package/dist/src/nonInteractiveCliCommands.d.ts +17 -0
  290. package/dist/src/nonInteractiveCliCommands.js +78 -0
  291. package/dist/src/nonInteractiveCliCommands.js.map +1 -0
  292. package/dist/src/patches/is-in-ci.d.ts +7 -0
  293. package/dist/src/patches/is-in-ci.js +15 -0
  294. package/dist/src/patches/is-in-ci.js.map +1 -0
  295. package/dist/src/services/BuiltinCommandLoader.d.ts +24 -0
  296. package/dist/src/services/BuiltinCommandLoader.js +110 -0
  297. package/dist/src/services/BuiltinCommandLoader.js.map +1 -0
  298. package/dist/src/services/BuiltinCommandLoader.test.d.ts +6 -0
  299. package/dist/src/services/BuiltinCommandLoader.test.js +200 -0
  300. package/dist/src/services/BuiltinCommandLoader.test.js.map +1 -0
  301. package/dist/src/services/CommandService.d.ts +55 -0
  302. package/dist/src/services/CommandService.js +91 -0
  303. package/dist/src/services/CommandService.js.map +1 -0
  304. package/dist/src/services/CommandService.test.d.ts +6 -0
  305. package/dist/src/services/CommandService.test.js +234 -0
  306. package/dist/src/services/CommandService.test.js.map +1 -0
  307. package/dist/src/services/FileCommandLoader.d.ts +51 -0
  308. package/dist/src/services/FileCommandLoader.js +230 -0
  309. package/dist/src/services/FileCommandLoader.js.map +1 -0
  310. package/dist/src/services/FileCommandLoader.test.d.ts +6 -0
  311. package/dist/src/services/FileCommandLoader.test.js +1046 -0
  312. package/dist/src/services/FileCommandLoader.test.js.map +1 -0
  313. package/dist/src/services/McpPromptLoader.d.ts +35 -0
  314. package/dist/src/services/McpPromptLoader.js +256 -0
  315. package/dist/src/services/McpPromptLoader.js.map +1 -0
  316. package/dist/src/services/McpPromptLoader.test.d.ts +6 -0
  317. package/dist/src/services/McpPromptLoader.test.js +411 -0
  318. package/dist/src/services/McpPromptLoader.test.js.map +1 -0
  319. package/dist/src/services/prompt-processors/argumentProcessor.d.ts +16 -0
  320. package/dist/src/services/prompt-processors/argumentProcessor.js +21 -0
  321. package/dist/src/services/prompt-processors/argumentProcessor.js.map +1 -0
  322. package/dist/src/services/prompt-processors/argumentProcessor.test.d.ts +6 -0
  323. package/dist/src/services/prompt-processors/argumentProcessor.test.js +40 -0
  324. package/dist/src/services/prompt-processors/argumentProcessor.test.js.map +1 -0
  325. package/dist/src/services/prompt-processors/atFileProcessor.d.ts +12 -0
  326. package/dist/src/services/prompt-processors/atFileProcessor.js +63 -0
  327. package/dist/src/services/prompt-processors/atFileProcessor.js.map +1 -0
  328. package/dist/src/services/prompt-processors/atFileProcessor.test.d.ts +6 -0
  329. package/dist/src/services/prompt-processors/atFileProcessor.test.js +174 -0
  330. package/dist/src/services/prompt-processors/atFileProcessor.test.js.map +1 -0
  331. package/dist/src/services/prompt-processors/injectionParser.d.ts +29 -0
  332. package/dist/src/services/prompt-processors/injectionParser.js +60 -0
  333. package/dist/src/services/prompt-processors/injectionParser.js.map +1 -0
  334. package/dist/src/services/prompt-processors/injectionParser.test.d.ts +6 -0
  335. package/dist/src/services/prompt-processors/injectionParser.test.js +189 -0
  336. package/dist/src/services/prompt-processors/injectionParser.test.js.map +1 -0
  337. package/dist/src/services/prompt-processors/shellProcessor.d.ts +27 -0
  338. package/dist/src/services/prompt-processors/shellProcessor.js +128 -0
  339. package/dist/src/services/prompt-processors/shellProcessor.js.map +1 -0
  340. package/dist/src/services/prompt-processors/shellProcessor.test.d.ts +6 -0
  341. package/dist/src/services/prompt-processors/shellProcessor.test.js +482 -0
  342. package/dist/src/services/prompt-processors/shellProcessor.test.js.map +1 -0
  343. package/dist/src/services/prompt-processors/types.d.ts +45 -0
  344. package/dist/src/services/prompt-processors/types.js +20 -0
  345. package/dist/src/services/prompt-processors/types.js.map +1 -0
  346. package/dist/src/services/types.d.ts +22 -0
  347. package/dist/src/services/types.js +7 -0
  348. package/dist/src/services/types.js.map +1 -0
  349. package/dist/src/test-utils/async.d.ts +9 -0
  350. package/dist/src/test-utils/async.js +29 -0
  351. package/dist/src/test-utils/async.js.map +1 -0
  352. package/dist/src/test-utils/createExtension.d.ts +17 -0
  353. package/dist/src/test-utils/createExtension.js +25 -0
  354. package/dist/src/test-utils/createExtension.js.map +1 -0
  355. package/dist/src/test-utils/customMatchers.d.ts +14 -0
  356. package/dist/src/test-utils/customMatchers.js +40 -0
  357. package/dist/src/test-utils/customMatchers.js.map +1 -0
  358. package/dist/src/test-utils/mockCommandContext.d.ts +18 -0
  359. package/dist/src/test-utils/mockCommandContext.js +88 -0
  360. package/dist/src/test-utils/mockCommandContext.js.map +1 -0
  361. package/dist/src/test-utils/mockCommandContext.test.d.ts +6 -0
  362. package/dist/src/test-utils/mockCommandContext.test.js +51 -0
  363. package/dist/src/test-utils/mockCommandContext.test.js.map +1 -0
  364. package/dist/src/test-utils/render.d.ts +58 -0
  365. package/dist/src/test-utils/render.js +222 -0
  366. package/dist/src/test-utils/render.js.map +1 -0
  367. package/dist/src/test-utils/render.test.d.ts +6 -0
  368. package/dist/src/test-utils/render.test.js +79 -0
  369. package/dist/src/test-utils/render.test.js.map +1 -0
  370. package/dist/src/ui/App.d.ts +6 -0
  371. package/dist/src/ui/App.js +29 -0
  372. package/dist/src/ui/App.js.map +1 -0
  373. package/dist/src/ui/App.test.d.ts +6 -0
  374. package/dist/src/ui/App.test.js +160 -0
  375. package/dist/src/ui/App.test.js.map +1 -0
  376. package/dist/src/ui/AppContainer.d.ts +16 -0
  377. package/dist/src/ui/AppContainer.js +1256 -0
  378. package/dist/src/ui/AppContainer.js.map +1 -0
  379. package/dist/src/ui/AppContainer.test.d.ts +6 -0
  380. package/dist/src/ui/AppContainer.test.js +1580 -0
  381. package/dist/src/ui/AppContainer.test.js.map +1 -0
  382. package/dist/src/ui/IdeIntegrationNudge.d.ts +16 -0
  383. package/dist/src/ui/IdeIntegrationNudge.js +50 -0
  384. package/dist/src/ui/IdeIntegrationNudge.js.map +1 -0
  385. package/dist/src/ui/IdeIntegrationNudge.test.d.ts +6 -0
  386. package/dist/src/ui/IdeIntegrationNudge.test.js +147 -0
  387. package/dist/src/ui/IdeIntegrationNudge.test.js.map +1 -0
  388. package/dist/src/ui/auth/ApiAuthDialog.d.ts +14 -0
  389. package/dist/src/ui/auth/ApiAuthDialog.js +59 -0
  390. package/dist/src/ui/auth/ApiAuthDialog.js.map +1 -0
  391. package/dist/src/ui/auth/ApiAuthDialog.test.d.ts +6 -0
  392. package/dist/src/ui/auth/ApiAuthDialog.test.js +110 -0
  393. package/dist/src/ui/auth/ApiAuthDialog.test.js.map +1 -0
  394. package/dist/src/ui/auth/AuthDialog.d.ts +18 -0
  395. package/dist/src/ui/auth/AuthDialog.js +149 -0
  396. package/dist/src/ui/auth/AuthDialog.js.map +1 -0
  397. package/dist/src/ui/auth/AuthDialog.test.d.ts +6 -0
  398. package/dist/src/ui/auth/AuthDialog.test.js +288 -0
  399. package/dist/src/ui/auth/AuthDialog.test.js.map +1 -0
  400. package/dist/src/ui/auth/AuthInProgress.d.ts +11 -0
  401. package/dist/src/ui/auth/AuthInProgress.js +23 -0
  402. package/dist/src/ui/auth/AuthInProgress.js.map +1 -0
  403. package/dist/src/ui/auth/AuthInProgress.test.d.ts +6 -0
  404. package/dist/src/ui/auth/AuthInProgress.test.js +71 -0
  405. package/dist/src/ui/auth/AuthInProgress.test.js.map +1 -0
  406. package/dist/src/ui/auth/useAuth.d.ts +17 -0
  407. package/dist/src/ui/auth/useAuth.js +114 -0
  408. package/dist/src/ui/auth/useAuth.js.map +1 -0
  409. package/dist/src/ui/auth/useAuth.test.d.ts +6 -0
  410. package/dist/src/ui/auth/useAuth.test.js +189 -0
  411. package/dist/src/ui/auth/useAuth.test.js.map +1 -0
  412. package/dist/src/ui/colors.d.ts +7 -0
  413. package/dist/src/ui/colors.js +57 -0
  414. package/dist/src/ui/colors.js.map +1 -0
  415. package/dist/src/ui/commands/aboutCommand.d.ts +7 -0
  416. package/dist/src/ui/commands/aboutCommand.js +56 -0
  417. package/dist/src/ui/commands/aboutCommand.js.map +1 -0
  418. package/dist/src/ui/commands/aboutCommand.test.d.ts +6 -0
  419. package/dist/src/ui/commands/aboutCommand.test.js +131 -0
  420. package/dist/src/ui/commands/aboutCommand.test.js.map +1 -0
  421. package/dist/src/ui/commands/authCommand.d.ts +7 -0
  422. package/dist/src/ui/commands/authCommand.js +17 -0
  423. package/dist/src/ui/commands/authCommand.js.map +1 -0
  424. package/dist/src/ui/commands/authCommand.test.d.ts +6 -0
  425. package/dist/src/ui/commands/authCommand.test.js +30 -0
  426. package/dist/src/ui/commands/authCommand.test.js.map +1 -0
  427. package/dist/src/ui/commands/bugCommand.d.ts +7 -0
  428. package/dist/src/ui/commands/bugCommand.js +76 -0
  429. package/dist/src/ui/commands/bugCommand.js.map +1 -0
  430. package/dist/src/ui/commands/bugCommand.test.d.ts +6 -0
  431. package/dist/src/ui/commands/bugCommand.test.js +105 -0
  432. package/dist/src/ui/commands/bugCommand.test.js.map +1 -0
  433. package/dist/src/ui/commands/builtin/agentCommand.d.ts +10 -0
  434. package/dist/src/ui/commands/builtin/agentCommand.js +160 -0
  435. package/dist/src/ui/commands/builtin/agentCommand.js.map +1 -0
  436. package/dist/src/ui/commands/builtin/agentCommand.test.d.ts +6 -0
  437. package/dist/src/ui/commands/builtin/agentCommand.test.js +172 -0
  438. package/dist/src/ui/commands/builtin/agentCommand.test.js.map +1 -0
  439. package/dist/src/ui/commands/builtin/planApplyCommand.d.ts +10 -0
  440. package/dist/src/ui/commands/builtin/planApplyCommand.js +104 -0
  441. package/dist/src/ui/commands/builtin/planApplyCommand.js.map +1 -0
  442. package/dist/src/ui/commands/builtin/planCommand.d.ts +10 -0
  443. package/dist/src/ui/commands/builtin/planCommand.js +308 -0
  444. package/dist/src/ui/commands/builtin/planCommand.js.map +1 -0
  445. package/dist/src/ui/commands/chatCommand.d.ts +9 -0
  446. package/dist/src/ui/commands/chatCommand.js +326 -0
  447. package/dist/src/ui/commands/chatCommand.js.map +1 -0
  448. package/dist/src/ui/commands/chatCommand.test.d.ts +6 -0
  449. package/dist/src/ui/commands/chatCommand.test.js +594 -0
  450. package/dist/src/ui/commands/chatCommand.test.js.map +1 -0
  451. package/dist/src/ui/commands/clearCommand.d.ts +7 -0
  452. package/dist/src/ui/commands/clearCommand.js +57 -0
  453. package/dist/src/ui/commands/clearCommand.js.map +1 -0
  454. package/dist/src/ui/commands/clearCommand.test.d.ts +6 -0
  455. package/dist/src/ui/commands/clearCommand.test.js +83 -0
  456. package/dist/src/ui/commands/clearCommand.test.js.map +1 -0
  457. package/dist/src/ui/commands/compressCommand.d.ts +7 -0
  458. package/dist/src/ui/commands/compressCommand.js +67 -0
  459. package/dist/src/ui/commands/compressCommand.js.map +1 -0
  460. package/dist/src/ui/commands/compressCommand.test.d.ts +6 -0
  461. package/dist/src/ui/commands/compressCommand.test.js +98 -0
  462. package/dist/src/ui/commands/compressCommand.test.js.map +1 -0
  463. package/dist/src/ui/commands/copyCommand.d.ts +7 -0
  464. package/dist/src/ui/commands/copyCommand.js +61 -0
  465. package/dist/src/ui/commands/copyCommand.js.map +1 -0
  466. package/dist/src/ui/commands/copyCommand.test.d.ts +6 -0
  467. package/dist/src/ui/commands/copyCommand.test.js +242 -0
  468. package/dist/src/ui/commands/copyCommand.test.js.map +1 -0
  469. package/dist/src/ui/commands/corgiCommand.d.ts +7 -0
  470. package/dist/src/ui/commands/corgiCommand.js +17 -0
  471. package/dist/src/ui/commands/corgiCommand.js.map +1 -0
  472. package/dist/src/ui/commands/corgiCommand.test.d.ts +6 -0
  473. package/dist/src/ui/commands/corgiCommand.test.js +28 -0
  474. package/dist/src/ui/commands/corgiCommand.test.js.map +1 -0
  475. package/dist/src/ui/commands/directoryCommand.d.ts +7 -0
  476. package/dist/src/ui/commands/directoryCommand.js +189 -0
  477. package/dist/src/ui/commands/directoryCommand.js.map +1 -0
  478. package/dist/src/ui/commands/directoryCommand.test.d.ts +6 -0
  479. package/dist/src/ui/commands/directoryCommand.test.js +235 -0
  480. package/dist/src/ui/commands/directoryCommand.test.js.map +1 -0
  481. package/dist/src/ui/commands/docsCommand.d.ts +7 -0
  482. package/dist/src/ui/commands/docsCommand.js +32 -0
  483. package/dist/src/ui/commands/docsCommand.js.map +1 -0
  484. package/dist/src/ui/commands/docsCommand.test.d.ts +6 -0
  485. package/dist/src/ui/commands/docsCommand.test.js +72 -0
  486. package/dist/src/ui/commands/docsCommand.test.js.map +1 -0
  487. package/dist/src/ui/commands/editorCommand.d.ts +7 -0
  488. package/dist/src/ui/commands/editorCommand.js +17 -0
  489. package/dist/src/ui/commands/editorCommand.js.map +1 -0
  490. package/dist/src/ui/commands/editorCommand.test.d.ts +6 -0
  491. package/dist/src/ui/commands/editorCommand.test.js +27 -0
  492. package/dist/src/ui/commands/editorCommand.test.js.map +1 -0
  493. package/dist/src/ui/commands/extensionsCommand.d.ts +12 -0
  494. package/dist/src/ui/commands/extensionsCommand.js +403 -0
  495. package/dist/src/ui/commands/extensionsCommand.js.map +1 -0
  496. package/dist/src/ui/commands/extensionsCommand.test.d.ts +6 -0
  497. package/dist/src/ui/commands/extensionsCommand.test.js +588 -0
  498. package/dist/src/ui/commands/extensionsCommand.test.js.map +1 -0
  499. package/dist/src/ui/commands/helpCommand.d.ts +7 -0
  500. package/dist/src/ui/commands/helpCommand.js +22 -0
  501. package/dist/src/ui/commands/helpCommand.js.map +1 -0
  502. package/dist/src/ui/commands/helpCommand.test.d.ts +6 -0
  503. package/dist/src/ui/commands/helpCommand.test.js +42 -0
  504. package/dist/src/ui/commands/helpCommand.test.js.map +1 -0
  505. package/dist/src/ui/commands/hooksCommand.d.ts +7 -0
  506. package/dist/src/ui/commands/hooksCommand.js +207 -0
  507. package/dist/src/ui/commands/hooksCommand.js.map +1 -0
  508. package/dist/src/ui/commands/hooksCommand.test.d.ts +6 -0
  509. package/dist/src/ui/commands/hooksCommand.test.js +396 -0
  510. package/dist/src/ui/commands/hooksCommand.test.js.map +1 -0
  511. package/dist/src/ui/commands/ideCommand.d.ts +7 -0
  512. package/dist/src/ui/commands/ideCommand.js +233 -0
  513. package/dist/src/ui/commands/ideCommand.js.map +1 -0
  514. package/dist/src/ui/commands/ideCommand.test.d.ts +6 -0
  515. package/dist/src/ui/commands/ideCommand.test.js +203 -0
  516. package/dist/src/ui/commands/ideCommand.test.js.map +1 -0
  517. package/dist/src/ui/commands/initCommand.d.ts +7 -0
  518. package/dist/src/ui/commands/initCommand.js +37 -0
  519. package/dist/src/ui/commands/initCommand.js.map +1 -0
  520. package/dist/src/ui/commands/initCommand.test.d.ts +6 -0
  521. package/dist/src/ui/commands/initCommand.test.js +80 -0
  522. package/dist/src/ui/commands/initCommand.test.js.map +1 -0
  523. package/dist/src/ui/commands/mcpCommand.d.ts +7 -0
  524. package/dist/src/ui/commands/mcpCommand.js +285 -0
  525. package/dist/src/ui/commands/mcpCommand.js.map +1 -0
  526. package/dist/src/ui/commands/mcpCommand.test.d.ts +6 -0
  527. package/dist/src/ui/commands/mcpCommand.test.js +181 -0
  528. package/dist/src/ui/commands/mcpCommand.test.js.map +1 -0
  529. package/dist/src/ui/commands/memoryCommand.d.ts +7 -0
  530. package/dist/src/ui/commands/memoryCommand.js +108 -0
  531. package/dist/src/ui/commands/memoryCommand.js.map +1 -0
  532. package/dist/src/ui/commands/memoryCommand.test.d.ts +6 -0
  533. package/dist/src/ui/commands/memoryCommand.test.js +254 -0
  534. package/dist/src/ui/commands/memoryCommand.test.js.map +1 -0
  535. package/dist/src/ui/commands/modeCommand.d.ts +7 -0
  536. package/dist/src/ui/commands/modeCommand.js +45 -0
  537. package/dist/src/ui/commands/modeCommand.js.map +1 -0
  538. package/dist/src/ui/commands/modelCommand.d.ts +7 -0
  539. package/dist/src/ui/commands/modelCommand.js +17 -0
  540. package/dist/src/ui/commands/modelCommand.js.map +1 -0
  541. package/dist/src/ui/commands/modelCommand.test.d.ts +6 -0
  542. package/dist/src/ui/commands/modelCommand.test.js +30 -0
  543. package/dist/src/ui/commands/modelCommand.test.js.map +1 -0
  544. package/dist/src/ui/commands/permissionsCommand.d.ts +7 -0
  545. package/dist/src/ui/commands/permissionsCommand.js +75 -0
  546. package/dist/src/ui/commands/permissionsCommand.js.map +1 -0
  547. package/dist/src/ui/commands/permissionsCommand.test.d.ts +6 -0
  548. package/dist/src/ui/commands/permissionsCommand.test.js +86 -0
  549. package/dist/src/ui/commands/permissionsCommand.test.js.map +1 -0
  550. package/dist/src/ui/commands/policiesCommand.d.ts +7 -0
  551. package/dist/src/ui/commands/policiesCommand.js +61 -0
  552. package/dist/src/ui/commands/policiesCommand.js.map +1 -0
  553. package/dist/src/ui/commands/policiesCommand.test.d.ts +6 -0
  554. package/dist/src/ui/commands/policiesCommand.test.js +83 -0
  555. package/dist/src/ui/commands/policiesCommand.test.js.map +1 -0
  556. package/dist/src/ui/commands/privacyCommand.d.ts +7 -0
  557. package/dist/src/ui/commands/privacyCommand.js +17 -0
  558. package/dist/src/ui/commands/privacyCommand.js.map +1 -0
  559. package/dist/src/ui/commands/privacyCommand.test.d.ts +6 -0
  560. package/dist/src/ui/commands/privacyCommand.test.js +32 -0
  561. package/dist/src/ui/commands/privacyCommand.test.js.map +1 -0
  562. package/dist/src/ui/commands/profileCommand.d.ts +7 -0
  563. package/dist/src/ui/commands/profileCommand.js +24 -0
  564. package/dist/src/ui/commands/profileCommand.js.map +1 -0
  565. package/dist/src/ui/commands/quitCommand.d.ts +7 -0
  566. package/dist/src/ui/commands/quitCommand.js +35 -0
  567. package/dist/src/ui/commands/quitCommand.js.map +1 -0
  568. package/dist/src/ui/commands/quitCommand.test.d.ts +6 -0
  569. package/dist/src/ui/commands/quitCommand.test.js +50 -0
  570. package/dist/src/ui/commands/quitCommand.test.js.map +1 -0
  571. package/dist/src/ui/commands/restoreCommand.d.ts +8 -0
  572. package/dist/src/ui/commands/restoreCommand.js +130 -0
  573. package/dist/src/ui/commands/restoreCommand.js.map +1 -0
  574. package/dist/src/ui/commands/restoreCommand.test.d.ts +6 -0
  575. package/dist/src/ui/commands/restoreCommand.test.js +190 -0
  576. package/dist/src/ui/commands/restoreCommand.test.js.map +1 -0
  577. package/dist/src/ui/commands/resumeCommand.d.ts +7 -0
  578. package/dist/src/ui/commands/resumeCommand.js +17 -0
  579. package/dist/src/ui/commands/resumeCommand.js.map +1 -0
  580. package/dist/src/ui/commands/settingsCommand.d.ts +7 -0
  581. package/dist/src/ui/commands/settingsCommand.js +17 -0
  582. package/dist/src/ui/commands/settingsCommand.js.map +1 -0
  583. package/dist/src/ui/commands/settingsCommand.test.d.ts +6 -0
  584. package/dist/src/ui/commands/settingsCommand.test.js +30 -0
  585. package/dist/src/ui/commands/settingsCommand.test.js.map +1 -0
  586. package/dist/src/ui/commands/setupGithubCommand.d.ts +10 -0
  587. package/dist/src/ui/commands/setupGithubCommand.js +195 -0
  588. package/dist/src/ui/commands/setupGithubCommand.js.map +1 -0
  589. package/dist/src/ui/commands/setupGithubCommand.test.d.ts +6 -0
  590. package/dist/src/ui/commands/setupGithubCommand.test.js +238 -0
  591. package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -0
  592. package/dist/src/ui/commands/statsCommand.d.ts +7 -0
  593. package/dist/src/ui/commands/statsCommand.js +79 -0
  594. package/dist/src/ui/commands/statsCommand.js.map +1 -0
  595. package/dist/src/ui/commands/statsCommand.test.d.ts +6 -0
  596. package/dist/src/ui/commands/statsCommand.test.js +56 -0
  597. package/dist/src/ui/commands/statsCommand.test.js.map +1 -0
  598. package/dist/src/ui/commands/terminalSetupCommand.d.ts +13 -0
  599. package/dist/src/ui/commands/terminalSetupCommand.js +43 -0
  600. package/dist/src/ui/commands/terminalSetupCommand.js.map +1 -0
  601. package/dist/src/ui/commands/terminalSetupCommand.test.d.ts +6 -0
  602. package/dist/src/ui/commands/terminalSetupCommand.test.js +66 -0
  603. package/dist/src/ui/commands/terminalSetupCommand.test.js.map +1 -0
  604. package/dist/src/ui/commands/themeCommand.d.ts +7 -0
  605. package/dist/src/ui/commands/themeCommand.js +17 -0
  606. package/dist/src/ui/commands/themeCommand.js.map +1 -0
  607. package/dist/src/ui/commands/themeCommand.test.d.ts +6 -0
  608. package/dist/src/ui/commands/themeCommand.test.js +32 -0
  609. package/dist/src/ui/commands/themeCommand.test.js.map +1 -0
  610. package/dist/src/ui/commands/toolsCommand.d.ts +7 -0
  611. package/dist/src/ui/commands/toolsCommand.js +43 -0
  612. package/dist/src/ui/commands/toolsCommand.js.map +1 -0
  613. package/dist/src/ui/commands/toolsCommand.test.d.ts +6 -0
  614. package/dist/src/ui/commands/toolsCommand.test.js +100 -0
  615. package/dist/src/ui/commands/toolsCommand.test.js.map +1 -0
  616. package/dist/src/ui/commands/types.d.ts +135 -0
  617. package/dist/src/ui/commands/types.js +12 -0
  618. package/dist/src/ui/commands/types.js.map +1 -0
  619. package/dist/src/ui/commands/vimCommand.d.ts +7 -0
  620. package/dist/src/ui/commands/vimCommand.js +24 -0
  621. package/dist/src/ui/commands/vimCommand.js.map +1 -0
  622. package/dist/src/ui/components/AboutBox.d.ts +18 -0
  623. package/dist/src/ui/components/AboutBox.js +6 -0
  624. package/dist/src/ui/components/AboutBox.js.map +1 -0
  625. package/dist/src/ui/components/AboutBox.test.d.ts +6 -0
  626. package/dist/src/ui/components/AboutBox.test.js +53 -0
  627. package/dist/src/ui/components/AboutBox.test.js.map +1 -0
  628. package/dist/src/ui/components/AlternateBufferQuittingDisplay.d.ts +6 -0
  629. package/dist/src/ui/components/AlternateBufferQuittingDisplay.js +24 -0
  630. package/dist/src/ui/components/AlternateBufferQuittingDisplay.js.map +1 -0
  631. package/dist/src/ui/components/AlternateBufferQuittingDisplay.test.d.ts +6 -0
  632. package/dist/src/ui/components/AlternateBufferQuittingDisplay.test.js +161 -0
  633. package/dist/src/ui/components/AlternateBufferQuittingDisplay.test.js.map +1 -0
  634. package/dist/src/ui/components/AnsiOutput.d.ts +14 -0
  635. package/dist/src/ui/components/AnsiOutput.js +12 -0
  636. package/dist/src/ui/components/AnsiOutput.js.map +1 -0
  637. package/dist/src/ui/components/AnsiOutput.test.d.ts +6 -0
  638. package/dist/src/ui/components/AnsiOutput.test.js +92 -0
  639. package/dist/src/ui/components/AnsiOutput.test.js.map +1 -0
  640. package/dist/src/ui/components/AppHeader.d.ts +10 -0
  641. package/dist/src/ui/components/AppHeader.js +22 -0
  642. package/dist/src/ui/components/AppHeader.js.map +1 -0
  643. package/dist/src/ui/components/AppHeader.test.d.ts +6 -0
  644. package/dist/src/ui/components/AppHeader.test.js +144 -0
  645. package/dist/src/ui/components/AppHeader.test.js.map +1 -0
  646. package/dist/src/ui/components/AsciiArt.d.ts +11 -0
  647. package/dist/src/ui/components/AsciiArt.js +53 -0
  648. package/dist/src/ui/components/AsciiArt.js.map +1 -0
  649. package/dist/src/ui/components/AutoAcceptIndicator.d.ts +12 -0
  650. package/dist/src/ui/components/AutoAcceptIndicator.js +26 -0
  651. package/dist/src/ui/components/AutoAcceptIndicator.js.map +1 -0
  652. package/dist/src/ui/components/AutoAcceptIndicator.test.d.ts +6 -0
  653. package/dist/src/ui/components/AutoAcceptIndicator.test.js +31 -0
  654. package/dist/src/ui/components/AutoAcceptIndicator.test.js.map +1 -0
  655. package/dist/src/ui/components/Banner.d.ts +14 -0
  656. package/dist/src/ui/components/Banner.js +28 -0
  657. package/dist/src/ui/components/Banner.js.map +1 -0
  658. package/dist/src/ui/components/Banner.test.d.ts +6 -0
  659. package/dist/src/ui/components/Banner.test.js +24 -0
  660. package/dist/src/ui/components/Banner.test.js.map +1 -0
  661. package/dist/src/ui/components/CliSpinner.d.ts +9 -0
  662. package/dist/src/ui/components/CliSpinner.js +19 -0
  663. package/dist/src/ui/components/CliSpinner.js.map +1 -0
  664. package/dist/src/ui/components/CliSpinner.test.d.ts +6 -0
  665. package/dist/src/ui/components/CliSpinner.test.js +23 -0
  666. package/dist/src/ui/components/CliSpinner.test.js.map +1 -0
  667. package/dist/src/ui/components/Composer.d.ts +6 -0
  668. package/dist/src/ui/components/Composer.js +60 -0
  669. package/dist/src/ui/components/Composer.js.map +1 -0
  670. package/dist/src/ui/components/Composer.test.d.ts +6 -0
  671. package/dist/src/ui/components/Composer.test.js +355 -0
  672. package/dist/src/ui/components/Composer.test.js.map +1 -0
  673. package/dist/src/ui/components/ConfigInitDisplay.d.ts +6 -0
  674. package/dist/src/ui/components/ConfigInitDisplay.js +49 -0
  675. package/dist/src/ui/components/ConfigInitDisplay.js.map +1 -0
  676. package/dist/src/ui/components/ConfigInitDisplay.test.d.ts +6 -0
  677. package/dist/src/ui/components/ConfigInitDisplay.test.js +133 -0
  678. package/dist/src/ui/components/ConfigInitDisplay.test.js.map +1 -0
  679. package/dist/src/ui/components/ConsentPrompt.d.ts +13 -0
  680. package/dist/src/ui/components/ConsentPrompt.js +19 -0
  681. package/dist/src/ui/components/ConsentPrompt.js.map +1 -0
  682. package/dist/src/ui/components/ConsentPrompt.test.d.ts +6 -0
  683. package/dist/src/ui/components/ConsentPrompt.test.js +77 -0
  684. package/dist/src/ui/components/ConsentPrompt.test.js.map +1 -0
  685. package/dist/src/ui/components/ConsoleSummaryDisplay.d.ts +11 -0
  686. package/dist/src/ui/components/ConsoleSummaryDisplay.js +11 -0
  687. package/dist/src/ui/components/ConsoleSummaryDisplay.js.map +1 -0
  688. package/dist/src/ui/components/ConsoleSummaryDisplay.test.d.ts +6 -0
  689. package/dist/src/ui/components/ConsoleSummaryDisplay.test.js +26 -0
  690. package/dist/src/ui/components/ConsoleSummaryDisplay.test.js.map +1 -0
  691. package/dist/src/ui/components/ContextSummaryDisplay.d.ts +19 -0
  692. package/dist/src/ui/components/ContextSummaryDisplay.js +56 -0
  693. package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -0
  694. package/dist/src/ui/components/ContextSummaryDisplay.test.d.ts +6 -0
  695. package/dist/src/ui/components/ContextSummaryDisplay.test.js +71 -0
  696. package/dist/src/ui/components/ContextSummaryDisplay.test.js.map +1 -0
  697. package/dist/src/ui/components/ContextUsageDisplay.d.ts +10 -0
  698. package/dist/src/ui/components/ContextUsageDisplay.js +16 -0
  699. package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -0
  700. package/dist/src/ui/components/ContextUsageDisplay.test.d.ts +6 -0
  701. package/dist/src/ui/components/ContextUsageDisplay.test.js +39 -0
  702. package/dist/src/ui/components/ContextUsageDisplay.test.js.map +1 -0
  703. package/dist/src/ui/components/CopyModeWarning.d.ts +7 -0
  704. package/dist/src/ui/components/CopyModeWarning.js +12 -0
  705. package/dist/src/ui/components/CopyModeWarning.js.map +1 -0
  706. package/dist/src/ui/components/CopyModeWarning.test.d.ts +6 -0
  707. package/dist/src/ui/components/CopyModeWarning.test.js +33 -0
  708. package/dist/src/ui/components/CopyModeWarning.test.js.map +1 -0
  709. package/dist/src/ui/components/DebugProfiler.d.ts +25 -0
  710. package/dist/src/ui/components/DebugProfiler.js +162 -0
  711. package/dist/src/ui/components/DebugProfiler.js.map +1 -0
  712. package/dist/src/ui/components/DebugProfiler.test.d.ts +6 -0
  713. package/dist/src/ui/components/DebugProfiler.test.js +201 -0
  714. package/dist/src/ui/components/DebugProfiler.test.js.map +1 -0
  715. package/dist/src/ui/components/DetailedMessagesDisplay.d.ts +15 -0
  716. package/dist/src/ui/components/DetailedMessagesDisplay.js +54 -0
  717. package/dist/src/ui/components/DetailedMessagesDisplay.js.map +1 -0
  718. package/dist/src/ui/components/DetailedMessagesDisplay.test.d.ts +6 -0
  719. package/dist/src/ui/components/DetailedMessagesDisplay.test.js +39 -0
  720. package/dist/src/ui/components/DetailedMessagesDisplay.test.js.map +1 -0
  721. package/dist/src/ui/components/DialogManager.d.ts +12 -0
  722. package/dist/src/ui/components/DialogManager.js +103 -0
  723. package/dist/src/ui/components/DialogManager.js.map +1 -0
  724. package/dist/src/ui/components/DialogManager.test.d.ts +6 -0
  725. package/dist/src/ui/components/DialogManager.test.js +167 -0
  726. package/dist/src/ui/components/DialogManager.test.js.map +1 -0
  727. package/dist/src/ui/components/EditorSettingsDialog.d.ts +15 -0
  728. package/dist/src/ui/components/EditorSettingsDialog.js +80 -0
  729. package/dist/src/ui/components/EditorSettingsDialog.js.map +1 -0
  730. package/dist/src/ui/components/EditorSettingsDialog.test.d.ts +6 -0
  731. package/dist/src/ui/components/EditorSettingsDialog.test.js +118 -0
  732. package/dist/src/ui/components/EditorSettingsDialog.test.js.map +1 -0
  733. package/dist/src/ui/components/ExitWarning.d.ts +7 -0
  734. package/dist/src/ui/components/ExitWarning.js +9 -0
  735. package/dist/src/ui/components/ExitWarning.js.map +1 -0
  736. package/dist/src/ui/components/ExitWarning.test.d.ts +6 -0
  737. package/dist/src/ui/components/ExitWarning.test.js +54 -0
  738. package/dist/src/ui/components/ExitWarning.test.js.map +1 -0
  739. package/dist/src/ui/components/FolderTrustDialog.d.ts +17 -0
  740. package/dist/src/ui/components/FolderTrustDialog.js +66 -0
  741. package/dist/src/ui/components/FolderTrustDialog.js.map +1 -0
  742. package/dist/src/ui/components/FolderTrustDialog.test.d.ts +6 -0
  743. package/dist/src/ui/components/FolderTrustDialog.test.js +90 -0
  744. package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -0
  745. package/dist/src/ui/components/Footer.d.ts +7 -0
  746. package/dist/src/ui/components/Footer.js +49 -0
  747. package/dist/src/ui/components/Footer.js.map +1 -0
  748. package/dist/src/ui/components/Footer.test.d.ts +6 -0
  749. package/dist/src/ui/components/Footer.test.js +314 -0
  750. package/dist/src/ui/components/Footer.test.js.map +1 -0
  751. package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +22 -0
  752. package/dist/src/ui/components/GeminiRespondingSpinner.js +23 -0
  753. package/dist/src/ui/components/GeminiRespondingSpinner.js.map +1 -0
  754. package/dist/src/ui/components/GeminiRespondingSpinner.test.d.ts +6 -0
  755. package/dist/src/ui/components/GeminiRespondingSpinner.test.js +61 -0
  756. package/dist/src/ui/components/GeminiRespondingSpinner.test.js.map +1 -0
  757. package/dist/src/ui/components/GradientRegression.test.d.ts +6 -0
  758. package/dist/src/ui/components/GradientRegression.test.js +105 -0
  759. package/dist/src/ui/components/GradientRegression.test.js.map +1 -0
  760. package/dist/src/ui/components/Header.d.ts +13 -0
  761. package/dist/src/ui/components/Header.js +29 -0
  762. package/dist/src/ui/components/Header.js.map +1 -0
  763. package/dist/src/ui/components/Header.test.d.ts +6 -0
  764. package/dist/src/ui/components/Header.test.js +145 -0
  765. package/dist/src/ui/components/Header.test.js.map +1 -0
  766. package/dist/src/ui/components/Help.d.ts +12 -0
  767. package/dist/src/ui/components/Help.js +13 -0
  768. package/dist/src/ui/components/Help.js.map +1 -0
  769. package/dist/src/ui/components/Help.test.d.ts +6 -0
  770. package/dist/src/ui/components/Help.test.js +67 -0
  771. package/dist/src/ui/components/Help.test.js.map +1 -0
  772. package/dist/src/ui/components/HistoryItemDisplay.d.ts +21 -0
  773. package/dist/src/ui/components/HistoryItemDisplay.js +31 -0
  774. package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -0
  775. package/dist/src/ui/components/HistoryItemDisplay.test.d.ts +6 -0
  776. package/dist/src/ui/components/HistoryItemDisplay.test.js +185 -0
  777. package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -0
  778. package/dist/src/ui/components/IdeTrustChangeDialog.d.ts +11 -0
  779. package/dist/src/ui/components/IdeTrustChangeDialog.js +33 -0
  780. package/dist/src/ui/components/IdeTrustChangeDialog.js.map +1 -0
  781. package/dist/src/ui/components/IdeTrustChangeDialog.test.d.ts +6 -0
  782. package/dist/src/ui/components/IdeTrustChangeDialog.test.js +57 -0
  783. package/dist/src/ui/components/IdeTrustChangeDialog.test.js.map +1 -0
  784. package/dist/src/ui/components/InputPrompt.d.ts +50 -0
  785. package/dist/src/ui/components/InputPrompt.js +833 -0
  786. package/dist/src/ui/components/InputPrompt.js.map +1 -0
  787. package/dist/src/ui/components/InputPrompt.test.d.ts +6 -0
  788. package/dist/src/ui/components/InputPrompt.test.js +2124 -0
  789. package/dist/src/ui/components/InputPrompt.test.js.map +1 -0
  790. package/dist/src/ui/components/LoadingIndicator.d.ts +15 -0
  791. package/dist/src/ui/components/LoadingIndicator.js +30 -0
  792. package/dist/src/ui/components/LoadingIndicator.js.map +1 -0
  793. package/dist/src/ui/components/LoadingIndicator.test.d.ts +6 -0
  794. package/dist/src/ui/components/LoadingIndicator.test.js +207 -0
  795. package/dist/src/ui/components/LoadingIndicator.test.js.map +1 -0
  796. package/dist/src/ui/components/LoopDetectionConfirmation.d.ts +13 -0
  797. package/dist/src/ui/components/LoopDetectionConfirmation.js +37 -0
  798. package/dist/src/ui/components/LoopDetectionConfirmation.js.map +1 -0
  799. package/dist/src/ui/components/LoopDetectionConfirmation.test.d.ts +6 -0
  800. package/dist/src/ui/components/LoopDetectionConfirmation.test.js +25 -0
  801. package/dist/src/ui/components/LoopDetectionConfirmation.test.js.map +1 -0
  802. package/dist/src/ui/components/MainContent.d.ts +6 -0
  803. package/dist/src/ui/components/MainContent.js +76 -0
  804. package/dist/src/ui/components/MainContent.js.map +1 -0
  805. package/dist/src/ui/components/MainContent.test.d.ts +6 -0
  806. package/dist/src/ui/components/MainContent.test.js +73 -0
  807. package/dist/src/ui/components/MainContent.test.js.map +1 -0
  808. package/dist/src/ui/components/MemoryUsageDisplay.d.ts +7 -0
  809. package/dist/src/ui/components/MemoryUsageDisplay.js +24 -0
  810. package/dist/src/ui/components/MemoryUsageDisplay.js.map +1 -0
  811. package/dist/src/ui/components/MemoryUsageDisplay.test.d.ts +6 -0
  812. package/dist/src/ui/components/MemoryUsageDisplay.test.js +49 -0
  813. package/dist/src/ui/components/MemoryUsageDisplay.test.js.map +1 -0
  814. package/dist/src/ui/components/ModelDialog.d.ts +11 -0
  815. package/dist/src/ui/components/ModelDialog.js +86 -0
  816. package/dist/src/ui/components/ModelDialog.js.map +1 -0
  817. package/dist/src/ui/components/ModelDialog.test.d.ts +6 -0
  818. package/dist/src/ui/components/ModelDialog.test.js +224 -0
  819. package/dist/src/ui/components/ModelDialog.test.js.map +1 -0
  820. package/dist/src/ui/components/ModelStatsDisplay.d.ts +7 -0
  821. package/dist/src/ui/components/ModelStatsDisplay.js +33 -0
  822. package/dist/src/ui/components/ModelStatsDisplay.js.map +1 -0
  823. package/dist/src/ui/components/ModelStatsDisplay.test.d.ts +6 -0
  824. package/dist/src/ui/components/ModelStatsDisplay.test.js +292 -0
  825. package/dist/src/ui/components/ModelStatsDisplay.test.js.map +1 -0
  826. package/dist/src/ui/components/MultiFolderTrustDialog.d.ts +23 -0
  827. package/dist/src/ui/components/MultiFolderTrustDialog.js +91 -0
  828. package/dist/src/ui/components/MultiFolderTrustDialog.js.map +1 -0
  829. package/dist/src/ui/components/MultiFolderTrustDialog.test.d.ts +6 -0
  830. package/dist/src/ui/components/MultiFolderTrustDialog.test.js +161 -0
  831. package/dist/src/ui/components/MultiFolderTrustDialog.test.js.map +1 -0
  832. package/dist/src/ui/components/Notifications.d.ts +6 -0
  833. package/dist/src/ui/components/Notifications.js +68 -0
  834. package/dist/src/ui/components/Notifications.js.map +1 -0
  835. package/dist/src/ui/components/Notifications.test.d.ts +6 -0
  836. package/dist/src/ui/components/Notifications.test.js +153 -0
  837. package/dist/src/ui/components/Notifications.test.js.map +1 -0
  838. package/dist/src/ui/components/PermissionsModifyTrustDialog.d.ts +16 -0
  839. package/dist/src/ui/components/PermissionsModifyTrustDialog.js +58 -0
  840. package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +1 -0
  841. package/dist/src/ui/components/PermissionsModifyTrustDialog.test.d.ts +6 -0
  842. package/dist/src/ui/components/PermissionsModifyTrustDialog.test.js +162 -0
  843. package/dist/src/ui/components/PermissionsModifyTrustDialog.test.js.map +1 -0
  844. package/dist/src/ui/components/PrepareLabel.d.ts +15 -0
  845. package/dist/src/ui/components/PrepareLabel.js +72 -0
  846. package/dist/src/ui/components/PrepareLabel.js.map +1 -0
  847. package/dist/src/ui/components/PrepareLabel.test.d.ts +6 -0
  848. package/dist/src/ui/components/PrepareLabel.test.js +77 -0
  849. package/dist/src/ui/components/PrepareLabel.test.js.map +1 -0
  850. package/dist/src/ui/components/ProQuotaDialog.d.ts +18 -0
  851. package/dist/src/ui/components/ProQuotaDialog.js +88 -0
  852. package/dist/src/ui/components/ProQuotaDialog.js.map +1 -0
  853. package/dist/src/ui/components/ProQuotaDialog.test.d.ts +6 -0
  854. package/dist/src/ui/components/ProQuotaDialog.test.js +172 -0
  855. package/dist/src/ui/components/ProQuotaDialog.test.js.map +1 -0
  856. package/dist/src/ui/components/QueuedMessageDisplay.d.ts +9 -0
  857. package/dist/src/ui/components/QueuedMessageDisplay.js +20 -0
  858. package/dist/src/ui/components/QueuedMessageDisplay.js.map +1 -0
  859. package/dist/src/ui/components/QueuedMessageDisplay.test.d.ts +6 -0
  860. package/dist/src/ui/components/QueuedMessageDisplay.test.js +65 -0
  861. package/dist/src/ui/components/QueuedMessageDisplay.test.js.map +1 -0
  862. package/dist/src/ui/components/QuittingDisplay.d.ts +6 -0
  863. package/dist/src/ui/components/QuittingDisplay.js +20 -0
  864. package/dist/src/ui/components/QuittingDisplay.js.map +1 -0
  865. package/dist/src/ui/components/QuittingDisplay.test.d.ts +6 -0
  866. package/dist/src/ui/components/QuittingDisplay.test.js +49 -0
  867. package/dist/src/ui/components/QuittingDisplay.test.js.map +1 -0
  868. package/dist/src/ui/components/RawMarkdownIndicator.d.ts +7 -0
  869. package/dist/src/ui/components/RawMarkdownIndicator.js +8 -0
  870. package/dist/src/ui/components/RawMarkdownIndicator.js.map +1 -0
  871. package/dist/src/ui/components/RawMarkdownIndicator.test.d.ts +6 -0
  872. package/dist/src/ui/components/RawMarkdownIndicator.test.js +34 -0
  873. package/dist/src/ui/components/RawMarkdownIndicator.test.js.map +1 -0
  874. package/dist/src/ui/components/SessionBrowser.d.ts +98 -0
  875. package/dist/src/ui/components/SessionBrowser.js +459 -0
  876. package/dist/src/ui/components/SessionBrowser.js.map +1 -0
  877. package/dist/src/ui/components/SessionBrowser.test.d.ts +6 -0
  878. package/dist/src/ui/components/SessionBrowser.test.js +250 -0
  879. package/dist/src/ui/components/SessionBrowser.test.js.map +1 -0
  880. package/dist/src/ui/components/SessionSummaryDisplay.d.ts +11 -0
  881. package/dist/src/ui/components/SessionSummaryDisplay.js +4 -0
  882. package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -0
  883. package/dist/src/ui/components/SessionSummaryDisplay.test.d.ts +6 -0
  884. package/dist/src/ui/components/SessionSummaryDisplay.test.js +75 -0
  885. package/dist/src/ui/components/SessionSummaryDisplay.test.js.map +1 -0
  886. package/dist/src/ui/components/SettingsDialog.d.ts +18 -0
  887. package/dist/src/ui/components/SettingsDialog.js +704 -0
  888. package/dist/src/ui/components/SettingsDialog.js.map +1 -0
  889. package/dist/src/ui/components/SettingsDialog.test.d.ts +6 -0
  890. package/dist/src/ui/components/SettingsDialog.test.js +1133 -0
  891. package/dist/src/ui/components/SettingsDialog.test.js.map +1 -0
  892. package/dist/src/ui/components/ShellConfirmationDialog.d.ts +15 -0
  893. package/dist/src/ui/components/ShellConfirmationDialog.js +49 -0
  894. package/dist/src/ui/components/ShellConfirmationDialog.js.map +1 -0
  895. package/dist/src/ui/components/ShellConfirmationDialog.test.d.ts +6 -0
  896. package/dist/src/ui/components/ShellConfirmationDialog.test.js +40 -0
  897. package/dist/src/ui/components/ShellConfirmationDialog.test.js.map +1 -0
  898. package/dist/src/ui/components/ShellInputPrompt.d.ts +11 -0
  899. package/dist/src/ui/components/ShellInputPrompt.js +36 -0
  900. package/dist/src/ui/components/ShellInputPrompt.js.map +1 -0
  901. package/dist/src/ui/components/ShellInputPrompt.test.d.ts +6 -0
  902. package/dist/src/ui/components/ShellInputPrompt.test.js +82 -0
  903. package/dist/src/ui/components/ShellInputPrompt.test.js.map +1 -0
  904. package/dist/src/ui/components/ShellModeIndicator.d.ts +7 -0
  905. package/dist/src/ui/components/ShellModeIndicator.js +5 -0
  906. package/dist/src/ui/components/ShellModeIndicator.js.map +1 -0
  907. package/dist/src/ui/components/ShellModeIndicator.test.d.ts +6 -0
  908. package/dist/src/ui/components/ShellModeIndicator.test.js +17 -0
  909. package/dist/src/ui/components/ShellModeIndicator.test.js.map +1 -0
  910. package/dist/src/ui/components/ShowMoreLines.d.ts +10 -0
  911. package/dist/src/ui/components/ShowMoreLines.js +24 -0
  912. package/dist/src/ui/components/ShowMoreLines.js.map +1 -0
  913. package/dist/src/ui/components/ShowMoreLines.test.d.ts +6 -0
  914. package/dist/src/ui/components/ShowMoreLines.test.js +40 -0
  915. package/dist/src/ui/components/ShowMoreLines.test.js.map +1 -0
  916. package/dist/src/ui/components/StatsDisplay.d.ts +14 -0
  917. package/dist/src/ui/components/StatsDisplay.js +119 -0
  918. package/dist/src/ui/components/StatsDisplay.js.map +1 -0
  919. package/dist/src/ui/components/StatsDisplay.test.d.ts +6 -0
  920. package/dist/src/ui/components/StatsDisplay.test.js +438 -0
  921. package/dist/src/ui/components/StatsDisplay.test.js.map +1 -0
  922. package/dist/src/ui/components/StickyHeader.d.ts +14 -0
  923. package/dist/src/ui/components/StickyHeader.js +5 -0
  924. package/dist/src/ui/components/StickyHeader.js.map +1 -0
  925. package/dist/src/ui/components/StickyHeader.test.d.ts +6 -0
  926. package/dist/src/ui/components/StickyHeader.test.js +17 -0
  927. package/dist/src/ui/components/StickyHeader.test.js.map +1 -0
  928. package/dist/src/ui/components/SuggestionsDisplay.d.ts +27 -0
  929. package/dist/src/ui/components/SuggestionsDisplay.js +40 -0
  930. package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -0
  931. package/dist/src/ui/components/SuggestionsDisplay.test.d.ts +6 -0
  932. package/dist/src/ui/components/SuggestionsDisplay.test.js +56 -0
  933. package/dist/src/ui/components/SuggestionsDisplay.test.js.map +1 -0
  934. package/dist/src/ui/components/ThemeDialog.d.ts +21 -0
  935. package/dist/src/ui/components/ThemeDialog.js +135 -0
  936. package/dist/src/ui/components/ThemeDialog.js.map +1 -0
  937. package/dist/src/ui/components/ThemeDialog.test.d.ts +6 -0
  938. package/dist/src/ui/components/ThemeDialog.test.js +102 -0
  939. package/dist/src/ui/components/ThemeDialog.test.js.map +1 -0
  940. package/dist/src/ui/components/ThemedGradient.d.ts +8 -0
  941. package/dist/src/ui/components/ThemedGradient.js +16 -0
  942. package/dist/src/ui/components/ThemedGradient.js.map +1 -0
  943. package/dist/src/ui/components/ThemedGradient.test.d.ts +6 -0
  944. package/dist/src/ui/components/ThemedGradient.test.js +30 -0
  945. package/dist/src/ui/components/ThemedGradient.test.js.map +1 -0
  946. package/dist/src/ui/components/Tips.d.ts +12 -0
  947. package/dist/src/ui/components/Tips.js +9 -0
  948. package/dist/src/ui/components/Tips.js.map +1 -0
  949. package/dist/src/ui/components/Tips.test.d.ts +6 -0
  950. package/dist/src/ui/components/Tips.test.js +23 -0
  951. package/dist/src/ui/components/Tips.test.js.map +1 -0
  952. package/dist/src/ui/components/ToolStatsDisplay.d.ts +7 -0
  953. package/dist/src/ui/components/ToolStatsDisplay.js +41 -0
  954. package/dist/src/ui/components/ToolStatsDisplay.js.map +1 -0
  955. package/dist/src/ui/components/ToolStatsDisplay.test.d.ts +6 -0
  956. package/dist/src/ui/components/ToolStatsDisplay.test.js +227 -0
  957. package/dist/src/ui/components/ToolStatsDisplay.test.js.map +1 -0
  958. package/dist/src/ui/components/UpdateNotification.d.ts +10 -0
  959. package/dist/src/ui/components/UpdateNotification.js +10 -0
  960. package/dist/src/ui/components/UpdateNotification.js.map +1 -0
  961. package/dist/src/ui/components/UpdateNotification.test.d.ts +6 -0
  962. package/dist/src/ui/components/UpdateNotification.test.js +16 -0
  963. package/dist/src/ui/components/UpdateNotification.test.js.map +1 -0
  964. package/dist/src/ui/components/messages/CompressionMessage.d.ts +10 -0
  965. package/dist/src/ui/components/messages/CompressionMessage.js +46 -0
  966. package/dist/src/ui/components/messages/CompressionMessage.js.map +1 -0
  967. package/dist/src/ui/components/messages/CompressionMessage.test.d.ts +6 -0
  968. package/dist/src/ui/components/messages/CompressionMessage.test.js +168 -0
  969. package/dist/src/ui/components/messages/CompressionMessage.test.js.map +1 -0
  970. package/dist/src/ui/components/messages/DiffRenderer.d.ts +17 -0
  971. package/dist/src/ui/components/messages/DiffRenderer.js +258 -0
  972. package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -0
  973. package/dist/src/ui/components/messages/DiffRenderer.test.d.ts +6 -0
  974. package/dist/src/ui/components/messages/DiffRenderer.test.js +231 -0
  975. package/dist/src/ui/components/messages/DiffRenderer.test.js.map +1 -0
  976. package/dist/src/ui/components/messages/ErrorMessage.d.ts +11 -0
  977. package/dist/src/ui/components/messages/ErrorMessage.js +9 -0
  978. package/dist/src/ui/components/messages/ErrorMessage.js.map +1 -0
  979. package/dist/src/ui/components/messages/ErrorMessage.test.d.ts +6 -0
  980. package/dist/src/ui/components/messages/ErrorMessage.test.js +23 -0
  981. package/dist/src/ui/components/messages/ErrorMessage.test.js.map +1 -0
  982. package/dist/src/ui/components/messages/GeminiMessage.d.ts +14 -0
  983. package/dist/src/ui/components/messages/GeminiMessage.js +15 -0
  984. package/dist/src/ui/components/messages/GeminiMessage.js.map +1 -0
  985. package/dist/src/ui/components/messages/GeminiMessage.test.d.ts +6 -0
  986. package/dist/src/ui/components/messages/GeminiMessage.test.js +35 -0
  987. package/dist/src/ui/components/messages/GeminiMessage.test.js.map +1 -0
  988. package/dist/src/ui/components/messages/GeminiMessageContent.d.ts +14 -0
  989. package/dist/src/ui/components/messages/GeminiMessageContent.js +19 -0
  990. package/dist/src/ui/components/messages/GeminiMessageContent.js.map +1 -0
  991. package/dist/src/ui/components/messages/InfoMessage.d.ts +13 -0
  992. package/dist/src/ui/components/messages/InfoMessage.js +11 -0
  993. package/dist/src/ui/components/messages/InfoMessage.js.map +1 -0
  994. package/dist/src/ui/components/messages/InfoMessage.test.d.ts +6 -0
  995. package/dist/src/ui/components/messages/InfoMessage.test.js +28 -0
  996. package/dist/src/ui/components/messages/InfoMessage.test.js.map +1 -0
  997. package/dist/src/ui/components/messages/ModelMessage.d.ts +11 -0
  998. package/dist/src/ui/components/messages/ModelMessage.js +5 -0
  999. package/dist/src/ui/components/messages/ModelMessage.js.map +1 -0
  1000. package/dist/src/ui/components/messages/ShellToolMessage.d.ts +14 -0
  1001. package/dist/src/ui/components/messages/ShellToolMessage.js +76 -0
  1002. package/dist/src/ui/components/messages/ShellToolMessage.js.map +1 -0
  1003. package/dist/src/ui/components/messages/ShellToolMessage.test.d.ts +6 -0
  1004. package/dist/src/ui/components/messages/ShellToolMessage.test.js +123 -0
  1005. package/dist/src/ui/components/messages/ShellToolMessage.test.js.map +1 -0
  1006. package/dist/src/ui/components/messages/Todo.d.ts +7 -0
  1007. package/dist/src/ui/components/messages/Todo.js +91 -0
  1008. package/dist/src/ui/components/messages/Todo.js.map +1 -0
  1009. package/dist/src/ui/components/messages/Todo.test.d.ts +6 -0
  1010. package/dist/src/ui/components/messages/Todo.test.js +114 -0
  1011. package/dist/src/ui/components/messages/Todo.test.js.map +1 -0
  1012. package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +15 -0
  1013. package/dist/src/ui/components/messages/ToolConfirmationMessage.js +240 -0
  1014. package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -0
  1015. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.d.ts +6 -0
  1016. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +113 -0
  1017. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -0
  1018. package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +19 -0
  1019. package/dist/src/ui/components/messages/ToolGroupMessage.js +80 -0
  1020. package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -0
  1021. package/dist/src/ui/components/messages/ToolGroupMessage.test.d.ts +6 -0
  1022. package/dist/src/ui/components/messages/ToolGroupMessage.test.js +300 -0
  1023. package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -0
  1024. package/dist/src/ui/components/messages/ToolMessage.d.ts +24 -0
  1025. package/dist/src/ui/components/messages/ToolMessage.js +36 -0
  1026. package/dist/src/ui/components/messages/ToolMessage.js.map +1 -0
  1027. package/dist/src/ui/components/messages/ToolMessage.test.d.ts +6 -0
  1028. package/dist/src/ui/components/messages/ToolMessage.test.js +153 -0
  1029. package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -0
  1030. package/dist/src/ui/components/messages/ToolMessageRawMarkdown.test.d.ts +6 -0
  1031. package/dist/src/ui/components/messages/ToolMessageRawMarkdown.test.js +62 -0
  1032. package/dist/src/ui/components/messages/ToolMessageRawMarkdown.test.js.map +1 -0
  1033. package/dist/src/ui/components/messages/ToolResultDisplay.d.ts +13 -0
  1034. package/dist/src/ui/components/messages/ToolResultDisplay.js +54 -0
  1035. package/dist/src/ui/components/messages/ToolResultDisplay.js.map +1 -0
  1036. package/dist/src/ui/components/messages/ToolResultDisplay.test.d.ts +6 -0
  1037. package/dist/src/ui/components/messages/ToolResultDisplay.test.js +96 -0
  1038. package/dist/src/ui/components/messages/ToolResultDisplay.test.js.map +1 -0
  1039. package/dist/src/ui/components/messages/ToolShared.d.ts +23 -0
  1040. package/dist/src/ui/components/messages/ToolShared.js +40 -0
  1041. package/dist/src/ui/components/messages/ToolShared.js.map +1 -0
  1042. package/dist/src/ui/components/messages/UserMessage.d.ts +12 -0
  1043. package/dist/src/ui/components/messages/UserMessage.js +13 -0
  1044. package/dist/src/ui/components/messages/UserMessage.js.map +1 -0
  1045. package/dist/src/ui/components/messages/UserMessage.test.d.ts +6 -0
  1046. package/dist/src/ui/components/messages/UserMessage.test.js +32 -0
  1047. package/dist/src/ui/components/messages/UserMessage.test.js.map +1 -0
  1048. package/dist/src/ui/components/messages/UserShellMessage.d.ts +11 -0
  1049. package/dist/src/ui/components/messages/UserShellMessage.js +9 -0
  1050. package/dist/src/ui/components/messages/UserShellMessage.js.map +1 -0
  1051. package/dist/src/ui/components/messages/WarningMessage.d.ts +11 -0
  1052. package/dist/src/ui/components/messages/WarningMessage.js +10 -0
  1053. package/dist/src/ui/components/messages/WarningMessage.js.map +1 -0
  1054. package/dist/src/ui/components/messages/WarningMessage.test.d.ts +6 -0
  1055. package/dist/src/ui/components/messages/WarningMessage.test.js +23 -0
  1056. package/dist/src/ui/components/messages/WarningMessage.test.js.map +1 -0
  1057. package/dist/src/ui/components/shared/BaseSelectionList.d.ts +38 -0
  1058. package/dist/src/ui/components/shared/BaseSelectionList.js +72 -0
  1059. package/dist/src/ui/components/shared/BaseSelectionList.js.map +1 -0
  1060. package/dist/src/ui/components/shared/BaseSelectionList.test.d.ts +6 -0
  1061. package/dist/src/ui/components/shared/BaseSelectionList.test.js +385 -0
  1062. package/dist/src/ui/components/shared/BaseSelectionList.test.js.map +1 -0
  1063. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.d.ts +35 -0
  1064. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js +13 -0
  1065. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js.map +1 -0
  1066. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.d.ts +6 -0
  1067. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js +79 -0
  1068. package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js.map +1 -0
  1069. package/dist/src/ui/components/shared/EnumSelector.d.ts +18 -0
  1070. package/dist/src/ui/components/shared/EnumSelector.js +44 -0
  1071. package/dist/src/ui/components/shared/EnumSelector.js.map +1 -0
  1072. package/dist/src/ui/components/shared/EnumSelector.test.d.ts +6 -0
  1073. package/dist/src/ui/components/shared/EnumSelector.test.js +70 -0
  1074. package/dist/src/ui/components/shared/EnumSelector.test.js.map +1 -0
  1075. package/dist/src/ui/components/shared/MaxSizedBox.d.ts +61 -0
  1076. package/dist/src/ui/components/shared/MaxSizedBox.js +451 -0
  1077. package/dist/src/ui/components/shared/MaxSizedBox.js.map +1 -0
  1078. package/dist/src/ui/components/shared/MaxSizedBox.test.d.ts +6 -0
  1079. package/dist/src/ui/components/shared/MaxSizedBox.test.js +175 -0
  1080. package/dist/src/ui/components/shared/MaxSizedBox.test.js.map +1 -0
  1081. package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +45 -0
  1082. package/dist/src/ui/components/shared/RadioButtonSelect.js +21 -0
  1083. package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -0
  1084. package/dist/src/ui/components/shared/RadioButtonSelect.test.d.ts +6 -0
  1085. package/dist/src/ui/components/shared/RadioButtonSelect.test.js +134 -0
  1086. package/dist/src/ui/components/shared/RadioButtonSelect.test.js.map +1 -0
  1087. package/dist/src/ui/components/shared/ScopeSelector.d.ts +19 -0
  1088. package/dist/src/ui/components/shared/ScopeSelector.js +14 -0
  1089. package/dist/src/ui/components/shared/ScopeSelector.js.map +1 -0
  1090. package/dist/src/ui/components/shared/Scrollable.d.ts +18 -0
  1091. package/dist/src/ui/components/shared/Scrollable.js +84 -0
  1092. package/dist/src/ui/components/shared/Scrollable.js.map +1 -0
  1093. package/dist/src/ui/components/shared/Scrollable.test.d.ts +6 -0
  1094. package/dist/src/ui/components/shared/Scrollable.test.js +74 -0
  1095. package/dist/src/ui/components/shared/Scrollable.test.js.map +1 -0
  1096. package/dist/src/ui/components/shared/ScrollableList.d.ts +26 -0
  1097. package/dist/src/ui/components/shared/ScrollableList.js +152 -0
  1098. package/dist/src/ui/components/shared/ScrollableList.js.map +1 -0
  1099. package/dist/src/ui/components/shared/ScrollableList.test.d.ts +6 -0
  1100. package/dist/src/ui/components/shared/ScrollableList.test.js +228 -0
  1101. package/dist/src/ui/components/shared/ScrollableList.test.js.map +1 -0
  1102. package/dist/src/ui/components/shared/TextInput.d.ts +15 -0
  1103. package/dist/src/ui/components/shared/TextInput.js +38 -0
  1104. package/dist/src/ui/components/shared/TextInput.js.map +1 -0
  1105. package/dist/src/ui/components/shared/TextInput.test.d.ts +6 -0
  1106. package/dist/src/ui/components/shared/TextInput.test.js +242 -0
  1107. package/dist/src/ui/components/shared/TextInput.test.js.map +1 -0
  1108. package/dist/src/ui/components/shared/VirtualizedList.d.ts +44 -0
  1109. package/dist/src/ui/components/shared/VirtualizedList.js +312 -0
  1110. package/dist/src/ui/components/shared/VirtualizedList.js.map +1 -0
  1111. package/dist/src/ui/components/shared/VirtualizedList.test.d.ts +6 -0
  1112. package/dist/src/ui/components/shared/VirtualizedList.test.js +171 -0
  1113. package/dist/src/ui/components/shared/VirtualizedList.test.js.map +1 -0
  1114. package/dist/src/ui/components/shared/text-buffer.d.ts +492 -0
  1115. package/dist/src/ui/components/shared/text-buffer.js +1665 -0
  1116. package/dist/src/ui/components/shared/text-buffer.js.map +1 -0
  1117. package/dist/src/ui/components/shared/text-buffer.test.d.ts +6 -0
  1118. package/dist/src/ui/components/shared/text-buffer.test.js +1916 -0
  1119. package/dist/src/ui/components/shared/text-buffer.test.js.map +1 -0
  1120. package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +72 -0
  1121. package/dist/src/ui/components/shared/vim-buffer-actions.js +552 -0
  1122. package/dist/src/ui/components/shared/vim-buffer-actions.js.map +1 -0
  1123. package/dist/src/ui/components/shared/vim-buffer-actions.test.d.ts +6 -0
  1124. package/dist/src/ui/components/shared/vim-buffer-actions.test.js +951 -0
  1125. package/dist/src/ui/components/shared/vim-buffer-actions.test.js.map +1 -0
  1126. package/dist/src/ui/components/views/ChatList.d.ts +12 -0
  1127. package/dist/src/ui/components/views/ChatList.js +17 -0
  1128. package/dist/src/ui/components/views/ChatList.js.map +1 -0
  1129. package/dist/src/ui/components/views/ChatList.test.d.ts +6 -0
  1130. package/dist/src/ui/components/views/ChatList.test.js +45 -0
  1131. package/dist/src/ui/components/views/ChatList.test.js.map +1 -0
  1132. package/dist/src/ui/components/views/ExtensionsList.d.ts +12 -0
  1133. package/dist/src/ui/components/views/ExtensionsList.js +44 -0
  1134. package/dist/src/ui/components/views/ExtensionsList.js.map +1 -0
  1135. package/dist/src/ui/components/views/ExtensionsList.test.d.ts +6 -0
  1136. package/dist/src/ui/components/views/ExtensionsList.test.js +111 -0
  1137. package/dist/src/ui/components/views/ExtensionsList.test.js.map +1 -0
  1138. package/dist/src/ui/components/views/HooksList.d.ts +22 -0
  1139. package/dist/src/ui/components/views/HooksList.js +23 -0
  1140. package/dist/src/ui/components/views/HooksList.js.map +1 -0
  1141. package/dist/src/ui/components/views/McpStatus.d.ts +27 -0
  1142. package/dist/src/ui/components/views/McpStatus.js +87 -0
  1143. package/dist/src/ui/components/views/McpStatus.js.map +1 -0
  1144. package/dist/src/ui/components/views/McpStatus.test.d.ts +6 -0
  1145. package/dist/src/ui/components/views/McpStatus.test.js +136 -0
  1146. package/dist/src/ui/components/views/McpStatus.test.js.map +1 -0
  1147. package/dist/src/ui/components/views/ToolsList.d.ts +14 -0
  1148. package/dist/src/ui/components/views/ToolsList.js +7 -0
  1149. package/dist/src/ui/components/views/ToolsList.js.map +1 -0
  1150. package/dist/src/ui/components/views/ToolsList.test.d.ts +6 -0
  1151. package/dist/src/ui/components/views/ToolsList.test.js +45 -0
  1152. package/dist/src/ui/components/views/ToolsList.test.js.map +1 -0
  1153. package/dist/src/ui/constants/tips.d.ts +6 -0
  1154. package/dist/src/ui/constants/tips.js +167 -0
  1155. package/dist/src/ui/constants/tips.js.map +1 -0
  1156. package/dist/src/ui/constants/wittyPhrases.d.ts +6 -0
  1157. package/dist/src/ui/constants/wittyPhrases.js +137 -0
  1158. package/dist/src/ui/constants/wittyPhrases.js.map +1 -0
  1159. package/dist/src/ui/constants.d.ts +20 -0
  1160. package/dist/src/ui/constants.js +29 -0
  1161. package/dist/src/ui/constants.js.map +1 -0
  1162. package/dist/src/ui/contexts/AppContext.d.ts +11 -0
  1163. package/dist/src/ui/contexts/AppContext.js +15 -0
  1164. package/dist/src/ui/contexts/AppContext.js.map +1 -0
  1165. package/dist/src/ui/contexts/AppModeContext.d.ts +17 -0
  1166. package/dist/src/ui/contexts/AppModeContext.js +35 -0
  1167. package/dist/src/ui/contexts/AppModeContext.js.map +1 -0
  1168. package/dist/src/ui/contexts/ConfigContext.d.ts +9 -0
  1169. package/dist/src/ui/contexts/ConfigContext.js +16 -0
  1170. package/dist/src/ui/contexts/ConfigContext.js.map +1 -0
  1171. package/dist/src/ui/contexts/KeypressContext.d.ts +31 -0
  1172. package/dist/src/ui/contexts/KeypressContext.js +529 -0
  1173. package/dist/src/ui/contexts/KeypressContext.js.map +1 -0
  1174. package/dist/src/ui/contexts/KeypressContext.test.d.ts +6 -0
  1175. package/dist/src/ui/contexts/KeypressContext.test.js +711 -0
  1176. package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -0
  1177. package/dist/src/ui/contexts/MouseContext.d.ts +21 -0
  1178. package/dist/src/ui/contexts/MouseContext.js +104 -0
  1179. package/dist/src/ui/contexts/MouseContext.js.map +1 -0
  1180. package/dist/src/ui/contexts/MouseContext.test.d.ts +6 -0
  1181. package/dist/src/ui/contexts/MouseContext.test.js +198 -0
  1182. package/dist/src/ui/contexts/MouseContext.test.js.map +1 -0
  1183. package/dist/src/ui/contexts/OverflowContext.d.ts +19 -0
  1184. package/dist/src/ui/contexts/OverflowContext.js +38 -0
  1185. package/dist/src/ui/contexts/OverflowContext.js.map +1 -0
  1186. package/dist/src/ui/contexts/ScrollProvider.d.ts +25 -0
  1187. package/dist/src/ui/contexts/ScrollProvider.drag.test.d.ts +6 -0
  1188. package/dist/src/ui/contexts/ScrollProvider.drag.test.js +319 -0
  1189. package/dist/src/ui/contexts/ScrollProvider.drag.test.js.map +1 -0
  1190. package/dist/src/ui/contexts/ScrollProvider.js +242 -0
  1191. package/dist/src/ui/contexts/ScrollProvider.js.map +1 -0
  1192. package/dist/src/ui/contexts/ScrollProvider.test.d.ts +6 -0
  1193. package/dist/src/ui/contexts/ScrollProvider.test.js +377 -0
  1194. package/dist/src/ui/contexts/ScrollProvider.test.js.map +1 -0
  1195. package/dist/src/ui/contexts/SessionContext.d.ts +46 -0
  1196. package/dist/src/ui/contexts/SessionContext.js +158 -0
  1197. package/dist/src/ui/contexts/SessionContext.js.map +1 -0
  1198. package/dist/src/ui/contexts/SessionContext.test.d.ts +6 -0
  1199. package/dist/src/ui/contexts/SessionContext.test.js +198 -0
  1200. package/dist/src/ui/contexts/SessionContext.test.js.map +1 -0
  1201. package/dist/src/ui/contexts/SettingsContext.d.ts +9 -0
  1202. package/dist/src/ui/contexts/SettingsContext.js +15 -0
  1203. package/dist/src/ui/contexts/SettingsContext.js.map +1 -0
  1204. package/dist/src/ui/contexts/ShellFocusContext.d.ts +7 -0
  1205. package/dist/src/ui/contexts/ShellFocusContext.js +9 -0
  1206. package/dist/src/ui/contexts/ShellFocusContext.js.map +1 -0
  1207. package/dist/src/ui/contexts/StreamingContext.d.ts +9 -0
  1208. package/dist/src/ui/contexts/StreamingContext.js +15 -0
  1209. package/dist/src/ui/contexts/StreamingContext.js.map +1 -0
  1210. package/dist/src/ui/contexts/UIActionsContext.d.ts +50 -0
  1211. package/dist/src/ui/contexts/UIActionsContext.js +21 -0
  1212. package/dist/src/ui/contexts/UIActionsContext.js.map +1 -0
  1213. package/dist/src/ui/contexts/UIStateContext.d.ts +121 -0
  1214. package/dist/src/ui/contexts/UIStateContext.js +17 -0
  1215. package/dist/src/ui/contexts/UIStateContext.js.map +1 -0
  1216. package/dist/src/ui/contexts/VimModeContext.d.ts +19 -0
  1217. package/dist/src/ui/contexts/VimModeContext.js +48 -0
  1218. package/dist/src/ui/contexts/VimModeContext.js.map +1 -0
  1219. package/dist/src/ui/debug.d.ts +8 -0
  1220. package/dist/src/ui/debug.js +11 -0
  1221. package/dist/src/ui/debug.js.map +1 -0
  1222. package/dist/src/ui/editors/editorSettingsManager.d.ts +18 -0
  1223. package/dist/src/ui/editors/editorSettingsManager.js +37 -0
  1224. package/dist/src/ui/editors/editorSettingsManager.js.map +1 -0
  1225. package/dist/src/ui/hooks/README.md +81 -0
  1226. package/dist/src/ui/hooks/atCommandProcessor.d.ts +32 -0
  1227. package/dist/src/ui/hooks/atCommandProcessor.js +499 -0
  1228. package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -0
  1229. package/dist/src/ui/hooks/atCommandProcessor.test.d.ts +6 -0
  1230. package/dist/src/ui/hooks/atCommandProcessor.test.js +1026 -0
  1231. package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -0
  1232. package/dist/src/ui/hooks/keyToAnsi.d.ts +15 -0
  1233. package/dist/src/ui/hooks/keyToAnsi.js +67 -0
  1234. package/dist/src/ui/hooks/keyToAnsi.js.map +1 -0
  1235. package/dist/src/ui/hooks/shellCommandProcessor.d.ts +19 -0
  1236. package/dist/src/ui/hooks/shellCommandProcessor.js +285 -0
  1237. package/dist/src/ui/hooks/shellCommandProcessor.js.map +1 -0
  1238. package/dist/src/ui/hooks/shellCommandProcessor.test.d.ts +6 -0
  1239. package/dist/src/ui/hooks/shellCommandProcessor.test.js +521 -0
  1240. package/dist/src/ui/hooks/shellCommandProcessor.test.js.map +1 -0
  1241. package/dist/src/ui/hooks/slashCommandProcessor.d.ts +49 -0
  1242. package/dist/src/ui/hooks/slashCommandProcessor.js +455 -0
  1243. package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -0
  1244. package/dist/src/ui/hooks/slashCommandProcessor.test.d.ts +6 -0
  1245. package/dist/src/ui/hooks/slashCommandProcessor.test.js +846 -0
  1246. package/dist/src/ui/hooks/slashCommandProcessor.test.js.map +1 -0
  1247. package/dist/src/ui/hooks/useAlternateBuffer.d.ts +8 -0
  1248. package/dist/src/ui/hooks/useAlternateBuffer.js +12 -0
  1249. package/dist/src/ui/hooks/useAlternateBuffer.js.map +1 -0
  1250. package/dist/src/ui/hooks/useAnimatedScrollbar.d.ts +10 -0
  1251. package/dist/src/ui/hooks/useAnimatedScrollbar.js +91 -0
  1252. package/dist/src/ui/hooks/useAnimatedScrollbar.js.map +1 -0
  1253. package/dist/src/ui/hooks/useAnimatedScrollbar.test.d.ts +6 -0
  1254. package/dist/src/ui/hooks/useAnimatedScrollbar.test.js +85 -0
  1255. package/dist/src/ui/hooks/useAnimatedScrollbar.test.js.map +1 -0
  1256. package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
  1257. package/dist/src/ui/hooks/useAtCompletion.js +229 -0
  1258. package/dist/src/ui/hooks/useAtCompletion.js.map +1 -0
  1259. package/dist/src/ui/hooks/useAtCompletion.test.d.ts +6 -0
  1260. package/dist/src/ui/hooks/useAtCompletion.test.js +417 -0
  1261. package/dist/src/ui/hooks/useAtCompletion.test.js.map +1 -0
  1262. package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +13 -0
  1263. package/dist/src/ui/hooks/useAutoAcceptIndicator.js +60 -0
  1264. package/dist/src/ui/hooks/useAutoAcceptIndicator.js.map +1 -0
  1265. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.d.ts +6 -0
  1266. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js +410 -0
  1267. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -0
  1268. package/dist/src/ui/hooks/useBanner.d.ts +14 -0
  1269. package/dist/src/ui/hooks/useBanner.js +48 -0
  1270. package/dist/src/ui/hooks/useBanner.js.map +1 -0
  1271. package/dist/src/ui/hooks/useBanner.test.d.ts +6 -0
  1272. package/dist/src/ui/hooks/useBanner.test.js +92 -0
  1273. package/dist/src/ui/hooks/useBanner.test.js.map +1 -0
  1274. package/dist/src/ui/hooks/useBatchedScroll.d.ts +14 -0
  1275. package/dist/src/ui/hooks/useBatchedScroll.js +27 -0
  1276. package/dist/src/ui/hooks/useBatchedScroll.js.map +1 -0
  1277. package/dist/src/ui/hooks/useBatchedScroll.test.d.ts +6 -0
  1278. package/dist/src/ui/hooks/useBatchedScroll.test.js +62 -0
  1279. package/dist/src/ui/hooks/useBatchedScroll.test.js.map +1 -0
  1280. package/dist/src/ui/hooks/useBracketedPaste.d.ts +12 -0
  1281. package/dist/src/ui/hooks/useBracketedPaste.js +31 -0
  1282. package/dist/src/ui/hooks/useBracketedPaste.js.map +1 -0
  1283. package/dist/src/ui/hooks/useCommandCompletion.d.ts +41 -0
  1284. package/dist/src/ui/hooks/useCommandCompletion.js +232 -0
  1285. package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
  1286. package/dist/src/ui/hooks/useCommandCompletion.test.d.ts +6 -0
  1287. package/dist/src/ui/hooks/useCommandCompletion.test.js +376 -0
  1288. package/dist/src/ui/hooks/useCommandCompletion.test.js.map +1 -0
  1289. package/dist/src/ui/hooks/useCompletion.d.ts +24 -0
  1290. package/dist/src/ui/hooks/useCompletion.js +88 -0
  1291. package/dist/src/ui/hooks/useCompletion.js.map +1 -0
  1292. package/dist/src/ui/hooks/useConsoleMessages.d.ts +11 -0
  1293. package/dist/src/ui/hooks/useConsoleMessages.js +101 -0
  1294. package/dist/src/ui/hooks/useConsoleMessages.js.map +1 -0
  1295. package/dist/src/ui/hooks/useConsoleMessages.test.d.ts +6 -0
  1296. package/dist/src/ui/hooks/useConsoleMessages.test.js +159 -0
  1297. package/dist/src/ui/hooks/useConsoleMessages.test.js.map +1 -0
  1298. package/dist/src/ui/hooks/useEditorSettings.d.ts +16 -0
  1299. package/dist/src/ui/hooks/useEditorSettings.js +44 -0
  1300. package/dist/src/ui/hooks/useEditorSettings.js.map +1 -0
  1301. package/dist/src/ui/hooks/useEditorSettings.test.d.ts +6 -0
  1302. package/dist/src/ui/hooks/useEditorSettings.test.js +179 -0
  1303. package/dist/src/ui/hooks/useEditorSettings.test.js.map +1 -0
  1304. package/dist/src/ui/hooks/useExtensionUpdates.d.ts +31 -0
  1305. package/dist/src/ui/hooks/useExtensionUpdates.js +175 -0
  1306. package/dist/src/ui/hooks/useExtensionUpdates.js.map +1 -0
  1307. package/dist/src/ui/hooks/useExtensionUpdates.test.d.ts +6 -0
  1308. package/dist/src/ui/hooks/useExtensionUpdates.test.js +263 -0
  1309. package/dist/src/ui/hooks/useExtensionUpdates.test.js.map +1 -0
  1310. package/dist/src/ui/hooks/useFlickerDetector.d.ts +14 -0
  1311. package/dist/src/ui/hooks/useFlickerDetector.js +37 -0
  1312. package/dist/src/ui/hooks/useFlickerDetector.js.map +1 -0
  1313. package/dist/src/ui/hooks/useFlickerDetector.test.d.ts +6 -0
  1314. package/dist/src/ui/hooks/useFlickerDetector.test.js +106 -0
  1315. package/dist/src/ui/hooks/useFlickerDetector.test.js.map +1 -0
  1316. package/dist/src/ui/hooks/useFocus.d.ts +10 -0
  1317. package/dist/src/ui/hooks/useFocus.js +51 -0
  1318. package/dist/src/ui/hooks/useFocus.js.map +1 -0
  1319. package/dist/src/ui/hooks/useFocus.test.d.ts +6 -0
  1320. package/dist/src/ui/hooks/useFocus.test.js +131 -0
  1321. package/dist/src/ui/hooks/useFocus.test.js.map +1 -0
  1322. package/dist/src/ui/hooks/useFolderTrust.d.ts +14 -0
  1323. package/dist/src/ui/hooks/useFolderTrust.js +81 -0
  1324. package/dist/src/ui/hooks/useFolderTrust.js.map +1 -0
  1325. package/dist/src/ui/hooks/useFolderTrust.test.d.ts +6 -0
  1326. package/dist/src/ui/hooks/useFolderTrust.test.js +210 -0
  1327. package/dist/src/ui/hooks/useFolderTrust.test.js.map +1 -0
  1328. package/dist/src/ui/hooks/useGeminiStream.d.ts +36 -0
  1329. package/dist/src/ui/hooks/useGeminiStream.js +824 -0
  1330. package/dist/src/ui/hooks/useGeminiStream.js.map +1 -0
  1331. package/dist/src/ui/hooks/useGeminiStream.test.d.ts +6 -0
  1332. package/dist/src/ui/hooks/useGeminiStream.test.js +1827 -0
  1333. package/dist/src/ui/hooks/useGeminiStream.test.js.map +1 -0
  1334. package/dist/src/ui/hooks/useGitBranchName.d.ts +6 -0
  1335. package/dist/src/ui/hooks/useGitBranchName.js +65 -0
  1336. package/dist/src/ui/hooks/useGitBranchName.js.map +1 -0
  1337. package/dist/src/ui/hooks/useGitBranchName.test.d.ts +6 -0
  1338. package/dist/src/ui/hooks/useGitBranchName.test.js +183 -0
  1339. package/dist/src/ui/hooks/useGitBranchName.test.js.map +1 -0
  1340. package/dist/src/ui/hooks/useHistoryManager.d.ts +25 -0
  1341. package/dist/src/ui/hooks/useHistoryManager.js +108 -0
  1342. package/dist/src/ui/hooks/useHistoryManager.js.map +1 -0
  1343. package/dist/src/ui/hooks/useHistoryManager.test.d.ts +6 -0
  1344. package/dist/src/ui/hooks/useHistoryManager.test.js +172 -0
  1345. package/dist/src/ui/hooks/useHistoryManager.test.js.map +1 -0
  1346. package/dist/src/ui/hooks/useIdeTrustListener.d.ts +16 -0
  1347. package/dist/src/ui/hooks/useIdeTrustListener.js +67 -0
  1348. package/dist/src/ui/hooks/useIdeTrustListener.js.map +1 -0
  1349. package/dist/src/ui/hooks/useIdeTrustListener.test.d.ts +6 -0
  1350. package/dist/src/ui/hooks/useIdeTrustListener.test.js +214 -0
  1351. package/dist/src/ui/hooks/useIdeTrustListener.test.js.map +1 -0
  1352. package/dist/src/ui/hooks/useInactivityTimer.d.ts +14 -0
  1353. package/dist/src/ui/hooks/useInactivityTimer.js +30 -0
  1354. package/dist/src/ui/hooks/useInactivityTimer.js.map +1 -0
  1355. package/dist/src/ui/hooks/useIncludeDirsTrust.d.ts +8 -0
  1356. package/dist/src/ui/hooks/useIncludeDirsTrust.js +121 -0
  1357. package/dist/src/ui/hooks/useIncludeDirsTrust.js.map +1 -0
  1358. package/dist/src/ui/hooks/useIncludeDirsTrust.test.d.ts +6 -0
  1359. package/dist/src/ui/hooks/useIncludeDirsTrust.test.js +151 -0
  1360. package/dist/src/ui/hooks/useIncludeDirsTrust.test.js.map +1 -0
  1361. package/dist/src/ui/hooks/useInputHistory.d.ts +19 -0
  1362. package/dist/src/ui/hooks/useInputHistory.js +84 -0
  1363. package/dist/src/ui/hooks/useInputHistory.js.map +1 -0
  1364. package/dist/src/ui/hooks/useInputHistory.test.d.ts +6 -0
  1365. package/dist/src/ui/hooks/useInputHistory.test.js +208 -0
  1366. package/dist/src/ui/hooks/useInputHistory.test.js.map +1 -0
  1367. package/dist/src/ui/hooks/useInputHistoryStore.d.ts +19 -0
  1368. package/dist/src/ui/hooks/useInputHistoryStore.js +82 -0
  1369. package/dist/src/ui/hooks/useInputHistoryStore.js.map +1 -0
  1370. package/dist/src/ui/hooks/useInputHistoryStore.test.d.ts +6 -0
  1371. package/dist/src/ui/hooks/useInputHistoryStore.test.js +238 -0
  1372. package/dist/src/ui/hooks/useInputHistoryStore.test.js.map +1 -0
  1373. package/dist/src/ui/hooks/useKeypress.d.ts +17 -0
  1374. package/dist/src/ui/hooks/useKeypress.js +27 -0
  1375. package/dist/src/ui/hooks/useKeypress.js.map +1 -0
  1376. package/dist/src/ui/hooks/useKeypress.test.d.ts +6 -0
  1377. package/dist/src/ui/hooks/useKeypress.test.js +200 -0
  1378. package/dist/src/ui/hooks/useKeypress.test.js.map +1 -0
  1379. package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +14 -0
  1380. package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +19 -0
  1381. package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +1 -0
  1382. package/dist/src/ui/hooks/useLoadingIndicator.d.ts +10 -0
  1383. package/dist/src/ui/hooks/useLoadingIndicator.js +44 -0
  1384. package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -0
  1385. package/dist/src/ui/hooks/useLoadingIndicator.test.d.ts +6 -0
  1386. package/dist/src/ui/hooks/useLoadingIndicator.test.js +127 -0
  1387. package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -0
  1388. package/dist/src/ui/hooks/useLogger.d.ts +11 -0
  1389. package/dist/src/ui/hooks/useLogger.js +29 -0
  1390. package/dist/src/ui/hooks/useLogger.js.map +1 -0
  1391. package/dist/src/ui/hooks/useMemoryMonitor.d.ts +13 -0
  1392. package/dist/src/ui/hooks/useMemoryMonitor.js +28 -0
  1393. package/dist/src/ui/hooks/useMemoryMonitor.js.map +1 -0
  1394. package/dist/src/ui/hooks/useMemoryMonitor.test.d.ts +6 -0
  1395. package/dist/src/ui/hooks/useMemoryMonitor.test.js +62 -0
  1396. package/dist/src/ui/hooks/useMemoryMonitor.test.js.map +1 -0
  1397. package/dist/src/ui/hooks/useMessageQueue.d.ts +24 -0
  1398. package/dist/src/ui/hooks/useMessageQueue.js +61 -0
  1399. package/dist/src/ui/hooks/useMessageQueue.js.map +1 -0
  1400. package/dist/src/ui/hooks/useMessageQueue.test.d.ts +6 -0
  1401. package/dist/src/ui/hooks/useMessageQueue.test.js +293 -0
  1402. package/dist/src/ui/hooks/useMessageQueue.test.js.map +1 -0
  1403. package/dist/src/ui/hooks/useModelCommand.d.ts +12 -0
  1404. package/dist/src/ui/hooks/useModelCommand.js +21 -0
  1405. package/dist/src/ui/hooks/useModelCommand.js.map +1 -0
  1406. package/dist/src/ui/hooks/useModelCommand.test.d.ts +6 -0
  1407. package/dist/src/ui/hooks/useModelCommand.test.js +45 -0
  1408. package/dist/src/ui/hooks/useModelCommand.test.js.map +1 -0
  1409. package/dist/src/ui/hooks/useMouse.d.ts +17 -0
  1410. package/dist/src/ui/hooks/useMouse.js +27 -0
  1411. package/dist/src/ui/hooks/useMouse.js.map +1 -0
  1412. package/dist/src/ui/hooks/useMouse.test.d.ts +6 -0
  1413. package/dist/src/ui/hooks/useMouse.test.js +57 -0
  1414. package/dist/src/ui/hooks/useMouse.test.js.map +1 -0
  1415. package/dist/src/ui/hooks/useMouseClick.d.ts +12 -0
  1416. package/dist/src/ui/hooks/useMouseClick.js +28 -0
  1417. package/dist/src/ui/hooks/useMouseClick.js.map +1 -0
  1418. package/dist/src/ui/hooks/useMouseClick.test.d.ts +6 -0
  1419. package/dist/src/ui/hooks/useMouseClick.test.js +59 -0
  1420. package/dist/src/ui/hooks/useMouseClick.test.js.map +1 -0
  1421. package/dist/src/ui/hooks/usePermissionsModifyTrust.d.ts +17 -0
  1422. package/dist/src/ui/hooks/usePermissionsModifyTrust.js +115 -0
  1423. package/dist/src/ui/hooks/usePermissionsModifyTrust.js.map +1 -0
  1424. package/dist/src/ui/hooks/usePermissionsModifyTrust.test.d.ts +6 -0
  1425. package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js +284 -0
  1426. package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js.map +1 -0
  1427. package/dist/src/ui/hooks/usePhraseCycler.d.ts +16 -0
  1428. package/dist/src/ui/hooks/usePhraseCycler.js +91 -0
  1429. package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -0
  1430. package/dist/src/ui/hooks/usePhraseCycler.test.d.ts +6 -0
  1431. package/dist/src/ui/hooks/usePhraseCycler.test.js +237 -0
  1432. package/dist/src/ui/hooks/usePhraseCycler.test.js.map +1 -0
  1433. package/dist/src/ui/hooks/usePrivacySettings.d.ts +16 -0
  1434. package/dist/src/ui/hooks/usePrivacySettings.js +103 -0
  1435. package/dist/src/ui/hooks/usePrivacySettings.js.map +1 -0
  1436. package/dist/src/ui/hooks/usePrivacySettings.test.d.ts +6 -0
  1437. package/dist/src/ui/hooks/usePrivacySettings.test.js +104 -0
  1438. package/dist/src/ui/hooks/usePrivacySettings.test.js.map +1 -0
  1439. package/dist/src/ui/hooks/usePromptCompletion.d.ts +23 -0
  1440. package/dist/src/ui/hooks/usePromptCompletion.js +171 -0
  1441. package/dist/src/ui/hooks/usePromptCompletion.js.map +1 -0
  1442. package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +19 -0
  1443. package/dist/src/ui/hooks/useQuotaAndFallback.js +112 -0
  1444. package/dist/src/ui/hooks/useQuotaAndFallback.js.map +1 -0
  1445. package/dist/src/ui/hooks/useQuotaAndFallback.test.d.ts +6 -0
  1446. package/dist/src/ui/hooks/useQuotaAndFallback.test.js +332 -0
  1447. package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +1 -0
  1448. package/dist/src/ui/hooks/useReactToolScheduler.d.ts +42 -0
  1449. package/dist/src/ui/hooks/useReactToolScheduler.js +213 -0
  1450. package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -0
  1451. package/dist/src/ui/hooks/useReactToolScheduler.test.d.ts +6 -0
  1452. package/dist/src/ui/hooks/useReactToolScheduler.test.js +58 -0
  1453. package/dist/src/ui/hooks/useReactToolScheduler.test.js.map +1 -0
  1454. package/dist/src/ui/hooks/useRefreshMemoryCommand.d.ts +6 -0
  1455. package/dist/src/ui/hooks/useRefreshMemoryCommand.js +7 -0
  1456. package/dist/src/ui/hooks/useRefreshMemoryCommand.js.map +1 -0
  1457. package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +19 -0
  1458. package/dist/src/ui/hooks/useReverseSearchCompletion.js +103 -0
  1459. package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +1 -0
  1460. package/dist/src/ui/hooks/useReverseSearchCompletion.test.d.ts +6 -0
  1461. package/dist/src/ui/hooks/useReverseSearchCompletion.test.js +169 -0
  1462. package/dist/src/ui/hooks/useReverseSearchCompletion.test.js.map +1 -0
  1463. package/dist/src/ui/hooks/useSelectionList.d.ts +34 -0
  1464. package/dist/src/ui/hooks/useSelectionList.js +273 -0
  1465. package/dist/src/ui/hooks/useSelectionList.js.map +1 -0
  1466. package/dist/src/ui/hooks/useSelectionList.test.d.ts +6 -0
  1467. package/dist/src/ui/hooks/useSelectionList.test.js +819 -0
  1468. package/dist/src/ui/hooks/useSelectionList.test.js.map +1 -0
  1469. package/dist/src/ui/hooks/useSessionBrowser.d.ts +35 -0
  1470. package/dist/src/ui/hooks/useSessionBrowser.js +224 -0
  1471. package/dist/src/ui/hooks/useSessionBrowser.js.map +1 -0
  1472. package/dist/src/ui/hooks/useSessionBrowser.test.d.ts +6 -0
  1473. package/dist/src/ui/hooks/useSessionBrowser.test.js +209 -0
  1474. package/dist/src/ui/hooks/useSessionBrowser.test.js.map +1 -0
  1475. package/dist/src/ui/hooks/useSessionResume.d.ts +30 -0
  1476. package/dist/src/ui/hooks/useSessionResume.js +57 -0
  1477. package/dist/src/ui/hooks/useSessionResume.js.map +1 -0
  1478. package/dist/src/ui/hooks/useSessionResume.test.d.ts +6 -0
  1479. package/dist/src/ui/hooks/useSessionResume.test.js +325 -0
  1480. package/dist/src/ui/hooks/useSessionResume.test.js.map +1 -0
  1481. package/dist/src/ui/hooks/useSettingsCommand.d.ts +10 -0
  1482. package/dist/src/ui/hooks/useSettingsCommand.js +21 -0
  1483. package/dist/src/ui/hooks/useSettingsCommand.js.map +1 -0
  1484. package/dist/src/ui/hooks/useShellHistory.d.ts +14 -0
  1485. package/dist/src/ui/hooks/useShellHistory.js +113 -0
  1486. package/dist/src/ui/hooks/useShellHistory.js.map +1 -0
  1487. package/dist/src/ui/hooks/useShellHistory.test.d.ts +6 -0
  1488. package/dist/src/ui/hooks/useShellHistory.test.js +223 -0
  1489. package/dist/src/ui/hooks/useShellHistory.test.js.map +1 -0
  1490. package/dist/src/ui/hooks/useShowMemoryCommand.d.ts +9 -0
  1491. package/dist/src/ui/hooks/useShowMemoryCommand.js +59 -0
  1492. package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -0
  1493. package/dist/src/ui/hooks/useSlashCompletion.d.ts +23 -0
  1494. package/dist/src/ui/hooks/useSlashCompletion.js +382 -0
  1495. package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -0
  1496. package/dist/src/ui/hooks/useSlashCompletion.test.d.ts +9 -0
  1497. package/dist/src/ui/hooks/useSlashCompletion.test.js +735 -0
  1498. package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -0
  1499. package/dist/src/ui/hooks/useStateAndRef.d.ts +7 -0
  1500. package/dist/src/ui/hooks/useStateAndRef.js +26 -0
  1501. package/dist/src/ui/hooks/useStateAndRef.js.map +1 -0
  1502. package/dist/src/ui/hooks/useTerminalSize.d.ts +9 -0
  1503. package/dist/src/ui/hooks/useTerminalSize.js +26 -0
  1504. package/dist/src/ui/hooks/useTerminalSize.js.map +1 -0
  1505. package/dist/src/ui/hooks/useThemeCommand.d.ts +16 -0
  1506. package/dist/src/ui/hooks/useThemeCommand.js +74 -0
  1507. package/dist/src/ui/hooks/useThemeCommand.js.map +1 -0
  1508. package/dist/src/ui/hooks/useTimer.d.ts +12 -0
  1509. package/dist/src/ui/hooks/useTimer.js +58 -0
  1510. package/dist/src/ui/hooks/useTimer.js.map +1 -0
  1511. package/dist/src/ui/hooks/useTimer.test.d.ts +6 -0
  1512. package/dist/src/ui/hooks/useTimer.test.js +119 -0
  1513. package/dist/src/ui/hooks/useTimer.test.js.map +1 -0
  1514. package/dist/src/ui/hooks/useToolScheduler.test.d.ts +6 -0
  1515. package/dist/src/ui/hooks/useToolScheduler.test.js +857 -0
  1516. package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -0
  1517. package/dist/src/ui/hooks/vim.d.ts +28 -0
  1518. package/dist/src/ui/hooks/vim.js +641 -0
  1519. package/dist/src/ui/hooks/vim.js.map +1 -0
  1520. package/dist/src/ui/hooks/vim.test.d.ts +6 -0
  1521. package/dist/src/ui/hooks/vim.test.js +1270 -0
  1522. package/dist/src/ui/hooks/vim.test.js.map +1 -0
  1523. package/dist/src/ui/keyMatchers.d.ts +27 -0
  1524. package/dist/src/ui/keyMatchers.js +68 -0
  1525. package/dist/src/ui/keyMatchers.js.map +1 -0
  1526. package/dist/src/ui/keyMatchers.test.d.ts +6 -0
  1527. package/dist/src/ui/keyMatchers.test.js +364 -0
  1528. package/dist/src/ui/keyMatchers.test.js.map +1 -0
  1529. package/dist/src/ui/layouts/DefaultAppLayout.d.ts +7 -0
  1530. package/dist/src/ui/layouts/DefaultAppLayout.js +24 -0
  1531. package/dist/src/ui/layouts/DefaultAppLayout.js.map +1 -0
  1532. package/dist/src/ui/layouts/ScreenReaderAppLayout.d.ts +7 -0
  1533. package/dist/src/ui/layouts/ScreenReaderAppLayout.js +17 -0
  1534. package/dist/src/ui/layouts/ScreenReaderAppLayout.js.map +1 -0
  1535. package/dist/src/ui/noninteractive/nonInteractiveUi.d.ts +12 -0
  1536. package/dist/src/ui/noninteractive/nonInteractiveUi.js +29 -0
  1537. package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +1 -0
  1538. package/dist/src/ui/privacy/CloudFreePrivacyNotice.d.ts +12 -0
  1539. package/dist/src/ui/privacy/CloudFreePrivacyNotice.js +42 -0
  1540. package/dist/src/ui/privacy/CloudFreePrivacyNotice.js.map +1 -0
  1541. package/dist/src/ui/privacy/CloudFreePrivacyNotice.test.d.ts +6 -0
  1542. package/dist/src/ui/privacy/CloudFreePrivacyNotice.test.js +121 -0
  1543. package/dist/src/ui/privacy/CloudFreePrivacyNotice.test.js.map +1 -0
  1544. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.d.ts +10 -0
  1545. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js +18 -0
  1546. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js.map +1 -0
  1547. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.test.d.ts +6 -0
  1548. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.test.js +34 -0
  1549. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.test.js.map +1 -0
  1550. package/dist/src/ui/privacy/GeminiPrivacyNotice.d.ts +10 -0
  1551. package/dist/src/ui/privacy/GeminiPrivacyNotice.js +18 -0
  1552. package/dist/src/ui/privacy/GeminiPrivacyNotice.js.map +1 -0
  1553. package/dist/src/ui/privacy/GeminiPrivacyNotice.test.d.ts +6 -0
  1554. package/dist/src/ui/privacy/GeminiPrivacyNotice.test.js +34 -0
  1555. package/dist/src/ui/privacy/GeminiPrivacyNotice.test.js.map +1 -0
  1556. package/dist/src/ui/privacy/PrivacyNotice.d.ts +12 -0
  1557. package/dist/src/ui/privacy/PrivacyNotice.js +25 -0
  1558. package/dist/src/ui/privacy/PrivacyNotice.js.map +1 -0
  1559. package/dist/src/ui/privacy/PrivacyNotice.test.d.ts +6 -0
  1560. package/dist/src/ui/privacy/PrivacyNotice.test.js +62 -0
  1561. package/dist/src/ui/privacy/PrivacyNotice.test.js.map +1 -0
  1562. package/dist/src/ui/semantic-colors.d.ts +7 -0
  1563. package/dist/src/ui/semantic-colors.js +24 -0
  1564. package/dist/src/ui/semantic-colors.js.map +1 -0
  1565. package/dist/src/ui/state/extensions.d.ts +67 -0
  1566. package/dist/src/ui/state/extensions.js +97 -0
  1567. package/dist/src/ui/state/extensions.js.map +1 -0
  1568. package/dist/src/ui/state/extensions.test.d.ts +6 -0
  1569. package/dist/src/ui/state/extensions.test.js +219 -0
  1570. package/dist/src/ui/state/extensions.test.js.map +1 -0
  1571. package/dist/src/ui/textConstants.d.ts +9 -0
  1572. package/dist/src/ui/textConstants.js +10 -0
  1573. package/dist/src/ui/textConstants.js.map +1 -0
  1574. package/dist/src/ui/themes/ansi-light.d.ts +7 -0
  1575. package/dist/src/ui/themes/ansi-light.js +143 -0
  1576. package/dist/src/ui/themes/ansi-light.js.map +1 -0
  1577. package/dist/src/ui/themes/ansi.d.ts +7 -0
  1578. package/dist/src/ui/themes/ansi.js +153 -0
  1579. package/dist/src/ui/themes/ansi.js.map +1 -0
  1580. package/dist/src/ui/themes/atom-one-dark.d.ts +7 -0
  1581. package/dist/src/ui/themes/atom-one-dark.js +140 -0
  1582. package/dist/src/ui/themes/atom-one-dark.js.map +1 -0
  1583. package/dist/src/ui/themes/ayu-light.d.ts +7 -0
  1584. package/dist/src/ui/themes/ayu-light.js +132 -0
  1585. package/dist/src/ui/themes/ayu-light.js.map +1 -0
  1586. package/dist/src/ui/themes/ayu.d.ts +7 -0
  1587. package/dist/src/ui/themes/ayu.js +106 -0
  1588. package/dist/src/ui/themes/ayu.js.map +1 -0
  1589. package/dist/src/ui/themes/color-utils.d.ts +22 -0
  1590. package/dist/src/ui/themes/color-utils.js +237 -0
  1591. package/dist/src/ui/themes/color-utils.js.map +1 -0
  1592. package/dist/src/ui/themes/color-utils.test.d.ts +6 -0
  1593. package/dist/src/ui/themes/color-utils.test.js +226 -0
  1594. package/dist/src/ui/themes/color-utils.test.js.map +1 -0
  1595. package/dist/src/ui/themes/default-light.d.ts +7 -0
  1596. package/dist/src/ui/themes/default-light.js +100 -0
  1597. package/dist/src/ui/themes/default-light.js.map +1 -0
  1598. package/dist/src/ui/themes/default.d.ts +7 -0
  1599. package/dist/src/ui/themes/default.js +143 -0
  1600. package/dist/src/ui/themes/default.js.map +1 -0
  1601. package/dist/src/ui/themes/dracula.d.ts +7 -0
  1602. package/dist/src/ui/themes/dracula.js +117 -0
  1603. package/dist/src/ui/themes/dracula.js.map +1 -0
  1604. package/dist/src/ui/themes/github-dark.d.ts +7 -0
  1605. package/dist/src/ui/themes/github-dark.js +140 -0
  1606. package/dist/src/ui/themes/github-dark.js.map +1 -0
  1607. package/dist/src/ui/themes/github-light.d.ts +7 -0
  1608. package/dist/src/ui/themes/github-light.js +142 -0
  1609. package/dist/src/ui/themes/github-light.js.map +1 -0
  1610. package/dist/src/ui/themes/googlecode.d.ts +7 -0
  1611. package/dist/src/ui/themes/googlecode.js +139 -0
  1612. package/dist/src/ui/themes/googlecode.js.map +1 -0
  1613. package/dist/src/ui/themes/holiday.d.ts +7 -0
  1614. package/dist/src/ui/themes/holiday.js +162 -0
  1615. package/dist/src/ui/themes/holiday.js.map +1 -0
  1616. package/dist/src/ui/themes/no-color.d.ts +7 -0
  1617. package/dist/src/ui/themes/no-color.js +118 -0
  1618. package/dist/src/ui/themes/no-color.js.map +1 -0
  1619. package/dist/src/ui/themes/semantic-tokens.d.ts +39 -0
  1620. package/dist/src/ui/themes/semantic-tokens.js +100 -0
  1621. package/dist/src/ui/themes/semantic-tokens.js.map +1 -0
  1622. package/dist/src/ui/themes/shades-of-purple.d.ts +11 -0
  1623. package/dist/src/ui/themes/shades-of-purple.js +306 -0
  1624. package/dist/src/ui/themes/shades-of-purple.js.map +1 -0
  1625. package/dist/src/ui/themes/theme-manager.d.ts +66 -0
  1626. package/dist/src/ui/themes/theme-manager.js +265 -0
  1627. package/dist/src/ui/themes/theme-manager.js.map +1 -0
  1628. package/dist/src/ui/themes/theme-manager.test.d.ts +6 -0
  1629. package/dist/src/ui/themes/theme-manager.test.js +143 -0
  1630. package/dist/src/ui/themes/theme-manager.test.js.map +1 -0
  1631. package/dist/src/ui/themes/theme.d.ts +133 -0
  1632. package/dist/src/ui/themes/theme.js +390 -0
  1633. package/dist/src/ui/themes/theme.js.map +1 -0
  1634. package/dist/src/ui/themes/theme.test.d.ts +6 -0
  1635. package/dist/src/ui/themes/theme.test.js +151 -0
  1636. package/dist/src/ui/themes/theme.test.js.map +1 -0
  1637. package/dist/src/ui/themes/xcode.d.ts +7 -0
  1638. package/dist/src/ui/themes/xcode.js +147 -0
  1639. package/dist/src/ui/themes/xcode.js.map +1 -0
  1640. package/dist/src/ui/types.d.ts +313 -0
  1641. package/dist/src/ui/types.js +66 -0
  1642. package/dist/src/ui/types.js.map +1 -0
  1643. package/dist/src/ui/utils/CodeColorizer.d.ts +25 -0
  1644. package/dist/src/ui/utils/CodeColorizer.js +123 -0
  1645. package/dist/src/ui/utils/CodeColorizer.js.map +1 -0
  1646. package/dist/src/ui/utils/CodeColorizer.test.d.ts +6 -0
  1647. package/dist/src/ui/utils/CodeColorizer.test.js +38 -0
  1648. package/dist/src/ui/utils/CodeColorizer.test.js.map +1 -0
  1649. package/dist/src/ui/utils/ConsolePatcher.d.ts +25 -0
  1650. package/dist/src/ui/utils/ConsolePatcher.js +49 -0
  1651. package/dist/src/ui/utils/ConsolePatcher.js.map +1 -0
  1652. package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +17 -0
  1653. package/dist/src/ui/utils/InlineMarkdownRenderer.js +112 -0
  1654. package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -0
  1655. package/dist/src/ui/utils/InlineMarkdownRenderer.test.d.ts +6 -0
  1656. package/dist/src/ui/utils/InlineMarkdownRenderer.test.js +21 -0
  1657. package/dist/src/ui/utils/InlineMarkdownRenderer.test.js.map +1 -0
  1658. package/dist/src/ui/utils/MarkdownDisplay.d.ts +15 -0
  1659. package/dist/src/ui/utils/MarkdownDisplay.js +242 -0
  1660. package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -0
  1661. package/dist/src/ui/utils/MarkdownDisplay.test.d.ts +6 -0
  1662. package/dist/src/ui/utils/MarkdownDisplay.test.js +159 -0
  1663. package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -0
  1664. package/dist/src/ui/utils/TableRenderer.d.ts +17 -0
  1665. package/dist/src/ui/utils/TableRenderer.js +84 -0
  1666. package/dist/src/ui/utils/TableRenderer.js.map +1 -0
  1667. package/dist/src/ui/utils/bracketedPaste.d.ts +7 -0
  1668. package/dist/src/ui/utils/bracketedPaste.js +15 -0
  1669. package/dist/src/ui/utils/bracketedPaste.js.map +1 -0
  1670. package/dist/src/ui/utils/clipboardUtils.d.ts +47 -0
  1671. package/dist/src/ui/utils/clipboardUtils.js +212 -0
  1672. package/dist/src/ui/utils/clipboardUtils.js.map +1 -0
  1673. package/dist/src/ui/utils/clipboardUtils.test.d.ts +6 -0
  1674. package/dist/src/ui/utils/clipboardUtils.test.js +187 -0
  1675. package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -0
  1676. package/dist/src/ui/utils/commandUtils.d.ts +36 -0
  1677. package/dist/src/ui/utils/commandUtils.js +189 -0
  1678. package/dist/src/ui/utils/commandUtils.js.map +1 -0
  1679. package/dist/src/ui/utils/commandUtils.test.d.ts +6 -0
  1680. package/dist/src/ui/utils/commandUtils.test.js +309 -0
  1681. package/dist/src/ui/utils/commandUtils.test.js.map +1 -0
  1682. package/dist/src/ui/utils/computeStats.d.ts +10 -0
  1683. package/dist/src/ui/utils/computeStats.js +62 -0
  1684. package/dist/src/ui/utils/computeStats.js.map +1 -0
  1685. package/dist/src/ui/utils/computeStats.test.d.ts +6 -0
  1686. package/dist/src/ui/utils/computeStats.test.js +271 -0
  1687. package/dist/src/ui/utils/computeStats.test.js.map +1 -0
  1688. package/dist/src/ui/utils/directoryUtils.d.ts +6 -0
  1689. package/dist/src/ui/utils/directoryUtils.js +21 -0
  1690. package/dist/src/ui/utils/directoryUtils.js.map +1 -0
  1691. package/dist/src/ui/utils/directoryUtils.test.d.ts +6 -0
  1692. package/dist/src/ui/utils/directoryUtils.test.js +52 -0
  1693. package/dist/src/ui/utils/directoryUtils.test.js.map +1 -0
  1694. package/dist/src/ui/utils/displayUtils.d.ts +18 -0
  1695. package/dist/src/ui/utils/displayUtils.js +27 -0
  1696. package/dist/src/ui/utils/displayUtils.js.map +1 -0
  1697. package/dist/src/ui/utils/displayUtils.test.d.ts +6 -0
  1698. package/dist/src/ui/utils/displayUtils.test.js +61 -0
  1699. package/dist/src/ui/utils/displayUtils.test.js.map +1 -0
  1700. package/dist/src/ui/utils/formatters.d.ts +13 -0
  1701. package/dist/src/ui/utils/formatters.js +56 -0
  1702. package/dist/src/ui/utils/formatters.js.map +1 -0
  1703. package/dist/src/ui/utils/formatters.test.d.ts +6 -0
  1704. package/dist/src/ui/utils/formatters.test.js +56 -0
  1705. package/dist/src/ui/utils/formatters.test.js.map +1 -0
  1706. package/dist/src/ui/utils/highlight.d.ts +11 -0
  1707. package/dist/src/ui/utils/highlight.js +82 -0
  1708. package/dist/src/ui/utils/highlight.js.map +1 -0
  1709. package/dist/src/ui/utils/highlight.test.d.ts +6 -0
  1710. package/dist/src/ui/utils/highlight.test.js +120 -0
  1711. package/dist/src/ui/utils/highlight.test.js.map +1 -0
  1712. package/dist/src/ui/utils/input.d.ts +17 -0
  1713. package/dist/src/ui/utils/input.js +51 -0
  1714. package/dist/src/ui/utils/input.js.map +1 -0
  1715. package/dist/src/ui/utils/input.test.d.ts +6 -0
  1716. package/dist/src/ui/utils/input.test.js +44 -0
  1717. package/dist/src/ui/utils/input.test.js.map +1 -0
  1718. package/dist/src/ui/utils/isNarrowWidth.d.ts +6 -0
  1719. package/dist/src/ui/utils/isNarrowWidth.js +9 -0
  1720. package/dist/src/ui/utils/isNarrowWidth.js.map +1 -0
  1721. package/dist/src/ui/utils/kittyProtocolDetector.d.ts +17 -0
  1722. package/dist/src/ui/utils/kittyProtocolDetector.js +111 -0
  1723. package/dist/src/ui/utils/kittyProtocolDetector.js.map +1 -0
  1724. package/dist/src/ui/utils/kittyProtocolDetector.test.d.ts +6 -0
  1725. package/dist/src/ui/utils/kittyProtocolDetector.test.js +113 -0
  1726. package/dist/src/ui/utils/kittyProtocolDetector.test.js.map +1 -0
  1727. package/dist/src/ui/utils/markdownUtilities.d.ts +6 -0
  1728. package/dist/src/ui/utils/markdownUtilities.js +110 -0
  1729. package/dist/src/ui/utils/markdownUtilities.js.map +1 -0
  1730. package/dist/src/ui/utils/markdownUtilities.test.d.ts +6 -0
  1731. package/dist/src/ui/utils/markdownUtilities.test.js +42 -0
  1732. package/dist/src/ui/utils/markdownUtilities.test.js.map +1 -0
  1733. package/dist/src/ui/utils/mouse.d.ts +32 -0
  1734. package/dist/src/ui/utils/mouse.js +181 -0
  1735. package/dist/src/ui/utils/mouse.js.map +1 -0
  1736. package/dist/src/ui/utils/mouse.test.d.ts +6 -0
  1737. package/dist/src/ui/utils/mouse.test.js +136 -0
  1738. package/dist/src/ui/utils/mouse.test.js.map +1 -0
  1739. package/dist/src/ui/utils/terminalSetup.d.ts +34 -0
  1740. package/dist/src/ui/utils/terminalSetup.js +290 -0
  1741. package/dist/src/ui/utils/terminalSetup.js.map +1 -0
  1742. package/dist/src/ui/utils/terminalSetup.test.d.ts +6 -0
  1743. package/dist/src/ui/utils/terminalSetup.test.js +136 -0
  1744. package/dist/src/ui/utils/terminalSetup.test.js.map +1 -0
  1745. package/dist/src/ui/utils/textOutput.d.ts +27 -0
  1746. package/dist/src/ui/utils/textOutput.js +53 -0
  1747. package/dist/src/ui/utils/textOutput.js.map +1 -0
  1748. package/dist/src/ui/utils/textOutput.test.d.ts +6 -0
  1749. package/dist/src/ui/utils/textOutput.test.js +79 -0
  1750. package/dist/src/ui/utils/textOutput.test.js.map +1 -0
  1751. package/dist/src/ui/utils/textUtils.d.ts +43 -0
  1752. package/dist/src/ui/utils/textUtils.js +186 -0
  1753. package/dist/src/ui/utils/textUtils.js.map +1 -0
  1754. package/dist/src/ui/utils/textUtils.test.d.ts +6 -0
  1755. package/dist/src/ui/utils/textUtils.test.js +138 -0
  1756. package/dist/src/ui/utils/textUtils.test.js.map +1 -0
  1757. package/dist/src/ui/utils/ui-sizing.d.ts +7 -0
  1758. package/dist/src/ui/utils/ui-sizing.js +30 -0
  1759. package/dist/src/ui/utils/ui-sizing.js.map +1 -0
  1760. package/dist/src/ui/utils/ui-sizing.test.d.ts +6 -0
  1761. package/dist/src/ui/utils/ui-sizing.test.js +56 -0
  1762. package/dist/src/ui/utils/ui-sizing.test.js.map +1 -0
  1763. package/dist/src/ui/utils/updateCheck.d.ts +19 -0
  1764. package/dist/src/ui/utils/updateCheck.js +86 -0
  1765. package/dist/src/ui/utils/updateCheck.js.map +1 -0
  1766. package/dist/src/ui/utils/updateCheck.test.d.ts +6 -0
  1767. package/dist/src/ui/utils/updateCheck.test.js +134 -0
  1768. package/dist/src/ui/utils/updateCheck.test.js.map +1 -0
  1769. package/dist/src/utils/checks.d.ts +19 -0
  1770. package/dist/src/utils/checks.js +24 -0
  1771. package/dist/src/utils/checks.js.map +1 -0
  1772. package/dist/src/utils/checks.test.d.ts +6 -0
  1773. package/dist/src/utils/checks.test.js +29 -0
  1774. package/dist/src/utils/checks.test.js.map +1 -0
  1775. package/dist/src/utils/cleanup.d.ts +16 -0
  1776. package/dist/src/utils/cleanup.js +69 -0
  1777. package/dist/src/utils/cleanup.js.map +1 -0
  1778. package/dist/src/utils/cleanup.test.d.ts +6 -0
  1779. package/dist/src/utils/cleanup.test.js +102 -0
  1780. package/dist/src/utils/cleanup.test.js.map +1 -0
  1781. package/dist/src/utils/commands.d.ts +20 -0
  1782. package/dist/src/utils/commands.js +53 -0
  1783. package/dist/src/utils/commands.js.map +1 -0
  1784. package/dist/src/utils/commands.test.d.ts +6 -0
  1785. package/dist/src/utils/commands.test.js +115 -0
  1786. package/dist/src/utils/commands.test.js.map +1 -0
  1787. package/dist/src/utils/commentJson.d.ts +9 -0
  1788. package/dist/src/utils/commentJson.js +130 -0
  1789. package/dist/src/utils/commentJson.js.map +1 -0
  1790. package/dist/src/utils/commentJson.test.d.ts +6 -0
  1791. package/dist/src/utils/commentJson.test.js +308 -0
  1792. package/dist/src/utils/commentJson.test.js.map +1 -0
  1793. package/dist/src/utils/deepMerge.d.ts +9 -0
  1794. package/dist/src/utils/deepMerge.js +63 -0
  1795. package/dist/src/utils/deepMerge.js.map +1 -0
  1796. package/dist/src/utils/deepMerge.test.d.ts +6 -0
  1797. package/dist/src/utils/deepMerge.test.js +201 -0
  1798. package/dist/src/utils/deepMerge.test.js.map +1 -0
  1799. package/dist/src/utils/dialogScopeUtils.d.ts +25 -0
  1800. package/dist/src/utils/dialogScopeUtils.js +50 -0
  1801. package/dist/src/utils/dialogScopeUtils.js.map +1 -0
  1802. package/dist/src/utils/dialogScopeUtils.test.d.ts +6 -0
  1803. package/dist/src/utils/dialogScopeUtils.test.js +81 -0
  1804. package/dist/src/utils/dialogScopeUtils.test.js.map +1 -0
  1805. package/dist/src/utils/envVarResolver.d.ts +39 -0
  1806. package/dist/src/utils/envVarResolver.js +100 -0
  1807. package/dist/src/utils/envVarResolver.js.map +1 -0
  1808. package/dist/src/utils/envVarResolver.test.d.ts +6 -0
  1809. package/dist/src/utils/envVarResolver.test.js +221 -0
  1810. package/dist/src/utils/envVarResolver.test.js.map +1 -0
  1811. package/dist/src/utils/errors.d.ts +33 -0
  1812. package/dist/src/utils/errors.js +186 -0
  1813. package/dist/src/utils/errors.js.map +1 -0
  1814. package/dist/src/utils/errors.test.d.ts +6 -0
  1815. package/dist/src/utils/errors.test.js +377 -0
  1816. package/dist/src/utils/errors.test.js.map +1 -0
  1817. package/dist/src/utils/events.d.ts +24 -0
  1818. package/dist/src/utils/events.js +17 -0
  1819. package/dist/src/utils/events.js.map +1 -0
  1820. package/dist/src/utils/events.test.d.ts +6 -0
  1821. package/dist/src/utils/events.test.js +24 -0
  1822. package/dist/src/utils/events.test.js.map +1 -0
  1823. package/dist/src/utils/gitUtils.d.ts +30 -0
  1824. package/dist/src/utils/gitUtils.js +90 -0
  1825. package/dist/src/utils/gitUtils.js.map +1 -0
  1826. package/dist/src/utils/gitUtils.test.d.ts +6 -0
  1827. package/dist/src/utils/gitUtils.test.js +113 -0
  1828. package/dist/src/utils/gitUtils.test.js.map +1 -0
  1829. package/dist/src/utils/handleAutoUpdate.d.ts +11 -0
  1830. package/dist/src/utils/handleAutoUpdate.js +113 -0
  1831. package/dist/src/utils/handleAutoUpdate.js.map +1 -0
  1832. package/dist/src/utils/handleAutoUpdate.test.d.ts +6 -0
  1833. package/dist/src/utils/handleAutoUpdate.test.js +303 -0
  1834. package/dist/src/utils/handleAutoUpdate.test.js.map +1 -0
  1835. package/dist/src/utils/installationInfo.d.ts +24 -0
  1836. package/dist/src/utils/installationInfo.js +156 -0
  1837. package/dist/src/utils/installationInfo.js.map +1 -0
  1838. package/dist/src/utils/installationInfo.test.d.ts +6 -0
  1839. package/dist/src/utils/installationInfo.test.js +245 -0
  1840. package/dist/src/utils/installationInfo.test.js.map +1 -0
  1841. package/dist/src/utils/math.d.ts +13 -0
  1842. package/dist/src/utils/math.js +14 -0
  1843. package/dist/src/utils/math.js.map +1 -0
  1844. package/dist/src/utils/math.test.d.ts +6 -0
  1845. package/dist/src/utils/math.test.js +23 -0
  1846. package/dist/src/utils/math.test.js.map +1 -0
  1847. package/dist/src/utils/persistentState.d.ts +19 -0
  1848. package/dist/src/utils/persistentState.js +65 -0
  1849. package/dist/src/utils/persistentState.js.map +1 -0
  1850. package/dist/src/utils/persistentState.test.d.ts +6 -0
  1851. package/dist/src/utils/persistentState.test.js +68 -0
  1852. package/dist/src/utils/persistentState.test.js.map +1 -0
  1853. package/dist/src/utils/processUtils.d.ts +13 -0
  1854. package/dist/src/utils/processUtils.js +18 -0
  1855. package/dist/src/utils/processUtils.js.map +1 -0
  1856. package/dist/src/utils/processUtils.test.d.ts +6 -0
  1857. package/dist/src/utils/processUtils.test.js +20 -0
  1858. package/dist/src/utils/processUtils.test.js.map +1 -0
  1859. package/dist/src/utils/readStdin.d.ts +6 -0
  1860. package/dist/src/utils/readStdin.js +61 -0
  1861. package/dist/src/utils/readStdin.js.map +1 -0
  1862. package/dist/src/utils/readStdin.test.d.ts +6 -0
  1863. package/dist/src/utils/readStdin.test.js +113 -0
  1864. package/dist/src/utils/readStdin.test.js.map +1 -0
  1865. package/dist/src/utils/relaunch.d.ts +7 -0
  1866. package/dist/src/utils/relaunch.js +57 -0
  1867. package/dist/src/utils/relaunch.js.map +1 -0
  1868. package/dist/src/utils/relaunch.test.d.ts +6 -0
  1869. package/dist/src/utils/relaunch.test.js +273 -0
  1870. package/dist/src/utils/relaunch.test.js.map +1 -0
  1871. package/dist/src/utils/resolvePath.d.ts +6 -0
  1872. package/dist/src/utils/resolvePath.js +21 -0
  1873. package/dist/src/utils/resolvePath.js.map +1 -0
  1874. package/dist/src/utils/resolvePath.test.d.ts +6 -0
  1875. package/dist/src/utils/resolvePath.test.js +31 -0
  1876. package/dist/src/utils/resolvePath.test.js.map +1 -0
  1877. package/dist/src/utils/sandbox-macos-permissive-closed.sb +32 -0
  1878. package/dist/src/utils/sandbox-macos-permissive-open.sb +27 -0
  1879. package/dist/src/utils/sandbox-macos-permissive-proxied.sb +37 -0
  1880. package/dist/src/utils/sandbox-macos-restrictive-closed.sb +93 -0
  1881. package/dist/src/utils/sandbox-macos-restrictive-open.sb +96 -0
  1882. package/dist/src/utils/sandbox-macos-restrictive-proxied.sb +98 -0
  1883. package/dist/src/utils/sandbox.d.ts +7 -0
  1884. package/dist/src/utils/sandbox.js +616 -0
  1885. package/dist/src/utils/sandbox.js.map +1 -0
  1886. package/dist/src/utils/sandbox.test.d.ts +6 -0
  1887. package/dist/src/utils/sandbox.test.js +302 -0
  1888. package/dist/src/utils/sandbox.test.js.map +1 -0
  1889. package/dist/src/utils/sandboxUtils.d.ts +14 -0
  1890. package/dist/src/utils/sandboxUtils.js +121 -0
  1891. package/dist/src/utils/sandboxUtils.js.map +1 -0
  1892. package/dist/src/utils/sandboxUtils.test.d.ts +6 -0
  1893. package/dist/src/utils/sandboxUtils.test.js +122 -0
  1894. package/dist/src/utils/sandboxUtils.test.js.map +1 -0
  1895. package/dist/src/utils/sessionCleanup.d.ts +22 -0
  1896. package/dist/src/utils/sessionCleanup.integration.test.d.ts +6 -0
  1897. package/dist/src/utils/sessionCleanup.integration.test.js +182 -0
  1898. package/dist/src/utils/sessionCleanup.integration.test.js.map +1 -0
  1899. package/dist/src/utils/sessionCleanup.js +214 -0
  1900. package/dist/src/utils/sessionCleanup.js.map +1 -0
  1901. package/dist/src/utils/sessionCleanup.test.d.ts +6 -0
  1902. package/dist/src/utils/sessionCleanup.test.js +1348 -0
  1903. package/dist/src/utils/sessionCleanup.test.js.map +1 -0
  1904. package/dist/src/utils/sessionUtils.d.ts +150 -0
  1905. package/dist/src/utils/sessionUtils.js +306 -0
  1906. package/dist/src/utils/sessionUtils.js.map +1 -0
  1907. package/dist/src/utils/sessionUtils.test.d.ts +6 -0
  1908. package/dist/src/utils/sessionUtils.test.js +503 -0
  1909. package/dist/src/utils/sessionUtils.test.js.map +1 -0
  1910. package/dist/src/utils/sessions.d.ts +8 -0
  1911. package/dist/src/utils/sessions.js +69 -0
  1912. package/dist/src/utils/sessions.js.map +1 -0
  1913. package/dist/src/utils/sessions.test.d.ts +6 -0
  1914. package/dist/src/utils/sessions.test.js +584 -0
  1915. package/dist/src/utils/sessions.test.js.map +1 -0
  1916. package/dist/src/utils/settingsUtils.d.ts +144 -0
  1917. package/dist/src/utils/settingsUtils.js +340 -0
  1918. package/dist/src/utils/settingsUtils.js.map +1 -0
  1919. package/dist/src/utils/settingsUtils.test.d.ts +6 -0
  1920. package/dist/src/utils/settingsUtils.test.js +808 -0
  1921. package/dist/src/utils/settingsUtils.test.js.map +1 -0
  1922. package/dist/src/utils/spawnWrapper.d.ts +7 -0
  1923. package/dist/src/utils/spawnWrapper.js +8 -0
  1924. package/dist/src/utils/spawnWrapper.js.map +1 -0
  1925. package/dist/src/utils/startupWarnings.d.ts +6 -0
  1926. package/dist/src/utils/startupWarnings.js +40 -0
  1927. package/dist/src/utils/startupWarnings.js.map +1 -0
  1928. package/dist/src/utils/startupWarnings.test.d.ts +6 -0
  1929. package/dist/src/utils/startupWarnings.test.js +61 -0
  1930. package/dist/src/utils/startupWarnings.test.js.map +1 -0
  1931. package/dist/src/utils/updateEventEmitter.d.ts +11 -0
  1932. package/dist/src/utils/updateEventEmitter.js +12 -0
  1933. package/dist/src/utils/updateEventEmitter.js.map +1 -0
  1934. package/dist/src/utils/updateEventEmitter.test.d.ts +6 -0
  1935. package/dist/src/utils/updateEventEmitter.test.js +18 -0
  1936. package/dist/src/utils/updateEventEmitter.test.js.map +1 -0
  1937. package/dist/src/utils/userStartupWarnings.d.ts +6 -0
  1938. package/dist/src/utils/userStartupWarnings.js +54 -0
  1939. package/dist/src/utils/userStartupWarnings.js.map +1 -0
  1940. package/dist/src/utils/userStartupWarnings.test.d.ts +6 -0
  1941. package/dist/src/utils/userStartupWarnings.test.js +67 -0
  1942. package/dist/src/utils/userStartupWarnings.test.js.map +1 -0
  1943. package/dist/src/utils/windowTitle.d.ts +12 -0
  1944. package/dist/src/utils/windowTitle.js +19 -0
  1945. package/dist/src/utils/windowTitle.js.map +1 -0
  1946. package/dist/src/utils/windowTitle.test.d.ts +6 -0
  1947. package/dist/src/utils/windowTitle.test.js +49 -0
  1948. package/dist/src/utils/windowTitle.test.js.map +1 -0
  1949. package/dist/src/validateNonInterActiveAuth.d.ts +9 -0
  1950. package/dist/src/validateNonInterActiveAuth.js +59 -0
  1951. package/dist/src/validateNonInterActiveAuth.js.map +1 -0
  1952. package/dist/src/validateNonInterActiveAuth.test.d.ts +6 -0
  1953. package/dist/src/validateNonInterActiveAuth.test.js +337 -0
  1954. package/dist/src/validateNonInterActiveAuth.test.js.map +1 -0
  1955. package/dist/src/zed-integration/acp.d.ts +41 -0
  1956. package/dist/src/zed-integration/acp.js +72 -0
  1957. package/dist/src/zed-integration/acp.js.map +1 -0
  1958. package/dist/src/zed-integration/acp.test.d.ts +6 -0
  1959. package/dist/src/zed-integration/acp.test.js +214 -0
  1960. package/dist/src/zed-integration/acp.test.js.map +1 -0
  1961. package/dist/src/zed-integration/connection.d.ts +28 -0
  1962. package/dist/src/zed-integration/connection.js +165 -0
  1963. package/dist/src/zed-integration/connection.js.map +1 -0
  1964. package/dist/src/zed-integration/connection.test.d.ts +6 -0
  1965. package/dist/src/zed-integration/connection.test.js +175 -0
  1966. package/dist/src/zed-integration/connection.test.js.map +1 -0
  1967. package/dist/src/zed-integration/fileSystemService.d.ts +19 -0
  1968. package/dist/src/zed-integration/fileSystemService.js +43 -0
  1969. package/dist/src/zed-integration/fileSystemService.js.map +1 -0
  1970. package/dist/src/zed-integration/fileSystemService.test.d.ts +6 -0
  1971. package/dist/src/zed-integration/fileSystemService.test.js +90 -0
  1972. package/dist/src/zed-integration/fileSystemService.test.js.map +1 -0
  1973. package/dist/src/zed-integration/schema.d.ts +11792 -0
  1974. package/dist/src/zed-integration/schema.js +311 -0
  1975. package/dist/src/zed-integration/schema.js.map +1 -0
  1976. package/dist/src/zed-integration/zedIntegration.d.ts +39 -0
  1977. package/dist/src/zed-integration/zedIntegration.js +728 -0
  1978. package/dist/src/zed-integration/zedIntegration.js.map +1 -0
  1979. package/dist/src/zed-integration/zedIntegration.test.d.ts +6 -0
  1980. package/dist/src/zed-integration/zedIntegration.test.js +614 -0
  1981. package/dist/src/zed-integration/zedIntegration.test.js.map +1 -0
  1982. package/dist/tsconfig.tsbuildinfo +1 -0
  1983. package/package.json +93 -0
@@ -0,0 +1,1511 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2025 Google LLC
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ import type { MCPServerConfig, BugCommandSettings, TelemetrySettings, AuthType } from '@google/gemini-cli-core';
7
+ import type { CustomTheme } from '../ui/themes/theme.js';
8
+ import type { SessionRetentionSettings } from './settings.js';
9
+ export type SettingsType = 'boolean' | 'string' | 'number' | 'array' | 'object' | 'enum';
10
+ export type SettingsValue = boolean | string | number | string[] | object | undefined;
11
+ /**
12
+ * Setting datatypes that "toggle" through a fixed list of options
13
+ * (e.g. an enum or true/false) rather than allowing for free form input
14
+ * (like a number or string).
15
+ */
16
+ export declare const TOGGLE_TYPES: ReadonlySet<SettingsType | undefined>;
17
+ export interface SettingEnumOption {
18
+ value: string | number;
19
+ label: string;
20
+ }
21
+ export interface SettingCollectionDefinition {
22
+ type: SettingsType;
23
+ description?: string;
24
+ properties?: SettingsSchema;
25
+ /** Enum type options */
26
+ options?: readonly SettingEnumOption[];
27
+ /**
28
+ * Optional reference identifier for generators that emit a `$ref`.
29
+ * For example, a JSON schema generator can use this to point to a shared definition.
30
+ */
31
+ ref?: string;
32
+ /**
33
+ * Optional merge strategy for dynamically added properties.
34
+ * Used when this collection definition is referenced via additionalProperties.
35
+ */
36
+ mergeStrategy?: MergeStrategy;
37
+ }
38
+ export declare enum MergeStrategy {
39
+ REPLACE = "replace",
40
+ CONCAT = "concat",
41
+ UNION = "union",
42
+ SHALLOW_MERGE = "shallow_merge"
43
+ }
44
+ export interface SettingDefinition {
45
+ type: SettingsType;
46
+ label: string;
47
+ category: string;
48
+ requiresRestart: boolean;
49
+ default: SettingsValue;
50
+ description?: string;
51
+ parentKey?: string;
52
+ childKey?: string;
53
+ key?: string;
54
+ properties?: SettingsSchema;
55
+ showInDialog?: boolean;
56
+ mergeStrategy?: MergeStrategy;
57
+ /** Enum type options */
58
+ options?: readonly SettingEnumOption[];
59
+ /**
60
+ * For collection types (e.g. arrays), describes the shape of each item.
61
+ */
62
+ items?: SettingCollectionDefinition;
63
+ /**
64
+ * For map-like objects without explicit `properties`, describes the shape of the values.
65
+ */
66
+ additionalProperties?: SettingCollectionDefinition;
67
+ /**
68
+ * Optional reference identifier for generators that emit a `$ref`.
69
+ */
70
+ ref?: string;
71
+ }
72
+ export interface SettingsSchema {
73
+ [key: string]: SettingDefinition;
74
+ }
75
+ export type MemoryImportFormat = 'tree' | 'flat';
76
+ export type DnsResolutionOrder = 'ipv4first' | 'verbatim';
77
+ /**
78
+ * The canonical schema for all settings.
79
+ * The structure of this object defines the structure of the `Settings` type.
80
+ * `as const` is crucial for TypeScript to infer the most specific types possible.
81
+ */
82
+ declare const SETTINGS_SCHEMA: {
83
+ readonly mcpServers: {
84
+ readonly type: "object";
85
+ readonly label: "MCP Servers";
86
+ readonly category: "Advanced";
87
+ readonly requiresRestart: true;
88
+ readonly default: Record<string, MCPServerConfig>;
89
+ readonly description: "Configuration for MCP servers.";
90
+ readonly showInDialog: false;
91
+ readonly mergeStrategy: MergeStrategy.SHALLOW_MERGE;
92
+ readonly additionalProperties: {
93
+ readonly type: "object";
94
+ readonly ref: "MCPServerConfig";
95
+ };
96
+ };
97
+ readonly general: {
98
+ readonly type: "object";
99
+ readonly label: "General";
100
+ readonly category: "General";
101
+ readonly requiresRestart: false;
102
+ readonly default: {};
103
+ readonly description: "General application settings.";
104
+ readonly showInDialog: false;
105
+ readonly properties: {
106
+ readonly previewFeatures: {
107
+ readonly type: "boolean";
108
+ readonly label: "Preview Features (e.g., models)";
109
+ readonly category: "General";
110
+ readonly requiresRestart: false;
111
+ readonly default: false;
112
+ readonly description: "Enable preview features (e.g., preview models).";
113
+ readonly showInDialog: true;
114
+ };
115
+ readonly preferredEditor: {
116
+ readonly type: "string";
117
+ readonly label: "Preferred Editor";
118
+ readonly category: "General";
119
+ readonly requiresRestart: false;
120
+ readonly default: string | undefined;
121
+ readonly description: "The preferred editor to open files in.";
122
+ readonly showInDialog: false;
123
+ };
124
+ readonly vimMode: {
125
+ readonly type: "boolean";
126
+ readonly label: "Vim Mode";
127
+ readonly category: "General";
128
+ readonly requiresRestart: false;
129
+ readonly default: false;
130
+ readonly description: "Enable Vim keybindings";
131
+ readonly showInDialog: true;
132
+ };
133
+ readonly appMode: {
134
+ readonly type: "enum";
135
+ readonly label: "App Mode";
136
+ readonly category: "General";
137
+ readonly requiresRestart: false;
138
+ readonly default: "strict" | "plan" | "vibe";
139
+ readonly description: "Application interaction mode (strict, plan, or vibe)";
140
+ readonly showInDialog: true;
141
+ readonly options: readonly [{
142
+ readonly value: "strict";
143
+ readonly label: "Strict Mode";
144
+ }, {
145
+ readonly value: "plan";
146
+ readonly label: "Plan Mode";
147
+ }, {
148
+ readonly value: "vibe";
149
+ readonly label: "Vibe Mode";
150
+ }];
151
+ };
152
+ readonly disableAutoUpdate: {
153
+ readonly type: "boolean";
154
+ readonly label: "Disable Auto Update";
155
+ readonly category: "General";
156
+ readonly requiresRestart: false;
157
+ readonly default: false;
158
+ readonly description: "Disable automatic updates";
159
+ readonly showInDialog: true;
160
+ };
161
+ readonly disableUpdateNag: {
162
+ readonly type: "boolean";
163
+ readonly label: "Disable Update Nag";
164
+ readonly category: "General";
165
+ readonly requiresRestart: false;
166
+ readonly default: false;
167
+ readonly description: "Disable update notification prompts.";
168
+ readonly showInDialog: false;
169
+ };
170
+ readonly checkpointing: {
171
+ readonly type: "object";
172
+ readonly label: "Checkpointing";
173
+ readonly category: "General";
174
+ readonly requiresRestart: true;
175
+ readonly default: {};
176
+ readonly description: "Session checkpointing settings.";
177
+ readonly showInDialog: false;
178
+ readonly properties: {
179
+ readonly enabled: {
180
+ readonly type: "boolean";
181
+ readonly label: "Enable Checkpointing";
182
+ readonly category: "General";
183
+ readonly requiresRestart: true;
184
+ readonly default: false;
185
+ readonly description: "Enable session checkpointing for recovery";
186
+ readonly showInDialog: false;
187
+ };
188
+ };
189
+ };
190
+ readonly enablePromptCompletion: {
191
+ readonly type: "boolean";
192
+ readonly label: "Enable Prompt Completion";
193
+ readonly category: "General";
194
+ readonly requiresRestart: true;
195
+ readonly default: false;
196
+ readonly description: "Enable AI-powered prompt completion suggestions while typing.";
197
+ readonly showInDialog: true;
198
+ };
199
+ readonly retryFetchErrors: {
200
+ readonly type: "boolean";
201
+ readonly label: "Retry Fetch Errors";
202
+ readonly category: "General";
203
+ readonly requiresRestart: false;
204
+ readonly default: false;
205
+ readonly description: "Retry on \"exception TypeError: fetch failed sending request\" errors.";
206
+ readonly showInDialog: false;
207
+ };
208
+ readonly debugKeystrokeLogging: {
209
+ readonly type: "boolean";
210
+ readonly label: "Debug Keystroke Logging";
211
+ readonly category: "General";
212
+ readonly requiresRestart: false;
213
+ readonly default: false;
214
+ readonly description: "Enable debug logging of keystrokes to the console.";
215
+ readonly showInDialog: true;
216
+ };
217
+ readonly sessionRetention: {
218
+ readonly type: "object";
219
+ readonly label: "Session Retention";
220
+ readonly category: "General";
221
+ readonly requiresRestart: false;
222
+ readonly default: SessionRetentionSettings | undefined;
223
+ readonly showInDialog: false;
224
+ readonly properties: {
225
+ readonly enabled: {
226
+ readonly type: "boolean";
227
+ readonly label: "Enable Session Cleanup";
228
+ readonly category: "General";
229
+ readonly requiresRestart: false;
230
+ readonly default: false;
231
+ readonly description: "Enable automatic session cleanup";
232
+ readonly showInDialog: true;
233
+ };
234
+ readonly maxAge: {
235
+ readonly type: "string";
236
+ readonly label: "Max Session Age";
237
+ readonly category: "General";
238
+ readonly requiresRestart: false;
239
+ readonly default: string | undefined;
240
+ readonly description: "Maximum age of sessions to keep (e.g., \"30d\", \"7d\", \"24h\", \"1w\")";
241
+ readonly showInDialog: false;
242
+ };
243
+ readonly maxCount: {
244
+ readonly type: "number";
245
+ readonly label: "Max Session Count";
246
+ readonly category: "General";
247
+ readonly requiresRestart: false;
248
+ readonly default: number | undefined;
249
+ readonly description: "Alternative: Maximum number of sessions to keep (most recent)";
250
+ readonly showInDialog: false;
251
+ };
252
+ readonly minRetention: {
253
+ readonly type: "string";
254
+ readonly label: "Min Retention Period";
255
+ readonly category: "General";
256
+ readonly requiresRestart: false;
257
+ readonly default: string;
258
+ readonly description: `Minimum retention period (safety limit, defaults to "${string}")`;
259
+ readonly showInDialog: false;
260
+ };
261
+ };
262
+ readonly description: "Settings for automatic session cleanup.";
263
+ };
264
+ };
265
+ };
266
+ readonly output: {
267
+ readonly type: "object";
268
+ readonly label: "Output";
269
+ readonly category: "General";
270
+ readonly requiresRestart: false;
271
+ readonly default: {};
272
+ readonly description: "Settings for the CLI output.";
273
+ readonly showInDialog: false;
274
+ readonly properties: {
275
+ readonly format: {
276
+ readonly type: "enum";
277
+ readonly label: "Output Format";
278
+ readonly category: "General";
279
+ readonly requiresRestart: false;
280
+ readonly default: "text";
281
+ readonly description: "The format of the CLI output.";
282
+ readonly showInDialog: true;
283
+ readonly options: readonly [{
284
+ readonly value: "text";
285
+ readonly label: "Text";
286
+ }, {
287
+ readonly value: "json";
288
+ readonly label: "JSON";
289
+ }];
290
+ };
291
+ };
292
+ };
293
+ readonly ui: {
294
+ readonly type: "object";
295
+ readonly label: "UI";
296
+ readonly category: "UI";
297
+ readonly requiresRestart: false;
298
+ readonly default: {};
299
+ readonly description: "User interface settings.";
300
+ readonly showInDialog: false;
301
+ readonly properties: {
302
+ readonly theme: {
303
+ readonly type: "string";
304
+ readonly label: "Theme";
305
+ readonly category: "UI";
306
+ readonly requiresRestart: false;
307
+ readonly default: string | undefined;
308
+ readonly description: "The color theme for the UI. See the CLI themes guide for available options.";
309
+ readonly showInDialog: false;
310
+ };
311
+ readonly customThemes: {
312
+ readonly type: "object";
313
+ readonly label: "Custom Themes";
314
+ readonly category: "UI";
315
+ readonly requiresRestart: false;
316
+ readonly default: Record<string, CustomTheme>;
317
+ readonly description: "Custom theme definitions.";
318
+ readonly showInDialog: false;
319
+ readonly additionalProperties: {
320
+ readonly type: "object";
321
+ readonly ref: "CustomTheme";
322
+ };
323
+ };
324
+ readonly hideWindowTitle: {
325
+ readonly type: "boolean";
326
+ readonly label: "Hide Window Title";
327
+ readonly category: "UI";
328
+ readonly requiresRestart: true;
329
+ readonly default: false;
330
+ readonly description: "Hide the window title bar";
331
+ readonly showInDialog: true;
332
+ };
333
+ readonly showStatusInTitle: {
334
+ readonly type: "boolean";
335
+ readonly label: "Show Status in Title";
336
+ readonly category: "UI";
337
+ readonly requiresRestart: false;
338
+ readonly default: false;
339
+ readonly description: "Show Gemini CLI status and thoughts in the terminal window title";
340
+ readonly showInDialog: true;
341
+ };
342
+ readonly hideTips: {
343
+ readonly type: "boolean";
344
+ readonly label: "Hide Tips";
345
+ readonly category: "UI";
346
+ readonly requiresRestart: false;
347
+ readonly default: false;
348
+ readonly description: "Hide helpful tips in the UI";
349
+ readonly showInDialog: true;
350
+ };
351
+ readonly hideBanner: {
352
+ readonly type: "boolean";
353
+ readonly label: "Hide Banner";
354
+ readonly category: "UI";
355
+ readonly requiresRestart: false;
356
+ readonly default: false;
357
+ readonly description: "Hide the application banner";
358
+ readonly showInDialog: true;
359
+ };
360
+ readonly hideContextSummary: {
361
+ readonly type: "boolean";
362
+ readonly label: "Hide Context Summary";
363
+ readonly category: "UI";
364
+ readonly requiresRestart: false;
365
+ readonly default: false;
366
+ readonly description: "Hide the context summary (GEMINI.md, MCP servers) above the input.";
367
+ readonly showInDialog: true;
368
+ };
369
+ readonly footer: {
370
+ readonly type: "object";
371
+ readonly label: "Footer";
372
+ readonly category: "UI";
373
+ readonly requiresRestart: false;
374
+ readonly default: {};
375
+ readonly description: "Settings for the footer.";
376
+ readonly showInDialog: false;
377
+ readonly properties: {
378
+ readonly hideCWD: {
379
+ readonly type: "boolean";
380
+ readonly label: "Hide CWD";
381
+ readonly category: "UI";
382
+ readonly requiresRestart: false;
383
+ readonly default: false;
384
+ readonly description: "Hide the current working directory path in the footer.";
385
+ readonly showInDialog: true;
386
+ };
387
+ readonly hideSandboxStatus: {
388
+ readonly type: "boolean";
389
+ readonly label: "Hide Sandbox Status";
390
+ readonly category: "UI";
391
+ readonly requiresRestart: false;
392
+ readonly default: false;
393
+ readonly description: "Hide the sandbox status indicator in the footer.";
394
+ readonly showInDialog: true;
395
+ };
396
+ readonly hideModelInfo: {
397
+ readonly type: "boolean";
398
+ readonly label: "Hide Model Info";
399
+ readonly category: "UI";
400
+ readonly requiresRestart: false;
401
+ readonly default: false;
402
+ readonly description: "Hide the model name and context usage in the footer.";
403
+ readonly showInDialog: true;
404
+ };
405
+ readonly hideContextPercentage: {
406
+ readonly type: "boolean";
407
+ readonly label: "Hide Context Window Percentage";
408
+ readonly category: "UI";
409
+ readonly requiresRestart: false;
410
+ readonly default: true;
411
+ readonly description: "Hides the context window remaining percentage.";
412
+ readonly showInDialog: true;
413
+ };
414
+ };
415
+ };
416
+ readonly hideFooter: {
417
+ readonly type: "boolean";
418
+ readonly label: "Hide Footer";
419
+ readonly category: "UI";
420
+ readonly requiresRestart: false;
421
+ readonly default: false;
422
+ readonly description: "Hide the footer from the UI";
423
+ readonly showInDialog: true;
424
+ };
425
+ readonly showMemoryUsage: {
426
+ readonly type: "boolean";
427
+ readonly label: "Show Memory Usage";
428
+ readonly category: "UI";
429
+ readonly requiresRestart: false;
430
+ readonly default: false;
431
+ readonly description: "Display memory usage information in the UI";
432
+ readonly showInDialog: true;
433
+ };
434
+ readonly showLineNumbers: {
435
+ readonly type: "boolean";
436
+ readonly label: "Show Line Numbers";
437
+ readonly category: "UI";
438
+ readonly requiresRestart: false;
439
+ readonly default: true;
440
+ readonly description: "Show line numbers in the chat.";
441
+ readonly showInDialog: true;
442
+ };
443
+ readonly showCitations: {
444
+ readonly type: "boolean";
445
+ readonly label: "Show Citations";
446
+ readonly category: "UI";
447
+ readonly requiresRestart: false;
448
+ readonly default: false;
449
+ readonly description: "Show citations for generated text in the chat.";
450
+ readonly showInDialog: true;
451
+ };
452
+ readonly showModelInfoInChat: {
453
+ readonly type: "boolean";
454
+ readonly label: "Show Model Info In Chat";
455
+ readonly category: "UI";
456
+ readonly requiresRestart: false;
457
+ readonly default: false;
458
+ readonly description: "Show the model name in the chat for each model turn.";
459
+ readonly showInDialog: true;
460
+ };
461
+ readonly useFullWidth: {
462
+ readonly type: "boolean";
463
+ readonly label: "Use Full Width";
464
+ readonly category: "UI";
465
+ readonly requiresRestart: false;
466
+ readonly default: true;
467
+ readonly description: "Use the entire width of the terminal for output.";
468
+ readonly showInDialog: true;
469
+ };
470
+ readonly useAlternateBuffer: {
471
+ readonly type: "boolean";
472
+ readonly label: "Use Alternate Screen Buffer";
473
+ readonly category: "UI";
474
+ readonly requiresRestart: true;
475
+ readonly default: false;
476
+ readonly description: "Use an alternate screen buffer for the UI, preserving shell history.";
477
+ readonly showInDialog: true;
478
+ };
479
+ readonly incrementalRendering: {
480
+ readonly type: "boolean";
481
+ readonly label: "Incremental Rendering";
482
+ readonly category: "UI";
483
+ readonly requiresRestart: true;
484
+ readonly default: true;
485
+ readonly description: "Enable incremental rendering for the UI. This option will reduce flickering but may cause rendering artifacts. Only supported when useAlternateBuffer is enabled.";
486
+ readonly showInDialog: true;
487
+ };
488
+ readonly customWittyPhrases: {
489
+ readonly type: "array";
490
+ readonly label: "Custom Witty Phrases";
491
+ readonly category: "UI";
492
+ readonly requiresRestart: false;
493
+ readonly default: string[];
494
+ readonly description: string;
495
+ readonly showInDialog: false;
496
+ readonly items: {
497
+ readonly type: "string";
498
+ };
499
+ };
500
+ readonly accessibility: {
501
+ readonly type: "object";
502
+ readonly label: "Accessibility";
503
+ readonly category: "UI";
504
+ readonly requiresRestart: true;
505
+ readonly default: {};
506
+ readonly description: "Accessibility settings.";
507
+ readonly showInDialog: false;
508
+ readonly properties: {
509
+ readonly disableLoadingPhrases: {
510
+ readonly type: "boolean";
511
+ readonly label: "Disable Loading Phrases";
512
+ readonly category: "UI";
513
+ readonly requiresRestart: true;
514
+ readonly default: false;
515
+ readonly description: "Disable loading phrases for accessibility";
516
+ readonly showInDialog: true;
517
+ };
518
+ readonly screenReader: {
519
+ readonly type: "boolean";
520
+ readonly label: "Screen Reader Mode";
521
+ readonly category: "UI";
522
+ readonly requiresRestart: true;
523
+ readonly default: false;
524
+ readonly description: "Render output in plain-text to be more screen reader accessible";
525
+ readonly showInDialog: true;
526
+ };
527
+ };
528
+ };
529
+ };
530
+ };
531
+ readonly ide: {
532
+ readonly type: "object";
533
+ readonly label: "IDE";
534
+ readonly category: "IDE";
535
+ readonly requiresRestart: true;
536
+ readonly default: {};
537
+ readonly description: "IDE integration settings.";
538
+ readonly showInDialog: false;
539
+ readonly properties: {
540
+ readonly enabled: {
541
+ readonly type: "boolean";
542
+ readonly label: "IDE Mode";
543
+ readonly category: "IDE";
544
+ readonly requiresRestart: true;
545
+ readonly default: false;
546
+ readonly description: "Enable IDE integration mode";
547
+ readonly showInDialog: true;
548
+ };
549
+ readonly hasSeenNudge: {
550
+ readonly type: "boolean";
551
+ readonly label: "Has Seen IDE Integration Nudge";
552
+ readonly category: "IDE";
553
+ readonly requiresRestart: false;
554
+ readonly default: false;
555
+ readonly description: "Whether the user has seen the IDE integration nudge.";
556
+ readonly showInDialog: false;
557
+ };
558
+ };
559
+ };
560
+ readonly privacy: {
561
+ readonly type: "object";
562
+ readonly label: "Privacy";
563
+ readonly category: "Privacy";
564
+ readonly requiresRestart: true;
565
+ readonly default: {};
566
+ readonly description: "Privacy-related settings.";
567
+ readonly showInDialog: false;
568
+ readonly properties: {
569
+ readonly usageStatisticsEnabled: {
570
+ readonly type: "boolean";
571
+ readonly label: "Enable Usage Statistics";
572
+ readonly category: "Privacy";
573
+ readonly requiresRestart: true;
574
+ readonly default: true;
575
+ readonly description: "Enable collection of usage statistics";
576
+ readonly showInDialog: false;
577
+ };
578
+ };
579
+ };
580
+ readonly telemetry: {
581
+ readonly type: "object";
582
+ readonly label: "Telemetry";
583
+ readonly category: "Advanced";
584
+ readonly requiresRestart: true;
585
+ readonly default: TelemetrySettings | undefined;
586
+ readonly description: "Telemetry configuration.";
587
+ readonly showInDialog: false;
588
+ readonly ref: "TelemetrySettings";
589
+ };
590
+ readonly model: {
591
+ readonly type: "object";
592
+ readonly label: "Model";
593
+ readonly category: "Model";
594
+ readonly requiresRestart: false;
595
+ readonly default: {};
596
+ readonly description: "Settings related to the generative model.";
597
+ readonly showInDialog: false;
598
+ readonly properties: {
599
+ readonly name: {
600
+ readonly type: "string";
601
+ readonly label: "Model";
602
+ readonly category: "Model";
603
+ readonly requiresRestart: false;
604
+ readonly default: string | undefined;
605
+ readonly description: "The Gemini model to use for conversations.";
606
+ readonly showInDialog: false;
607
+ };
608
+ readonly maxSessionTurns: {
609
+ readonly type: "number";
610
+ readonly label: "Max Session Turns";
611
+ readonly category: "Model";
612
+ readonly requiresRestart: false;
613
+ readonly default: -1;
614
+ readonly description: "Maximum number of user/model/tool turns to keep in a session. -1 means unlimited.";
615
+ readonly showInDialog: true;
616
+ };
617
+ readonly summarizeToolOutput: {
618
+ readonly type: "object";
619
+ readonly label: "Summarize Tool Output";
620
+ readonly category: "Model";
621
+ readonly requiresRestart: false;
622
+ readonly default: Record<string, {
623
+ tokenBudget?: number;
624
+ }> | undefined;
625
+ readonly description: string;
626
+ readonly showInDialog: false;
627
+ readonly additionalProperties: {
628
+ readonly type: "object";
629
+ readonly description: "Per-tool summarization settings with an optional tokenBudget.";
630
+ readonly ref: "SummarizeToolOutputSettings";
631
+ };
632
+ };
633
+ readonly compressionThreshold: {
634
+ readonly type: "number";
635
+ readonly label: "Compression Threshold";
636
+ readonly category: "Model";
637
+ readonly requiresRestart: true;
638
+ readonly default: number;
639
+ readonly description: "The fraction of context usage at which to trigger context compression (e.g. 0.2, 0.3).";
640
+ readonly showInDialog: true;
641
+ };
642
+ readonly skipNextSpeakerCheck: {
643
+ readonly type: "boolean";
644
+ readonly label: "Skip Next Speaker Check";
645
+ readonly category: "Model";
646
+ readonly requiresRestart: false;
647
+ readonly default: true;
648
+ readonly description: "Skip the next speaker check.";
649
+ readonly showInDialog: true;
650
+ };
651
+ };
652
+ };
653
+ readonly modelConfigs: {
654
+ readonly type: "object";
655
+ readonly label: "Model Configs";
656
+ readonly category: "Model";
657
+ readonly requiresRestart: false;
658
+ readonly default: import("@google/gemini-cli-core/src/services/modelConfigService.js").ModelConfigServiceConfig;
659
+ readonly description: "Model configurations.";
660
+ readonly showInDialog: false;
661
+ readonly properties: {
662
+ readonly aliases: {
663
+ readonly type: "object";
664
+ readonly label: "Model Config Aliases";
665
+ readonly category: "Model";
666
+ readonly requiresRestart: false;
667
+ readonly default: Record<string, import("@google/gemini-cli-core/src/services/modelConfigService.js").ModelConfigAlias> | undefined;
668
+ readonly description: "Named presets for model configs. Can be used in place of a model name and can inherit from other aliases using an `extends` property.";
669
+ readonly showInDialog: false;
670
+ };
671
+ readonly customAliases: {
672
+ readonly type: "object";
673
+ readonly label: "Custom Model Config Aliases";
674
+ readonly category: "Model";
675
+ readonly requiresRestart: false;
676
+ readonly default: {};
677
+ readonly description: "Custom named presets for model configs. These are merged with (and override) the built-in aliases.";
678
+ readonly showInDialog: false;
679
+ };
680
+ readonly customOverrides: {
681
+ readonly type: "array";
682
+ readonly label: "Custom Model Config Overrides";
683
+ readonly category: "Model";
684
+ readonly requiresRestart: false;
685
+ readonly default: [];
686
+ readonly description: "Custom model config overrides. These are merged with (and added to) the built-in overrides.";
687
+ readonly showInDialog: false;
688
+ };
689
+ readonly overrides: {
690
+ readonly type: "array";
691
+ readonly label: "Model Config Overrides";
692
+ readonly category: "Model";
693
+ readonly requiresRestart: false;
694
+ readonly default: [];
695
+ readonly description: "Apply specific configuration overrides based on matches, with a primary key of model (or alias). The most specific match will be used.";
696
+ readonly showInDialog: false;
697
+ };
698
+ };
699
+ };
700
+ readonly context: {
701
+ readonly type: "object";
702
+ readonly label: "Context";
703
+ readonly category: "Context";
704
+ readonly requiresRestart: false;
705
+ readonly default: {};
706
+ readonly description: "Settings for managing context provided to the model.";
707
+ readonly showInDialog: false;
708
+ readonly properties: {
709
+ readonly fileName: {
710
+ readonly type: "string";
711
+ readonly label: "Context File Name";
712
+ readonly category: "Context";
713
+ readonly requiresRestart: false;
714
+ readonly default: string | string[] | undefined;
715
+ readonly ref: "StringOrStringArray";
716
+ readonly description: "The name of the context file or files to load into memory. Accepts either a single string or an array of strings.";
717
+ readonly showInDialog: false;
718
+ };
719
+ readonly importFormat: {
720
+ readonly type: "string";
721
+ readonly label: "Memory Import Format";
722
+ readonly category: "Context";
723
+ readonly requiresRestart: false;
724
+ readonly default: MemoryImportFormat | undefined;
725
+ readonly description: "The format to use when importing memory.";
726
+ readonly showInDialog: false;
727
+ };
728
+ readonly discoveryMaxDirs: {
729
+ readonly type: "number";
730
+ readonly label: "Memory Discovery Max Dirs";
731
+ readonly category: "Context";
732
+ readonly requiresRestart: false;
733
+ readonly default: 200;
734
+ readonly description: "Maximum number of directories to search for memory.";
735
+ readonly showInDialog: true;
736
+ };
737
+ readonly includeDirectories: {
738
+ readonly type: "array";
739
+ readonly label: "Include Directories";
740
+ readonly category: "Context";
741
+ readonly requiresRestart: false;
742
+ readonly default: string[];
743
+ readonly description: string;
744
+ readonly showInDialog: false;
745
+ readonly items: {
746
+ readonly type: "string";
747
+ };
748
+ readonly mergeStrategy: MergeStrategy.CONCAT;
749
+ };
750
+ readonly loadMemoryFromIncludeDirectories: {
751
+ readonly type: "boolean";
752
+ readonly label: "Load Memory From Include Directories";
753
+ readonly category: "Context";
754
+ readonly requiresRestart: false;
755
+ readonly default: false;
756
+ readonly description: string;
757
+ readonly showInDialog: true;
758
+ };
759
+ readonly fileFiltering: {
760
+ readonly type: "object";
761
+ readonly label: "File Filtering";
762
+ readonly category: "Context";
763
+ readonly requiresRestart: true;
764
+ readonly default: {};
765
+ readonly description: "Settings for git-aware file filtering.";
766
+ readonly showInDialog: false;
767
+ readonly properties: {
768
+ readonly respectGitIgnore: {
769
+ readonly type: "boolean";
770
+ readonly label: "Respect .gitignore";
771
+ readonly category: "Context";
772
+ readonly requiresRestart: true;
773
+ readonly default: true;
774
+ readonly description: "Respect .gitignore files when searching";
775
+ readonly showInDialog: true;
776
+ };
777
+ readonly respectGeminiIgnore: {
778
+ readonly type: "boolean";
779
+ readonly label: "Respect .geminiignore";
780
+ readonly category: "Context";
781
+ readonly requiresRestart: true;
782
+ readonly default: true;
783
+ readonly description: "Respect .geminiignore files when searching";
784
+ readonly showInDialog: true;
785
+ };
786
+ readonly enableRecursiveFileSearch: {
787
+ readonly type: "boolean";
788
+ readonly label: "Enable Recursive File Search";
789
+ readonly category: "Context";
790
+ readonly requiresRestart: true;
791
+ readonly default: true;
792
+ readonly description: string;
793
+ readonly showInDialog: true;
794
+ };
795
+ readonly disableFuzzySearch: {
796
+ readonly type: "boolean";
797
+ readonly label: "Disable Fuzzy Search";
798
+ readonly category: "Context";
799
+ readonly requiresRestart: true;
800
+ readonly default: false;
801
+ readonly description: "Disable fuzzy search when searching for files.";
802
+ readonly showInDialog: true;
803
+ };
804
+ };
805
+ };
806
+ };
807
+ };
808
+ readonly tools: {
809
+ readonly type: "object";
810
+ readonly label: "Tools";
811
+ readonly category: "Tools";
812
+ readonly requiresRestart: true;
813
+ readonly default: {};
814
+ readonly description: "Settings for built-in and custom tools.";
815
+ readonly showInDialog: false;
816
+ readonly properties: {
817
+ readonly sandbox: {
818
+ readonly type: "string";
819
+ readonly label: "Sandbox";
820
+ readonly category: "Tools";
821
+ readonly requiresRestart: true;
822
+ readonly default: boolean | string | undefined;
823
+ readonly ref: "BooleanOrString";
824
+ readonly description: string;
825
+ readonly showInDialog: false;
826
+ };
827
+ readonly shell: {
828
+ readonly type: "object";
829
+ readonly label: "Shell";
830
+ readonly category: "Tools";
831
+ readonly requiresRestart: false;
832
+ readonly default: {};
833
+ readonly description: "Settings for shell execution.";
834
+ readonly showInDialog: false;
835
+ readonly properties: {
836
+ readonly enableInteractiveShell: {
837
+ readonly type: "boolean";
838
+ readonly label: "Enable Interactive Shell";
839
+ readonly category: "Tools";
840
+ readonly requiresRestart: true;
841
+ readonly default: true;
842
+ readonly description: string;
843
+ readonly showInDialog: true;
844
+ };
845
+ readonly pager: {
846
+ readonly type: "string";
847
+ readonly label: "Pager";
848
+ readonly category: "Tools";
849
+ readonly requiresRestart: false;
850
+ readonly default: string | undefined;
851
+ readonly description: "The pager command to use for shell output. Defaults to `cat`.";
852
+ readonly showInDialog: false;
853
+ };
854
+ readonly showColor: {
855
+ readonly type: "boolean";
856
+ readonly label: "Show Color";
857
+ readonly category: "Tools";
858
+ readonly requiresRestart: false;
859
+ readonly default: false;
860
+ readonly description: "Show color in shell output.";
861
+ readonly showInDialog: true;
862
+ };
863
+ readonly inactivityTimeout: {
864
+ readonly type: "number";
865
+ readonly label: "Inactivity Timeout";
866
+ readonly category: "Tools";
867
+ readonly requiresRestart: false;
868
+ readonly default: 300;
869
+ readonly description: "The maximum time in seconds allowed without output from the shell command. Defaults to 5 minutes.";
870
+ readonly showInDialog: false;
871
+ };
872
+ };
873
+ };
874
+ readonly autoAccept: {
875
+ readonly type: "boolean";
876
+ readonly label: "Auto Accept";
877
+ readonly category: "Tools";
878
+ readonly requiresRestart: false;
879
+ readonly default: false;
880
+ readonly description: string;
881
+ readonly showInDialog: true;
882
+ };
883
+ readonly core: {
884
+ readonly type: "array";
885
+ readonly label: "Core Tools";
886
+ readonly category: "Tools";
887
+ readonly requiresRestart: true;
888
+ readonly default: string[] | undefined;
889
+ readonly description: string;
890
+ readonly showInDialog: false;
891
+ readonly items: {
892
+ readonly type: "string";
893
+ };
894
+ };
895
+ readonly allowed: {
896
+ readonly type: "array";
897
+ readonly label: "Allowed Tools";
898
+ readonly category: "Advanced";
899
+ readonly requiresRestart: true;
900
+ readonly default: string[] | undefined;
901
+ readonly description: string;
902
+ readonly showInDialog: false;
903
+ readonly items: {
904
+ readonly type: "string";
905
+ };
906
+ };
907
+ readonly exclude: {
908
+ readonly type: "array";
909
+ readonly label: "Exclude Tools";
910
+ readonly category: "Tools";
911
+ readonly requiresRestart: true;
912
+ readonly default: string[] | undefined;
913
+ readonly description: "Tool names to exclude from discovery.";
914
+ readonly showInDialog: false;
915
+ readonly items: {
916
+ readonly type: "string";
917
+ };
918
+ readonly mergeStrategy: MergeStrategy.UNION;
919
+ };
920
+ readonly discoveryCommand: {
921
+ readonly type: "string";
922
+ readonly label: "Tool Discovery Command";
923
+ readonly category: "Tools";
924
+ readonly requiresRestart: true;
925
+ readonly default: string | undefined;
926
+ readonly description: "Command to run for tool discovery.";
927
+ readonly showInDialog: false;
928
+ };
929
+ readonly callCommand: {
930
+ readonly type: "string";
931
+ readonly label: "Tool Call Command";
932
+ readonly category: "Tools";
933
+ readonly requiresRestart: true;
934
+ readonly default: string | undefined;
935
+ readonly description: string;
936
+ readonly showInDialog: false;
937
+ };
938
+ readonly useRipgrep: {
939
+ readonly type: "boolean";
940
+ readonly label: "Use Ripgrep";
941
+ readonly category: "Tools";
942
+ readonly requiresRestart: false;
943
+ readonly default: true;
944
+ readonly description: "Use ripgrep for file content search instead of the fallback implementation. Provides faster search performance.";
945
+ readonly showInDialog: true;
946
+ };
947
+ readonly enableToolOutputTruncation: {
948
+ readonly type: "boolean";
949
+ readonly label: "Enable Tool Output Truncation";
950
+ readonly category: "General";
951
+ readonly requiresRestart: true;
952
+ readonly default: true;
953
+ readonly description: "Enable truncation of large tool outputs.";
954
+ readonly showInDialog: true;
955
+ };
956
+ readonly truncateToolOutputThreshold: {
957
+ readonly type: "number";
958
+ readonly label: "Tool Output Truncation Threshold";
959
+ readonly category: "General";
960
+ readonly requiresRestart: true;
961
+ readonly default: 4000000;
962
+ readonly description: "Truncate tool output if it is larger than this many characters. Set to -1 to disable.";
963
+ readonly showInDialog: true;
964
+ };
965
+ readonly truncateToolOutputLines: {
966
+ readonly type: "number";
967
+ readonly label: "Tool Output Truncation Lines";
968
+ readonly category: "General";
969
+ readonly requiresRestart: true;
970
+ readonly default: 1000;
971
+ readonly description: "The number of lines to keep when truncating tool output.";
972
+ readonly showInDialog: true;
973
+ };
974
+ readonly enableMessageBusIntegration: {
975
+ readonly type: "boolean";
976
+ readonly label: "Enable Message Bus Integration";
977
+ readonly category: "Tools";
978
+ readonly requiresRestart: true;
979
+ readonly default: true;
980
+ readonly description: string;
981
+ readonly showInDialog: true;
982
+ };
983
+ readonly enableHooks: {
984
+ readonly type: "boolean";
985
+ readonly label: "Enable Hooks System";
986
+ readonly category: "Advanced";
987
+ readonly requiresRestart: true;
988
+ readonly default: false;
989
+ readonly description: "Enable the hooks system for intercepting and customizing Gemini CLI behavior. When enabled, hooks configured in settings will execute at appropriate lifecycle events (BeforeTool, AfterTool, BeforeModel, etc.). Requires MessageBus integration.";
990
+ readonly showInDialog: false;
991
+ };
992
+ };
993
+ };
994
+ readonly mcp: {
995
+ readonly type: "object";
996
+ readonly label: "MCP";
997
+ readonly category: "MCP";
998
+ readonly requiresRestart: true;
999
+ readonly default: {};
1000
+ readonly description: "Settings for Model Context Protocol (MCP) servers.";
1001
+ readonly showInDialog: false;
1002
+ readonly properties: {
1003
+ readonly serverCommand: {
1004
+ readonly type: "string";
1005
+ readonly label: "MCP Server Command";
1006
+ readonly category: "MCP";
1007
+ readonly requiresRestart: true;
1008
+ readonly default: string | undefined;
1009
+ readonly description: "Command to start an MCP server.";
1010
+ readonly showInDialog: false;
1011
+ };
1012
+ readonly allowed: {
1013
+ readonly type: "array";
1014
+ readonly label: "Allow MCP Servers";
1015
+ readonly category: "MCP";
1016
+ readonly requiresRestart: true;
1017
+ readonly default: string[] | undefined;
1018
+ readonly description: "A list of MCP servers to allow.";
1019
+ readonly showInDialog: false;
1020
+ readonly items: {
1021
+ readonly type: "string";
1022
+ };
1023
+ };
1024
+ readonly excluded: {
1025
+ readonly type: "array";
1026
+ readonly label: "Exclude MCP Servers";
1027
+ readonly category: "MCP";
1028
+ readonly requiresRestart: true;
1029
+ readonly default: string[] | undefined;
1030
+ readonly description: "A list of MCP servers to exclude.";
1031
+ readonly showInDialog: false;
1032
+ readonly items: {
1033
+ readonly type: "string";
1034
+ };
1035
+ };
1036
+ };
1037
+ };
1038
+ readonly useSmartEdit: {
1039
+ readonly type: "boolean";
1040
+ readonly label: "Use Smart Edit";
1041
+ readonly category: "Advanced";
1042
+ readonly requiresRestart: false;
1043
+ readonly default: true;
1044
+ readonly description: "Enable the smart-edit tool instead of the replace tool.";
1045
+ readonly showInDialog: false;
1046
+ };
1047
+ readonly useWriteTodos: {
1048
+ readonly type: "boolean";
1049
+ readonly label: "Use WriteTodos";
1050
+ readonly category: "Advanced";
1051
+ readonly requiresRestart: false;
1052
+ readonly default: true;
1053
+ readonly description: "Enable the write_todos tool.";
1054
+ readonly showInDialog: false;
1055
+ };
1056
+ readonly security: {
1057
+ readonly type: "object";
1058
+ readonly label: "Security";
1059
+ readonly category: "Security";
1060
+ readonly requiresRestart: true;
1061
+ readonly default: {};
1062
+ readonly description: "Security-related settings.";
1063
+ readonly showInDialog: false;
1064
+ readonly properties: {
1065
+ readonly disableYoloMode: {
1066
+ readonly type: "boolean";
1067
+ readonly label: "Disable YOLO Mode";
1068
+ readonly category: "Security";
1069
+ readonly requiresRestart: true;
1070
+ readonly default: false;
1071
+ readonly description: "Disable YOLO mode, even if enabled by a flag.";
1072
+ readonly showInDialog: true;
1073
+ };
1074
+ readonly blockGitExtensions: {
1075
+ readonly type: "boolean";
1076
+ readonly label: "Blocks extensions from Git";
1077
+ readonly category: "Security";
1078
+ readonly requiresRestart: true;
1079
+ readonly default: false;
1080
+ readonly description: "Blocks installing and loading extensions from Git.";
1081
+ readonly showInDialog: true;
1082
+ };
1083
+ readonly folderTrust: {
1084
+ readonly type: "object";
1085
+ readonly label: "Folder Trust";
1086
+ readonly category: "Security";
1087
+ readonly requiresRestart: false;
1088
+ readonly default: {};
1089
+ readonly description: "Settings for folder trust.";
1090
+ readonly showInDialog: false;
1091
+ readonly properties: {
1092
+ readonly enabled: {
1093
+ readonly type: "boolean";
1094
+ readonly label: "Folder Trust";
1095
+ readonly category: "Security";
1096
+ readonly requiresRestart: true;
1097
+ readonly default: false;
1098
+ readonly description: "Setting to track whether Folder trust is enabled.";
1099
+ readonly showInDialog: true;
1100
+ };
1101
+ };
1102
+ };
1103
+ readonly auth: {
1104
+ readonly type: "object";
1105
+ readonly label: "Authentication";
1106
+ readonly category: "Security";
1107
+ readonly requiresRestart: true;
1108
+ readonly default: {};
1109
+ readonly description: "Authentication settings.";
1110
+ readonly showInDialog: false;
1111
+ readonly properties: {
1112
+ readonly selectedType: {
1113
+ readonly type: "string";
1114
+ readonly label: "Selected Auth Type";
1115
+ readonly category: "Security";
1116
+ readonly requiresRestart: true;
1117
+ readonly default: AuthType | undefined;
1118
+ readonly description: "The currently selected authentication type.";
1119
+ readonly showInDialog: false;
1120
+ };
1121
+ readonly enforcedType: {
1122
+ readonly type: "string";
1123
+ readonly label: "Enforced Auth Type";
1124
+ readonly category: "Advanced";
1125
+ readonly requiresRestart: true;
1126
+ readonly default: AuthType | undefined;
1127
+ readonly description: "The required auth type. If this does not match the selected auth type, the user will be prompted to re-authenticate.";
1128
+ readonly showInDialog: false;
1129
+ };
1130
+ readonly useExternal: {
1131
+ readonly type: "boolean";
1132
+ readonly label: "Use External Auth";
1133
+ readonly category: "Security";
1134
+ readonly requiresRestart: true;
1135
+ readonly default: boolean | undefined;
1136
+ readonly description: "Whether to use an external authentication flow.";
1137
+ readonly showInDialog: false;
1138
+ };
1139
+ };
1140
+ };
1141
+ };
1142
+ };
1143
+ readonly advanced: {
1144
+ readonly type: "object";
1145
+ readonly label: "Advanced";
1146
+ readonly category: "Advanced";
1147
+ readonly requiresRestart: true;
1148
+ readonly default: {};
1149
+ readonly description: "Advanced settings for power users.";
1150
+ readonly showInDialog: false;
1151
+ readonly properties: {
1152
+ readonly autoConfigureMemory: {
1153
+ readonly type: "boolean";
1154
+ readonly label: "Auto Configure Max Old Space Size";
1155
+ readonly category: "Advanced";
1156
+ readonly requiresRestart: true;
1157
+ readonly default: false;
1158
+ readonly description: "Automatically configure Node.js memory limits";
1159
+ readonly showInDialog: false;
1160
+ };
1161
+ readonly dnsResolutionOrder: {
1162
+ readonly type: "string";
1163
+ readonly label: "DNS Resolution Order";
1164
+ readonly category: "Advanced";
1165
+ readonly requiresRestart: true;
1166
+ readonly default: DnsResolutionOrder | undefined;
1167
+ readonly description: "The DNS resolution order.";
1168
+ readonly showInDialog: false;
1169
+ };
1170
+ readonly excludedEnvVars: {
1171
+ readonly type: "array";
1172
+ readonly label: "Excluded Project Environment Variables";
1173
+ readonly category: "Advanced";
1174
+ readonly requiresRestart: false;
1175
+ readonly default: string[];
1176
+ readonly description: "Environment variables to exclude from project context.";
1177
+ readonly showInDialog: false;
1178
+ readonly items: {
1179
+ readonly type: "string";
1180
+ };
1181
+ readonly mergeStrategy: MergeStrategy.UNION;
1182
+ };
1183
+ readonly bugCommand: {
1184
+ readonly type: "object";
1185
+ readonly label: "Bug Command";
1186
+ readonly category: "Advanced";
1187
+ readonly requiresRestart: false;
1188
+ readonly default: BugCommandSettings | undefined;
1189
+ readonly description: "Configuration for the bug report command.";
1190
+ readonly showInDialog: false;
1191
+ readonly ref: "BugCommandSettings";
1192
+ };
1193
+ };
1194
+ };
1195
+ readonly experimental: {
1196
+ readonly type: "object";
1197
+ readonly label: "Experimental";
1198
+ readonly category: "Experimental";
1199
+ readonly requiresRestart: true;
1200
+ readonly default: {};
1201
+ readonly description: "Setting to enable experimental features";
1202
+ readonly showInDialog: false;
1203
+ readonly properties: {
1204
+ readonly enableAgents: {
1205
+ readonly type: "boolean";
1206
+ readonly label: "Enable Agents";
1207
+ readonly category: "Experimental";
1208
+ readonly requiresRestart: true;
1209
+ readonly default: false;
1210
+ readonly description: "Enable local and remote subagents.";
1211
+ readonly showInDialog: false;
1212
+ };
1213
+ readonly extensionManagement: {
1214
+ readonly type: "boolean";
1215
+ readonly label: "Extension Management";
1216
+ readonly category: "Experimental";
1217
+ readonly requiresRestart: true;
1218
+ readonly default: true;
1219
+ readonly description: "Enable extension management features.";
1220
+ readonly showInDialog: false;
1221
+ };
1222
+ readonly extensionReloading: {
1223
+ readonly type: "boolean";
1224
+ readonly label: "Extension Reloading";
1225
+ readonly category: "Experimental";
1226
+ readonly requiresRestart: true;
1227
+ readonly default: false;
1228
+ readonly description: "Enables extension loading/unloading within the CLI session.";
1229
+ readonly showInDialog: false;
1230
+ };
1231
+ readonly isModelAvailabilityServiceEnabled: {
1232
+ readonly type: "boolean";
1233
+ readonly label: "Enable Model Availability Service";
1234
+ readonly category: "Experimental";
1235
+ readonly requiresRestart: true;
1236
+ readonly default: false;
1237
+ readonly description: "Enable model routing using new availability service.";
1238
+ readonly showInDialog: false;
1239
+ };
1240
+ readonly jitContext: {
1241
+ readonly type: "boolean";
1242
+ readonly label: "JIT Context Loading";
1243
+ readonly category: "Experimental";
1244
+ readonly requiresRestart: true;
1245
+ readonly default: false;
1246
+ readonly description: "Enable Just-In-Time (JIT) context loading.";
1247
+ readonly showInDialog: false;
1248
+ };
1249
+ readonly codebaseInvestigatorSettings: {
1250
+ readonly type: "object";
1251
+ readonly label: "Codebase Investigator Settings";
1252
+ readonly category: "Experimental";
1253
+ readonly requiresRestart: true;
1254
+ readonly default: {};
1255
+ readonly description: "Configuration for Codebase Investigator.";
1256
+ readonly showInDialog: false;
1257
+ readonly properties: {
1258
+ readonly enabled: {
1259
+ readonly type: "boolean";
1260
+ readonly label: "Enable Codebase Investigator";
1261
+ readonly category: "Experimental";
1262
+ readonly requiresRestart: true;
1263
+ readonly default: true;
1264
+ readonly description: "Enable the Codebase Investigator agent.";
1265
+ readonly showInDialog: true;
1266
+ };
1267
+ readonly maxNumTurns: {
1268
+ readonly type: "number";
1269
+ readonly label: "Codebase Investigator Max Num Turns";
1270
+ readonly category: "Experimental";
1271
+ readonly requiresRestart: true;
1272
+ readonly default: 10;
1273
+ readonly description: "Maximum number of turns for the Codebase Investigator agent.";
1274
+ readonly showInDialog: true;
1275
+ };
1276
+ readonly maxTimeMinutes: {
1277
+ readonly type: "number";
1278
+ readonly label: "Max Time (Minutes)";
1279
+ readonly category: "Experimental";
1280
+ readonly requiresRestart: true;
1281
+ readonly default: 3;
1282
+ readonly description: "Maximum time for the Codebase Investigator agent (in minutes).";
1283
+ readonly showInDialog: false;
1284
+ };
1285
+ readonly thinkingBudget: {
1286
+ readonly type: "number";
1287
+ readonly label: "Thinking Budget";
1288
+ readonly category: "Experimental";
1289
+ readonly requiresRestart: true;
1290
+ readonly default: 8192;
1291
+ readonly description: "The thinking budget for the Codebase Investigator agent.";
1292
+ readonly showInDialog: false;
1293
+ };
1294
+ readonly model: {
1295
+ readonly type: "string";
1296
+ readonly label: "Model";
1297
+ readonly category: "Experimental";
1298
+ readonly requiresRestart: true;
1299
+ readonly default: "pro";
1300
+ readonly description: "The model to use for the Codebase Investigator agent.";
1301
+ readonly showInDialog: false;
1302
+ };
1303
+ };
1304
+ };
1305
+ };
1306
+ };
1307
+ readonly extensions: {
1308
+ readonly type: "object";
1309
+ readonly label: "Extensions";
1310
+ readonly category: "Extensions";
1311
+ readonly requiresRestart: true;
1312
+ readonly default: {};
1313
+ readonly description: "Settings for extensions.";
1314
+ readonly showInDialog: false;
1315
+ readonly properties: {
1316
+ readonly disabled: {
1317
+ readonly type: "array";
1318
+ readonly label: "Disabled Extensions";
1319
+ readonly category: "Extensions";
1320
+ readonly requiresRestart: true;
1321
+ readonly default: string[];
1322
+ readonly description: "List of disabled extensions.";
1323
+ readonly showInDialog: false;
1324
+ readonly items: {
1325
+ readonly type: "string";
1326
+ };
1327
+ readonly mergeStrategy: MergeStrategy.UNION;
1328
+ };
1329
+ readonly workspacesWithMigrationNudge: {
1330
+ readonly type: "array";
1331
+ readonly label: "Workspaces with Migration Nudge";
1332
+ readonly category: "Extensions";
1333
+ readonly requiresRestart: false;
1334
+ readonly default: string[];
1335
+ readonly description: "List of workspaces for which the migration nudge has been shown.";
1336
+ readonly showInDialog: false;
1337
+ readonly items: {
1338
+ readonly type: "string";
1339
+ };
1340
+ readonly mergeStrategy: MergeStrategy.UNION;
1341
+ };
1342
+ };
1343
+ };
1344
+ readonly hooks: {
1345
+ readonly type: "object";
1346
+ readonly label: "Hooks";
1347
+ readonly category: "Advanced";
1348
+ readonly requiresRestart: false;
1349
+ readonly default: {};
1350
+ readonly description: "Hook configurations for intercepting and customizing agent behavior.";
1351
+ readonly showInDialog: false;
1352
+ readonly properties: {
1353
+ readonly disabled: {
1354
+ readonly type: "array";
1355
+ readonly label: "Disabled Hooks";
1356
+ readonly category: "Advanced";
1357
+ readonly requiresRestart: false;
1358
+ readonly default: string[];
1359
+ readonly description: "List of hook names (commands) that should be disabled. Hooks in this list will not execute even if configured.";
1360
+ readonly showInDialog: false;
1361
+ readonly items: {
1362
+ readonly type: "string";
1363
+ readonly description: "Hook command name";
1364
+ };
1365
+ readonly mergeStrategy: MergeStrategy.UNION;
1366
+ };
1367
+ readonly BeforeTool: {
1368
+ readonly type: "array";
1369
+ readonly label: "Before Tool Hooks";
1370
+ readonly category: "Advanced";
1371
+ readonly requiresRestart: false;
1372
+ readonly default: [];
1373
+ readonly description: "Hooks that execute before tool execution. Can intercept, validate, or modify tool calls.";
1374
+ readonly showInDialog: false;
1375
+ readonly ref: "HookDefinitionArray";
1376
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1377
+ };
1378
+ readonly AfterTool: {
1379
+ readonly type: "array";
1380
+ readonly label: "After Tool Hooks";
1381
+ readonly category: "Advanced";
1382
+ readonly requiresRestart: false;
1383
+ readonly default: [];
1384
+ readonly description: "Hooks that execute after tool execution. Can process results, log outputs, or trigger follow-up actions.";
1385
+ readonly showInDialog: false;
1386
+ readonly ref: "HookDefinitionArray";
1387
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1388
+ };
1389
+ readonly BeforeAgent: {
1390
+ readonly type: "array";
1391
+ readonly label: "Before Agent Hooks";
1392
+ readonly category: "Advanced";
1393
+ readonly requiresRestart: false;
1394
+ readonly default: [];
1395
+ readonly description: "Hooks that execute before agent loop starts. Can set up context or initialize resources.";
1396
+ readonly showInDialog: false;
1397
+ readonly ref: "HookDefinitionArray";
1398
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1399
+ };
1400
+ readonly AfterAgent: {
1401
+ readonly type: "array";
1402
+ readonly label: "After Agent Hooks";
1403
+ readonly category: "Advanced";
1404
+ readonly requiresRestart: false;
1405
+ readonly default: [];
1406
+ readonly description: "Hooks that execute after agent loop completes. Can perform cleanup or summarize results.";
1407
+ readonly showInDialog: false;
1408
+ readonly ref: "HookDefinitionArray";
1409
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1410
+ };
1411
+ readonly Notification: {
1412
+ readonly type: "array";
1413
+ readonly label: "Notification Hooks";
1414
+ readonly category: "Advanced";
1415
+ readonly requiresRestart: false;
1416
+ readonly default: [];
1417
+ readonly description: "Hooks that execute on notification events (errors, warnings, info). Can log or alert on specific conditions.";
1418
+ readonly showInDialog: false;
1419
+ readonly ref: "HookDefinitionArray";
1420
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1421
+ };
1422
+ readonly SessionStart: {
1423
+ readonly type: "array";
1424
+ readonly label: "Session Start Hooks";
1425
+ readonly category: "Advanced";
1426
+ readonly requiresRestart: false;
1427
+ readonly default: [];
1428
+ readonly description: "Hooks that execute when a session starts. Can initialize session-specific resources or state.";
1429
+ readonly showInDialog: false;
1430
+ readonly ref: "HookDefinitionArray";
1431
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1432
+ };
1433
+ readonly SessionEnd: {
1434
+ readonly type: "array";
1435
+ readonly label: "Session End Hooks";
1436
+ readonly category: "Advanced";
1437
+ readonly requiresRestart: false;
1438
+ readonly default: [];
1439
+ readonly description: "Hooks that execute when a session ends. Can perform cleanup or persist session data.";
1440
+ readonly showInDialog: false;
1441
+ readonly ref: "HookDefinitionArray";
1442
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1443
+ };
1444
+ readonly PreCompress: {
1445
+ readonly type: "array";
1446
+ readonly label: "Pre-Compress Hooks";
1447
+ readonly category: "Advanced";
1448
+ readonly requiresRestart: false;
1449
+ readonly default: [];
1450
+ readonly description: "Hooks that execute before chat history compression. Can back up or analyze conversation before compression.";
1451
+ readonly showInDialog: false;
1452
+ readonly ref: "HookDefinitionArray";
1453
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1454
+ };
1455
+ readonly BeforeModel: {
1456
+ readonly type: "array";
1457
+ readonly label: "Before Model Hooks";
1458
+ readonly category: "Advanced";
1459
+ readonly requiresRestart: false;
1460
+ readonly default: [];
1461
+ readonly description: "Hooks that execute before LLM requests. Can modify prompts, inject context, or control model parameters.";
1462
+ readonly showInDialog: false;
1463
+ readonly ref: "HookDefinitionArray";
1464
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1465
+ };
1466
+ readonly AfterModel: {
1467
+ readonly type: "array";
1468
+ readonly label: "After Model Hooks";
1469
+ readonly category: "Advanced";
1470
+ readonly requiresRestart: false;
1471
+ readonly default: [];
1472
+ readonly description: "Hooks that execute after LLM responses. Can process outputs, extract information, or log interactions.";
1473
+ readonly showInDialog: false;
1474
+ readonly ref: "HookDefinitionArray";
1475
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1476
+ };
1477
+ readonly BeforeToolSelection: {
1478
+ readonly type: "array";
1479
+ readonly label: "Before Tool Selection Hooks";
1480
+ readonly category: "Advanced";
1481
+ readonly requiresRestart: false;
1482
+ readonly default: [];
1483
+ readonly description: "Hooks that execute before tool selection. Can filter or prioritize available tools dynamically.";
1484
+ readonly showInDialog: false;
1485
+ readonly ref: "HookDefinitionArray";
1486
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1487
+ };
1488
+ };
1489
+ readonly additionalProperties: {
1490
+ readonly type: "array";
1491
+ readonly description: "Custom hook event arrays that contain hook definitions for user-defined events";
1492
+ readonly mergeStrategy: MergeStrategy.CONCAT;
1493
+ };
1494
+ };
1495
+ };
1496
+ export type SettingsSchemaType = typeof SETTINGS_SCHEMA;
1497
+ export type SettingsJsonSchemaDefinition = Record<string, unknown>;
1498
+ export declare const SETTINGS_SCHEMA_DEFINITIONS: Record<string, SettingsJsonSchemaDefinition>;
1499
+ export declare function getSettingsSchema(): SettingsSchemaType;
1500
+ type InferSettings<T extends SettingsSchema> = {
1501
+ -readonly [K in keyof T]?: T[K] extends {
1502
+ properties: SettingsSchema;
1503
+ } ? InferSettings<T[K]['properties']> : T[K]['type'] extends 'enum' ? T[K]['options'] extends readonly SettingEnumOption[] ? T[K]['options'][number]['value'] : T[K]['default'] : T[K]['default'] extends boolean ? boolean : T[K]['default'];
1504
+ };
1505
+ export type Settings = InferSettings<SettingsSchemaType>;
1506
+ export interface FooterSettings {
1507
+ hideCWD?: boolean;
1508
+ hideSandboxStatus?: boolean;
1509
+ hideModelInfo?: boolean;
1510
+ }
1511
+ export {};