fss-link 1.2.4 → 1.2.6

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 (996) hide show
  1. package/dist/.last_build +0 -0
  2. package/dist/index.d.ts +7 -0
  3. package/dist/index.js +14 -0
  4. package/dist/index.js.map +1 -0
  5. package/dist/package.json +89 -0
  6. package/dist/src/commands/mcp/add.d.ts +7 -0
  7. package/dist/src/commands/mcp/add.js +166 -0
  8. package/dist/src/commands/mcp/add.js.map +1 -0
  9. package/dist/src/commands/mcp/list.d.ts +8 -0
  10. package/dist/src/commands/mcp/list.js +110 -0
  11. package/dist/src/commands/mcp/list.js.map +1 -0
  12. package/dist/src/commands/mcp/remove.d.ts +7 -0
  13. package/dist/src/commands/mcp/remove.js +44 -0
  14. package/dist/src/commands/mcp/remove.js.map +1 -0
  15. package/dist/src/commands/mcp.d.ts +7 -0
  16. package/dist/src/commands/mcp.js +23 -0
  17. package/dist/src/commands/mcp.js.map +1 -0
  18. package/dist/src/config/archive-repository-pattern/README.md +26 -0
  19. package/dist/src/config/archive-repository-pattern/base-repository.d.ts +252 -0
  20. package/dist/src/config/archive-repository-pattern/base-repository.js +280 -0
  21. package/dist/src/config/archive-repository-pattern/base-repository.js.map +1 -0
  22. package/dist/src/config/archive-repository-pattern/model-repository.d.ts +274 -0
  23. package/dist/src/config/archive-repository-pattern/model-repository.js +482 -0
  24. package/dist/src/config/archive-repository-pattern/model-repository.js.map +1 -0
  25. package/dist/src/config/archive-repository-pattern/preferences-repository.d.ts +307 -0
  26. package/dist/src/config/archive-repository-pattern/preferences-repository.js +604 -0
  27. package/dist/src/config/archive-repository-pattern/preferences-repository.js.map +1 -0
  28. package/dist/src/config/archive-repository-pattern/repository-types.d.ts +166 -0
  29. package/dist/src/config/archive-repository-pattern/repository-types.js +67 -0
  30. package/dist/src/config/archive-repository-pattern/repository-types.js.map +1 -0
  31. package/dist/src/config/archive-repository-pattern/settings-repository.d.ts +274 -0
  32. package/dist/src/config/archive-repository-pattern/settings-repository.js +531 -0
  33. package/dist/src/config/archive-repository-pattern/settings-repository.js.map +1 -0
  34. package/dist/src/config/async-mutex.d.ts +61 -0
  35. package/dist/src/config/async-mutex.js +121 -0
  36. package/dist/src/config/async-mutex.js.map +1 -0
  37. package/dist/src/config/async-mutex.test.d.ts +6 -0
  38. package/dist/src/config/async-mutex.test.js +271 -0
  39. package/dist/src/config/async-mutex.test.js.map +1 -0
  40. package/dist/src/config/auth-stress-simplified.test.d.ts +6 -0
  41. package/dist/src/config/auth-stress-simplified.test.js +329 -0
  42. package/dist/src/config/auth-stress-simplified.test.js.map +1 -0
  43. package/dist/src/config/auth-stress.test.d.ts +9 -0
  44. package/dist/src/config/auth-stress.test.js +544 -0
  45. package/dist/src/config/auth-stress.test.js.map +1 -0
  46. package/dist/src/config/auth.d.ts +96 -0
  47. package/dist/src/config/auth.js +371 -0
  48. package/dist/src/config/auth.js.map +1 -0
  49. package/dist/src/config/auth.test.d.ts +6 -0
  50. package/dist/src/config/auth.test.js +61 -0
  51. package/dist/src/config/auth.test.js.map +1 -0
  52. package/dist/src/config/base-repository.d.ts +252 -0
  53. package/dist/src/config/base-repository.js +272 -0
  54. package/dist/src/config/base-repository.js.map +1 -0
  55. package/dist/src/config/config.d.ts +51 -0
  56. package/dist/src/config/config.js +553 -0
  57. package/dist/src/config/config.js.map +1 -0
  58. package/dist/src/config/core-database.d.ts +112 -0
  59. package/dist/src/config/core-database.js +370 -0
  60. package/dist/src/config/core-database.js.map +1 -0
  61. package/dist/src/config/database-integration.test.d.ts +6 -0
  62. package/dist/src/config/database-integration.test.js +547 -0
  63. package/dist/src/config/database-integration.test.js.map +1 -0
  64. package/dist/src/config/database-legacy-wrapper.d.ts +202 -0
  65. package/dist/src/config/database-legacy-wrapper.js +391 -0
  66. package/dist/src/config/database-legacy-wrapper.js.map +1 -0
  67. package/dist/src/config/database-monitor.d.ts +135 -0
  68. package/dist/src/config/database-monitor.js +306 -0
  69. package/dist/src/config/database-monitor.js.map +1 -0
  70. package/dist/src/config/database-queue.d.ts +106 -0
  71. package/dist/src/config/database-queue.js +187 -0
  72. package/dist/src/config/database-queue.js.map +1 -0
  73. package/dist/src/config/database-queue.test.d.ts +6 -0
  74. package/dist/src/config/database-queue.test.js +344 -0
  75. package/dist/src/config/database-queue.test.js.map +1 -0
  76. package/dist/src/config/database-regression-simple.test.d.ts +6 -0
  77. package/dist/src/config/database-regression-simple.test.js +335 -0
  78. package/dist/src/config/database-regression-simple.test.js.map +1 -0
  79. package/dist/src/config/database-regression.test.d.ts +6 -0
  80. package/dist/src/config/database-regression.test.js +523 -0
  81. package/dist/src/config/database-regression.test.js.map +1 -0
  82. package/dist/src/config/database-stress.test.d.ts +6 -0
  83. package/dist/src/config/database-stress.test.js +522 -0
  84. package/dist/src/config/database-stress.test.js.map +1 -0
  85. package/dist/src/config/database-utils.d.ts +281 -0
  86. package/dist/src/config/database-utils.js +664 -0
  87. package/dist/src/config/database-utils.js.map +1 -0
  88. package/dist/src/config/database-utils.test.d.ts +6 -0
  89. package/dist/src/config/database-utils.test.js +278 -0
  90. package/dist/src/config/database-utils.test.js.map +1 -0
  91. package/dist/src/config/database.d.ts +212 -0
  92. package/dist/src/config/database.js +458 -0
  93. package/dist/src/config/database.js.map +1 -0
  94. package/dist/src/config/databaseBackup.d.ts +114 -0
  95. package/dist/src/config/databaseBackup.js +334 -0
  96. package/dist/src/config/databaseBackup.js.map +1 -0
  97. package/dist/src/config/databaseHealthMonitor.d.ts +86 -0
  98. package/dist/src/config/databaseHealthMonitor.js +180 -0
  99. package/dist/src/config/databaseHealthMonitor.js.map +1 -0
  100. package/dist/src/config/databaseMetrics.d.ts +147 -0
  101. package/dist/src/config/databaseMetrics.js +369 -0
  102. package/dist/src/config/databaseMetrics.js.map +1 -0
  103. package/dist/src/config/databaseMigrations.d.ts +75 -0
  104. package/dist/src/config/databaseMigrations.js +405 -0
  105. package/dist/src/config/databaseMigrations.js.map +1 -0
  106. package/dist/src/config/databasePool.d.ts +72 -0
  107. package/dist/src/config/databasePool.js +226 -0
  108. package/dist/src/config/databasePool.js.map +1 -0
  109. package/dist/src/config/databaseSchemaValidator.d.ts +114 -0
  110. package/dist/src/config/databaseSchemaValidator.js +497 -0
  111. package/dist/src/config/databaseSchemaValidator.js.map +1 -0
  112. package/dist/src/config/extension.d.ts +23 -0
  113. package/dist/src/config/extension.js +126 -0
  114. package/dist/src/config/extension.js.map +1 -0
  115. package/dist/src/config/health-database.d.ts +172 -0
  116. package/dist/src/config/health-database.js +283 -0
  117. package/dist/src/config/health-database.js.map +1 -0
  118. package/dist/src/config/keyBindings.d.ts +66 -0
  119. package/dist/src/config/keyBindings.js +141 -0
  120. package/dist/src/config/keyBindings.js.map +1 -0
  121. package/dist/src/config/keyBindings.test.d.ts +6 -0
  122. package/dist/src/config/keyBindings.test.js +51 -0
  123. package/dist/src/config/keyBindings.test.js.map +1 -0
  124. package/dist/src/config/model-database.d.ts +157 -0
  125. package/dist/src/config/model-database.js +379 -0
  126. package/dist/src/config/model-database.js.map +1 -0
  127. package/dist/src/config/model-repository.d.ts +274 -0
  128. package/dist/src/config/model-repository.js +482 -0
  129. package/dist/src/config/model-repository.js.map +1 -0
  130. package/dist/src/config/modelManager.d.ts +146 -0
  131. package/dist/src/config/modelManager.js +573 -0
  132. package/dist/src/config/modelManager.js.map +1 -0
  133. package/dist/src/config/preferences-database.d.ts +101 -0
  134. package/dist/src/config/preferences-database.js +209 -0
  135. package/dist/src/config/preferences-database.js.map +1 -0
  136. package/dist/src/config/preferences-repository.d.ts +307 -0
  137. package/dist/src/config/preferences-repository.js +604 -0
  138. package/dist/src/config/preferences-repository.js.map +1 -0
  139. package/dist/src/config/provider-database.d.ts +102 -0
  140. package/dist/src/config/provider-database.js +250 -0
  141. package/dist/src/config/provider-database.js.map +1 -0
  142. package/dist/src/config/providerPersistence.d.ts +82 -0
  143. package/dist/src/config/providerPersistence.js +62 -0
  144. package/dist/src/config/providerPersistence.js.map +1 -0
  145. package/dist/src/config/queryOptimizer.d.ts +127 -0
  146. package/dist/src/config/queryOptimizer.js +330 -0
  147. package/dist/src/config/queryOptimizer.js.map +1 -0
  148. package/dist/src/config/repository-types.d.ts +166 -0
  149. package/dist/src/config/repository-types.js +67 -0
  150. package/dist/src/config/repository-types.js.map +1 -0
  151. package/dist/src/config/sandboxConfig.d.ts +13 -0
  152. package/dist/src/config/sandboxConfig.js +75 -0
  153. package/dist/src/config/sandboxConfig.js.map +1 -0
  154. package/dist/src/config/settings-repository.d.ts +274 -0
  155. package/dist/src/config/settings-repository.js +531 -0
  156. package/dist/src/config/settings-repository.js.map +1 -0
  157. package/dist/src/config/settings.d.ts +56 -0
  158. package/dist/src/config/settings.js +411 -0
  159. package/dist/src/config/settings.js.map +1 -0
  160. package/dist/src/config/settingsSchema.d.ts +703 -0
  161. package/dist/src/config/settingsSchema.js +679 -0
  162. package/dist/src/config/settingsSchema.js.map +1 -0
  163. package/dist/src/config/settingsSchema.test.d.ts +6 -0
  164. package/dist/src/config/settingsSchema.test.js +195 -0
  165. package/dist/src/config/settingsSchema.test.js.map +1 -0
  166. package/dist/src/config/trustedFolders.d.ts +37 -0
  167. package/dist/src/config/trustedFolders.js +118 -0
  168. package/dist/src/config/trustedFolders.js.map +1 -0
  169. package/dist/src/config/trustedFolders.test.d.ts +6 -0
  170. package/dist/src/config/trustedFolders.test.js +160 -0
  171. package/dist/src/config/trustedFolders.test.js.map +1 -0
  172. package/dist/src/config/unified-database.d.ts +383 -0
  173. package/dist/src/config/unified-database.js +651 -0
  174. package/dist/src/config/unified-database.js.map +1 -0
  175. package/dist/src/config/unified-database.test.d.ts +6 -0
  176. package/dist/src/config/unified-database.test.js +162 -0
  177. package/dist/src/config/unified-database.test.js.map +1 -0
  178. package/dist/src/gemini.d.ts +9 -0
  179. package/dist/src/gemini.js +334 -0
  180. package/dist/src/gemini.js.map +1 -0
  181. package/dist/src/gemini.test.d.ts +6 -0
  182. package/dist/src/gemini.test.js +193 -0
  183. package/dist/src/gemini.test.js.map +1 -0
  184. package/dist/src/generated/git-commit.d.ts +7 -0
  185. package/dist/src/generated/git-commit.js +10 -0
  186. package/dist/src/generated/git-commit.js.map +1 -0
  187. package/dist/src/nonInteractiveCli.d.ts +7 -0
  188. package/dist/src/nonInteractiveCli.js +103 -0
  189. package/dist/src/nonInteractiveCli.js.map +1 -0
  190. package/dist/src/patches/is-in-ci.d.ts +7 -0
  191. package/dist/src/patches/is-in-ci.js +15 -0
  192. package/dist/src/patches/is-in-ci.js.map +1 -0
  193. package/dist/src/services/BuiltinCommandLoader.d.ts +24 -0
  194. package/dist/src/services/BuiltinCommandLoader.js +92 -0
  195. package/dist/src/services/BuiltinCommandLoader.js.map +1 -0
  196. package/dist/src/services/BuiltinCommandLoader.test.d.ts +6 -0
  197. package/dist/src/services/BuiltinCommandLoader.test.js +108 -0
  198. package/dist/src/services/BuiltinCommandLoader.test.js.map +1 -0
  199. package/dist/src/services/CommandService.d.ts +55 -0
  200. package/dist/src/services/CommandService.js +90 -0
  201. package/dist/src/services/CommandService.js.map +1 -0
  202. package/dist/src/services/CommandService.test.d.ts +6 -0
  203. package/dist/src/services/CommandService.test.js +232 -0
  204. package/dist/src/services/CommandService.test.js.map +1 -0
  205. package/dist/src/services/FileCommandLoader.d.ts +49 -0
  206. package/dist/src/services/FileCommandLoader.js +210 -0
  207. package/dist/src/services/FileCommandLoader.js.map +1 -0
  208. package/dist/src/services/McpPromptLoader.d.ts +25 -0
  209. package/dist/src/services/McpPromptLoader.js +192 -0
  210. package/dist/src/services/McpPromptLoader.js.map +1 -0
  211. package/dist/src/services/SearchEngineConfigProvider.d.ts +33 -0
  212. package/dist/src/services/SearchEngineConfigProvider.js +82 -0
  213. package/dist/src/services/SearchEngineConfigProvider.js.map +1 -0
  214. package/dist/src/services/prompt-processors/argumentProcessor.d.ts +16 -0
  215. package/dist/src/services/prompt-processors/argumentProcessor.js +20 -0
  216. package/dist/src/services/prompt-processors/argumentProcessor.js.map +1 -0
  217. package/dist/src/services/prompt-processors/shellProcessor.d.ts +35 -0
  218. package/dist/src/services/prompt-processors/shellProcessor.js +162 -0
  219. package/dist/src/services/prompt-processors/shellProcessor.js.map +1 -0
  220. package/dist/src/services/prompt-processors/types.d.ts +40 -0
  221. package/dist/src/services/prompt-processors/types.js +16 -0
  222. package/dist/src/services/prompt-processors/types.js.map +1 -0
  223. package/dist/src/services/types.d.ts +22 -0
  224. package/dist/src/services/types.js +7 -0
  225. package/dist/src/services/types.js.map +1 -0
  226. package/dist/src/test-utils/customMatchers.d.ts +14 -0
  227. package/dist/src/test-utils/customMatchers.js +46 -0
  228. package/dist/src/test-utils/customMatchers.js.map +1 -0
  229. package/dist/src/test-utils/mockCommandContext.d.ts +18 -0
  230. package/dist/src/test-utils/mockCommandContext.js +87 -0
  231. package/dist/src/test-utils/mockCommandContext.js.map +1 -0
  232. package/dist/src/test-utils/mockCommandContext.test.d.ts +6 -0
  233. package/dist/src/test-utils/mockCommandContext.test.js +51 -0
  234. package/dist/src/test-utils/mockCommandContext.test.js.map +1 -0
  235. package/dist/src/test-utils/render.d.ts +8 -0
  236. package/dist/src/test-utils/render.js +10 -0
  237. package/dist/src/test-utils/render.js.map +1 -0
  238. package/dist/src/ui/App.d.ts +15 -0
  239. package/dist/src/ui/App.js +687 -0
  240. package/dist/src/ui/App.js.map +1 -0
  241. package/dist/src/ui/IdeIntegrationNudge.d.ts +16 -0
  242. package/dist/src/ui/IdeIntegrationNudge.js +52 -0
  243. package/dist/src/ui/IdeIntegrationNudge.js.map +1 -0
  244. package/dist/src/ui/colors.d.ts +7 -0
  245. package/dist/src/ui/colors.js +54 -0
  246. package/dist/src/ui/colors.js.map +1 -0
  247. package/dist/src/ui/commands/aboutCommand.d.ts +7 -0
  248. package/dist/src/ui/commands/aboutCommand.js +43 -0
  249. package/dist/src/ui/commands/aboutCommand.js.map +1 -0
  250. package/dist/src/ui/commands/authCommand.d.ts +7 -0
  251. package/dist/src/ui/commands/authCommand.js +16 -0
  252. package/dist/src/ui/commands/authCommand.js.map +1 -0
  253. package/dist/src/ui/commands/bugCommand.d.ts +7 -0
  254. package/dist/src/ui/commands/bugCommand.js +71 -0
  255. package/dist/src/ui/commands/bugCommand.js.map +1 -0
  256. package/dist/src/ui/commands/chatCommand.d.ts +7 -0
  257. package/dist/src/ui/commands/chatCommand.js +234 -0
  258. package/dist/src/ui/commands/chatCommand.js.map +1 -0
  259. package/dist/src/ui/commands/clearCommand.d.ts +7 -0
  260. package/dist/src/ui/commands/clearCommand.js +27 -0
  261. package/dist/src/ui/commands/clearCommand.js.map +1 -0
  262. package/dist/src/ui/commands/compressCommand.d.ts +7 -0
  263. package/dist/src/ui/commands/compressCommand.js +64 -0
  264. package/dist/src/ui/commands/compressCommand.js.map +1 -0
  265. package/dist/src/ui/commands/contextCommand.d.ts +7 -0
  266. package/dist/src/ui/commands/contextCommand.js +115 -0
  267. package/dist/src/ui/commands/contextCommand.js.map +1 -0
  268. package/dist/src/ui/commands/copyCommand.d.ts +7 -0
  269. package/dist/src/ui/commands/copyCommand.js +59 -0
  270. package/dist/src/ui/commands/copyCommand.js.map +1 -0
  271. package/dist/src/ui/commands/corgiCommand.d.ts +7 -0
  272. package/dist/src/ui/commands/corgiCommand.js +15 -0
  273. package/dist/src/ui/commands/corgiCommand.js.map +1 -0
  274. package/dist/src/ui/commands/directoryCommand.d.ts +8 -0
  275. package/dist/src/ui/commands/directoryCommand.js +133 -0
  276. package/dist/src/ui/commands/directoryCommand.js.map +1 -0
  277. package/dist/src/ui/commands/docsCommand.d.ts +7 -0
  278. package/dist/src/ui/commands/docsCommand.js +31 -0
  279. package/dist/src/ui/commands/docsCommand.js.map +1 -0
  280. package/dist/src/ui/commands/editorCommand.d.ts +7 -0
  281. package/dist/src/ui/commands/editorCommand.js +16 -0
  282. package/dist/src/ui/commands/editorCommand.js.map +1 -0
  283. package/dist/src/ui/commands/extensionsCommand.d.ts +7 -0
  284. package/dist/src/ui/commands/extensionsCommand.js +31 -0
  285. package/dist/src/ui/commands/extensionsCommand.js.map +1 -0
  286. package/dist/src/ui/commands/helpCommand.d.ts +7 -0
  287. package/dist/src/ui/commands/helpCommand.js +21 -0
  288. package/dist/src/ui/commands/helpCommand.js.map +1 -0
  289. package/dist/src/ui/commands/ideCommand.d.ts +8 -0
  290. package/dist/src/ui/commands/ideCommand.js +218 -0
  291. package/dist/src/ui/commands/ideCommand.js.map +1 -0
  292. package/dist/src/ui/commands/initCommand.d.ts +7 -0
  293. package/dist/src/ui/commands/initCommand.js +105 -0
  294. package/dist/src/ui/commands/initCommand.js.map +1 -0
  295. package/dist/src/ui/commands/mcpCommand.d.ts +7 -0
  296. package/dist/src/ui/commands/mcpCommand.js +424 -0
  297. package/dist/src/ui/commands/mcpCommand.js.map +1 -0
  298. package/dist/src/ui/commands/memoryCommand.d.ts +7 -0
  299. package/dist/src/ui/commands/memoryCommand.js +224 -0
  300. package/dist/src/ui/commands/memoryCommand.js.map +1 -0
  301. package/dist/src/ui/commands/privacyCommand.d.ts +7 -0
  302. package/dist/src/ui/commands/privacyCommand.js +16 -0
  303. package/dist/src/ui/commands/privacyCommand.js.map +1 -0
  304. package/dist/src/ui/commands/quitCommand.d.ts +7 -0
  305. package/dist/src/ui/commands/quitCommand.js +34 -0
  306. package/dist/src/ui/commands/quitCommand.js.map +1 -0
  307. package/dist/src/ui/commands/restoreCommand.d.ts +8 -0
  308. package/dist/src/ui/commands/restoreCommand.js +128 -0
  309. package/dist/src/ui/commands/restoreCommand.js.map +1 -0
  310. package/dist/src/ui/commands/searchEngineSetupCommand.d.ts +7 -0
  311. package/dist/src/ui/commands/searchEngineSetupCommand.js +17 -0
  312. package/dist/src/ui/commands/searchEngineSetupCommand.js.map +1 -0
  313. package/dist/src/ui/commands/settingsCommand.d.ts +7 -0
  314. package/dist/src/ui/commands/settingsCommand.js +16 -0
  315. package/dist/src/ui/commands/settingsCommand.js.map +1 -0
  316. package/dist/src/ui/commands/setupGithubCommand.d.ts +9 -0
  317. package/dist/src/ui/commands/setupGithubCommand.js +154 -0
  318. package/dist/src/ui/commands/setupGithubCommand.js.map +1 -0
  319. package/dist/src/ui/commands/setupGithubCommand.test.d.ts +6 -0
  320. package/dist/src/ui/commands/setupGithubCommand.test.js +167 -0
  321. package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -0
  322. package/dist/src/ui/commands/speakCommand.d.ts +7 -0
  323. package/dist/src/ui/commands/speakCommand.js +136 -0
  324. package/dist/src/ui/commands/speakCommand.js.map +1 -0
  325. package/dist/src/ui/commands/statsCommand.d.ts +7 -0
  326. package/dist/src/ui/commands/statsCommand.js +54 -0
  327. package/dist/src/ui/commands/statsCommand.js.map +1 -0
  328. package/dist/src/ui/commands/terminalSetupCommand.d.ts +13 -0
  329. package/dist/src/ui/commands/terminalSetupCommand.js +41 -0
  330. package/dist/src/ui/commands/terminalSetupCommand.js.map +1 -0
  331. package/dist/src/ui/commands/themeCommand.d.ts +7 -0
  332. package/dist/src/ui/commands/themeCommand.js +16 -0
  333. package/dist/src/ui/commands/themeCommand.js.map +1 -0
  334. package/dist/src/ui/commands/toolsCommand.d.ts +7 -0
  335. package/dist/src/ui/commands/toolsCommand.js +56 -0
  336. package/dist/src/ui/commands/toolsCommand.js.map +1 -0
  337. package/dist/src/ui/commands/ttsCommand.d.ts +7 -0
  338. package/dist/src/ui/commands/ttsCommand.js +122 -0
  339. package/dist/src/ui/commands/ttsCommand.js.map +1 -0
  340. package/dist/src/ui/commands/types.d.ts +157 -0
  341. package/dist/src/ui/commands/types.js +12 -0
  342. package/dist/src/ui/commands/types.js.map +1 -0
  343. package/dist/src/ui/commands/vimCommand.d.ts +7 -0
  344. package/dist/src/ui/commands/vimCommand.js +23 -0
  345. package/dist/src/ui/commands/vimCommand.js.map +1 -0
  346. package/dist/src/ui/commands/voiceCommand.d.ts +7 -0
  347. package/dist/src/ui/commands/voiceCommand.js +95 -0
  348. package/dist/src/ui/commands/voiceCommand.js.map +1 -0
  349. package/dist/src/ui/components/AboutBox.d.ts +17 -0
  350. package/dist/src/ui/components/AboutBox.js +6 -0
  351. package/dist/src/ui/components/AboutBox.js.map +1 -0
  352. package/dist/src/ui/components/AsciiArt.d.ts +8 -0
  353. package/dist/src/ui/components/AsciiArt.js +53 -0
  354. package/dist/src/ui/components/AsciiArt.js.map +1 -0
  355. package/dist/src/ui/components/AuthDialog.d.ts +15 -0
  356. package/dist/src/ui/components/AuthDialog.js +174 -0
  357. package/dist/src/ui/components/AuthDialog.js.map +1 -0
  358. package/dist/src/ui/components/AuthDialog.test.d.ts +6 -0
  359. package/dist/src/ui/components/AuthDialog.test.js +220 -0
  360. package/dist/src/ui/components/AuthDialog.test.js.map +1 -0
  361. package/dist/src/ui/components/AuthInProgress.d.ts +11 -0
  362. package/dist/src/ui/components/AuthInProgress.js +28 -0
  363. package/dist/src/ui/components/AuthInProgress.js.map +1 -0
  364. package/dist/src/ui/components/AutoAcceptIndicator.d.ts +12 -0
  365. package/dist/src/ui/components/AutoAcceptIndicator.js +26 -0
  366. package/dist/src/ui/components/AutoAcceptIndicator.js.map +1 -0
  367. package/dist/src/ui/components/ConsoleSummaryDisplay.d.ts +11 -0
  368. package/dist/src/ui/components/ConsoleSummaryDisplay.js +11 -0
  369. package/dist/src/ui/components/ConsoleSummaryDisplay.js.map +1 -0
  370. package/dist/src/ui/components/ContextSummaryDisplay.d.ts +20 -0
  371. package/dist/src/ui/components/ContextSummaryDisplay.js +65 -0
  372. package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -0
  373. package/dist/src/ui/components/ContextUsageDisplay.d.ts +11 -0
  374. package/dist/src/ui/components/ContextUsageDisplay.js +100 -0
  375. package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -0
  376. package/dist/src/ui/components/DebugProfiler.d.ts +6 -0
  377. package/dist/src/ui/components/DebugProfiler.js +27 -0
  378. package/dist/src/ui/components/DebugProfiler.js.map +1 -0
  379. package/dist/src/ui/components/DetailedMessagesDisplay.d.ts +14 -0
  380. package/dist/src/ui/components/DetailedMessagesDisplay.js +34 -0
  381. package/dist/src/ui/components/DetailedMessagesDisplay.js.map +1 -0
  382. package/dist/src/ui/components/EditorSettingsDialog.d.ts +15 -0
  383. package/dist/src/ui/components/EditorSettingsDialog.js +74 -0
  384. package/dist/src/ui/components/EditorSettingsDialog.js.map +1 -0
  385. package/dist/src/ui/components/FolderTrustDialog.d.ts +16 -0
  386. package/dist/src/ui/components/FolderTrustDialog.js +39 -0
  387. package/dist/src/ui/components/FolderTrustDialog.js.map +1 -0
  388. package/dist/src/ui/components/FolderTrustDialog.test.d.ts +6 -0
  389. package/dist/src/ui/components/FolderTrustDialog.test.js +26 -0
  390. package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -0
  391. package/dist/src/ui/components/Footer.d.ts +24 -0
  392. package/dist/src/ui/components/Footer.js +25 -0
  393. package/dist/src/ui/components/Footer.js.map +1 -0
  394. package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +17 -0
  395. package/dist/src/ui/components/GeminiRespondingSpinner.js +16 -0
  396. package/dist/src/ui/components/GeminiRespondingSpinner.js.map +1 -0
  397. package/dist/src/ui/components/Header.d.ts +13 -0
  398. package/dist/src/ui/components/Header.js +28 -0
  399. package/dist/src/ui/components/Header.js.map +1 -0
  400. package/dist/src/ui/components/Header.test.d.ts +6 -0
  401. package/dist/src/ui/components/Header.test.js +37 -0
  402. package/dist/src/ui/components/Header.test.js.map +1 -0
  403. package/dist/src/ui/components/Help.d.ts +12 -0
  404. package/dist/src/ui/components/Help.js +10 -0
  405. package/dist/src/ui/components/Help.js.map +1 -0
  406. package/dist/src/ui/components/HistoryItemDisplay.d.ts +20 -0
  407. package/dist/src/ui/components/HistoryItemDisplay.js +18 -0
  408. package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -0
  409. package/dist/src/ui/components/HistoryItemDisplay.test.d.ts +6 -0
  410. package/dist/src/ui/components/HistoryItemDisplay.test.js +91 -0
  411. package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -0
  412. package/dist/src/ui/components/InputPrompt.d.ts +28 -0
  413. package/dist/src/ui/components/InputPrompt.js +440 -0
  414. package/dist/src/ui/components/InputPrompt.js.map +1 -0
  415. package/dist/src/ui/components/LMStudioModelPrompt.d.ts +12 -0
  416. package/dist/src/ui/components/LMStudioModelPrompt.js +100 -0
  417. package/dist/src/ui/components/LMStudioModelPrompt.js.map +1 -0
  418. package/dist/src/ui/components/LoadingIndicator.d.ts +15 -0
  419. package/dist/src/ui/components/LoadingIndicator.js +25 -0
  420. package/dist/src/ui/components/LoadingIndicator.js.map +1 -0
  421. package/dist/src/ui/components/LoadingIndicator.test.d.ts +6 -0
  422. package/dist/src/ui/components/LoadingIndicator.test.js +190 -0
  423. package/dist/src/ui/components/LoadingIndicator.test.js.map +1 -0
  424. package/dist/src/ui/components/MemoryUsageDisplay.d.ts +7 -0
  425. package/dist/src/ui/components/MemoryUsageDisplay.js +27 -0
  426. package/dist/src/ui/components/MemoryUsageDisplay.js.map +1 -0
  427. package/dist/src/ui/components/ModelStatsDisplay.d.ts +7 -0
  428. package/dist/src/ui/components/ModelStatsDisplay.js +33 -0
  429. package/dist/src/ui/components/ModelStatsDisplay.js.map +1 -0
  430. package/dist/src/ui/components/OllamaModelPrompt.d.ts +12 -0
  431. package/dist/src/ui/components/OllamaModelPrompt.js +94 -0
  432. package/dist/src/ui/components/OllamaModelPrompt.js.map +1 -0
  433. package/dist/src/ui/components/OpenAIEndpointDialog.d.ts +18 -0
  434. package/dist/src/ui/components/OpenAIEndpointDialog.js +77 -0
  435. package/dist/src/ui/components/OpenAIEndpointDialog.js.map +1 -0
  436. package/dist/src/ui/components/OpenAIKeyPrompt.d.ts +13 -0
  437. package/dist/src/ui/components/OpenAIKeyPrompt.js +118 -0
  438. package/dist/src/ui/components/OpenAIKeyPrompt.js.map +1 -0
  439. package/dist/src/ui/components/OpenAIKeyPrompt.test.d.ts +6 -0
  440. package/dist/src/ui/components/OpenAIKeyPrompt.test.js +44 -0
  441. package/dist/src/ui/components/OpenAIKeyPrompt.test.js.map +1 -0
  442. package/dist/src/ui/components/PrepareLabel.d.ts +15 -0
  443. package/dist/src/ui/components/PrepareLabel.js +16 -0
  444. package/dist/src/ui/components/PrepareLabel.js.map +1 -0
  445. package/dist/src/ui/components/SearchEngineConfigDialog.d.ts +18 -0
  446. package/dist/src/ui/components/SearchEngineConfigDialog.js +180 -0
  447. package/dist/src/ui/components/SearchEngineConfigDialog.js.map +1 -0
  448. package/dist/src/ui/components/SessionSummaryDisplay.d.ts +11 -0
  449. package/dist/src/ui/components/SessionSummaryDisplay.js +4 -0
  450. package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -0
  451. package/dist/src/ui/components/SettingsDialog.d.ts +14 -0
  452. package/dist/src/ui/components/SettingsDialog.js +519 -0
  453. package/dist/src/ui/components/SettingsDialog.js.map +1 -0
  454. package/dist/src/ui/components/SettingsDialog.test.d.ts +6 -0
  455. package/dist/src/ui/components/SettingsDialog.test.js +568 -0
  456. package/dist/src/ui/components/SettingsDialog.test.js.map +1 -0
  457. package/dist/src/ui/components/ShellConfirmationDialog.d.ts +15 -0
  458. package/dist/src/ui/components/ShellConfirmationDialog.js +46 -0
  459. package/dist/src/ui/components/ShellConfirmationDialog.js.map +1 -0
  460. package/dist/src/ui/components/ShellConfirmationDialog.test.d.ts +6 -0
  461. package/dist/src/ui/components/ShellConfirmationDialog.test.js +40 -0
  462. package/dist/src/ui/components/ShellConfirmationDialog.test.js.map +1 -0
  463. package/dist/src/ui/components/ShellModeIndicator.d.ts +7 -0
  464. package/dist/src/ui/components/ShellModeIndicator.js +5 -0
  465. package/dist/src/ui/components/ShellModeIndicator.js.map +1 -0
  466. package/dist/src/ui/components/ShowMoreLines.d.ts +10 -0
  467. package/dist/src/ui/components/ShowMoreLines.js +24 -0
  468. package/dist/src/ui/components/ShowMoreLines.js.map +1 -0
  469. package/dist/src/ui/components/StatsDisplay.d.ts +12 -0
  470. package/dist/src/ui/components/StatsDisplay.js +43 -0
  471. package/dist/src/ui/components/StatsDisplay.js.map +1 -0
  472. package/dist/src/ui/components/SuggestionsDisplay.d.ts +22 -0
  473. package/dist/src/ui/components/SuggestionsDisplay.js +32 -0
  474. package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -0
  475. package/dist/src/ui/components/ThemeDialog.d.ts +19 -0
  476. package/dist/src/ui/components/ThemeDialog.js +143 -0
  477. package/dist/src/ui/components/ThemeDialog.js.map +1 -0
  478. package/dist/src/ui/components/Tips.d.ts +12 -0
  479. package/dist/src/ui/components/Tips.js +8 -0
  480. package/dist/src/ui/components/Tips.js.map +1 -0
  481. package/dist/src/ui/components/TodoDisplay.d.ts +16 -0
  482. package/dist/src/ui/components/TodoDisplay.js +27 -0
  483. package/dist/src/ui/components/TodoDisplay.js.map +1 -0
  484. package/dist/src/ui/components/TodoDisplay.test.d.ts +6 -0
  485. package/dist/src/ui/components/TodoDisplay.test.js +77 -0
  486. package/dist/src/ui/components/TodoDisplay.test.js.map +1 -0
  487. package/dist/src/ui/components/ToolStatsDisplay.d.ts +7 -0
  488. package/dist/src/ui/components/ToolStatsDisplay.js +41 -0
  489. package/dist/src/ui/components/ToolStatsDisplay.js.map +1 -0
  490. package/dist/src/ui/components/UpdateNotification.d.ts +10 -0
  491. package/dist/src/ui/components/UpdateNotification.js +10 -0
  492. package/dist/src/ui/components/UpdateNotification.js.map +1 -0
  493. package/dist/src/ui/components/WelcomeBackDialog.d.ts +36 -0
  494. package/dist/src/ui/components/WelcomeBackDialog.js +109 -0
  495. package/dist/src/ui/components/WelcomeBackDialog.js.map +1 -0
  496. package/dist/src/ui/components/messages/CompressionMessage.d.ts +11 -0
  497. package/dist/src/ui/components/messages/CompressionMessage.js +16 -0
  498. package/dist/src/ui/components/messages/CompressionMessage.js.map +1 -0
  499. package/dist/src/ui/components/messages/DiffRenderer.d.ts +16 -0
  500. package/dist/src/ui/components/messages/DiffRenderer.js +222 -0
  501. package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -0
  502. package/dist/src/ui/components/messages/DiffRenderer.test.d.ts +6 -0
  503. package/dist/src/ui/components/messages/DiffRenderer.test.js +239 -0
  504. package/dist/src/ui/components/messages/DiffRenderer.test.js.map +1 -0
  505. package/dist/src/ui/components/messages/ErrorMessage.d.ts +11 -0
  506. package/dist/src/ui/components/messages/ErrorMessage.js +9 -0
  507. package/dist/src/ui/components/messages/ErrorMessage.js.map +1 -0
  508. package/dist/src/ui/components/messages/GeminiMessage.d.ts +14 -0
  509. package/dist/src/ui/components/messages/GeminiMessage.js +10 -0
  510. package/dist/src/ui/components/messages/GeminiMessage.js.map +1 -0
  511. package/dist/src/ui/components/messages/GeminiMessageContent.d.ts +14 -0
  512. package/dist/src/ui/components/messages/GeminiMessageContent.js +15 -0
  513. package/dist/src/ui/components/messages/GeminiMessageContent.js.map +1 -0
  514. package/dist/src/ui/components/messages/InfoMessage.d.ts +11 -0
  515. package/dist/src/ui/components/messages/InfoMessage.js +10 -0
  516. package/dist/src/ui/components/messages/InfoMessage.js.map +1 -0
  517. package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +15 -0
  518. package/dist/src/ui/components/messages/ToolConfirmationMessage.js +145 -0
  519. package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -0
  520. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.d.ts +6 -0
  521. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +37 -0
  522. package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -0
  523. package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +18 -0
  524. package/dist/src/ui/components/messages/ToolGroupMessage.js +55 -0
  525. package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -0
  526. package/dist/src/ui/components/messages/ToolMessage.d.ts +15 -0
  527. package/dist/src/ui/components/messages/ToolMessage.js +111 -0
  528. package/dist/src/ui/components/messages/ToolMessage.js.map +1 -0
  529. package/dist/src/ui/components/messages/ToolMessage.test.d.ts +6 -0
  530. package/dist/src/ui/components/messages/ToolMessage.test.js +118 -0
  531. package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -0
  532. package/dist/src/ui/components/messages/UserMessage.d.ts +11 -0
  533. package/dist/src/ui/components/messages/UserMessage.js +12 -0
  534. package/dist/src/ui/components/messages/UserMessage.js.map +1 -0
  535. package/dist/src/ui/components/messages/UserShellMessage.d.ts +11 -0
  536. package/dist/src/ui/components/messages/UserShellMessage.js +9 -0
  537. package/dist/src/ui/components/messages/UserShellMessage.js.map +1 -0
  538. package/dist/src/ui/components/shared/MaxSizedBox.d.ts +61 -0
  539. package/dist/src/ui/components/shared/MaxSizedBox.js +451 -0
  540. package/dist/src/ui/components/shared/MaxSizedBox.js.map +1 -0
  541. package/dist/src/ui/components/shared/MaxSizedBox.test.d.ts +6 -0
  542. package/dist/src/ui/components/shared/MaxSizedBox.test.js +154 -0
  543. package/dist/src/ui/components/shared/MaxSizedBox.test.js.map +1 -0
  544. package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +46 -0
  545. package/dist/src/ui/components/shared/RadioButtonSelect.js +121 -0
  546. package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -0
  547. package/dist/src/ui/components/shared/RadioButtonSelect.test.d.ts +6 -0
  548. package/dist/src/ui/components/shared/RadioButtonSelect.test.js +111 -0
  549. package/dist/src/ui/components/shared/RadioButtonSelect.test.js.map +1 -0
  550. package/dist/src/ui/components/shared/text-buffer.d.ts +467 -0
  551. package/dist/src/ui/components/shared/text-buffer.js +1533 -0
  552. package/dist/src/ui/components/shared/text-buffer.js.map +1 -0
  553. package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +72 -0
  554. package/dist/src/ui/components/shared/vim-buffer-actions.js +552 -0
  555. package/dist/src/ui/components/shared/vim-buffer-actions.js.map +1 -0
  556. package/dist/src/ui/constants.d.ts +9 -0
  557. package/dist/src/ui/constants.js +13 -0
  558. package/dist/src/ui/constants.js.map +1 -0
  559. package/dist/src/ui/contexts/KeypressContext.d.ts +30 -0
  560. package/dist/src/ui/contexts/KeypressContext.js +331 -0
  561. package/dist/src/ui/contexts/KeypressContext.js.map +1 -0
  562. package/dist/src/ui/contexts/KeypressContext.test.d.ts +6 -0
  563. package/dist/src/ui/contexts/KeypressContext.test.js +275 -0
  564. package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -0
  565. package/dist/src/ui/contexts/OverflowContext.d.ts +19 -0
  566. package/dist/src/ui/contexts/OverflowContext.js +43 -0
  567. package/dist/src/ui/contexts/OverflowContext.js.map +1 -0
  568. package/dist/src/ui/contexts/SessionContext.d.ts +39 -0
  569. package/dist/src/ui/contexts/SessionContext.js +60 -0
  570. package/dist/src/ui/contexts/SessionContext.js.map +1 -0
  571. package/dist/src/ui/contexts/SettingsContext.d.ts +9 -0
  572. package/dist/src/ui/contexts/SettingsContext.js +15 -0
  573. package/dist/src/ui/contexts/SettingsContext.js.map +1 -0
  574. package/dist/src/ui/contexts/StreamingContext.d.ts +9 -0
  575. package/dist/src/ui/contexts/StreamingContext.js +15 -0
  576. package/dist/src/ui/contexts/StreamingContext.js.map +1 -0
  577. package/dist/src/ui/contexts/VimModeContext.d.ts +19 -0
  578. package/dist/src/ui/contexts/VimModeContext.js +48 -0
  579. package/dist/src/ui/contexts/VimModeContext.js.map +1 -0
  580. package/dist/src/ui/editors/editorSettingsManager.d.ts +19 -0
  581. package/dist/src/ui/editors/editorSettingsManager.js +47 -0
  582. package/dist/src/ui/editors/editorSettingsManager.js.map +1 -0
  583. package/dist/src/ui/hooks/atCommandProcessor.d.ts +31 -0
  584. package/dist/src/ui/hooks/atCommandProcessor.js +365 -0
  585. package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -0
  586. package/dist/src/ui/hooks/atCommandProcessor.test.d.ts +6 -0
  587. package/dist/src/ui/hooks/atCommandProcessor.test.js +824 -0
  588. package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -0
  589. package/dist/src/ui/hooks/shellCommandProcessor.d.ts +17 -0
  590. package/dist/src/ui/hooks/shellCommandProcessor.js +233 -0
  591. package/dist/src/ui/hooks/shellCommandProcessor.js.map +1 -0
  592. package/dist/src/ui/hooks/shellCommandProcessor.test.d.ts +6 -0
  593. package/dist/src/ui/hooks/shellCommandProcessor.test.js +328 -0
  594. package/dist/src/ui/hooks/shellCommandProcessor.test.js.map +1 -0
  595. package/dist/src/ui/hooks/slashCommandProcessor.d.ts +28 -0
  596. package/dist/src/ui/hooks/slashCommandProcessor.js +459 -0
  597. package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -0
  598. package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
  599. package/dist/src/ui/hooks/useAtCompletion.js +179 -0
  600. package/dist/src/ui/hooks/useAtCompletion.js.map +1 -0
  601. package/dist/src/ui/hooks/useAuthCommand.d.ts +14 -0
  602. package/dist/src/ui/hooks/useAuthCommand.js +100 -0
  603. package/dist/src/ui/hooks/useAuthCommand.js.map +1 -0
  604. package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +10 -0
  605. package/dist/src/ui/hooks/useAutoAcceptIndicator.js +37 -0
  606. package/dist/src/ui/hooks/useAutoAcceptIndicator.js.map +1 -0
  607. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.d.ts +6 -0
  608. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js +190 -0
  609. package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -0
  610. package/dist/src/ui/hooks/useBracketedPaste.d.ts +12 -0
  611. package/dist/src/ui/hooks/useBracketedPaste.js +32 -0
  612. package/dist/src/ui/hooks/useBracketedPaste.js.map +1 -0
  613. package/dist/src/ui/hooks/useCommandCompletion.d.ts +29 -0
  614. package/dist/src/ui/hooks/useCommandCompletion.js +165 -0
  615. package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
  616. package/dist/src/ui/hooks/useCompletion.d.ts +24 -0
  617. package/dist/src/ui/hooks/useCompletion.js +88 -0
  618. package/dist/src/ui/hooks/useCompletion.js.map +1 -0
  619. package/dist/src/ui/hooks/useConsoleMessages.d.ts +12 -0
  620. package/dist/src/ui/hooks/useConsoleMessages.js +76 -0
  621. package/dist/src/ui/hooks/useConsoleMessages.js.map +1 -0
  622. package/dist/src/ui/hooks/useEditorSettings.d.ts +16 -0
  623. package/dist/src/ui/hooks/useEditorSettings.js +43 -0
  624. package/dist/src/ui/hooks/useEditorSettings.js.map +1 -0
  625. package/dist/src/ui/hooks/useEditorSettings.test.d.ts +6 -0
  626. package/dist/src/ui/hooks/useEditorSettings.test.js +164 -0
  627. package/dist/src/ui/hooks/useEditorSettings.test.js.map +1 -0
  628. package/dist/src/ui/hooks/useFocus.d.ts +10 -0
  629. package/dist/src/ui/hooks/useFocus.js +41 -0
  630. package/dist/src/ui/hooks/useFocus.js.map +1 -0
  631. package/dist/src/ui/hooks/useFolderTrust.d.ts +12 -0
  632. package/dist/src/ui/hooks/useFolderTrust.js +55 -0
  633. package/dist/src/ui/hooks/useFolderTrust.js.map +1 -0
  634. package/dist/src/ui/hooks/useGeminiStream.d.ts +24 -0
  635. package/dist/src/ui/hooks/useGeminiStream.js +653 -0
  636. package/dist/src/ui/hooks/useGeminiStream.js.map +1 -0
  637. package/dist/src/ui/hooks/useGitBranchName.d.ts +6 -0
  638. package/dist/src/ui/hooks/useGitBranchName.js +61 -0
  639. package/dist/src/ui/hooks/useGitBranchName.js.map +1 -0
  640. package/dist/src/ui/hooks/useGitBranchName.test.d.ts +6 -0
  641. package/dist/src/ui/hooks/useGitBranchName.test.js +215 -0
  642. package/dist/src/ui/hooks/useGitBranchName.test.js.map +1 -0
  643. package/dist/src/ui/hooks/useHistoryManager.d.ts +22 -0
  644. package/dist/src/ui/hooks/useHistoryManager.js +72 -0
  645. package/dist/src/ui/hooks/useHistoryManager.js.map +1 -0
  646. package/dist/src/ui/hooks/useHistoryManager.test.d.ts +6 -0
  647. package/dist/src/ui/hooks/useHistoryManager.test.js +171 -0
  648. package/dist/src/ui/hooks/useHistoryManager.test.js.map +1 -0
  649. package/dist/src/ui/hooks/useInputHistory.d.ts +19 -0
  650. package/dist/src/ui/hooks/useInputHistory.js +84 -0
  651. package/dist/src/ui/hooks/useInputHistory.js.map +1 -0
  652. package/dist/src/ui/hooks/useInputHistory.test.d.ts +6 -0
  653. package/dist/src/ui/hooks/useInputHistory.test.js +207 -0
  654. package/dist/src/ui/hooks/useInputHistory.test.js.map +1 -0
  655. package/dist/src/ui/hooks/useKeypress.d.ts +17 -0
  656. package/dist/src/ui/hooks/useKeypress.js +27 -0
  657. package/dist/src/ui/hooks/useKeypress.js.map +1 -0
  658. package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +15 -0
  659. package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +20 -0
  660. package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +1 -0
  661. package/dist/src/ui/hooks/useLoadingIndicator.d.ts +10 -0
  662. package/dist/src/ui/hooks/useLoadingIndicator.js +44 -0
  663. package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -0
  664. package/dist/src/ui/hooks/useLoadingIndicator.test.d.ts +6 -0
  665. package/dist/src/ui/hooks/useLoadingIndicator.test.js +91 -0
  666. package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -0
  667. package/dist/src/ui/hooks/useLogger.d.ts +10 -0
  668. package/dist/src/ui/hooks/useLogger.js +29 -0
  669. package/dist/src/ui/hooks/useLogger.js.map +1 -0
  670. package/dist/src/ui/hooks/useMessageQueue.d.ts +22 -0
  671. package/dist/src/ui/hooks/useMessageQueue.js +49 -0
  672. package/dist/src/ui/hooks/useMessageQueue.js.map +1 -0
  673. package/dist/src/ui/hooks/useMessageQueue.test.d.ts +6 -0
  674. package/dist/src/ui/hooks/useMessageQueue.test.js +158 -0
  675. package/dist/src/ui/hooks/useMessageQueue.test.js.map +1 -0
  676. package/dist/src/ui/hooks/usePhraseCycler.d.ts +14 -0
  677. package/dist/src/ui/hooks/usePhraseCycler.js +187 -0
  678. package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -0
  679. package/dist/src/ui/hooks/usePrivacySettings.d.ts +16 -0
  680. package/dist/src/ui/hooks/usePrivacySettings.js +119 -0
  681. package/dist/src/ui/hooks/usePrivacySettings.js.map +1 -0
  682. package/dist/src/ui/hooks/usePrivacySettings.test.d.ts +6 -0
  683. package/dist/src/ui/hooks/usePrivacySettings.test.js +154 -0
  684. package/dist/src/ui/hooks/usePrivacySettings.test.js.map +1 -0
  685. package/dist/src/ui/hooks/useReactToolScheduler.d.ts +33 -0
  686. package/dist/src/ui/hooks/useReactToolScheduler.js +187 -0
  687. package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -0
  688. package/dist/src/ui/hooks/useRefreshMemoryCommand.d.ts +6 -0
  689. package/dist/src/ui/hooks/useRefreshMemoryCommand.js +7 -0
  690. package/dist/src/ui/hooks/useRefreshMemoryCommand.js.map +1 -0
  691. package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +19 -0
  692. package/dist/src/ui/hooks/useReverseSearchCompletion.js +56 -0
  693. package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +1 -0
  694. package/dist/src/ui/hooks/useReverseSearchCompletion.test.d.ts +6 -0
  695. package/dist/src/ui/hooks/useReverseSearchCompletion.test.js +163 -0
  696. package/dist/src/ui/hooks/useReverseSearchCompletion.test.js.map +1 -0
  697. package/dist/src/ui/hooks/useSettingsCommand.d.ts +10 -0
  698. package/dist/src/ui/hooks/useSettingsCommand.js +21 -0
  699. package/dist/src/ui/hooks/useSettingsCommand.js.map +1 -0
  700. package/dist/src/ui/hooks/useShellHistory.d.ts +13 -0
  701. package/dist/src/ui/hooks/useShellHistory.js +112 -0
  702. package/dist/src/ui/hooks/useShellHistory.js.map +1 -0
  703. package/dist/src/ui/hooks/useShellHistory.test.d.ts +6 -0
  704. package/dist/src/ui/hooks/useShellHistory.test.js +162 -0
  705. package/dist/src/ui/hooks/useShellHistory.test.js.map +1 -0
  706. package/dist/src/ui/hooks/useShowMemoryCommand.d.ts +9 -0
  707. package/dist/src/ui/hooks/useShowMemoryCommand.js +58 -0
  708. package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -0
  709. package/dist/src/ui/hooks/useSlashCompletion.d.ts +20 -0
  710. package/dist/src/ui/hooks/useSlashCompletion.js +135 -0
  711. package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -0
  712. package/dist/src/ui/hooks/useSlashCompletion.test.d.ts +6 -0
  713. package/dist/src/ui/hooks/useSlashCompletion.test.js +272 -0
  714. package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -0
  715. package/dist/src/ui/hooks/useStateAndRef.d.ts +7 -0
  716. package/dist/src/ui/hooks/useStateAndRef.js +26 -0
  717. package/dist/src/ui/hooks/useStateAndRef.js.map +1 -0
  718. package/dist/src/ui/hooks/useTerminalSize.d.ts +9 -0
  719. package/dist/src/ui/hooks/useTerminalSize.js +27 -0
  720. package/dist/src/ui/hooks/useTerminalSize.js.map +1 -0
  721. package/dist/src/ui/hooks/useThemeCommand.d.ts +15 -0
  722. package/dist/src/ui/hooks/useThemeCommand.js +79 -0
  723. package/dist/src/ui/hooks/useThemeCommand.js.map +1 -0
  724. package/dist/src/ui/hooks/useTimer.d.ts +12 -0
  725. package/dist/src/ui/hooks/useTimer.js +58 -0
  726. package/dist/src/ui/hooks/useTimer.js.map +1 -0
  727. package/dist/src/ui/hooks/useTimer.test.d.ts +6 -0
  728. package/dist/src/ui/hooks/useTimer.test.js +90 -0
  729. package/dist/src/ui/hooks/useTimer.test.js.map +1 -0
  730. package/dist/src/ui/hooks/useToolScheduler.test.d.ts +6 -0
  731. package/dist/src/ui/hooks/useToolScheduler.test.js +845 -0
  732. package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -0
  733. package/dist/src/ui/hooks/useWelcomeBack.d.ts +52 -0
  734. package/dist/src/ui/hooks/useWelcomeBack.js +214 -0
  735. package/dist/src/ui/hooks/useWelcomeBack.js.map +1 -0
  736. package/dist/src/ui/hooks/vim.d.ts +28 -0
  737. package/dist/src/ui/hooks/vim.js +639 -0
  738. package/dist/src/ui/hooks/vim.js.map +1 -0
  739. package/dist/src/ui/keyMatchers.d.ts +26 -0
  740. package/dist/src/ui/keyMatchers.js +68 -0
  741. package/dist/src/ui/keyMatchers.js.map +1 -0
  742. package/dist/src/ui/keyMatchers.test.d.ts +6 -0
  743. package/dist/src/ui/keyMatchers.test.js +276 -0
  744. package/dist/src/ui/keyMatchers.test.js.map +1 -0
  745. package/dist/src/ui/privacy/CloudFreePrivacyNotice.d.ts +12 -0
  746. package/dist/src/ui/privacy/CloudFreePrivacyNotice.js +41 -0
  747. package/dist/src/ui/privacy/CloudFreePrivacyNotice.js.map +1 -0
  748. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.d.ts +10 -0
  749. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js +18 -0
  750. package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js.map +1 -0
  751. package/dist/src/ui/privacy/GeminiPrivacyNotice.d.ts +10 -0
  752. package/dist/src/ui/privacy/GeminiPrivacyNotice.js +18 -0
  753. package/dist/src/ui/privacy/GeminiPrivacyNotice.js.map +1 -0
  754. package/dist/src/ui/privacy/PrivacyNotice.d.ts +12 -0
  755. package/dist/src/ui/privacy/PrivacyNotice.js +25 -0
  756. package/dist/src/ui/privacy/PrivacyNotice.js.map +1 -0
  757. package/dist/src/ui/semantic-colors.d.ts +7 -0
  758. package/dist/src/ui/semantic-colors.js +24 -0
  759. package/dist/src/ui/semantic-colors.js.map +1 -0
  760. package/dist/src/ui/themes/ansi-light.d.ts +7 -0
  761. package/dist/src/ui/themes/ansi-light.js +142 -0
  762. package/dist/src/ui/themes/ansi-light.js.map +1 -0
  763. package/dist/src/ui/themes/ansi.d.ts +7 -0
  764. package/dist/src/ui/themes/ansi.js +152 -0
  765. package/dist/src/ui/themes/ansi.js.map +1 -0
  766. package/dist/src/ui/themes/atom-one-dark.d.ts +7 -0
  767. package/dist/src/ui/themes/atom-one-dark.js +139 -0
  768. package/dist/src/ui/themes/atom-one-dark.js.map +1 -0
  769. package/dist/src/ui/themes/ayu-light.d.ts +7 -0
  770. package/dist/src/ui/themes/ayu-light.js +131 -0
  771. package/dist/src/ui/themes/ayu-light.js.map +1 -0
  772. package/dist/src/ui/themes/ayu.d.ts +7 -0
  773. package/dist/src/ui/themes/ayu.js +105 -0
  774. package/dist/src/ui/themes/ayu.js.map +1 -0
  775. package/dist/src/ui/themes/color-utils.d.ts +21 -0
  776. package/dist/src/ui/themes/color-utils.js +221 -0
  777. package/dist/src/ui/themes/color-utils.js.map +1 -0
  778. package/dist/src/ui/themes/color-utils.test.d.ts +6 -0
  779. package/dist/src/ui/themes/color-utils.test.js +197 -0
  780. package/dist/src/ui/themes/color-utils.test.js.map +1 -0
  781. package/dist/src/ui/themes/default-light.d.ts +7 -0
  782. package/dist/src/ui/themes/default-light.js +101 -0
  783. package/dist/src/ui/themes/default-light.js.map +1 -0
  784. package/dist/src/ui/themes/default.d.ts +7 -0
  785. package/dist/src/ui/themes/default.js +144 -0
  786. package/dist/src/ui/themes/default.js.map +1 -0
  787. package/dist/src/ui/themes/dracula.d.ts +7 -0
  788. package/dist/src/ui/themes/dracula.js +116 -0
  789. package/dist/src/ui/themes/dracula.js.map +1 -0
  790. package/dist/src/ui/themes/fss-code-dark.d.ts +7 -0
  791. package/dist/src/ui/themes/fss-code-dark.js +148 -0
  792. package/dist/src/ui/themes/fss-code-dark.js.map +1 -0
  793. package/dist/src/ui/themes/fss-dark.d.ts +7 -0
  794. package/dist/src/ui/themes/fss-dark.js +105 -0
  795. package/dist/src/ui/themes/fss-dark.js.map +1 -0
  796. package/dist/src/ui/themes/fss-light.d.ts +7 -0
  797. package/dist/src/ui/themes/fss-light.js +131 -0
  798. package/dist/src/ui/themes/fss-light.js.map +1 -0
  799. package/dist/src/ui/themes/github-dark.d.ts +7 -0
  800. package/dist/src/ui/themes/github-dark.js +139 -0
  801. package/dist/src/ui/themes/github-dark.js.map +1 -0
  802. package/dist/src/ui/themes/github-light.d.ts +7 -0
  803. package/dist/src/ui/themes/github-light.js +141 -0
  804. package/dist/src/ui/themes/github-light.js.map +1 -0
  805. package/dist/src/ui/themes/googlecode.d.ts +7 -0
  806. package/dist/src/ui/themes/googlecode.js +138 -0
  807. package/dist/src/ui/themes/googlecode.js.map +1 -0
  808. package/dist/src/ui/themes/no-color.d.ts +7 -0
  809. package/dist/src/ui/themes/no-color.js +115 -0
  810. package/dist/src/ui/themes/no-color.js.map +1 -0
  811. package/dist/src/ui/themes/qwen-dark.d.ts +7 -0
  812. package/dist/src/ui/themes/qwen-dark.js +109 -0
  813. package/dist/src/ui/themes/qwen-dark.js.map +1 -0
  814. package/dist/src/ui/themes/qwen-light.d.ts +7 -0
  815. package/dist/src/ui/themes/qwen-light.js +135 -0
  816. package/dist/src/ui/themes/qwen-light.js.map +1 -0
  817. package/dist/src/ui/themes/semantic-tokens.d.ts +37 -0
  818. package/dist/src/ui/themes/semantic-tokens.js +94 -0
  819. package/dist/src/ui/themes/semantic-tokens.js.map +1 -0
  820. package/dist/src/ui/themes/shades-of-purple.d.ts +11 -0
  821. package/dist/src/ui/themes/shades-of-purple.js +305 -0
  822. package/dist/src/ui/themes/shades-of-purple.js.map +1 -0
  823. package/dist/src/ui/themes/theme-manager.d.ts +64 -0
  824. package/dist/src/ui/themes/theme-manager.js +209 -0
  825. package/dist/src/ui/themes/theme-manager.js.map +1 -0
  826. package/dist/src/ui/themes/theme-manager.test.d.ts +6 -0
  827. package/dist/src/ui/themes/theme-manager.test.js +83 -0
  828. package/dist/src/ui/themes/theme-manager.test.js.map +1 -0
  829. package/dist/src/ui/themes/theme.d.ts +130 -0
  830. package/dist/src/ui/themes/theme.js +351 -0
  831. package/dist/src/ui/themes/theme.js.map +1 -0
  832. package/dist/src/ui/themes/xcode.d.ts +7 -0
  833. package/dist/src/ui/themes/xcode.js +146 -0
  834. package/dist/src/ui/themes/xcode.js.map +1 -0
  835. package/dist/src/ui/types.d.ts +191 -0
  836. package/dist/src/ui/types.js +44 -0
  837. package/dist/src/ui/types.js.map +1 -0
  838. package/dist/src/ui/utils/CodeColorizer.d.ts +17 -0
  839. package/dist/src/ui/utils/CodeColorizer.js +110 -0
  840. package/dist/src/ui/utils/CodeColorizer.js.map +1 -0
  841. package/dist/src/ui/utils/ConsolePatcher.d.ts +25 -0
  842. package/dist/src/ui/utils/ConsolePatcher.js +52 -0
  843. package/dist/src/ui/utils/ConsolePatcher.js.map +1 -0
  844. package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +16 -0
  845. package/dist/src/ui/utils/InlineMarkdownRenderer.js +111 -0
  846. package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -0
  847. package/dist/src/ui/utils/MarkdownDisplay.d.ts +14 -0
  848. package/dist/src/ui/utils/MarkdownDisplay.js +207 -0
  849. package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -0
  850. package/dist/src/ui/utils/MarkdownDisplay.test.d.ts +6 -0
  851. package/dist/src/ui/utils/MarkdownDisplay.test.js +151 -0
  852. package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -0
  853. package/dist/src/ui/utils/TableRenderer.d.ts +17 -0
  854. package/dist/src/ui/utils/TableRenderer.js +84 -0
  855. package/dist/src/ui/utils/TableRenderer.js.map +1 -0
  856. package/dist/src/ui/utils/clipboardUtils.d.ts +22 -0
  857. package/dist/src/ui/utils/clipboardUtils.js +127 -0
  858. package/dist/src/ui/utils/clipboardUtils.js.map +1 -0
  859. package/dist/src/ui/utils/clipboardUtils.test.d.ts +6 -0
  860. package/dist/src/ui/utils/clipboardUtils.test.js +65 -0
  861. package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -0
  862. package/dist/src/ui/utils/commandUtils.d.ts +24 -0
  863. package/dist/src/ui/utils/commandUtils.js +93 -0
  864. package/dist/src/ui/utils/commandUtils.js.map +1 -0
  865. package/dist/src/ui/utils/commandUtils.test.d.ts +6 -0
  866. package/dist/src/ui/utils/commandUtils.test.js +294 -0
  867. package/dist/src/ui/utils/commandUtils.test.js.map +1 -0
  868. package/dist/src/ui/utils/computeStats.d.ts +10 -0
  869. package/dist/src/ui/utils/computeStats.js +57 -0
  870. package/dist/src/ui/utils/computeStats.js.map +1 -0
  871. package/dist/src/ui/utils/displayUtils.d.ts +17 -0
  872. package/dist/src/ui/utils/displayUtils.js +24 -0
  873. package/dist/src/ui/utils/displayUtils.js.map +1 -0
  874. package/dist/src/ui/utils/displayUtils.test.d.ts +6 -0
  875. package/dist/src/ui/utils/displayUtils.test.js +42 -0
  876. package/dist/src/ui/utils/displayUtils.test.js.map +1 -0
  877. package/dist/src/ui/utils/formatters.d.ts +13 -0
  878. package/dist/src/ui/utils/formatters.js +56 -0
  879. package/dist/src/ui/utils/formatters.js.map +1 -0
  880. package/dist/src/ui/utils/formatters.test.d.ts +6 -0
  881. package/dist/src/ui/utils/formatters.test.js +56 -0
  882. package/dist/src/ui/utils/formatters.test.js.map +1 -0
  883. package/dist/src/ui/utils/isNarrowWidth.d.ts +6 -0
  884. package/dist/src/ui/utils/isNarrowWidth.js +9 -0
  885. package/dist/src/ui/utils/isNarrowWidth.js.map +1 -0
  886. package/dist/src/ui/utils/kittyProtocolDetector.d.ts +13 -0
  887. package/dist/src/ui/utils/kittyProtocolDetector.js +88 -0
  888. package/dist/src/ui/utils/kittyProtocolDetector.js.map +1 -0
  889. package/dist/src/ui/utils/markdownUtilities.d.ts +6 -0
  890. package/dist/src/ui/utils/markdownUtilities.js +110 -0
  891. package/dist/src/ui/utils/markdownUtilities.js.map +1 -0
  892. package/dist/src/ui/utils/markdownUtilities.test.d.ts +6 -0
  893. package/dist/src/ui/utils/markdownUtilities.test.js +42 -0
  894. package/dist/src/ui/utils/markdownUtilities.test.js.map +1 -0
  895. package/dist/src/ui/utils/platformConstants.d.ts +45 -0
  896. package/dist/src/ui/utils/platformConstants.js +46 -0
  897. package/dist/src/ui/utils/platformConstants.js.map +1 -0
  898. package/dist/src/ui/utils/terminalSetup.d.ts +30 -0
  899. package/dist/src/ui/utils/terminalSetup.js +281 -0
  900. package/dist/src/ui/utils/terminalSetup.js.map +1 -0
  901. package/dist/src/ui/utils/textUtils.d.ts +14 -0
  902. package/dist/src/ui/utils/textUtils.js +36 -0
  903. package/dist/src/ui/utils/textUtils.js.map +1 -0
  904. package/dist/src/ui/utils/updateCheck.d.ts +12 -0
  905. package/dist/src/ui/utils/updateCheck.js +78 -0
  906. package/dist/src/ui/utils/updateCheck.js.map +1 -0
  907. package/dist/src/ui/utils/updateCheck.test.d.ts +6 -0
  908. package/dist/src/ui/utils/updateCheck.test.js +145 -0
  909. package/dist/src/ui/utils/updateCheck.test.js.map +1 -0
  910. package/dist/src/utils/checks.d.ts +19 -0
  911. package/dist/src/utils/checks.js +24 -0
  912. package/dist/src/utils/checks.js.map +1 -0
  913. package/dist/src/utils/cleanup.d.ts +8 -0
  914. package/dist/src/utils/cleanup.js +34 -0
  915. package/dist/src/utils/cleanup.js.map +1 -0
  916. package/dist/src/utils/dialogScopeUtils.d.ts +31 -0
  917. package/dist/src/utils/dialogScopeUtils.js +48 -0
  918. package/dist/src/utils/dialogScopeUtils.js.map +1 -0
  919. package/dist/src/utils/events.d.ts +11 -0
  920. package/dist/src/utils/events.js +13 -0
  921. package/dist/src/utils/events.js.map +1 -0
  922. package/dist/src/utils/gitUtils.d.ts +30 -0
  923. package/dist/src/utils/gitUtils.js +89 -0
  924. package/dist/src/utils/gitUtils.js.map +1 -0
  925. package/dist/src/utils/gitUtils.test.d.ts +6 -0
  926. package/dist/src/utils/gitUtils.test.js +113 -0
  927. package/dist/src/utils/gitUtils.test.js.map +1 -0
  928. package/dist/src/utils/handleAutoUpdate.d.ts +11 -0
  929. package/dist/src/utils/handleAutoUpdate.js +101 -0
  930. package/dist/src/utils/handleAutoUpdate.js.map +1 -0
  931. package/dist/src/utils/installationInfo.d.ts +23 -0
  932. package/dist/src/utils/installationInfo.js +169 -0
  933. package/dist/src/utils/installationInfo.js.map +1 -0
  934. package/dist/src/utils/installationInfo.test.d.ts +6 -0
  935. package/dist/src/utils/installationInfo.test.js +242 -0
  936. package/dist/src/utils/installationInfo.test.js.map +1 -0
  937. package/dist/src/utils/package.d.ts +12 -0
  938. package/dist/src/utils/package.js +24 -0
  939. package/dist/src/utils/package.js.map +1 -0
  940. package/dist/src/utils/readStdin.d.ts +6 -0
  941. package/dist/src/utils/readStdin.js +44 -0
  942. package/dist/src/utils/readStdin.js.map +1 -0
  943. package/dist/src/utils/resolvePath.d.ts +6 -0
  944. package/dist/src/utils/resolvePath.js +21 -0
  945. package/dist/src/utils/resolvePath.js.map +1 -0
  946. package/dist/src/utils/sandbox.d.ts +7 -0
  947. package/dist/src/utils/sandbox.js +739 -0
  948. package/dist/src/utils/sandbox.js.map +1 -0
  949. package/dist/src/utils/settingsUtils.d.ts +134 -0
  950. package/dist/src/utils/settingsUtils.js +336 -0
  951. package/dist/src/utils/settingsUtils.js.map +1 -0
  952. package/dist/src/utils/settingsUtils.test.d.ts +6 -0
  953. package/dist/src/utils/settingsUtils.test.js +514 -0
  954. package/dist/src/utils/settingsUtils.test.js.map +1 -0
  955. package/dist/src/utils/spawnWrapper.d.ts +7 -0
  956. package/dist/src/utils/spawnWrapper.js +8 -0
  957. package/dist/src/utils/spawnWrapper.js.map +1 -0
  958. package/dist/src/utils/startupWarnings.d.ts +6 -0
  959. package/dist/src/utils/startupWarnings.js +40 -0
  960. package/dist/src/utils/startupWarnings.js.map +1 -0
  961. package/dist/src/utils/updateEventEmitter.d.ts +11 -0
  962. package/dist/src/utils/updateEventEmitter.js +12 -0
  963. package/dist/src/utils/updateEventEmitter.js.map +1 -0
  964. package/dist/src/utils/userStartupWarnings.d.ts +6 -0
  965. package/dist/src/utils/userStartupWarnings.js +54 -0
  966. package/dist/src/utils/userStartupWarnings.js.map +1 -0
  967. package/dist/src/utils/userStartupWarnings.test.d.ts +6 -0
  968. package/dist/src/utils/userStartupWarnings.test.js +67 -0
  969. package/dist/src/utils/userStartupWarnings.test.js.map +1 -0
  970. package/dist/src/utils/version.d.ts +6 -0
  971. package/dist/src/utils/version.js +11 -0
  972. package/dist/src/utils/version.js.map +1 -0
  973. package/dist/src/validateNonInterActiveAuth.d.ts +7 -0
  974. package/dist/src/validateNonInterActiveAuth.js +51 -0
  975. package/dist/src/validateNonInterActiveAuth.js.map +1 -0
  976. package/dist/src/zed-integration/acp.d.ts +63 -0
  977. package/dist/src/zed-integration/acp.js +225 -0
  978. package/dist/src/zed-integration/acp.js.map +1 -0
  979. package/dist/src/zed-integration/fileSystemService.d.ts +19 -0
  980. package/dist/src/zed-integration/fileSystemService.js +43 -0
  981. package/dist/src/zed-integration/fileSystemService.js.map +1 -0
  982. package/dist/src/zed-integration/schema.d.ts +11782 -0
  983. package/dist/src/zed-integration/schema.js +311 -0
  984. package/dist/src/zed-integration/schema.js.map +1 -0
  985. package/dist/src/zed-integration/zedIntegration.d.ts +10 -0
  986. package/dist/src/zed-integration/zedIntegration.js +765 -0
  987. package/dist/src/zed-integration/zedIntegration.js.map +1 -0
  988. package/dist/tsconfig.tsbuildinfo +1 -0
  989. package/package.json +44 -113
  990. package/bundle/fss-link.js +0 -127361
  991. /package/{bundle → dist/src/utils}/sandbox-macos-permissive-closed.sb +0 -0
  992. /package/{bundle → dist/src/utils}/sandbox-macos-permissive-open.sb +0 -0
  993. /package/{bundle → dist/src/utils}/sandbox-macos-permissive-proxied.sb +0 -0
  994. /package/{bundle → dist/src/utils}/sandbox-macos-restrictive-closed.sb +0 -0
  995. /package/{bundle → dist/src/utils}/sandbox-macos-restrictive-open.sb +0 -0
  996. /package/{bundle → dist/src/utils}/sandbox-macos-restrictive-proxied.sb +0 -0
@@ -0,0 +1,687 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ /**
3
+ * @license
4
+ * Copyright 2025 Google LLC
5
+ * SPDX-License-Identifier: Apache-2.0
6
+ */
7
+ import { useCallback, useEffect, useMemo, useState, useRef } from 'react';
8
+ import { Box, measureElement, Static, Text, useStdin, useStdout, } from 'ink';
9
+ import { StreamingState, MessageType } from './types.js';
10
+ import { useTerminalSize } from './hooks/useTerminalSize.js';
11
+ import { useGeminiStream } from './hooks/useGeminiStream.js';
12
+ import { useLoadingIndicator } from './hooks/useLoadingIndicator.js';
13
+ import { useThemeCommand } from './hooks/useThemeCommand.js';
14
+ import { useAuthCommand } from './hooks/useAuthCommand.js';
15
+ import { useWelcomeBack } from './hooks/useWelcomeBack.js';
16
+ import { useFolderTrust } from './hooks/useFolderTrust.js';
17
+ import { useEditorSettings } from './hooks/useEditorSettings.js';
18
+ import { useSlashCommandProcessor } from './hooks/slashCommandProcessor.js';
19
+ import { useAutoAcceptIndicator } from './hooks/useAutoAcceptIndicator.js';
20
+ import { useMessageQueue } from './hooks/useMessageQueue.js';
21
+ import { useConsoleMessages } from './hooks/useConsoleMessages.js';
22
+ import { Header } from './components/Header.js';
23
+ import { LoadingIndicator } from './components/LoadingIndicator.js';
24
+ import { AutoAcceptIndicator } from './components/AutoAcceptIndicator.js';
25
+ import { ShellModeIndicator } from './components/ShellModeIndicator.js';
26
+ import { InputPrompt } from './components/InputPrompt.js';
27
+ import { Footer } from './components/Footer.js';
28
+ import { ThemeDialog } from './components/ThemeDialog.js';
29
+ import { AuthDialog } from './components/AuthDialog.js';
30
+ import { WelcomeBackDialog } from './components/WelcomeBackDialog.js';
31
+ import { SearchEngineConfigDialog } from './components/SearchEngineConfigDialog.js';
32
+ import { AuthInProgress } from './components/AuthInProgress.js';
33
+ import { EditorSettingsDialog } from './components/EditorSettingsDialog.js';
34
+ import { FolderTrustDialog } from './components/FolderTrustDialog.js';
35
+ import { ShellConfirmationDialog } from './components/ShellConfirmationDialog.js';
36
+ import { RadioButtonSelect } from './components/shared/RadioButtonSelect.js';
37
+ import { Colors } from './colors.js';
38
+ import { loadHierarchicalGeminiMemory } from '../config/config.js';
39
+ import { SettingScope } from '../config/settings.js';
40
+ import { Tips } from './components/Tips.js';
41
+ import { ConsolePatcher } from './utils/ConsolePatcher.js';
42
+ import { registerCleanup } from '../utils/cleanup.js';
43
+ import { DetailedMessagesDisplay } from './components/DetailedMessagesDisplay.js';
44
+ import { HistoryItemDisplay } from './components/HistoryItemDisplay.js';
45
+ import { ContextSummaryDisplay } from './components/ContextSummaryDisplay.js';
46
+ import { useHistory } from './hooks/useHistoryManager.js';
47
+ import process from 'node:process';
48
+ import { getErrorMessage, getAllGeminiMdFilenames, ApprovalMode, isEditorAvailable, FlashFallbackEvent, logFlashFallback, AuthType, ideContext, } from 'fss-link-core';
49
+ import { IdeIntegrationNudge, } from './IdeIntegrationNudge.js';
50
+ import { validateAuthMethod } from '../config/auth.js';
51
+ import { useLogger } from './hooks/useLogger.js';
52
+ import { StreamingContext } from './contexts/StreamingContext.js';
53
+ import { SessionStatsProvider, useSessionStats, } from './contexts/SessionContext.js';
54
+ import { useGitBranchName } from './hooks/useGitBranchName.js';
55
+ import { useFocus } from './hooks/useFocus.js';
56
+ import { useBracketedPaste } from './hooks/useBracketedPaste.js';
57
+ import { useTextBuffer } from './components/shared/text-buffer.js';
58
+ import { useVimMode, VimModeProvider } from './contexts/VimModeContext.js';
59
+ import { useVim } from './hooks/vim.js';
60
+ import { useKeypress } from './hooks/useKeypress.js';
61
+ import { KeypressProvider } from './contexts/KeypressContext.js';
62
+ import { useKittyKeyboardProtocol } from './hooks/useKittyKeyboardProtocol.js';
63
+ import { keyMatchers, Command } from './keyMatchers.js';
64
+ import * as fs from 'fs';
65
+ import { UpdateNotification } from './components/UpdateNotification.js';
66
+ import { isProQuotaExceededError, isGenericQuotaExceededError, UserTierId, } from 'fss-link-core';
67
+ import ansiEscapes from 'ansi-escapes';
68
+ import { SearchEngineConfigProvider } from '../services/SearchEngineConfigProvider.js';
69
+ import { OverflowProvider } from './contexts/OverflowContext.js';
70
+ import { ShowMoreLines } from './components/ShowMoreLines.js';
71
+ import { PrivacyNotice } from './privacy/PrivacyNotice.js';
72
+ import { useSettingsCommand } from './hooks/useSettingsCommand.js';
73
+ import { SettingsDialog } from './components/SettingsDialog.js';
74
+ import { setUpdateHandler } from '../utils/handleAutoUpdate.js';
75
+ import { appEvents, AppEvent } from '../utils/events.js';
76
+ import { isNarrowWidth } from './utils/isNarrowWidth.js';
77
+ const CTRL_EXIT_PROMPT_DURATION_MS = 1000;
78
+ // Maximum number of queued messages to display in UI to prevent performance issues
79
+ const MAX_DISPLAYED_QUEUED_MESSAGES = 3;
80
+ export const AppWrapper = (props) => {
81
+ const kittyProtocolStatus = useKittyKeyboardProtocol();
82
+ return (_jsx(KeypressProvider, { kittyProtocolEnabled: kittyProtocolStatus.enabled, config: props.config, children: _jsx(SessionStatsProvider, { children: _jsx(VimModeProvider, { settings: props.settings, children: _jsx(App, { ...props }) }) }) }));
83
+ };
84
+ const App = ({ config, settings, startupWarnings = [], version }) => {
85
+ const isFocused = useFocus();
86
+ useBracketedPaste();
87
+ const [updateInfo, setUpdateInfo] = useState(null);
88
+ const { stdout } = useStdout();
89
+ const nightly = version.includes('nightly');
90
+ const { history, addItem, clearItems, loadHistory } = useHistory();
91
+ const [idePromptAnswered, setIdePromptAnswered] = useState(false);
92
+ const currentIDE = config.getIdeClient().getCurrentIde();
93
+ useEffect(() => {
94
+ registerCleanup(() => config.getIdeClient().disconnect());
95
+ }, [config]);
96
+ const shouldShowIdePrompt = currentIDE &&
97
+ !config.getIdeMode() &&
98
+ !settings.merged.hasSeenIdeIntegrationNudge &&
99
+ !idePromptAnswered;
100
+ useEffect(() => {
101
+ const cleanup = setUpdateHandler(addItem, setUpdateInfo);
102
+ return cleanup;
103
+ }, [addItem]);
104
+ const { consoleMessages, handleNewMessage, clearConsoleMessages: clearConsoleMessagesState, } = useConsoleMessages();
105
+ useEffect(() => {
106
+ const consolePatcher = new ConsolePatcher({
107
+ onNewMessage: handleNewMessage,
108
+ debugMode: config.getDebugMode(),
109
+ });
110
+ consolePatcher.patch();
111
+ registerCleanup(consolePatcher.cleanup);
112
+ }, [handleNewMessage, config]);
113
+ const { stats: sessionStats } = useSessionStats();
114
+ const [staticNeedsRefresh, setStaticNeedsRefresh] = useState(false);
115
+ const [staticKey, setStaticKey] = useState(0);
116
+ const refreshStatic = useCallback(() => {
117
+ stdout.write(ansiEscapes.clearTerminal);
118
+ setStaticKey((prev) => prev + 1);
119
+ }, [setStaticKey, stdout]);
120
+ const [geminiMdFileCount, setGeminiMdFileCount] = useState(0);
121
+ const [debugMessage, setDebugMessage] = useState('');
122
+ const [themeError, setThemeError] = useState(null);
123
+ const [authError, setAuthError] = useState(null);
124
+ const [editorError, setEditorError] = useState(null);
125
+ const [isSearchDialogOpen, setIsSearchDialogOpen] = useState(false);
126
+ const [footerHeight, setFooterHeight] = useState(0);
127
+ // Initialize search engine configuration from database
128
+ useEffect(() => {
129
+ const initializeSearchEngineConfig = async () => {
130
+ const configProvider = SearchEngineConfigProvider.getInstance();
131
+ await configProvider.loadConfiguration();
132
+ };
133
+ initializeSearchEngineConfig();
134
+ }, []);
135
+ const [corgiMode, setCorgiMode] = useState(false);
136
+ const [isTrustedFolderState, setIsTrustedFolder] = useState(config.isTrustedFolder());
137
+ const [currentModel, setCurrentModel] = useState(config.getModel());
138
+ const [shellModeActive, setShellModeActive] = useState(false);
139
+ const [showErrorDetails, setShowErrorDetails] = useState(false);
140
+ const [showToolDescriptions, setShowToolDescriptions] = useState(false);
141
+ const [ctrlCPressedOnce, setCtrlCPressedOnce] = useState(false);
142
+ const [quittingMessages, setQuittingMessages] = useState(null);
143
+ const ctrlCTimerRef = useRef(null);
144
+ const [ctrlDPressedOnce, setCtrlDPressedOnce] = useState(false);
145
+ const ctrlDTimerRef = useRef(null);
146
+ const [constrainHeight, setConstrainHeight] = useState(true);
147
+ const [showPrivacyNotice, setShowPrivacyNotice] = useState(false);
148
+ const [modelSwitchedFromQuotaError, setModelSwitchedFromQuotaError] = useState(false);
149
+ const [userTier, setUserTier] = useState(undefined);
150
+ const [ideContextState, setIdeContextState] = useState();
151
+ const [showEscapePrompt, setShowEscapePrompt] = useState(false);
152
+ const [isProcessing, setIsProcessing] = useState(false);
153
+ useEffect(() => {
154
+ const unsubscribe = ideContext.subscribeToIdeContext(setIdeContextState);
155
+ // Set the initial value
156
+ setIdeContextState(ideContext.getIdeContext());
157
+ return unsubscribe;
158
+ }, []);
159
+ useEffect(() => {
160
+ const openDebugConsole = () => {
161
+ setShowErrorDetails(true);
162
+ setConstrainHeight(false); // Make sure the user sees the full message.
163
+ };
164
+ appEvents.on(AppEvent.OpenDebugConsole, openDebugConsole);
165
+ const logErrorHandler = (errorMessage) => {
166
+ handleNewMessage({
167
+ type: 'error',
168
+ content: String(errorMessage),
169
+ count: 1,
170
+ });
171
+ };
172
+ appEvents.on(AppEvent.LogError, logErrorHandler);
173
+ return () => {
174
+ appEvents.off(AppEvent.OpenDebugConsole, openDebugConsole);
175
+ appEvents.off(AppEvent.LogError, logErrorHandler);
176
+ };
177
+ }, [handleNewMessage]);
178
+ const openPrivacyNotice = useCallback(() => {
179
+ setShowPrivacyNotice(true);
180
+ }, []);
181
+ const handleEscapePromptChange = useCallback((showPrompt) => {
182
+ setShowEscapePrompt(showPrompt);
183
+ }, []);
184
+ const initialPromptSubmitted = useRef(false);
185
+ const errorCount = useMemo(() => consoleMessages
186
+ .filter((msg) => msg.type === 'error')
187
+ .reduce((total, msg) => total + msg.count, 0), [consoleMessages]);
188
+ const { isThemeDialogOpen, openThemeDialog, handleThemeSelect, handleThemeHighlight, } = useThemeCommand(settings, setThemeError, addItem);
189
+ const { isSettingsDialogOpen, openSettingsDialog, closeSettingsDialog } = useSettingsCommand();
190
+ const { isFolderTrustDialogOpen, handleFolderTrustSelect } = useFolderTrust(settings, setIsTrustedFolder);
191
+ const { isAuthDialogOpen, openAuthDialog, handleAuthSelect, isAuthenticating, cancelAuthentication, } = useAuthCommand(settings, setAuthError, config);
192
+ const { shouldShow: shouldShowWelcomeBack, projectSummary, contextToPopulate, handleContinue: handleWelcomeBackContinue, handleRestart: handleWelcomeBackRestart, handleCancel: handleWelcomeBackCancel, } = useWelcomeBack(settings);
193
+ useEffect(() => {
194
+ if (settings.merged.selectedAuthType && !settings.merged.useExternalAuth) {
195
+ const error = validateAuthMethod(settings.merged.selectedAuthType);
196
+ if (error) {
197
+ setAuthError(error);
198
+ openAuthDialog();
199
+ }
200
+ }
201
+ }, [
202
+ settings.merged.selectedAuthType,
203
+ settings.merged.useExternalAuth,
204
+ openAuthDialog,
205
+ setAuthError,
206
+ ]);
207
+ // Sync user tier from config when authentication changes
208
+ useEffect(() => {
209
+ // Only sync when not currently authenticating
210
+ if (!isAuthenticating) {
211
+ setUserTier(config.getGeminiClient()?.getUserTier());
212
+ }
213
+ }, [config, isAuthenticating]);
214
+ const { isEditorDialogOpen, openEditorDialog, handleEditorSelect, exitEditorDialog, } = useEditorSettings(settings, setEditorError, addItem);
215
+ const toggleCorgiMode = useCallback(() => {
216
+ setCorgiMode((prev) => !prev);
217
+ }, []);
218
+ const openSearchDialog = useCallback(() => {
219
+ setIsSearchDialogOpen(true);
220
+ }, []);
221
+ const performMemoryRefresh = useCallback(async () => {
222
+ addItem({
223
+ type: MessageType.INFO,
224
+ text: 'Refreshing hierarchical memory (LINK.md or other context files)...',
225
+ }, Date.now());
226
+ try {
227
+ const { memoryContent, fileCount } = await loadHierarchicalGeminiMemory(process.cwd(), settings.merged.loadMemoryFromIncludeDirectories
228
+ ? config.getWorkspaceContext().getDirectories()
229
+ : [], config.getDebugMode(), config.getFileService(), settings.merged, config.getExtensionContextFilePaths(), settings.merged.memoryImportFormat || 'tree', // Use setting or default to 'tree'
230
+ config.getFileFilteringOptions());
231
+ config.setUserMemory(memoryContent);
232
+ config.setGeminiMdFileCount(fileCount);
233
+ setGeminiMdFileCount(fileCount);
234
+ addItem({
235
+ type: MessageType.INFO,
236
+ text: `Memory refreshed successfully. ${memoryContent.length > 0 ? `Loaded ${memoryContent.length} characters from ${fileCount} file(s).` : 'No memory content found.'}`,
237
+ }, Date.now());
238
+ if (config.getDebugMode()) {
239
+ console.log(`[DEBUG] Refreshed memory content in config: ${memoryContent.substring(0, 200)}...`);
240
+ }
241
+ }
242
+ catch (error) {
243
+ const errorMessage = getErrorMessage(error);
244
+ addItem({
245
+ type: MessageType.ERROR,
246
+ text: `Error refreshing memory: ${errorMessage}`,
247
+ }, Date.now());
248
+ console.error('Error refreshing memory:', error);
249
+ }
250
+ }, [config, addItem, settings.merged]);
251
+ // Watch for model changes (e.g., from Flash fallback)
252
+ useEffect(() => {
253
+ const checkModelChange = () => {
254
+ const configModel = config.getModel();
255
+ if (configModel !== currentModel) {
256
+ setCurrentModel(configModel);
257
+ }
258
+ };
259
+ // Check immediately and then periodically
260
+ checkModelChange();
261
+ const interval = setInterval(checkModelChange, 1000); // Check every second
262
+ return () => clearInterval(interval);
263
+ }, [config, currentModel]);
264
+ // Set up Flash fallback handler
265
+ useEffect(() => {
266
+ const flashFallbackHandler = async (currentModel, fallbackModel, error) => {
267
+ let message;
268
+ if (config.getContentGeneratorConfig().authType ===
269
+ AuthType.LOGIN_WITH_GOOGLE) {
270
+ // Use actual user tier if available; otherwise, default to FREE tier behavior (safe default)
271
+ const isPaidTier = userTier === UserTierId.LEGACY || userTier === UserTierId.STANDARD;
272
+ // Check if this is a Pro quota exceeded error
273
+ if (error && isProQuotaExceededError(error)) {
274
+ if (isPaidTier) {
275
+ message = `⚡ You have reached your daily ${currentModel} quota limit.
276
+ ⚡ Automatically switching from ${currentModel} to ${fallbackModel} for the remainder of this session.
277
+ ⚡ To continue accessing the ${currentModel} model today, consider using /auth to switch to using a paid API key from AI Studio at https://aistudio.google.com/apikey`;
278
+ }
279
+ else {
280
+ message = `⚡ You have reached your daily ${currentModel} quota limit.
281
+ ⚡ Automatically switching from ${currentModel} to ${fallbackModel} for the remainder of this session.
282
+ ⚡ To increase your limits, upgrade to a Gemini Code Assist Standard or Enterprise plan with higher limits at https://goo.gle/set-up-gemini-code-assist
283
+ ⚡ Or you can utilize a Gemini API Key. See: https://goo.gle/gemini-cli-docs-auth#gemini-api-key
284
+ ⚡ You can switch authentication methods by typing /auth`;
285
+ }
286
+ }
287
+ else if (error && isGenericQuotaExceededError(error)) {
288
+ if (isPaidTier) {
289
+ message = `⚡ You have reached your daily quota limit.
290
+ ⚡ Automatically switching from ${currentModel} to ${fallbackModel} for the remainder of this session.
291
+ ⚡ To continue accessing the ${currentModel} model today, consider using /auth to switch to using a paid API key from AI Studio at https://aistudio.google.com/apikey`;
292
+ }
293
+ else {
294
+ message = `⚡ You have reached your daily quota limit.
295
+ ⚡ Automatically switching from ${currentModel} to ${fallbackModel} for the remainder of this session.
296
+ ⚡ To increase your limits, upgrade to a Gemini Code Assist Standard or Enterprise plan with higher limits at https://goo.gle/set-up-gemini-code-assist
297
+ ⚡ Or you can utilize a Gemini API Key. See: https://goo.gle/gemini-cli-docs-auth#gemini-api-key
298
+ ⚡ You can switch authentication methods by typing /auth`;
299
+ }
300
+ }
301
+ else {
302
+ if (isPaidTier) {
303
+ // Default fallback message for other cases (like consecutive 429s)
304
+ message = `⚡ Automatically switching from ${currentModel} to ${fallbackModel} for faster responses for the remainder of this session.
305
+ ⚡ Possible reasons for this are that you have received multiple consecutive capacity errors or you have reached your daily ${currentModel} quota limit
306
+ ⚡ To continue accessing the ${currentModel} model today, consider using /auth to switch to using a paid API key from AI Studio at https://aistudio.google.com/apikey`;
307
+ }
308
+ else {
309
+ // Default fallback message for other cases (like consecutive 429s)
310
+ message = `⚡ Automatically switching from ${currentModel} to ${fallbackModel} for faster responses for the remainder of this session.
311
+ ⚡ Possible reasons for this are that you have received multiple consecutive capacity errors or you have reached your daily ${currentModel} quota limit
312
+ ⚡ To increase your limits, upgrade to a Gemini Code Assist Standard or Enterprise plan with higher limits at https://goo.gle/set-up-gemini-code-assist
313
+ ⚡ Or you can utilize a Gemini API Key. See: https://goo.gle/gemini-cli-docs-auth#gemini-api-key
314
+ ⚡ You can switch authentication methods by typing /auth`;
315
+ }
316
+ }
317
+ // Add message to UI history
318
+ addItem({
319
+ type: MessageType.INFO,
320
+ text: message,
321
+ }, Date.now());
322
+ // Set the flag to prevent tool continuation
323
+ setModelSwitchedFromQuotaError(true);
324
+ // Set global quota error flag to prevent Flash model calls
325
+ config.setQuotaErrorOccurred(true);
326
+ }
327
+ // Switch model for future use but return false to stop current retry
328
+ config.setModel(fallbackModel);
329
+ config.setFallbackMode(true);
330
+ logFlashFallback(config, new FlashFallbackEvent(config.getContentGeneratorConfig().authType));
331
+ return false; // Don't continue with current prompt
332
+ };
333
+ config.setFlashFallbackHandler(flashFallbackHandler);
334
+ }, [config, addItem, userTier]);
335
+ // Terminal and UI setup
336
+ const { rows: terminalHeight, columns: terminalWidth } = useTerminalSize();
337
+ const isNarrow = isNarrowWidth(terminalWidth);
338
+ const { stdin, setRawMode } = useStdin();
339
+ const isInitialMount = useRef(true);
340
+ const widthFraction = 0.9;
341
+ const inputWidth = Math.max(20, Math.floor(terminalWidth * widthFraction) - 3);
342
+ const suggestionsWidth = Math.max(20, Math.floor(terminalWidth * 0.8));
343
+ // Utility callbacks
344
+ const isValidPath = useCallback((filePath) => {
345
+ try {
346
+ return fs.existsSync(filePath) && fs.statSync(filePath).isFile();
347
+ }
348
+ catch (_e) {
349
+ return false;
350
+ }
351
+ }, []);
352
+ const getPreferredEditor = useCallback(() => {
353
+ const editorType = settings.merged.preferredEditor;
354
+ const isValidEditor = isEditorAvailable(editorType);
355
+ if (!isValidEditor) {
356
+ openEditorDialog();
357
+ return;
358
+ }
359
+ return editorType;
360
+ }, [settings, openEditorDialog]);
361
+ const onAuthError = useCallback(() => {
362
+ setAuthError('reauth required');
363
+ openAuthDialog();
364
+ }, [openAuthDialog, setAuthError]);
365
+ // Core hooks and processors
366
+ const { vimEnabled: vimModeEnabled, vimMode, toggleVimEnabled, } = useVimMode();
367
+ const { handleSlashCommand, slashCommands, pendingHistoryItems: pendingSlashCommandHistoryItems, commandContext, shellConfirmationRequest, confirmationRequest, } = useSlashCommandProcessor(config, settings, addItem, clearItems, loadHistory, refreshStatic, setDebugMessage, openThemeDialog, openAuthDialog, openEditorDialog, openSearchDialog, toggleCorgiMode, setQuittingMessages, openPrivacyNotice, openSettingsDialog, toggleVimEnabled, setIsProcessing, setGeminiMdFileCount);
368
+ const buffer = useTextBuffer({
369
+ initialText: '',
370
+ viewport: { height: 10, width: inputWidth },
371
+ stdin,
372
+ setRawMode,
373
+ isValidPath,
374
+ shellModeActive,
375
+ });
376
+ const [userMessages, setUserMessages] = useState([]);
377
+ // Stable reference for cancel handler to avoid circular dependency
378
+ const cancelHandlerRef = useRef(() => { });
379
+ const { streamingState, submitQuery, initError, pendingHistoryItems: pendingGeminiHistoryItems, thought, cancelOngoingRequest, } = useGeminiStream(config.getGeminiClient(), history, addItem, config, setDebugMessage, handleSlashCommand, shellModeActive, getPreferredEditor, onAuthError, performMemoryRefresh, modelSwitchedFromQuotaError, setModelSwitchedFromQuotaError, refreshStatic, () => cancelHandlerRef.current());
380
+ // Handle Welcome Back context population
381
+ useEffect(() => {
382
+ if (contextToPopulate && !initialPromptSubmitted.current) {
383
+ submitQuery(contextToPopulate);
384
+ initialPromptSubmitted.current = true;
385
+ }
386
+ }, [contextToPopulate, submitQuery]);
387
+ // Message queue for handling input during streaming
388
+ const { messageQueue, addMessage, clearQueue, getQueuedMessagesText } = useMessageQueue({
389
+ streamingState,
390
+ submitQuery,
391
+ });
392
+ // Update the cancel handler with message queue support
393
+ cancelHandlerRef.current = useCallback(() => {
394
+ const lastUserMessage = userMessages.at(-1);
395
+ let textToSet = lastUserMessage || '';
396
+ // Append queued messages if any exist
397
+ const queuedText = getQueuedMessagesText();
398
+ if (queuedText) {
399
+ textToSet = textToSet ? `${textToSet}\n\n${queuedText}` : queuedText;
400
+ clearQueue();
401
+ }
402
+ if (textToSet) {
403
+ buffer.setText(textToSet);
404
+ }
405
+ }, [buffer, userMessages, getQueuedMessagesText, clearQueue]);
406
+ // Input handling - queue messages for processing
407
+ const handleFinalSubmit = useCallback((submittedValue) => {
408
+ addMessage(submittedValue);
409
+ }, [addMessage]);
410
+ const handleIdePromptComplete = useCallback((result) => {
411
+ if (result.userSelection === 'yes') {
412
+ if (result.isExtensionPreInstalled) {
413
+ handleSlashCommand('/ide enable');
414
+ }
415
+ else {
416
+ handleSlashCommand('/ide install');
417
+ }
418
+ settings.setValue(SettingScope.User, 'hasSeenIdeIntegrationNudge', true);
419
+ }
420
+ else if (result.userSelection === 'dismiss') {
421
+ settings.setValue(SettingScope.User, 'hasSeenIdeIntegrationNudge', true);
422
+ }
423
+ setIdePromptAnswered(true);
424
+ }, [handleSlashCommand, settings]);
425
+ const { handleInput: vimHandleInput } = useVim(buffer, handleFinalSubmit);
426
+ const pendingHistoryItems = [...pendingSlashCommandHistoryItems];
427
+ pendingHistoryItems.push(...pendingGeminiHistoryItems);
428
+ const { elapsedTime, currentLoadingPhrase } = useLoadingIndicator(streamingState);
429
+ const showAutoAcceptIndicator = useAutoAcceptIndicator({ config });
430
+ const handleExit = useCallback((pressedOnce, setPressedOnce, timerRef) => {
431
+ if (pressedOnce) {
432
+ if (timerRef.current) {
433
+ clearTimeout(timerRef.current);
434
+ }
435
+ // Directly invoke the central command handler.
436
+ handleSlashCommand('/quit');
437
+ }
438
+ else {
439
+ setPressedOnce(true);
440
+ timerRef.current = setTimeout(() => {
441
+ setPressedOnce(false);
442
+ timerRef.current = null;
443
+ }, CTRL_EXIT_PROMPT_DURATION_MS);
444
+ }
445
+ }, [handleSlashCommand]);
446
+ const handleGlobalKeypress = useCallback((key) => {
447
+ let enteringConstrainHeightMode = false;
448
+ if (!constrainHeight) {
449
+ enteringConstrainHeightMode = true;
450
+ setConstrainHeight(true);
451
+ }
452
+ if (keyMatchers[Command.SHOW_ERROR_DETAILS](key)) {
453
+ setShowErrorDetails((prev) => !prev);
454
+ }
455
+ else if (keyMatchers[Command.TOGGLE_TOOL_DESCRIPTIONS](key)) {
456
+ const newValue = !showToolDescriptions;
457
+ setShowToolDescriptions(newValue);
458
+ const mcpServers = config.getMcpServers();
459
+ if (Object.keys(mcpServers || {}).length > 0) {
460
+ handleSlashCommand(newValue ? '/mcp desc' : '/mcp nodesc');
461
+ }
462
+ }
463
+ else if (keyMatchers[Command.TOGGLE_IDE_CONTEXT_DETAIL](key) &&
464
+ config.getIdeMode() &&
465
+ ideContextState) {
466
+ // Show IDE status when in IDE mode and context is available.
467
+ handleSlashCommand('/ide status');
468
+ }
469
+ else if (keyMatchers[Command.QUIT](key)) {
470
+ // When authenticating, let AuthInProgress component handle Ctrl+C.
471
+ if (isAuthenticating) {
472
+ return;
473
+ }
474
+ if (!ctrlCPressedOnce) {
475
+ cancelOngoingRequest?.();
476
+ }
477
+ handleExit(ctrlCPressedOnce, setCtrlCPressedOnce, ctrlCTimerRef);
478
+ }
479
+ else if (keyMatchers[Command.EXIT](key)) {
480
+ if (buffer.text.length > 0) {
481
+ return;
482
+ }
483
+ handleExit(ctrlDPressedOnce, setCtrlDPressedOnce, ctrlDTimerRef);
484
+ }
485
+ else if (keyMatchers[Command.SHOW_MORE_LINES](key) &&
486
+ !enteringConstrainHeightMode) {
487
+ setConstrainHeight(false);
488
+ }
489
+ }, [
490
+ constrainHeight,
491
+ setConstrainHeight,
492
+ setShowErrorDetails,
493
+ showToolDescriptions,
494
+ setShowToolDescriptions,
495
+ config,
496
+ ideContextState,
497
+ handleExit,
498
+ ctrlCPressedOnce,
499
+ setCtrlCPressedOnce,
500
+ ctrlCTimerRef,
501
+ buffer.text.length,
502
+ ctrlDPressedOnce,
503
+ setCtrlDPressedOnce,
504
+ ctrlDTimerRef,
505
+ handleSlashCommand,
506
+ isAuthenticating,
507
+ cancelOngoingRequest,
508
+ ]);
509
+ useKeypress(handleGlobalKeypress, {
510
+ isActive: true,
511
+ });
512
+ useEffect(() => {
513
+ if (config) {
514
+ setGeminiMdFileCount(config.getGeminiMdFileCount());
515
+ }
516
+ }, [config, config.getGeminiMdFileCount]);
517
+ const logger = useLogger();
518
+ useEffect(() => {
519
+ const fetchUserMessages = async () => {
520
+ const pastMessagesRaw = (await logger?.getPreviousUserMessages()) || []; // Newest first
521
+ const currentSessionUserMessages = history
522
+ .filter((item) => item.type === 'user' &&
523
+ typeof item.text === 'string' &&
524
+ item.text.trim() !== '')
525
+ .map((item) => item.text)
526
+ .reverse(); // Newest first, to match pastMessagesRaw sorting
527
+ // Combine, with current session messages being more recent
528
+ const combinedMessages = [
529
+ ...currentSessionUserMessages,
530
+ ...pastMessagesRaw,
531
+ ];
532
+ // Deduplicate consecutive identical messages from the combined list (still newest first)
533
+ const deduplicatedMessages = [];
534
+ if (combinedMessages.length > 0) {
535
+ deduplicatedMessages.push(combinedMessages[0]); // Add the newest one unconditionally
536
+ for (let i = 1; i < combinedMessages.length; i++) {
537
+ if (combinedMessages[i] !== combinedMessages[i - 1]) {
538
+ deduplicatedMessages.push(combinedMessages[i]);
539
+ }
540
+ }
541
+ }
542
+ // Reverse to oldest first for useInputHistory
543
+ setUserMessages(deduplicatedMessages.reverse());
544
+ };
545
+ fetchUserMessages();
546
+ }, [history, logger]);
547
+ const isInputActive = (streamingState === StreamingState.Idle ||
548
+ streamingState === StreamingState.Responding) &&
549
+ !initError &&
550
+ !isProcessing;
551
+ const handleClearScreen = useCallback(() => {
552
+ clearItems();
553
+ clearConsoleMessagesState();
554
+ console.clear();
555
+ refreshStatic();
556
+ }, [clearItems, clearConsoleMessagesState, refreshStatic]);
557
+ const mainControlsRef = useRef(null);
558
+ const pendingHistoryItemRef = useRef(null);
559
+ useEffect(() => {
560
+ if (mainControlsRef.current) {
561
+ const fullFooterMeasurement = measureElement(mainControlsRef.current);
562
+ setFooterHeight(fullFooterMeasurement.height);
563
+ }
564
+ }, [terminalHeight, consoleMessages, showErrorDetails]);
565
+ const staticExtraHeight = /* margins and padding */ 3;
566
+ const availableTerminalHeight = useMemo(() => terminalHeight - footerHeight - staticExtraHeight, [terminalHeight, footerHeight]);
567
+ useEffect(() => {
568
+ // skip refreshing Static during first mount
569
+ if (isInitialMount.current) {
570
+ isInitialMount.current = false;
571
+ return;
572
+ }
573
+ // debounce so it doesn't fire up too often during resize
574
+ const handler = setTimeout(() => {
575
+ setStaticNeedsRefresh(false);
576
+ refreshStatic();
577
+ }, 300);
578
+ return () => {
579
+ clearTimeout(handler);
580
+ };
581
+ }, [terminalWidth, terminalHeight, refreshStatic]);
582
+ useEffect(() => {
583
+ if (streamingState === StreamingState.Idle && staticNeedsRefresh) {
584
+ setStaticNeedsRefresh(false);
585
+ refreshStatic();
586
+ }
587
+ }, [streamingState, refreshStatic, staticNeedsRefresh]);
588
+ const filteredConsoleMessages = useMemo(() => {
589
+ if (config.getDebugMode()) {
590
+ return consoleMessages;
591
+ }
592
+ return consoleMessages.filter((msg) => msg.type !== 'debug');
593
+ }, [consoleMessages, config]);
594
+ const branchName = useGitBranchName(config.getTargetDir());
595
+ const contextFileNames = useMemo(() => {
596
+ const fromSettings = settings.merged.contextFileName;
597
+ if (fromSettings) {
598
+ return Array.isArray(fromSettings) ? fromSettings : [fromSettings];
599
+ }
600
+ return getAllGeminiMdFilenames();
601
+ }, [settings.merged.contextFileName]);
602
+ const initialPrompt = useMemo(() => config.getQuestion(), [config]);
603
+ const geminiClient = config.getGeminiClient();
604
+ useEffect(() => {
605
+ if (initialPrompt &&
606
+ !initialPromptSubmitted.current &&
607
+ !isAuthenticating &&
608
+ !isAuthDialogOpen &&
609
+ !shouldShowWelcomeBack &&
610
+ !isThemeDialogOpen &&
611
+ !isEditorDialogOpen &&
612
+ !isSearchDialogOpen &&
613
+ !showPrivacyNotice &&
614
+ geminiClient?.isInitialized?.()) {
615
+ submitQuery(initialPrompt);
616
+ initialPromptSubmitted.current = true;
617
+ }
618
+ }, [
619
+ initialPrompt,
620
+ submitQuery,
621
+ isAuthenticating,
622
+ isAuthDialogOpen,
623
+ shouldShowWelcomeBack,
624
+ isThemeDialogOpen,
625
+ isEditorDialogOpen,
626
+ isSearchDialogOpen,
627
+ showPrivacyNotice,
628
+ geminiClient,
629
+ ]);
630
+ if (quittingMessages) {
631
+ return (_jsx(Box, { flexDirection: "column", marginBottom: 1, children: quittingMessages.map((item) => (_jsx(HistoryItemDisplay, { availableTerminalHeight: constrainHeight ? availableTerminalHeight : undefined, terminalWidth: terminalWidth, item: item, isPending: false, config: config }, item.id))) }));
632
+ }
633
+ const mainAreaWidth = Math.floor(terminalWidth * 0.9);
634
+ const debugConsoleMaxHeight = Math.floor(Math.max(terminalHeight * 0.2, 5));
635
+ // Arbitrary threshold to ensure that items in the static area are large
636
+ // enough but not too large to make the terminal hard to use.
637
+ const staticAreaMaxItemHeight = Math.max(terminalHeight * 4, 100);
638
+ const placeholder = vimModeEnabled
639
+ ? " Press 'i' for INSERT mode and 'Esc' for NORMAL mode."
640
+ : ' Type your message or @path/to/file';
641
+ return (_jsx(StreamingContext.Provider, { value: streamingState, children: _jsxs(Box, { flexDirection: "column", width: "90%", children: [_jsx(Static, { items: [
642
+ _jsxs(Box, { flexDirection: "column", children: [!settings.merged.hideBanner && (_jsx(Header, { version: version, nightly: nightly })), !settings.merged.hideTips && _jsx(Tips, { config: config })] }, "header"),
643
+ ...history.map((h) => (_jsx(HistoryItemDisplay, { terminalWidth: mainAreaWidth, availableTerminalHeight: staticAreaMaxItemHeight, item: h, isPending: false, config: config, commands: slashCommands }, h.id))),
644
+ ], children: (item) => item }, staticKey), _jsx(OverflowProvider, { children: _jsxs(Box, { ref: pendingHistoryItemRef, flexDirection: "column", children: [pendingHistoryItems.map((item, i) => (_jsx(HistoryItemDisplay, { availableTerminalHeight: constrainHeight ? availableTerminalHeight : undefined, terminalWidth: mainAreaWidth,
645
+ // TODO(taehykim): It seems like references to ids aren't necessary in
646
+ // HistoryItemDisplay. Refactor later. Use a fake id for now.
647
+ item: { ...item, id: 0 }, isPending: true, config: config, isFocused: !isEditorDialogOpen }, i))), _jsx(ShowMoreLines, { constrainHeight: constrainHeight })] }) }), _jsxs(Box, { flexDirection: "column", ref: mainControlsRef, children: [updateInfo && _jsx(UpdateNotification, { message: updateInfo.message }), startupWarnings.length > 0 && (_jsx(Box, { borderStyle: "round", borderColor: Colors.AccentYellow, paddingX: 1, marginY: 1, flexDirection: "column", children: startupWarnings.map((warning, index) => (_jsx(Text, { color: Colors.AccentYellow, children: warning }, index))) })), shouldShowIdePrompt && currentIDE ? (_jsx(IdeIntegrationNudge, { ide: currentIDE, onComplete: handleIdePromptComplete })) : isFolderTrustDialogOpen ? (_jsx(FolderTrustDialog, { onSelect: handleFolderTrustSelect })) : shellConfirmationRequest ? (_jsx(ShellConfirmationDialog, { request: shellConfirmationRequest })) : confirmationRequest ? (_jsxs(Box, { flexDirection: "column", children: [confirmationRequest.prompt, _jsx(Box, { paddingY: 1, children: _jsx(RadioButtonSelect, { isFocused: !!confirmationRequest, items: [
648
+ { label: 'Yes', value: true },
649
+ { label: 'No', value: false },
650
+ ], onSelect: (value) => {
651
+ confirmationRequest.onConfirm(value);
652
+ } }) })] })) : isThemeDialogOpen ? (_jsxs(Box, { flexDirection: "column", children: [themeError && (_jsx(Box, { marginBottom: 1, children: _jsx(Text, { color: Colors.AccentRed, children: themeError }) })), _jsx(ThemeDialog, { onSelect: handleThemeSelect, onHighlight: handleThemeHighlight, settings: settings, availableTerminalHeight: constrainHeight
653
+ ? terminalHeight - staticExtraHeight
654
+ : undefined, terminalWidth: mainAreaWidth })] })) : isSettingsDialogOpen ? (_jsx(Box, { flexDirection: "column", children: _jsx(SettingsDialog, { settings: settings, onSelect: () => closeSettingsDialog(), onRestartRequest: () => process.exit(0) }) })) : isAuthenticating ? (_jsxs(_Fragment, { children: [_jsx(AuthInProgress, { onTimeout: () => {
655
+ setAuthError('Authentication timed out. Please try again.');
656
+ cancelAuthentication();
657
+ openAuthDialog();
658
+ } }), showErrorDetails && (_jsx(OverflowProvider, { children: _jsxs(Box, { flexDirection: "column", children: [_jsx(DetailedMessagesDisplay, { messages: filteredConsoleMessages, maxHeight: constrainHeight ? debugConsoleMaxHeight : undefined, width: inputWidth }), _jsx(ShowMoreLines, { constrainHeight: constrainHeight })] }) }))] })) : isAuthDialogOpen ? (_jsx(Box, { flexDirection: "column", children: _jsx(AuthDialog, { onSelect: handleAuthSelect, settings: settings, initialErrorMessage: authError }) })) : shouldShowWelcomeBack && projectSummary ? (_jsx(Box, { flexDirection: "column", children: _jsx(WelcomeBackDialog, { projectSummary: projectSummary, onContinue: handleWelcomeBackContinue, onRestart: handleWelcomeBackRestart, onCancel: handleWelcomeBackCancel }) })) : isEditorDialogOpen ? (_jsxs(Box, { flexDirection: "column", children: [editorError && (_jsx(Box, { marginBottom: 1, children: _jsx(Text, { color: Colors.AccentRed, children: editorError }) })), _jsx(EditorSettingsDialog, { onSelect: handleEditorSelect, settings: settings, onExit: exitEditorDialog })] })) : isSearchDialogOpen ? (_jsx(Box, { flexDirection: "column", children: _jsx(SearchEngineConfigDialog, { onSubmit: (result) => {
659
+ setIsSearchDialogOpen(false);
660
+ // Show success message
661
+ addItem({
662
+ type: MessageType.INFO,
663
+ text: `Search engines configured! ${result.braveEnabled ? 'Brave Search' : ''}${result.braveEnabled && result.tavilyEnabled ? ' and ' : ''}${result.tavilyEnabled ? 'Tavily Search' : ''} ${result.braveEnabled || result.tavilyEnabled ? 'enabled' : 'disabled'}.`,
664
+ }, Date.now());
665
+ }, onCancel: () => {
666
+ setIsSearchDialogOpen(false);
667
+ } }) })) : showPrivacyNotice ? (_jsx(PrivacyNotice, { onExit: () => setShowPrivacyNotice(false), config: config })) : (_jsxs(_Fragment, { children: [_jsx(LoadingIndicator, { thought: streamingState === StreamingState.WaitingForConfirmation ||
668
+ config.getAccessibility()?.disableLoadingPhrases
669
+ ? undefined
670
+ : thought, currentLoadingPhrase: config.getAccessibility()?.disableLoadingPhrases
671
+ ? undefined
672
+ : currentLoadingPhrase, elapsedTime: elapsedTime }), messageQueue.length > 0 && (_jsxs(Box, { flexDirection: "column", marginTop: 1, children: [messageQueue
673
+ .slice(0, MAX_DISPLAYED_QUEUED_MESSAGES)
674
+ .map((message, index) => {
675
+ // Ensure multi-line messages are collapsed for the preview.
676
+ // Replace all whitespace (including newlines) with a single space.
677
+ const preview = message.replace(/\s+/g, ' ');
678
+ return (
679
+ // Ensure the Box takes full width so truncation calculates correctly
680
+ _jsx(Box, { paddingLeft: 2, width: "100%", children: _jsx(Text, { dimColor: true, wrap: "truncate", children: preview }) }, index));
681
+ }), messageQueue.length > MAX_DISPLAYED_QUEUED_MESSAGES && (_jsx(Box, { paddingLeft: 2, children: _jsxs(Text, { dimColor: true, children: ["... (+", messageQueue.length -
682
+ MAX_DISPLAYED_QUEUED_MESSAGES, ' ', "more)"] }) }))] })), _jsxs(Box, { marginTop: 1, justifyContent: "space-between", width: "100%", flexDirection: isNarrow ? 'column' : 'row', alignItems: isNarrow ? 'flex-start' : 'center', children: [_jsxs(Box, { children: [process.env['GEMINI_SYSTEM_MD'] && (_jsx(Text, { color: Colors.AccentRed, children: "|\u2310\u25A0_\u25A0| " })), ctrlCPressedOnce ? (_jsx(Text, { color: Colors.AccentYellow, children: "Press Ctrl+C again to exit." })) : ctrlDPressedOnce ? (_jsx(Text, { color: Colors.AccentYellow, children: "Press Ctrl+D again to exit." })) : showEscapePrompt ? (_jsx(Text, { color: Colors.Gray, children: "Press Esc again to clear." })) : (_jsx(ContextSummaryDisplay, { ideContext: ideContextState, geminiMdFileCount: geminiMdFileCount, contextFileNames: contextFileNames, mcpServers: config.getMcpServers(), blockedMcpServers: config.getBlockedMcpServers(), showToolDescriptions: showToolDescriptions }))] }), _jsxs(Box, { paddingTop: isNarrow ? 1 : 0, children: [showAutoAcceptIndicator !== ApprovalMode.DEFAULT &&
683
+ !shellModeActive && (_jsx(AutoAcceptIndicator, { approvalMode: showAutoAcceptIndicator })), shellModeActive && _jsx(ShellModeIndicator, {})] })] }), showErrorDetails && (_jsx(OverflowProvider, { children: _jsxs(Box, { flexDirection: "column", children: [_jsx(DetailedMessagesDisplay, { messages: filteredConsoleMessages, maxHeight: constrainHeight ? debugConsoleMaxHeight : undefined, width: inputWidth }), _jsx(ShowMoreLines, { constrainHeight: constrainHeight })] }) })), isInputActive && (_jsx(InputPrompt, { buffer: buffer, inputWidth: inputWidth, suggestionsWidth: suggestionsWidth, onSubmit: handleFinalSubmit, userMessages: userMessages, onClearScreen: handleClearScreen, config: config, slashCommands: slashCommands, commandContext: commandContext, shellModeActive: shellModeActive, setShellModeActive: setShellModeActive, onEscapePromptChange: handleEscapePromptChange, focus: isFocused, vimHandleInput: vimHandleInput, placeholder: placeholder }))] })), initError && streamingState !== StreamingState.Responding && (_jsx(Box, { borderStyle: "round", borderColor: Colors.AccentRed, paddingX: 1, marginBottom: 1, children: history.find((item) => item.type === 'error' && item.text?.includes(initError))?.text ? (_jsx(Text, { color: Colors.AccentRed, children: history.find((item) => item.type === 'error' && item.text?.includes(initError))?.text })) : (_jsxs(_Fragment, { children: [_jsxs(Text, { color: Colors.AccentRed, children: ["Initialization Error: ", initError] }), _jsxs(Text, { color: Colors.AccentRed, children: [' ', "Please check API key and configuration."] })] })) })), !settings.merged.hideFooter && (_jsx(Footer, { model: currentModel, targetDir: config.getTargetDir(), debugMode: config.getDebugMode(), branchName: branchName, debugMessage: debugMessage, corgiMode: corgiMode, errorCount: errorCount, showErrorDetails: showErrorDetails, showMemoryUsage: config.getDebugMode() ||
684
+ settings.merged.showMemoryUsage ||
685
+ false, promptTokenCount: sessionStats.lastPromptTokenCount, nightly: nightly, vimMode: vimModeEnabled ? vimMode : undefined, isTrustedFolder: isTrustedFolderState, config: config }))] })] }) }));
686
+ };
687
+ //# sourceMappingURL=App.js.map