@tecet/ollm 0.1.3

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 (1359) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +529 -0
  3. package/dist/cli.d.ts +25 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +81173 -0
  6. package/dist/cli.js.map +7 -0
  7. package/dist/commands/__tests__/commandRegistry.test.d.ts +2 -0
  8. package/dist/commands/__tests__/commandRegistry.test.d.ts.map +1 -0
  9. package/dist/commands/__tests__/commandRegistry.test.js +87 -0
  10. package/dist/commands/__tests__/commandRegistry.test.js.map +1 -0
  11. package/dist/commands/__tests__/slashCommandParsing.test.d.ts +10 -0
  12. package/dist/commands/__tests__/slashCommandParsing.test.d.ts.map +1 -0
  13. package/dist/commands/__tests__/slashCommandParsing.test.js +294 -0
  14. package/dist/commands/__tests__/slashCommandParsing.test.js.map +1 -0
  15. package/dist/commands/commandRegistry.d.ts +70 -0
  16. package/dist/commands/commandRegistry.d.ts.map +1 -0
  17. package/dist/commands/commandRegistry.js +378 -0
  18. package/dist/commands/commandRegistry.js.map +1 -0
  19. package/dist/commands/comparisonCommands.d.ts +22 -0
  20. package/dist/commands/comparisonCommands.d.ts.map +1 -0
  21. package/dist/commands/comparisonCommands.js +85 -0
  22. package/dist/commands/comparisonCommands.js.map +1 -0
  23. package/dist/commands/configCommands.d.ts +17 -0
  24. package/dist/commands/configCommands.d.ts.map +1 -0
  25. package/dist/commands/configCommands.js +91 -0
  26. package/dist/commands/configCommands.js.map +1 -0
  27. package/dist/commands/contextCommands.d.ts +19 -0
  28. package/dist/commands/contextCommands.d.ts.map +1 -0
  29. package/dist/commands/contextCommands.js +121 -0
  30. package/dist/commands/contextCommands.js.map +1 -0
  31. package/dist/commands/extensionCommands.d.ts +18 -0
  32. package/dist/commands/extensionCommands.d.ts.map +1 -0
  33. package/dist/commands/extensionCommands.js +341 -0
  34. package/dist/commands/extensionCommands.js.map +1 -0
  35. package/dist/commands/gitCommands.d.ts +20 -0
  36. package/dist/commands/gitCommands.d.ts.map +1 -0
  37. package/dist/commands/gitCommands.js +99 -0
  38. package/dist/commands/gitCommands.js.map +1 -0
  39. package/dist/commands/homeCommand.d.ts +8 -0
  40. package/dist/commands/homeCommand.d.ts.map +1 -0
  41. package/dist/commands/homeCommand.js +18 -0
  42. package/dist/commands/homeCommand.js.map +1 -0
  43. package/dist/commands/hookCommands.d.ts +13 -0
  44. package/dist/commands/hookCommands.d.ts.map +1 -0
  45. package/dist/commands/hookCommands.js +127 -0
  46. package/dist/commands/hookCommands.js.map +1 -0
  47. package/dist/commands/index.d.ts +22 -0
  48. package/dist/commands/index.d.ts.map +1 -0
  49. package/dist/commands/index.js +21 -0
  50. package/dist/commands/index.js.map +1 -0
  51. package/dist/commands/mcpCommands.d.ts +56 -0
  52. package/dist/commands/mcpCommands.d.ts.map +1 -0
  53. package/dist/commands/mcpCommands.js +360 -0
  54. package/dist/commands/mcpCommands.js.map +1 -0
  55. package/dist/commands/mcpHealthCommands.d.ts +17 -0
  56. package/dist/commands/mcpHealthCommands.d.ts.map +1 -0
  57. package/dist/commands/mcpHealthCommands.js +303 -0
  58. package/dist/commands/mcpHealthCommands.js.map +1 -0
  59. package/dist/commands/mcpOAuthCommands.d.ts +16 -0
  60. package/dist/commands/mcpOAuthCommands.d.ts.map +1 -0
  61. package/dist/commands/mcpOAuthCommands.js +244 -0
  62. package/dist/commands/mcpOAuthCommands.js.map +1 -0
  63. package/dist/commands/memoryCommands.d.ts +25 -0
  64. package/dist/commands/memoryCommands.d.ts.map +1 -0
  65. package/dist/commands/memoryCommands.js +202 -0
  66. package/dist/commands/memoryCommands.js.map +1 -0
  67. package/dist/commands/metricsCommands.d.ts +20 -0
  68. package/dist/commands/metricsCommands.d.ts.map +1 -0
  69. package/dist/commands/metricsCommands.js +88 -0
  70. package/dist/commands/metricsCommands.js.map +1 -0
  71. package/dist/commands/modeCommands.d.ts +22 -0
  72. package/dist/commands/modeCommands.d.ts.map +1 -0
  73. package/dist/commands/modeCommands.js +452 -0
  74. package/dist/commands/modeCommands.js.map +1 -0
  75. package/dist/commands/modeShortcuts.d.ts +53 -0
  76. package/dist/commands/modeShortcuts.d.ts.map +1 -0
  77. package/dist/commands/modeShortcuts.js +213 -0
  78. package/dist/commands/modeShortcuts.js.map +1 -0
  79. package/dist/commands/modelCommands.d.ts +44 -0
  80. package/dist/commands/modelCommands.d.ts.map +1 -0
  81. package/dist/commands/modelCommands.js +448 -0
  82. package/dist/commands/modelCommands.js.map +1 -0
  83. package/dist/commands/projectCommands.d.ts +24 -0
  84. package/dist/commands/projectCommands.d.ts.map +1 -0
  85. package/dist/commands/projectCommands.js +175 -0
  86. package/dist/commands/projectCommands.js.map +1 -0
  87. package/dist/commands/providerCommands.d.ts +19 -0
  88. package/dist/commands/providerCommands.d.ts.map +1 -0
  89. package/dist/commands/providerCommands.js +87 -0
  90. package/dist/commands/providerCommands.js.map +1 -0
  91. package/dist/commands/reasoningCommands.d.ts +20 -0
  92. package/dist/commands/reasoningCommands.d.ts.map +1 -0
  93. package/dist/commands/reasoningCommands.js +86 -0
  94. package/dist/commands/reasoningCommands.js.map +1 -0
  95. package/dist/commands/reviewCommands.d.ts +20 -0
  96. package/dist/commands/reviewCommands.d.ts.map +1 -0
  97. package/dist/commands/reviewCommands.js +89 -0
  98. package/dist/commands/reviewCommands.js.map +1 -0
  99. package/dist/commands/sessionCommands.d.ts +41 -0
  100. package/dist/commands/sessionCommands.d.ts.map +1 -0
  101. package/dist/commands/sessionCommands.js +242 -0
  102. package/dist/commands/sessionCommands.js.map +1 -0
  103. package/dist/commands/snapshotCommands.d.ts +20 -0
  104. package/dist/commands/snapshotCommands.d.ts.map +1 -0
  105. package/dist/commands/snapshotCommands.js +297 -0
  106. package/dist/commands/snapshotCommands.js.map +1 -0
  107. package/dist/commands/templateCommands.d.ts +24 -0
  108. package/dist/commands/templateCommands.d.ts.map +1 -0
  109. package/dist/commands/templateCommands.js +186 -0
  110. package/dist/commands/templateCommands.js.map +1 -0
  111. package/dist/commands/themeCommands.d.ts +29 -0
  112. package/dist/commands/themeCommands.d.ts.map +1 -0
  113. package/dist/commands/themeCommands.js +179 -0
  114. package/dist/commands/themeCommands.js.map +1 -0
  115. package/dist/commands/types.d.ts +50 -0
  116. package/dist/commands/types.d.ts.map +1 -0
  117. package/dist/commands/types.js +2 -0
  118. package/dist/commands/types.js.map +1 -0
  119. package/dist/commands/utilityCommands.d.ts +29 -0
  120. package/dist/commands/utilityCommands.d.ts.map +1 -0
  121. package/dist/commands/utilityCommands.js +495 -0
  122. package/dist/commands/utilityCommands.js.map +1 -0
  123. package/dist/commands/workflowCommands.d.ts +56 -0
  124. package/dist/commands/workflowCommands.d.ts.map +1 -0
  125. package/dist/commands/workflowCommands.js +484 -0
  126. package/dist/commands/workflowCommands.js.map +1 -0
  127. package/dist/config/LLM_profiles.json +1908 -0
  128. package/dist/config/configLoader.d.ts +30 -0
  129. package/dist/config/configLoader.d.ts.map +1 -0
  130. package/dist/config/configLoader.js +380 -0
  131. package/dist/config/configLoader.js.map +1 -0
  132. package/dist/config/defaults.d.ts +25 -0
  133. package/dist/config/defaults.d.ts.map +1 -0
  134. package/dist/config/defaults.js +137 -0
  135. package/dist/config/defaults.js.map +1 -0
  136. package/dist/config/keybinds.d.ts +113 -0
  137. package/dist/config/keybinds.d.ts.map +1 -0
  138. package/dist/config/keybinds.js +113 -0
  139. package/dist/config/keybinds.js.map +1 -0
  140. package/dist/config/profiles.d.ts +44 -0
  141. package/dist/config/profiles.d.ts.map +1 -0
  142. package/dist/config/profiles.js +236 -0
  143. package/dist/config/profiles.js.map +1 -0
  144. package/dist/config/schema.d.ts +254 -0
  145. package/dist/config/schema.d.ts.map +1 -0
  146. package/dist/config/schema.js +160 -0
  147. package/dist/config/schema.js.map +1 -0
  148. package/dist/config/settingsService.d.ts +251 -0
  149. package/dist/config/settingsService.d.ts.map +1 -0
  150. package/dist/config/settingsService.js +493 -0
  151. package/dist/config/settingsService.js.map +1 -0
  152. package/dist/config/styles.d.ts +28 -0
  153. package/dist/config/styles.d.ts.map +1 -0
  154. package/dist/config/styles.js +33 -0
  155. package/dist/config/styles.js.map +1 -0
  156. package/dist/config/systemSettings.json +17 -0
  157. package/dist/config/themes.d.ts +14 -0
  158. package/dist/config/themes.d.ts.map +1 -0
  159. package/dist/config/themes.js +248 -0
  160. package/dist/config/themes.js.map +1 -0
  161. package/dist/config/toolsConfig.d.ts +53 -0
  162. package/dist/config/toolsConfig.d.ts.map +1 -0
  163. package/dist/config/toolsConfig.js +171 -0
  164. package/dist/config/toolsConfig.js.map +1 -0
  165. package/dist/config/types.d.ts +306 -0
  166. package/dist/config/types.d.ts.map +1 -0
  167. package/dist/config/types.js +6 -0
  168. package/dist/config/types.js.map +1 -0
  169. package/dist/features/chat/ChatProvider.d.ts +24 -0
  170. package/dist/features/chat/ChatProvider.d.ts.map +1 -0
  171. package/dist/features/chat/ChatProvider.js +166 -0
  172. package/dist/features/chat/ChatProvider.js.map +1 -0
  173. package/dist/features/chat/hooks/useAgentLoop.d.ts +27 -0
  174. package/dist/features/chat/hooks/useAgentLoop.d.ts.map +1 -0
  175. package/dist/features/chat/hooks/useAgentLoop.js +253 -0
  176. package/dist/features/chat/hooks/useAgentLoop.js.map +1 -0
  177. package/dist/features/chat/hooks/useChatNetwork.d.ts +39 -0
  178. package/dist/features/chat/hooks/useChatNetwork.d.ts.map +1 -0
  179. package/dist/features/chat/hooks/useChatNetwork.js +276 -0
  180. package/dist/features/chat/hooks/useChatNetwork.js.map +1 -0
  181. package/dist/features/chat/hooks/useChatState.d.ts +32 -0
  182. package/dist/features/chat/hooks/useChatState.d.ts.map +1 -0
  183. package/dist/features/chat/hooks/useChatState.js +77 -0
  184. package/dist/features/chat/hooks/useChatState.js.map +1 -0
  185. package/dist/features/chat/hooks/useContextEvents.d.ts +22 -0
  186. package/dist/features/chat/hooks/useContextEvents.d.ts.map +1 -0
  187. package/dist/features/chat/hooks/useContextEvents.js +160 -0
  188. package/dist/features/chat/hooks/useContextEvents.js.map +1 -0
  189. package/dist/features/chat/hooks/useMenuSystem.d.ts +24 -0
  190. package/dist/features/chat/hooks/useMenuSystem.d.ts.map +1 -0
  191. package/dist/features/chat/hooks/useMenuSystem.js +71 -0
  192. package/dist/features/chat/hooks/useMenuSystem.js.map +1 -0
  193. package/dist/features/chat/hooks/useScrollManager.d.ts +23 -0
  194. package/dist/features/chat/hooks/useScrollManager.d.ts.map +1 -0
  195. package/dist/features/chat/hooks/useScrollManager.js +38 -0
  196. package/dist/features/chat/hooks/useScrollManager.js.map +1 -0
  197. package/dist/features/chat/hooks/useSessionRecording.d.ts +18 -0
  198. package/dist/features/chat/hooks/useSessionRecording.d.ts.map +1 -0
  199. package/dist/features/chat/hooks/useSessionRecording.js +48 -0
  200. package/dist/features/chat/hooks/useSessionRecording.js.map +1 -0
  201. package/dist/features/chat/index.d.ts +12 -0
  202. package/dist/features/chat/index.d.ts.map +1 -0
  203. package/dist/features/chat/index.js +15 -0
  204. package/dist/features/chat/index.js.map +1 -0
  205. package/dist/features/chat/types.d.ts +138 -0
  206. package/dist/features/chat/types.d.ts.map +1 -0
  207. package/dist/features/chat/types.js +5 -0
  208. package/dist/features/chat/types.js.map +1 -0
  209. package/dist/features/chat/utils/promptUtils.d.ts +21 -0
  210. package/dist/features/chat/utils/promptUtils.d.ts.map +1 -0
  211. package/dist/features/chat/utils/promptUtils.js +103 -0
  212. package/dist/features/chat/utils/promptUtils.js.map +1 -0
  213. package/dist/features/context/ActiveContextState.d.ts +32 -0
  214. package/dist/features/context/ActiveContextState.d.ts.map +1 -0
  215. package/dist/features/context/ActiveContextState.js +284 -0
  216. package/dist/features/context/ActiveContextState.js.map +1 -0
  217. package/dist/features/context/ChatContext.d.ts +8 -0
  218. package/dist/features/context/ChatContext.d.ts.map +1 -0
  219. package/dist/features/context/ChatContext.js +536 -0
  220. package/dist/features/context/ChatContext.js.map +1 -0
  221. package/dist/features/context/ContextManagerContext.d.ts +132 -0
  222. package/dist/features/context/ContextManagerContext.d.ts.map +1 -0
  223. package/dist/features/context/ContextManagerContext.js +771 -0
  224. package/dist/features/context/ContextManagerContext.js.map +1 -0
  225. package/dist/features/context/ContextStatus.d.ts +43 -0
  226. package/dist/features/context/ContextStatus.d.ts.map +1 -0
  227. package/dist/features/context/ContextStatus.js +44 -0
  228. package/dist/features/context/ContextStatus.js.map +1 -0
  229. package/dist/features/context/FocusContext.d.ts +267 -0
  230. package/dist/features/context/FocusContext.d.ts.map +1 -0
  231. package/dist/features/context/FocusContext.js +324 -0
  232. package/dist/features/context/FocusContext.js.map +1 -0
  233. package/dist/features/context/GPUContext.d.ts +25 -0
  234. package/dist/features/context/GPUContext.d.ts.map +1 -0
  235. package/dist/features/context/GPUContext.js +64 -0
  236. package/dist/features/context/GPUContext.js.map +1 -0
  237. package/dist/features/context/HooksContext.d.ts +42 -0
  238. package/dist/features/context/HooksContext.d.ts.map +1 -0
  239. package/dist/features/context/HooksContext.js +310 -0
  240. package/dist/features/context/HooksContext.js.map +1 -0
  241. package/dist/features/context/KeybindsContext.d.ts +20 -0
  242. package/dist/features/context/KeybindsContext.d.ts.map +1 -0
  243. package/dist/features/context/KeybindsContext.js +80 -0
  244. package/dist/features/context/KeybindsContext.js.map +1 -0
  245. package/dist/features/context/ModelContext.d.ts +56 -0
  246. package/dist/features/context/ModelContext.d.ts.map +1 -0
  247. package/dist/features/context/ModelContext.js +290 -0
  248. package/dist/features/context/ModelContext.js.map +1 -0
  249. package/dist/features/context/ReviewContext.d.ts +50 -0
  250. package/dist/features/context/ReviewContext.d.ts.map +1 -0
  251. package/dist/features/context/ReviewContext.js +108 -0
  252. package/dist/features/context/ReviewContext.js.map +1 -0
  253. package/dist/features/context/ServiceContext.d.ts +46 -0
  254. package/dist/features/context/ServiceContext.d.ts.map +1 -0
  255. package/dist/features/context/ServiceContext.js +162 -0
  256. package/dist/features/context/ServiceContext.js.map +1 -0
  257. package/dist/features/context/SessionManager.d.ts +66 -0
  258. package/dist/features/context/SessionManager.d.ts.map +1 -0
  259. package/dist/features/context/SessionManager.js +117 -0
  260. package/dist/features/context/SessionManager.js.map +1 -0
  261. package/dist/features/context/SettingsContext.d.ts +15 -0
  262. package/dist/features/context/SettingsContext.d.ts.map +1 -0
  263. package/dist/features/context/SettingsContext.js +75 -0
  264. package/dist/features/context/SettingsContext.js.map +1 -0
  265. package/dist/features/context/SystemMessages.d.ts +27 -0
  266. package/dist/features/context/SystemMessages.d.ts.map +1 -0
  267. package/dist/features/context/SystemMessages.js +130 -0
  268. package/dist/features/context/SystemMessages.js.map +1 -0
  269. package/dist/features/context/ToolSupportMessages.d.ts +72 -0
  270. package/dist/features/context/ToolSupportMessages.d.ts.map +1 -0
  271. package/dist/features/context/ToolSupportMessages.js +116 -0
  272. package/dist/features/context/ToolSupportMessages.js.map +1 -0
  273. package/dist/features/context/UIContext.d.ts +43 -0
  274. package/dist/features/context/UIContext.d.ts.map +1 -0
  275. package/dist/features/context/UIContext.js +83 -0
  276. package/dist/features/context/UIContext.js.map +1 -0
  277. package/dist/features/context/UserPromptContext.d.ts +66 -0
  278. package/dist/features/context/UserPromptContext.d.ts.map +1 -0
  279. package/dist/features/context/UserPromptContext.js +176 -0
  280. package/dist/features/context/UserPromptContext.js.map +1 -0
  281. package/dist/features/context/__tests__/ModelContext.test.d.ts +5 -0
  282. package/dist/features/context/__tests__/ModelContext.test.d.ts.map +1 -0
  283. package/dist/features/context/__tests__/ModelContext.test.js +579 -0
  284. package/dist/features/context/__tests__/ModelContext.test.js.map +1 -0
  285. package/dist/features/context/contextSizing.d.ts +48 -0
  286. package/dist/features/context/contextSizing.d.ts.map +1 -0
  287. package/dist/features/context/contextSizing.js +87 -0
  288. package/dist/features/context/contextSizing.js.map +1 -0
  289. package/dist/features/context/gpuHintStore.d.ts +7 -0
  290. package/dist/features/context/gpuHintStore.d.ts.map +1 -0
  291. package/dist/features/context/gpuHintStore.js +15 -0
  292. package/dist/features/context/gpuHintStore.js.map +1 -0
  293. package/dist/features/context/gpuHints.d.ts +3 -0
  294. package/dist/features/context/gpuHints.d.ts.map +1 -0
  295. package/dist/features/context/gpuHints.js +2 -0
  296. package/dist/features/context/gpuHints.js.map +1 -0
  297. package/dist/features/context/handlers/agentLoopHandler.d.ts +58 -0
  298. package/dist/features/context/handlers/agentLoopHandler.d.ts.map +1 -0
  299. package/dist/features/context/handlers/agentLoopHandler.js +505 -0
  300. package/dist/features/context/handlers/agentLoopHandler.js.map +1 -0
  301. package/dist/features/context/handlers/commandHandler.d.ts +52 -0
  302. package/dist/features/context/handlers/commandHandler.d.ts.map +1 -0
  303. package/dist/features/context/handlers/commandHandler.js +107 -0
  304. package/dist/features/context/handlers/commandHandler.js.map +1 -0
  305. package/dist/features/context/handlers/contextEventHandlers.d.ts +71 -0
  306. package/dist/features/context/handlers/contextEventHandlers.d.ts.map +1 -0
  307. package/dist/features/context/handlers/contextEventHandlers.js +216 -0
  308. package/dist/features/context/handlers/contextEventHandlers.js.map +1 -0
  309. package/dist/features/context/hooks/useModelWarmup.d.ts +24 -0
  310. package/dist/features/context/hooks/useModelWarmup.d.ts.map +1 -0
  311. package/dist/features/context/hooks/useModelWarmup.js +181 -0
  312. package/dist/features/context/hooks/useModelWarmup.js.map +1 -0
  313. package/dist/features/context/hooks/useToolSupport.d.ts +19 -0
  314. package/dist/features/context/hooks/useToolSupport.d.ts.map +1 -0
  315. package/dist/features/context/hooks/useToolSupport.js +290 -0
  316. package/dist/features/context/hooks/useToolSupport.js.map +1 -0
  317. package/dist/features/context/types/chatTypes.d.ts +150 -0
  318. package/dist/features/context/types/chatTypes.d.ts.map +1 -0
  319. package/dist/features/context/types/chatTypes.js +8 -0
  320. package/dist/features/context/types/chatTypes.js.map +1 -0
  321. package/dist/features/context/useFocusedFilesInjection.d.ts +17 -0
  322. package/dist/features/context/useFocusedFilesInjection.d.ts.map +1 -0
  323. package/dist/features/context/useFocusedFilesInjection.js +37 -0
  324. package/dist/features/context/useFocusedFilesInjection.js.map +1 -0
  325. package/dist/features/context/utils/promptUtils.d.ts +28 -0
  326. package/dist/features/context/utils/promptUtils.d.ts.map +1 -0
  327. package/dist/features/context/utils/promptUtils.js +105 -0
  328. package/dist/features/context/utils/promptUtils.js.map +1 -0
  329. package/dist/features/context/utils/systemPromptBuilder.d.ts +39 -0
  330. package/dist/features/context/utils/systemPromptBuilder.d.ts.map +1 -0
  331. package/dist/features/context/utils/systemPromptBuilder.js +66 -0
  332. package/dist/features/context/utils/systemPromptBuilder.js.map +1 -0
  333. package/dist/features/hooks/adapter.d.ts +73 -0
  334. package/dist/features/hooks/adapter.d.ts.map +1 -0
  335. package/dist/features/hooks/adapter.js +259 -0
  336. package/dist/features/hooks/adapter.js.map +1 -0
  337. package/dist/features/hooks/index.d.ts +9 -0
  338. package/dist/features/hooks/index.d.ts.map +1 -0
  339. package/dist/features/hooks/index.js +9 -0
  340. package/dist/features/hooks/index.js.map +1 -0
  341. package/dist/features/hooks/types.d.ts +128 -0
  342. package/dist/features/hooks/types.d.ts.map +1 -0
  343. package/dist/features/hooks/types.js +9 -0
  344. package/dist/features/hooks/types.js.map +1 -0
  345. package/dist/features/profiles/ProfileManager.d.ts +56 -0
  346. package/dist/features/profiles/ProfileManager.d.ts.map +1 -0
  347. package/dist/features/profiles/ProfileManager.js +429 -0
  348. package/dist/features/profiles/ProfileManager.js.map +1 -0
  349. package/dist/features/profiles/__tests__/ProfileManager.integration.test.d.ts +12 -0
  350. package/dist/features/profiles/__tests__/ProfileManager.integration.test.d.ts.map +1 -0
  351. package/dist/features/profiles/__tests__/ProfileManager.integration.test.js +156 -0
  352. package/dist/features/profiles/__tests__/ProfileManager.integration.test.js.map +1 -0
  353. package/dist/features/profiles/modelUtils.d.ts +12 -0
  354. package/dist/features/profiles/modelUtils.d.ts.map +1 -0
  355. package/dist/features/profiles/modelUtils.js +20 -0
  356. package/dist/features/profiles/modelUtils.js.map +1 -0
  357. package/dist/features/provider/providerFactory.d.ts +19 -0
  358. package/dist/features/provider/providerFactory.d.ts.map +1 -0
  359. package/dist/features/provider/providerFactory.js +40 -0
  360. package/dist/features/provider/providerFactory.js.map +1 -0
  361. package/dist/lama_sprite/left/llama-l1.png +0 -0
  362. package/dist/lama_sprite/left/llama-l2.png +0 -0
  363. package/dist/lama_sprite/left/llama-l3.png +0 -0
  364. package/dist/lama_sprite/left/llama-l4.png +0 -0
  365. package/dist/lama_sprite/left/llama-l5.png +0 -0
  366. package/dist/lama_sprite/left/llama-l6.png +0 -0
  367. package/dist/lama_sprite/right/llama-r1.png +0 -0
  368. package/dist/lama_sprite/right/llama-r2.png +0 -0
  369. package/dist/lama_sprite/right/llama-r3.png +0 -0
  370. package/dist/lama_sprite/right/llama-r4.png +0 -0
  371. package/dist/lama_sprite/right/llama-r5.png +0 -0
  372. package/dist/lama_sprite/right/llama-r6.png +0 -0
  373. package/dist/nonInteractive.d.ts +87 -0
  374. package/dist/nonInteractive.d.ts.map +1 -0
  375. package/dist/nonInteractive.js +313 -0
  376. package/dist/nonInteractive.js.map +1 -0
  377. package/dist/services/KeybindsService.d.ts +13 -0
  378. package/dist/services/KeybindsService.d.ts.map +1 -0
  379. package/dist/services/KeybindsService.js +75 -0
  380. package/dist/services/KeybindsService.js.map +1 -0
  381. package/dist/services/__tests__/mcpConfigService.test.d.ts +5 -0
  382. package/dist/services/__tests__/mcpConfigService.test.d.ts.map +1 -0
  383. package/dist/services/__tests__/mcpConfigService.test.js +487 -0
  384. package/dist/services/__tests__/mcpConfigService.test.js.map +1 -0
  385. package/dist/services/__tests__/mcpMarketplace.integration.test.d.ts +8 -0
  386. package/dist/services/__tests__/mcpMarketplace.integration.test.d.ts.map +1 -0
  387. package/dist/services/__tests__/mcpMarketplace.integration.test.js +155 -0
  388. package/dist/services/__tests__/mcpMarketplace.integration.test.js.map +1 -0
  389. package/dist/services/__tests__/profileCompiler.test.d.ts +10 -0
  390. package/dist/services/__tests__/profileCompiler.test.d.ts.map +1 -0
  391. package/dist/services/__tests__/profileCompiler.test.js +357 -0
  392. package/dist/services/__tests__/profileCompiler.test.js.map +1 -0
  393. package/dist/services/documentService.d.ts +40 -0
  394. package/dist/services/documentService.d.ts.map +1 -0
  395. package/dist/services/documentService.js +202 -0
  396. package/dist/services/documentService.js.map +1 -0
  397. package/dist/services/hookFileService.d.ts +74 -0
  398. package/dist/services/hookFileService.d.ts.map +1 -0
  399. package/dist/services/hookFileService.js +311 -0
  400. package/dist/services/hookFileService.js.map +1 -0
  401. package/dist/services/hookLoader.d.ts +25 -0
  402. package/dist/services/hookLoader.d.ts.map +1 -0
  403. package/dist/services/hookLoader.js +87 -0
  404. package/dist/services/hookLoader.js.map +1 -0
  405. package/dist/services/mcpCleanup.d.ts +55 -0
  406. package/dist/services/mcpCleanup.d.ts.map +1 -0
  407. package/dist/services/mcpCleanup.js +196 -0
  408. package/dist/services/mcpCleanup.js.map +1 -0
  409. package/dist/services/mcpConfigBackup.d.ts +81 -0
  410. package/dist/services/mcpConfigBackup.d.ts.map +1 -0
  411. package/dist/services/mcpConfigBackup.js +406 -0
  412. package/dist/services/mcpConfigBackup.js.map +1 -0
  413. package/dist/services/mcpConfigService.d.ts +133 -0
  414. package/dist/services/mcpConfigService.d.ts.map +1 -0
  415. package/dist/services/mcpConfigService.js +349 -0
  416. package/dist/services/mcpConfigService.js.map +1 -0
  417. package/dist/services/mcpMarketplace.d.ts +130 -0
  418. package/dist/services/mcpMarketplace.d.ts.map +1 -0
  419. package/dist/services/mcpMarketplace.js +693 -0
  420. package/dist/services/mcpMarketplace.js.map +1 -0
  421. package/dist/services/profileCompiler.d.ts +79 -0
  422. package/dist/services/profileCompiler.d.ts.map +1 -0
  423. package/dist/services/profileCompiler.js +280 -0
  424. package/dist/services/profileCompiler.js.map +1 -0
  425. package/dist/templates/assistant/tier1.txt +18 -0
  426. package/dist/templates/assistant/tier2.txt +27 -0
  427. package/dist/templates/assistant/tier3.txt +49 -0
  428. package/dist/templates/assistant/tier4.txt +57 -0
  429. package/dist/templates/assistant/tier5.txt +51 -0
  430. package/dist/templates/debugger/tier1.txt +17 -0
  431. package/dist/templates/debugger/tier2.txt +28 -0
  432. package/dist/templates/debugger/tier3.txt +56 -0
  433. package/dist/templates/debugger/tier4.txt +58 -0
  434. package/dist/templates/debugger/tier5.txt +62 -0
  435. package/dist/templates/developer/tier1.txt +18 -0
  436. package/dist/templates/developer/tier2.txt +34 -0
  437. package/dist/templates/developer/tier3.txt +40 -0
  438. package/dist/templates/developer/tier4.txt +99 -0
  439. package/dist/templates/developer/tier5.txt +100 -0
  440. package/dist/templates/modes/index.ts +52 -0
  441. package/dist/templates/planning/tier1.txt +18 -0
  442. package/dist/templates/planning/tier2.txt +27 -0
  443. package/dist/templates/planning/tier3.txt +49 -0
  444. package/dist/templates/planning/tier4.txt +140 -0
  445. package/dist/templates/planning/tier5.txt +140 -0
  446. package/dist/templates/stateSnapshot.ts +38 -0
  447. package/dist/templates/system/.gitkeep +2 -0
  448. package/dist/templates/system/CoreMandates.txt +8 -0
  449. package/dist/templates/system/SanityChecks.txt +5 -0
  450. package/dist/templates/system/ToolDescriptions.txt +46 -0
  451. package/dist/templates/system/skills/.gitkeep +2 -0
  452. package/dist/templates/system/skills/SkillsAssistant.txt +27 -0
  453. package/dist/templates/system/skills/SkillsDebugger.txt +34 -0
  454. package/dist/templates/system/skills/SkillsDeveloper.txt +27 -0
  455. package/dist/templates/system/skills/SkillsPlanning.txt +33 -0
  456. package/dist/templates/system/skills/SkillsUser.txt +23 -0
  457. package/dist/templates/user/tier1.txt +18 -0
  458. package/dist/templates/user/tier2.txt +27 -0
  459. package/dist/templates/user/tier3.txt +49 -0
  460. package/dist/templates/user/tier4.txt +57 -0
  461. package/dist/templates/user/tier5.txt +51 -0
  462. package/dist/ui/App.d.ts +20 -0
  463. package/dist/ui/App.d.ts.map +1 -0
  464. package/dist/ui/App.js +355 -0
  465. package/dist/ui/App.js.map +1 -0
  466. package/dist/ui/components/AllCallbacksBridge.d.ts +31 -0
  467. package/dist/ui/components/AllCallbacksBridge.d.ts.map +1 -0
  468. package/dist/ui/components/AllCallbacksBridge.js +75 -0
  469. package/dist/ui/components/AllCallbacksBridge.js.map +1 -0
  470. package/dist/ui/components/ErrorBoundary.d.ts +38 -0
  471. package/dist/ui/components/ErrorBoundary.d.ts.map +1 -0
  472. package/dist/ui/components/ErrorBoundary.js +70 -0
  473. package/dist/ui/components/ErrorBoundary.js.map +1 -0
  474. package/dist/ui/components/FullScreen.d.ts +24 -0
  475. package/dist/ui/components/FullScreen.d.ts.map +1 -0
  476. package/dist/ui/components/FullScreen.js +70 -0
  477. package/dist/ui/components/FullScreen.js.map +1 -0
  478. package/dist/ui/components/HybridModeDisplay.d.ts +36 -0
  479. package/dist/ui/components/HybridModeDisplay.d.ts.map +1 -0
  480. package/dist/ui/components/HybridModeDisplay.js +30 -0
  481. package/dist/ui/components/HybridModeDisplay.js.map +1 -0
  482. package/dist/ui/components/InputRouter.d.ts +16 -0
  483. package/dist/ui/components/InputRouter.d.ts.map +1 -0
  484. package/dist/ui/components/InputRouter.js +67 -0
  485. package/dist/ui/components/InputRouter.js.map +1 -0
  486. package/dist/ui/components/InputRoutingIndicator.d.ts +10 -0
  487. package/dist/ui/components/InputRoutingIndicator.d.ts.map +1 -0
  488. package/dist/ui/components/InputRoutingIndicator.js +13 -0
  489. package/dist/ui/components/InputRoutingIndicator.js.map +1 -0
  490. package/dist/ui/components/RightPanelLLMChat.d.ts +7 -0
  491. package/dist/ui/components/RightPanelLLMChat.d.ts.map +1 -0
  492. package/dist/ui/components/RightPanelLLMChat.js +15 -0
  493. package/dist/ui/components/RightPanelLLMChat.js.map +1 -0
  494. package/dist/ui/components/Terminal.d.ts +12 -0
  495. package/dist/ui/components/Terminal.d.ts.map +1 -0
  496. package/dist/ui/components/Terminal.js +90 -0
  497. package/dist/ui/components/Terminal.js.map +1 -0
  498. package/dist/ui/components/Terminal2.d.ts +10 -0
  499. package/dist/ui/components/Terminal2.d.ts.map +1 -0
  500. package/dist/ui/components/Terminal2.js +67 -0
  501. package/dist/ui/components/Terminal2.js.map +1 -0
  502. package/dist/ui/components/UICallbacksBridge.d.ts +25 -0
  503. package/dist/ui/components/UICallbacksBridge.d.ts.map +1 -0
  504. package/dist/ui/components/UICallbacksBridge.js +68 -0
  505. package/dist/ui/components/UICallbacksBridge.js.map +1 -0
  506. package/dist/ui/components/WindowSwitcher.d.ts +35 -0
  507. package/dist/ui/components/WindowSwitcher.d.ts.map +1 -0
  508. package/dist/ui/components/WindowSwitcher.js +20 -0
  509. package/dist/ui/components/WindowSwitcher.js.map +1 -0
  510. package/dist/ui/components/__tests__/testUtils.d.ts +69 -0
  511. package/dist/ui/components/__tests__/testUtils.d.ts.map +1 -0
  512. package/dist/ui/components/__tests__/testUtils.js +76 -0
  513. package/dist/ui/components/__tests__/testUtils.js.map +1 -0
  514. package/dist/ui/components/animations/lama/LlamaAnimation.d.ts +15 -0
  515. package/dist/ui/components/animations/lama/LlamaAnimation.d.ts.map +1 -0
  516. package/dist/ui/components/animations/lama/LlamaAnimation.js +375 -0
  517. package/dist/ui/components/animations/lama/LlamaAnimation.js.map +1 -0
  518. package/dist/ui/components/chat/ChatHistory.d.ts +57 -0
  519. package/dist/ui/components/chat/ChatHistory.d.ts.map +1 -0
  520. package/dist/ui/components/chat/ChatHistory.js +354 -0
  521. package/dist/ui/components/chat/ChatHistory.js.map +1 -0
  522. package/dist/ui/components/chat/Message.d.ts +20 -0
  523. package/dist/ui/components/chat/Message.d.ts.map +1 -0
  524. package/dist/ui/components/chat/Message.js +30 -0
  525. package/dist/ui/components/chat/Message.js.map +1 -0
  526. package/dist/ui/components/chat/MetricsDisplay.d.ts +36 -0
  527. package/dist/ui/components/chat/MetricsDisplay.d.ts.map +1 -0
  528. package/dist/ui/components/chat/MetricsDisplay.js +36 -0
  529. package/dist/ui/components/chat/MetricsDisplay.js.map +1 -0
  530. package/dist/ui/components/chat/ModeTransitionIndicator.d.ts +23 -0
  531. package/dist/ui/components/chat/ModeTransitionIndicator.d.ts.map +1 -0
  532. package/dist/ui/components/chat/ModeTransitionIndicator.js +57 -0
  533. package/dist/ui/components/chat/ModeTransitionIndicator.js.map +1 -0
  534. package/dist/ui/components/chat/ReasoningBox.d.ts +39 -0
  535. package/dist/ui/components/chat/ReasoningBox.d.ts.map +1 -0
  536. package/dist/ui/components/chat/ReasoningBox.js +106 -0
  537. package/dist/ui/components/chat/ReasoningBox.js.map +1 -0
  538. package/dist/ui/components/chat/StreamingIndicator.d.ts +17 -0
  539. package/dist/ui/components/chat/StreamingIndicator.d.ts.map +1 -0
  540. package/dist/ui/components/chat/StreamingIndicator.js +28 -0
  541. package/dist/ui/components/chat/StreamingIndicator.js.map +1 -0
  542. package/dist/ui/components/chat/ToolCall.d.ts +25 -0
  543. package/dist/ui/components/chat/ToolCall.d.ts.map +1 -0
  544. package/dist/ui/components/chat/ToolCall.js +26 -0
  545. package/dist/ui/components/chat/ToolCall.js.map +1 -0
  546. package/dist/ui/components/chat/index.d.ts +15 -0
  547. package/dist/ui/components/chat/index.d.ts.map +1 -0
  548. package/dist/ui/components/chat/index.js +8 -0
  549. package/dist/ui/components/chat/index.js.map +1 -0
  550. package/dist/ui/components/code-editor/EditorMockup.d.ts +20 -0
  551. package/dist/ui/components/code-editor/EditorMockup.d.ts.map +1 -0
  552. package/dist/ui/components/code-editor/EditorMockup.js +346 -0
  553. package/dist/ui/components/code-editor/EditorMockup.js.map +1 -0
  554. package/dist/ui/components/code-editor/index.d.ts +7 -0
  555. package/dist/ui/components/code-editor/index.d.ts.map +1 -0
  556. package/dist/ui/components/code-editor/index.js +7 -0
  557. package/dist/ui/components/code-editor/index.js.map +1 -0
  558. package/dist/ui/components/comparison/ComparisonView.d.ts +32 -0
  559. package/dist/ui/components/comparison/ComparisonView.d.ts.map +1 -0
  560. package/dist/ui/components/comparison/ComparisonView.js +27 -0
  561. package/dist/ui/components/comparison/ComparisonView.js.map +1 -0
  562. package/dist/ui/components/comparison/index.d.ts +3 -0
  563. package/dist/ui/components/comparison/index.d.ts.map +1 -0
  564. package/dist/ui/components/comparison/index.js +2 -0
  565. package/dist/ui/components/comparison/index.js.map +1 -0
  566. package/dist/ui/components/context/CompressionProgress.d.ts +38 -0
  567. package/dist/ui/components/context/CompressionProgress.d.ts.map +1 -0
  568. package/dist/ui/components/context/CompressionProgress.js +85 -0
  569. package/dist/ui/components/context/CompressionProgress.js.map +1 -0
  570. package/dist/ui/components/context/ContextMenu.d.ts +40 -0
  571. package/dist/ui/components/context/ContextMenu.d.ts.map +1 -0
  572. package/dist/ui/components/context/ContextMenu.js +420 -0
  573. package/dist/ui/components/context/ContextMenu.js.map +1 -0
  574. package/dist/ui/components/context/__tests__/CompressionProgress.example.d.ts +54 -0
  575. package/dist/ui/components/context/__tests__/CompressionProgress.example.d.ts.map +1 -0
  576. package/dist/ui/components/context/__tests__/CompressionProgress.example.js +28 -0
  577. package/dist/ui/components/context/__tests__/CompressionProgress.example.js.map +1 -0
  578. package/dist/ui/components/context/__tests__/CompressionProgress.test.d.ts +8 -0
  579. package/dist/ui/components/context/__tests__/CompressionProgress.test.d.ts.map +1 -0
  580. package/dist/ui/components/context/__tests__/CompressionProgress.test.js +201 -0
  581. package/dist/ui/components/context/__tests__/CompressionProgress.test.js.map +1 -0
  582. package/dist/ui/components/context/index.d.ts +9 -0
  583. package/dist/ui/components/context/index.d.ts.map +1 -0
  584. package/dist/ui/components/context/index.js +8 -0
  585. package/dist/ui/components/context/index.js.map +1 -0
  586. package/dist/ui/components/dialogs/APIKeyInputDialog.d.ts +20 -0
  587. package/dist/ui/components/dialogs/APIKeyInputDialog.d.ts.map +1 -0
  588. package/dist/ui/components/dialogs/APIKeyInputDialog.js +169 -0
  589. package/dist/ui/components/dialogs/APIKeyInputDialog.js.map +1 -0
  590. package/dist/ui/components/dialogs/AddHookDialog.d.ts +29 -0
  591. package/dist/ui/components/dialogs/AddHookDialog.d.ts.map +1 -0
  592. package/dist/ui/components/dialogs/AddHookDialog.js +30 -0
  593. package/dist/ui/components/dialogs/AddHookDialog.js.map +1 -0
  594. package/dist/ui/components/dialogs/ConfirmationDialog.d.ts +58 -0
  595. package/dist/ui/components/dialogs/ConfirmationDialog.d.ts.map +1 -0
  596. package/dist/ui/components/dialogs/ConfirmationDialog.js +102 -0
  597. package/dist/ui/components/dialogs/ConfirmationDialog.js.map +1 -0
  598. package/dist/ui/components/dialogs/DeleteConfirmationDialog.d.ts +23 -0
  599. package/dist/ui/components/dialogs/DeleteConfirmationDialog.d.ts.map +1 -0
  600. package/dist/ui/components/dialogs/DeleteConfirmationDialog.js +39 -0
  601. package/dist/ui/components/dialogs/DeleteConfirmationDialog.js.map +1 -0
  602. package/dist/ui/components/dialogs/Dialog.d.ts +48 -0
  603. package/dist/ui/components/dialogs/Dialog.d.ts.map +1 -0
  604. package/dist/ui/components/dialogs/Dialog.js +48 -0
  605. package/dist/ui/components/dialogs/Dialog.js.map +1 -0
  606. package/dist/ui/components/dialogs/DialogErrorBoundary.d.ts +17 -0
  607. package/dist/ui/components/dialogs/DialogErrorBoundary.d.ts.map +1 -0
  608. package/dist/ui/components/dialogs/DialogErrorBoundary.js +10 -0
  609. package/dist/ui/components/dialogs/DialogErrorBoundary.js.map +1 -0
  610. package/dist/ui/components/dialogs/DialogManager.d.ts +11 -0
  611. package/dist/ui/components/dialogs/DialogManager.d.ts.map +1 -0
  612. package/dist/ui/components/dialogs/DialogManager.js +98 -0
  613. package/dist/ui/components/dialogs/DialogManager.js.map +1 -0
  614. package/dist/ui/components/dialogs/EditHookDialog.d.ts +23 -0
  615. package/dist/ui/components/dialogs/EditHookDialog.d.ts.map +1 -0
  616. package/dist/ui/components/dialogs/EditHookDialog.js +64 -0
  617. package/dist/ui/components/dialogs/EditHookDialog.js.map +1 -0
  618. package/dist/ui/components/dialogs/HealthMonitorDialog.d.ts +33 -0
  619. package/dist/ui/components/dialogs/HealthMonitorDialog.d.ts.map +1 -0
  620. package/dist/ui/components/dialogs/HealthMonitorDialog.js +222 -0
  621. package/dist/ui/components/dialogs/HealthMonitorDialog.js.map +1 -0
  622. package/dist/ui/components/dialogs/HelpOverlay.d.ts +24 -0
  623. package/dist/ui/components/dialogs/HelpOverlay.d.ts.map +1 -0
  624. package/dist/ui/components/dialogs/HelpOverlay.js +20 -0
  625. package/dist/ui/components/dialogs/HelpOverlay.js.map +1 -0
  626. package/dist/ui/components/dialogs/HookApprovalDialog.d.ts +31 -0
  627. package/dist/ui/components/dialogs/HookApprovalDialog.d.ts.map +1 -0
  628. package/dist/ui/components/dialogs/HookApprovalDialog.js +80 -0
  629. package/dist/ui/components/dialogs/HookApprovalDialog.js.map +1 -0
  630. package/dist/ui/components/dialogs/InstallServerDialog.d.ts +37 -0
  631. package/dist/ui/components/dialogs/InstallServerDialog.d.ts.map +1 -0
  632. package/dist/ui/components/dialogs/InstallServerDialog.js +234 -0
  633. package/dist/ui/components/dialogs/InstallServerDialog.js.map +1 -0
  634. package/dist/ui/components/dialogs/MarketplaceDialog.d.ts +31 -0
  635. package/dist/ui/components/dialogs/MarketplaceDialog.d.ts.map +1 -0
  636. package/dist/ui/components/dialogs/MarketplaceDialog.js +178 -0
  637. package/dist/ui/components/dialogs/MarketplaceDialog.js.map +1 -0
  638. package/dist/ui/components/dialogs/ModeSuggestionDialog.d.ts +23 -0
  639. package/dist/ui/components/dialogs/ModeSuggestionDialog.d.ts.map +1 -0
  640. package/dist/ui/components/dialogs/ModeSuggestionDialog.js +33 -0
  641. package/dist/ui/components/dialogs/ModeSuggestionDialog.js.map +1 -0
  642. package/dist/ui/components/dialogs/OAuthConfigDialog.d.ts +34 -0
  643. package/dist/ui/components/dialogs/OAuthConfigDialog.d.ts.map +1 -0
  644. package/dist/ui/components/dialogs/OAuthConfigDialog.js +307 -0
  645. package/dist/ui/components/dialogs/OAuthConfigDialog.js.map +1 -0
  646. package/dist/ui/components/dialogs/ServerConfigDialog.d.ts +35 -0
  647. package/dist/ui/components/dialogs/ServerConfigDialog.d.ts.map +1 -0
  648. package/dist/ui/components/dialogs/ServerConfigDialog.js +210 -0
  649. package/dist/ui/components/dialogs/ServerConfigDialog.js.map +1 -0
  650. package/dist/ui/components/dialogs/ServerLogsViewer.d.ts +32 -0
  651. package/dist/ui/components/dialogs/ServerLogsViewer.d.ts.map +1 -0
  652. package/dist/ui/components/dialogs/ServerLogsViewer.js +244 -0
  653. package/dist/ui/components/dialogs/ServerLogsViewer.js.map +1 -0
  654. package/dist/ui/components/dialogs/TestHookDialog.d.ts +26 -0
  655. package/dist/ui/components/dialogs/TestHookDialog.d.ts.map +1 -0
  656. package/dist/ui/components/dialogs/TestHookDialog.js +60 -0
  657. package/dist/ui/components/dialogs/TestHookDialog.js.map +1 -0
  658. package/dist/ui/components/dialogs/UninstallConfirmDialog.d.ts +36 -0
  659. package/dist/ui/components/dialogs/UninstallConfirmDialog.d.ts.map +1 -0
  660. package/dist/ui/components/dialogs/UninstallConfirmDialog.js +66 -0
  661. package/dist/ui/components/dialogs/UninstallConfirmDialog.js.map +1 -0
  662. package/dist/ui/components/dialogs/UserPromptDialog.d.ts +34 -0
  663. package/dist/ui/components/dialogs/UserPromptDialog.d.ts.map +1 -0
  664. package/dist/ui/components/dialogs/UserPromptDialog.js +18 -0
  665. package/dist/ui/components/dialogs/UserPromptDialog.js.map +1 -0
  666. package/dist/ui/components/dialogs/index.d.ts +33 -0
  667. package/dist/ui/components/dialogs/index.d.ts.map +1 -0
  668. package/dist/ui/components/dialogs/index.js +19 -0
  669. package/dist/ui/components/dialogs/index.js.map +1 -0
  670. package/dist/ui/components/docs/DocNav.d.ts +21 -0
  671. package/dist/ui/components/docs/DocNav.d.ts.map +1 -0
  672. package/dist/ui/components/docs/DocNav.js +16 -0
  673. package/dist/ui/components/docs/DocNav.js.map +1 -0
  674. package/dist/ui/components/docs/DocViewer.d.ts +22 -0
  675. package/dist/ui/components/docs/DocViewer.d.ts.map +1 -0
  676. package/dist/ui/components/docs/DocViewer.js +51 -0
  677. package/dist/ui/components/docs/DocViewer.js.map +1 -0
  678. package/dist/ui/components/docs/DocsPanel.d.ts +21 -0
  679. package/dist/ui/components/docs/DocsPanel.d.ts.map +1 -0
  680. package/dist/ui/components/docs/DocsPanel.js +236 -0
  681. package/dist/ui/components/docs/DocsPanel.js.map +1 -0
  682. package/dist/ui/components/docs/index.d.ts +3 -0
  683. package/dist/ui/components/docs/index.d.ts.map +1 -0
  684. package/dist/ui/components/docs/index.js +3 -0
  685. package/dist/ui/components/docs/index.js.map +1 -0
  686. package/dist/ui/components/file-explorer/ConfirmationDialog.d.ts +45 -0
  687. package/dist/ui/components/file-explorer/ConfirmationDialog.d.ts.map +1 -0
  688. package/dist/ui/components/file-explorer/ConfirmationDialog.js +87 -0
  689. package/dist/ui/components/file-explorer/ConfirmationDialog.js.map +1 -0
  690. package/dist/ui/components/file-explorer/EditorIntegration.d.ts +73 -0
  691. package/dist/ui/components/file-explorer/EditorIntegration.d.ts.map +1 -0
  692. package/dist/ui/components/file-explorer/EditorIntegration.js +156 -0
  693. package/dist/ui/components/file-explorer/EditorIntegration.js.map +1 -0
  694. package/dist/ui/components/file-explorer/EnhancedFileExplorer.d.ts +28 -0
  695. package/dist/ui/components/file-explorer/EnhancedFileExplorer.d.ts.map +1 -0
  696. package/dist/ui/components/file-explorer/EnhancedFileExplorer.js +33 -0
  697. package/dist/ui/components/file-explorer/EnhancedFileExplorer.js.map +1 -0
  698. package/dist/ui/components/file-explorer/ErrorHandler.d.ts +102 -0
  699. package/dist/ui/components/file-explorer/ErrorHandler.d.ts.map +1 -0
  700. package/dist/ui/components/file-explorer/ErrorHandler.js +220 -0
  701. package/dist/ui/components/file-explorer/ErrorHandler.js.map +1 -0
  702. package/dist/ui/components/file-explorer/ExplorerPersistence.d.ts +103 -0
  703. package/dist/ui/components/file-explorer/ExplorerPersistence.d.ts.map +1 -0
  704. package/dist/ui/components/file-explorer/ExplorerPersistence.js +182 -0
  705. package/dist/ui/components/file-explorer/ExplorerPersistence.js.map +1 -0
  706. package/dist/ui/components/file-explorer/FileExplorerComponent.d.ts +77 -0
  707. package/dist/ui/components/file-explorer/FileExplorerComponent.d.ts.map +1 -0
  708. package/dist/ui/components/file-explorer/FileExplorerComponent.js +362 -0
  709. package/dist/ui/components/file-explorer/FileExplorerComponent.js.map +1 -0
  710. package/dist/ui/components/file-explorer/FileFocusContext.d.ts +65 -0
  711. package/dist/ui/components/file-explorer/FileFocusContext.d.ts.map +1 -0
  712. package/dist/ui/components/file-explorer/FileFocusContext.js +127 -0
  713. package/dist/ui/components/file-explorer/FileFocusContext.js.map +1 -0
  714. package/dist/ui/components/file-explorer/FileOperations.d.ts +160 -0
  715. package/dist/ui/components/file-explorer/FileOperations.d.ts.map +1 -0
  716. package/dist/ui/components/file-explorer/FileOperations.js +595 -0
  717. package/dist/ui/components/file-explorer/FileOperations.js.map +1 -0
  718. package/dist/ui/components/file-explorer/FileSearchDialog.d.ts +46 -0
  719. package/dist/ui/components/file-explorer/FileSearchDialog.d.ts.map +1 -0
  720. package/dist/ui/components/file-explorer/FileSearchDialog.js +162 -0
  721. package/dist/ui/components/file-explorer/FileSearchDialog.js.map +1 -0
  722. package/dist/ui/components/file-explorer/FileTreeContext.d.ts +85 -0
  723. package/dist/ui/components/file-explorer/FileTreeContext.d.ts.map +1 -0
  724. package/dist/ui/components/file-explorer/FileTreeContext.js +252 -0
  725. package/dist/ui/components/file-explorer/FileTreeContext.js.map +1 -0
  726. package/dist/ui/components/file-explorer/FileTreeService.d.ts +270 -0
  727. package/dist/ui/components/file-explorer/FileTreeService.d.ts.map +1 -0
  728. package/dist/ui/components/file-explorer/FileTreeService.js +454 -0
  729. package/dist/ui/components/file-explorer/FileTreeService.js.map +1 -0
  730. package/dist/ui/components/file-explorer/FileTreeView.d.ts +45 -0
  731. package/dist/ui/components/file-explorer/FileTreeView.d.ts.map +1 -0
  732. package/dist/ui/components/file-explorer/FileTreeView.js +686 -0
  733. package/dist/ui/components/file-explorer/FileTreeView.js.map +1 -0
  734. package/dist/ui/components/file-explorer/FocusSystem.d.ts +130 -0
  735. package/dist/ui/components/file-explorer/FocusSystem.d.ts.map +1 -0
  736. package/dist/ui/components/file-explorer/FocusSystem.js +234 -0
  737. package/dist/ui/components/file-explorer/FocusSystem.js.map +1 -0
  738. package/dist/ui/components/file-explorer/FocusedFilesInjector.d.ts +52 -0
  739. package/dist/ui/components/file-explorer/FocusedFilesInjector.d.ts.map +1 -0
  740. package/dist/ui/components/file-explorer/FocusedFilesInjector.js +147 -0
  741. package/dist/ui/components/file-explorer/FocusedFilesInjector.js.map +1 -0
  742. package/dist/ui/components/file-explorer/FocusedFilesPanel.d.ts +32 -0
  743. package/dist/ui/components/file-explorer/FocusedFilesPanel.d.ts.map +1 -0
  744. package/dist/ui/components/file-explorer/FocusedFilesPanel.js +64 -0
  745. package/dist/ui/components/file-explorer/FocusedFilesPanel.js.map +1 -0
  746. package/dist/ui/components/file-explorer/FollowModeService.d.ts +55 -0
  747. package/dist/ui/components/file-explorer/FollowModeService.d.ts.map +1 -0
  748. package/dist/ui/components/file-explorer/FollowModeService.js +195 -0
  749. package/dist/ui/components/file-explorer/FollowModeService.js.map +1 -0
  750. package/dist/ui/components/file-explorer/GitStatusService.d.ts +82 -0
  751. package/dist/ui/components/file-explorer/GitStatusService.d.ts.map +1 -0
  752. package/dist/ui/components/file-explorer/GitStatusService.js +203 -0
  753. package/dist/ui/components/file-explorer/GitStatusService.js.map +1 -0
  754. package/dist/ui/components/file-explorer/Header.d.ts +26 -0
  755. package/dist/ui/components/file-explorer/Header.d.ts.map +1 -0
  756. package/dist/ui/components/file-explorer/Header.js +20 -0
  757. package/dist/ui/components/file-explorer/Header.js.map +1 -0
  758. package/dist/ui/components/file-explorer/HelpPanel.d.ts +25 -0
  759. package/dist/ui/components/file-explorer/HelpPanel.d.ts.map +1 -0
  760. package/dist/ui/components/file-explorer/HelpPanel.js +38 -0
  761. package/dist/ui/components/file-explorer/HelpPanel.js.map +1 -0
  762. package/dist/ui/components/file-explorer/LoadingIndicator.d.ts +56 -0
  763. package/dist/ui/components/file-explorer/LoadingIndicator.d.ts.map +1 -0
  764. package/dist/ui/components/file-explorer/LoadingIndicator.js +82 -0
  765. package/dist/ui/components/file-explorer/LoadingIndicator.js.map +1 -0
  766. package/dist/ui/components/file-explorer/PathSanitizer.d.ts +92 -0
  767. package/dist/ui/components/file-explorer/PathSanitizer.d.ts.map +1 -0
  768. package/dist/ui/components/file-explorer/PathSanitizer.js +169 -0
  769. package/dist/ui/components/file-explorer/PathSanitizer.js.map +1 -0
  770. package/dist/ui/components/file-explorer/QuickActionsMenu.d.ts +54 -0
  771. package/dist/ui/components/file-explorer/QuickActionsMenu.d.ts.map +1 -0
  772. package/dist/ui/components/file-explorer/QuickActionsMenu.js +175 -0
  773. package/dist/ui/components/file-explorer/QuickActionsMenu.js.map +1 -0
  774. package/dist/ui/components/file-explorer/QuickOpenDialog.d.ts +40 -0
  775. package/dist/ui/components/file-explorer/QuickOpenDialog.d.ts.map +1 -0
  776. package/dist/ui/components/file-explorer/QuickOpenDialog.js +231 -0
  777. package/dist/ui/components/file-explorer/QuickOpenDialog.js.map +1 -0
  778. package/dist/ui/components/file-explorer/SyntaxViewer.d.ts +37 -0
  779. package/dist/ui/components/file-explorer/SyntaxViewer.d.ts.map +1 -0
  780. package/dist/ui/components/file-explorer/SyntaxViewer.js +95 -0
  781. package/dist/ui/components/file-explorer/SyntaxViewer.js.map +1 -0
  782. package/dist/ui/components/file-explorer/VisionService.d.ts +39 -0
  783. package/dist/ui/components/file-explorer/VisionService.d.ts.map +1 -0
  784. package/dist/ui/components/file-explorer/VisionService.js +103 -0
  785. package/dist/ui/components/file-explorer/VisionService.js.map +1 -0
  786. package/dist/ui/components/file-explorer/WorkspaceContext.d.ts +68 -0
  787. package/dist/ui/components/file-explorer/WorkspaceContext.d.ts.map +1 -0
  788. package/dist/ui/components/file-explorer/WorkspaceContext.js +98 -0
  789. package/dist/ui/components/file-explorer/WorkspaceContext.js.map +1 -0
  790. package/dist/ui/components/file-explorer/WorkspaceManager.d.ts +96 -0
  791. package/dist/ui/components/file-explorer/WorkspaceManager.d.ts.map +1 -0
  792. package/dist/ui/components/file-explorer/WorkspaceManager.js +197 -0
  793. package/dist/ui/components/file-explorer/WorkspaceManager.js.map +1 -0
  794. package/dist/ui/components/file-explorer/__tests__/ExplorerPersistence.test.d.ts +7 -0
  795. package/dist/ui/components/file-explorer/__tests__/ExplorerPersistence.test.d.ts.map +1 -0
  796. package/dist/ui/components/file-explorer/__tests__/ExplorerPersistence.test.js +97 -0
  797. package/dist/ui/components/file-explorer/__tests__/ExplorerPersistence.test.js.map +1 -0
  798. package/dist/ui/components/file-explorer/__tests__/FileOperations.test.d.ts +7 -0
  799. package/dist/ui/components/file-explorer/__tests__/FileOperations.test.d.ts.map +1 -0
  800. package/dist/ui/components/file-explorer/__tests__/FileOperations.test.js +145 -0
  801. package/dist/ui/components/file-explorer/__tests__/FileOperations.test.js.map +1 -0
  802. package/dist/ui/components/file-explorer/__tests__/FileSearchDialog.test.d.ts +7 -0
  803. package/dist/ui/components/file-explorer/__tests__/FileSearchDialog.test.d.ts.map +1 -0
  804. package/dist/ui/components/file-explorer/__tests__/FileSearchDialog.test.js +45 -0
  805. package/dist/ui/components/file-explorer/__tests__/FileSearchDialog.test.js.map +1 -0
  806. package/dist/ui/components/file-explorer/__tests__/FileTreeService.test.d.ts +7 -0
  807. package/dist/ui/components/file-explorer/__tests__/FileTreeService.test.d.ts.map +1 -0
  808. package/dist/ui/components/file-explorer/__tests__/FileTreeService.test.js +108 -0
  809. package/dist/ui/components/file-explorer/__tests__/FileTreeService.test.js.map +1 -0
  810. package/dist/ui/components/file-explorer/__tests__/FocusSystem.test.d.ts +7 -0
  811. package/dist/ui/components/file-explorer/__tests__/FocusSystem.test.d.ts.map +1 -0
  812. package/dist/ui/components/file-explorer/__tests__/FocusSystem.test.js +117 -0
  813. package/dist/ui/components/file-explorer/__tests__/FocusSystem.test.js.map +1 -0
  814. package/dist/ui/components/file-explorer/__tests__/PathSanitizer.test.d.ts +7 -0
  815. package/dist/ui/components/file-explorer/__tests__/PathSanitizer.test.d.ts.map +1 -0
  816. package/dist/ui/components/file-explorer/__tests__/PathSanitizer.test.js +74 -0
  817. package/dist/ui/components/file-explorer/__tests__/PathSanitizer.test.js.map +1 -0
  818. package/dist/ui/components/file-explorer/index.d.ts +33 -0
  819. package/dist/ui/components/file-explorer/index.d.ts.map +1 -0
  820. package/dist/ui/components/file-explorer/index.js +36 -0
  821. package/dist/ui/components/file-explorer/index.js.map +1 -0
  822. package/dist/ui/components/file-explorer/types.d.ts +81 -0
  823. package/dist/ui/components/file-explorer/types.d.ts.map +1 -0
  824. package/dist/ui/components/file-explorer/types.js +9 -0
  825. package/dist/ui/components/file-explorer/types.js.map +1 -0
  826. package/dist/ui/components/forms/Button.d.ts +55 -0
  827. package/dist/ui/components/forms/Button.d.ts.map +1 -0
  828. package/dist/ui/components/forms/Button.js +58 -0
  829. package/dist/ui/components/forms/Button.js.map +1 -0
  830. package/dist/ui/components/forms/Checkbox.d.ts +39 -0
  831. package/dist/ui/components/forms/Checkbox.d.ts.map +1 -0
  832. package/dist/ui/components/forms/Checkbox.js +29 -0
  833. package/dist/ui/components/forms/Checkbox.js.map +1 -0
  834. package/dist/ui/components/forms/FormField.d.ts +24 -0
  835. package/dist/ui/components/forms/FormField.d.ts.map +1 -0
  836. package/dist/ui/components/forms/FormField.js +11 -0
  837. package/dist/ui/components/forms/FormField.js.map +1 -0
  838. package/dist/ui/components/forms/TextInput.d.ts +47 -0
  839. package/dist/ui/components/forms/TextInput.d.ts.map +1 -0
  840. package/dist/ui/components/forms/TextInput.js +74 -0
  841. package/dist/ui/components/forms/TextInput.js.map +1 -0
  842. package/dist/ui/components/forms/Tooltip.d.ts +38 -0
  843. package/dist/ui/components/forms/Tooltip.d.ts.map +1 -0
  844. package/dist/ui/components/forms/Tooltip.js +21 -0
  845. package/dist/ui/components/forms/Tooltip.js.map +1 -0
  846. package/dist/ui/components/forms/index.d.ts +22 -0
  847. package/dist/ui/components/forms/index.d.ts.map +1 -0
  848. package/dist/ui/components/forms/index.js +17 -0
  849. package/dist/ui/components/forms/index.js.map +1 -0
  850. package/dist/ui/components/github/FeatureSection.d.ts +15 -0
  851. package/dist/ui/components/github/FeatureSection.d.ts.map +1 -0
  852. package/dist/ui/components/github/FeatureSection.js +14 -0
  853. package/dist/ui/components/github/FeatureSection.js.map +1 -0
  854. package/dist/ui/components/github/PlannedFeaturesList.d.ts +15 -0
  855. package/dist/ui/components/github/PlannedFeaturesList.d.ts.map +1 -0
  856. package/dist/ui/components/github/PlannedFeaturesList.js +69 -0
  857. package/dist/ui/components/github/PlannedFeaturesList.js.map +1 -0
  858. package/dist/ui/components/hooks/HookCategory.d.ts +32 -0
  859. package/dist/ui/components/hooks/HookCategory.d.ts.map +1 -0
  860. package/dist/ui/components/hooks/HookCategory.js +34 -0
  861. package/dist/ui/components/hooks/HookCategory.js.map +1 -0
  862. package/dist/ui/components/hooks/HookItem.d.ts +48 -0
  863. package/dist/ui/components/hooks/HookItem.d.ts.map +1 -0
  864. package/dist/ui/components/hooks/HookItem.js +48 -0
  865. package/dist/ui/components/hooks/HookItem.js.map +1 -0
  866. package/dist/ui/components/hooks/index.d.ts +3 -0
  867. package/dist/ui/components/hooks/index.d.ts.map +1 -0
  868. package/dist/ui/components/hooks/index.js +3 -0
  869. package/dist/ui/components/hooks/index.js.map +1 -0
  870. package/dist/ui/components/launch/LaunchScreen.d.ts +24 -0
  871. package/dist/ui/components/launch/LaunchScreen.d.ts.map +1 -0
  872. package/dist/ui/components/launch/LaunchScreen.js +29 -0
  873. package/dist/ui/components/launch/LaunchScreen.js.map +1 -0
  874. package/dist/ui/components/launch/QuickActions.d.ts +13 -0
  875. package/dist/ui/components/launch/QuickActions.d.ts.map +1 -0
  876. package/dist/ui/components/launch/QuickActions.js +6 -0
  877. package/dist/ui/components/launch/QuickActions.js.map +1 -0
  878. package/dist/ui/components/launch/RecentSessions.d.ts +19 -0
  879. package/dist/ui/components/launch/RecentSessions.d.ts.map +1 -0
  880. package/dist/ui/components/launch/RecentSessions.js +23 -0
  881. package/dist/ui/components/launch/RecentSessions.js.map +1 -0
  882. package/dist/ui/components/launch/VersionBanner.d.ts +17 -0
  883. package/dist/ui/components/launch/VersionBanner.d.ts.map +1 -0
  884. package/dist/ui/components/launch/VersionBanner.js +71 -0
  885. package/dist/ui/components/launch/VersionBanner.js.map +1 -0
  886. package/dist/ui/components/launch/index.d.ts +5 -0
  887. package/dist/ui/components/launch/index.d.ts.map +1 -0
  888. package/dist/ui/components/launch/index.js +5 -0
  889. package/dist/ui/components/launch/index.js.map +1 -0
  890. package/dist/ui/components/layout/ActivePromptInfo.d.ts +2 -0
  891. package/dist/ui/components/layout/ActivePromptInfo.d.ts.map +1 -0
  892. package/dist/ui/components/layout/ActivePromptInfo.js +37 -0
  893. package/dist/ui/components/layout/ActivePromptInfo.js.map +1 -0
  894. package/dist/ui/components/layout/ChatInputArea.d.ts +15 -0
  895. package/dist/ui/components/layout/ChatInputArea.d.ts.map +1 -0
  896. package/dist/ui/components/layout/ChatInputArea.js +239 -0
  897. package/dist/ui/components/layout/ChatInputArea.js.map +1 -0
  898. package/dist/ui/components/layout/Clock.d.ts +6 -0
  899. package/dist/ui/components/layout/Clock.d.ts.map +1 -0
  900. package/dist/ui/components/layout/Clock.js +23 -0
  901. package/dist/ui/components/layout/Clock.js.map +1 -0
  902. package/dist/ui/components/layout/ContextSection.d.ts +2 -0
  903. package/dist/ui/components/layout/ContextSection.d.ts.map +1 -0
  904. package/dist/ui/components/layout/ContextSection.js +38 -0
  905. package/dist/ui/components/layout/ContextSection.js.map +1 -0
  906. package/dist/ui/components/layout/DotIndicator.d.ts +13 -0
  907. package/dist/ui/components/layout/DotIndicator.d.ts.map +1 -0
  908. package/dist/ui/components/layout/DotIndicator.js +15 -0
  909. package/dist/ui/components/layout/DotIndicator.js.map +1 -0
  910. package/dist/ui/components/layout/HeaderBar.d.ts +21 -0
  911. package/dist/ui/components/layout/HeaderBar.d.ts.map +1 -0
  912. package/dist/ui/components/layout/HeaderBar.js +19 -0
  913. package/dist/ui/components/layout/HeaderBar.js.map +1 -0
  914. package/dist/ui/components/layout/InputBox.d.ts +22 -0
  915. package/dist/ui/components/layout/InputBox.d.ts.map +1 -0
  916. package/dist/ui/components/layout/InputBox.js +147 -0
  917. package/dist/ui/components/layout/InputBox.js.map +1 -0
  918. package/dist/ui/components/layout/KeybindsLegend.d.ts +10 -0
  919. package/dist/ui/components/layout/KeybindsLegend.d.ts.map +1 -0
  920. package/dist/ui/components/layout/KeybindsLegend.js +9 -0
  921. package/dist/ui/components/layout/KeybindsLegend.js.map +1 -0
  922. package/dist/ui/components/layout/ModeConfidenceDisplay.d.ts +19 -0
  923. package/dist/ui/components/layout/ModeConfidenceDisplay.d.ts.map +1 -0
  924. package/dist/ui/components/layout/ModeConfidenceDisplay.js +38 -0
  925. package/dist/ui/components/layout/ModeConfidenceDisplay.js.map +1 -0
  926. package/dist/ui/components/layout/SidePanel.d.ts +9 -0
  927. package/dist/ui/components/layout/SidePanel.d.ts.map +1 -0
  928. package/dist/ui/components/layout/SidePanel.js +59 -0
  929. package/dist/ui/components/layout/SidePanel.js.map +1 -0
  930. package/dist/ui/components/layout/StaticInputArea.d.ts +13 -0
  931. package/dist/ui/components/layout/StaticInputArea.d.ts.map +1 -0
  932. package/dist/ui/components/layout/StaticInputArea.js +21 -0
  933. package/dist/ui/components/layout/StaticInputArea.js.map +1 -0
  934. package/dist/ui/components/layout/StatusBar.d.ts +16 -0
  935. package/dist/ui/components/layout/StatusBar.d.ts.map +1 -0
  936. package/dist/ui/components/layout/StatusBar.js +13 -0
  937. package/dist/ui/components/layout/StatusBar.js.map +1 -0
  938. package/dist/ui/components/layout/SystemBar.d.ts +10 -0
  939. package/dist/ui/components/layout/SystemBar.d.ts.map +1 -0
  940. package/dist/ui/components/layout/SystemBar.js +75 -0
  941. package/dist/ui/components/layout/SystemBar.js.map +1 -0
  942. package/dist/ui/components/layout/TabBar.d.ts +19 -0
  943. package/dist/ui/components/layout/TabBar.d.ts.map +1 -0
  944. package/dist/ui/components/layout/TabBar.js +53 -0
  945. package/dist/ui/components/layout/TabBar.js.map +1 -0
  946. package/dist/ui/components/layout/TabContainer.d.ts +58 -0
  947. package/dist/ui/components/layout/TabContainer.d.ts.map +1 -0
  948. package/dist/ui/components/layout/TabContainer.js +19 -0
  949. package/dist/ui/components/layout/TabContainer.js.map +1 -0
  950. package/dist/ui/components/layout/TwoColumnLayout.d.ts +54 -0
  951. package/dist/ui/components/layout/TwoColumnLayout.d.ts.map +1 -0
  952. package/dist/ui/components/layout/TwoColumnLayout.js +22 -0
  953. package/dist/ui/components/layout/TwoColumnLayout.js.map +1 -0
  954. package/dist/ui/components/layout/WorkspacePanel.d.ts +17 -0
  955. package/dist/ui/components/layout/WorkspacePanel.d.ts.map +1 -0
  956. package/dist/ui/components/layout/WorkspacePanel.js +264 -0
  957. package/dist/ui/components/layout/WorkspacePanel.js.map +1 -0
  958. package/dist/ui/components/layout/__tests__/InputBox.example.d.ts +18 -0
  959. package/dist/ui/components/layout/__tests__/InputBox.example.d.ts.map +1 -0
  960. package/dist/ui/components/layout/__tests__/InputBox.example.js +40 -0
  961. package/dist/ui/components/layout/__tests__/InputBox.example.js.map +1 -0
  962. package/dist/ui/components/layout/index.d.ts +10 -0
  963. package/dist/ui/components/layout/index.d.ts.map +1 -0
  964. package/dist/ui/components/layout/index.js +10 -0
  965. package/dist/ui/components/layout/index.js.map +1 -0
  966. package/dist/ui/components/mcp/ErrorDisplay.d.ts +32 -0
  967. package/dist/ui/components/mcp/ErrorDisplay.d.ts.map +1 -0
  968. package/dist/ui/components/mcp/ErrorDisplay.js +27 -0
  969. package/dist/ui/components/mcp/ErrorDisplay.js.map +1 -0
  970. package/dist/ui/components/mcp/FadeTransition.d.ts +75 -0
  971. package/dist/ui/components/mcp/FadeTransition.d.ts.map +1 -0
  972. package/dist/ui/components/mcp/FadeTransition.js +132 -0
  973. package/dist/ui/components/mcp/FadeTransition.js.map +1 -0
  974. package/dist/ui/components/mcp/HealthIndicator.d.ts +21 -0
  975. package/dist/ui/components/mcp/HealthIndicator.d.ts.map +1 -0
  976. package/dist/ui/components/mcp/HealthIndicator.js +75 -0
  977. package/dist/ui/components/mcp/HealthIndicator.js.map +1 -0
  978. package/dist/ui/components/mcp/InstalledServersSection.d.ts +33 -0
  979. package/dist/ui/components/mcp/InstalledServersSection.d.ts.map +1 -0
  980. package/dist/ui/components/mcp/InstalledServersSection.js +16 -0
  981. package/dist/ui/components/mcp/InstalledServersSection.js.map +1 -0
  982. package/dist/ui/components/mcp/LoadingSpinner.d.ts +29 -0
  983. package/dist/ui/components/mcp/LoadingSpinner.d.ts.map +1 -0
  984. package/dist/ui/components/mcp/LoadingSpinner.js +17 -0
  985. package/dist/ui/components/mcp/LoadingSpinner.js.map +1 -0
  986. package/dist/ui/components/mcp/MCPActions.d.ts +31 -0
  987. package/dist/ui/components/mcp/MCPActions.d.ts.map +1 -0
  988. package/dist/ui/components/mcp/MCPActions.js +25 -0
  989. package/dist/ui/components/mcp/MCPActions.js.map +1 -0
  990. package/dist/ui/components/mcp/MarketplacePreview.d.ts +25 -0
  991. package/dist/ui/components/mcp/MarketplacePreview.d.ts.map +1 -0
  992. package/dist/ui/components/mcp/MarketplacePreview.js +45 -0
  993. package/dist/ui/components/mcp/MarketplacePreview.js.map +1 -0
  994. package/dist/ui/components/mcp/Notification.d.ts +79 -0
  995. package/dist/ui/components/mcp/Notification.d.ts.map +1 -0
  996. package/dist/ui/components/mcp/Notification.js +145 -0
  997. package/dist/ui/components/mcp/Notification.js.map +1 -0
  998. package/dist/ui/components/mcp/OperationProgress.d.ts +20 -0
  999. package/dist/ui/components/mcp/OperationProgress.d.ts.map +1 -0
  1000. package/dist/ui/components/mcp/OperationProgress.js +16 -0
  1001. package/dist/ui/components/mcp/OperationProgress.js.map +1 -0
  1002. package/dist/ui/components/mcp/ProgressIndicator.d.ts +34 -0
  1003. package/dist/ui/components/mcp/ProgressIndicator.d.ts.map +1 -0
  1004. package/dist/ui/components/mcp/ProgressIndicator.js +75 -0
  1005. package/dist/ui/components/mcp/ProgressIndicator.js.map +1 -0
  1006. package/dist/ui/components/mcp/ServerDetails.d.ts +44 -0
  1007. package/dist/ui/components/mcp/ServerDetails.d.ts.map +1 -0
  1008. package/dist/ui/components/mcp/ServerDetails.js +96 -0
  1009. package/dist/ui/components/mcp/ServerDetails.js.map +1 -0
  1010. package/dist/ui/components/mcp/ServerItem.d.ts +33 -0
  1011. package/dist/ui/components/mcp/ServerItem.d.ts.map +1 -0
  1012. package/dist/ui/components/mcp/ServerItem.js +55 -0
  1013. package/dist/ui/components/mcp/ServerItem.js.map +1 -0
  1014. package/dist/ui/components/mcp/ServerListItem.d.ts +38 -0
  1015. package/dist/ui/components/mcp/ServerListItem.d.ts.map +1 -0
  1016. package/dist/ui/components/mcp/ServerListItem.js +60 -0
  1017. package/dist/ui/components/mcp/ServerListItem.js.map +1 -0
  1018. package/dist/ui/components/mcp/ServerSkeleton.d.ts +20 -0
  1019. package/dist/ui/components/mcp/ServerSkeleton.d.ts.map +1 -0
  1020. package/dist/ui/components/mcp/ServerSkeleton.js +18 -0
  1021. package/dist/ui/components/mcp/ServerSkeleton.js.map +1 -0
  1022. package/dist/ui/components/mcp/ServerStatusBanner.d.ts +21 -0
  1023. package/dist/ui/components/mcp/ServerStatusBanner.d.ts.map +1 -0
  1024. package/dist/ui/components/mcp/ServerStatusBanner.js +61 -0
  1025. package/dist/ui/components/mcp/ServerStatusBanner.js.map +1 -0
  1026. package/dist/ui/components/mcp/SystemMessages.d.ts +35 -0
  1027. package/dist/ui/components/mcp/SystemMessages.d.ts.map +1 -0
  1028. package/dist/ui/components/mcp/SystemMessages.js +44 -0
  1029. package/dist/ui/components/mcp/SystemMessages.js.map +1 -0
  1030. package/dist/ui/components/mcp/index.d.ts +34 -0
  1031. package/dist/ui/components/mcp/index.d.ts.map +1 -0
  1032. package/dist/ui/components/mcp/index.js +24 -0
  1033. package/dist/ui/components/mcp/index.js.map +1 -0
  1034. package/dist/ui/components/model/ModelLoadingIndicator.d.ts +6 -0
  1035. package/dist/ui/components/model/ModelLoadingIndicator.d.ts.map +1 -0
  1036. package/dist/ui/components/model/ModelLoadingIndicator.js +14 -0
  1037. package/dist/ui/components/model/ModelLoadingIndicator.js.map +1 -0
  1038. package/dist/ui/components/settings/ModelPicker.d.ts +24 -0
  1039. package/dist/ui/components/settings/ModelPicker.d.ts.map +1 -0
  1040. package/dist/ui/components/settings/ModelPicker.js +15 -0
  1041. package/dist/ui/components/settings/ModelPicker.js.map +1 -0
  1042. package/dist/ui/components/settings/OptionsPanel.d.ts +24 -0
  1043. package/dist/ui/components/settings/OptionsPanel.d.ts.map +1 -0
  1044. package/dist/ui/components/settings/OptionsPanel.js +12 -0
  1045. package/dist/ui/components/settings/OptionsPanel.js.map +1 -0
  1046. package/dist/ui/components/settings/ProviderSelector.d.ts +24 -0
  1047. package/dist/ui/components/settings/ProviderSelector.d.ts.map +1 -0
  1048. package/dist/ui/components/settings/ProviderSelector.js +35 -0
  1049. package/dist/ui/components/settings/ProviderSelector.js.map +1 -0
  1050. package/dist/ui/components/settings/SessionInfo.d.ts +25 -0
  1051. package/dist/ui/components/settings/SessionInfo.d.ts.map +1 -0
  1052. package/dist/ui/components/settings/SessionInfo.js +29 -0
  1053. package/dist/ui/components/settings/SessionInfo.js.map +1 -0
  1054. package/dist/ui/components/settings/SettingsPanel.d.ts +19 -0
  1055. package/dist/ui/components/settings/SettingsPanel.d.ts.map +1 -0
  1056. package/dist/ui/components/settings/SettingsPanel.js +864 -0
  1057. package/dist/ui/components/settings/SettingsPanel.js.map +1 -0
  1058. package/dist/ui/components/settings/ThemePicker.d.ts +19 -0
  1059. package/dist/ui/components/settings/ThemePicker.d.ts.map +1 -0
  1060. package/dist/ui/components/settings/ThemePicker.js +15 -0
  1061. package/dist/ui/components/settings/ThemePicker.js.map +1 -0
  1062. package/dist/ui/components/settings/index.d.ts +6 -0
  1063. package/dist/ui/components/settings/index.d.ts.map +1 -0
  1064. package/dist/ui/components/settings/index.js +6 -0
  1065. package/dist/ui/components/settings/index.js.map +1 -0
  1066. package/dist/ui/components/status/MCPStatus.d.ts +33 -0
  1067. package/dist/ui/components/status/MCPStatus.d.ts.map +1 -0
  1068. package/dist/ui/components/status/MCPStatus.js +52 -0
  1069. package/dist/ui/components/status/MCPStatus.js.map +1 -0
  1070. package/dist/ui/components/status/WorkflowStatus.d.ts +33 -0
  1071. package/dist/ui/components/status/WorkflowStatus.d.ts.map +1 -0
  1072. package/dist/ui/components/status/WorkflowStatus.js +40 -0
  1073. package/dist/ui/components/status/WorkflowStatus.js.map +1 -0
  1074. package/dist/ui/components/tabs/BugReportTab.d.ts +11 -0
  1075. package/dist/ui/components/tabs/BugReportTab.d.ts.map +1 -0
  1076. package/dist/ui/components/tabs/BugReportTab.js +104 -0
  1077. package/dist/ui/components/tabs/BugReportTab.js.map +1 -0
  1078. package/dist/ui/components/tabs/ChatTab.d.ts +55 -0
  1079. package/dist/ui/components/tabs/ChatTab.d.ts.map +1 -0
  1080. package/dist/ui/components/tabs/ChatTab.js +177 -0
  1081. package/dist/ui/components/tabs/ChatTab.js.map +1 -0
  1082. package/dist/ui/components/tabs/DocsTab.d.ts +16 -0
  1083. package/dist/ui/components/tabs/DocsTab.d.ts.map +1 -0
  1084. package/dist/ui/components/tabs/DocsTab.js +6 -0
  1085. package/dist/ui/components/tabs/DocsTab.js.map +1 -0
  1086. package/dist/ui/components/tabs/FileViewerTab.d.ts +27 -0
  1087. package/dist/ui/components/tabs/FileViewerTab.d.ts.map +1 -0
  1088. package/dist/ui/components/tabs/FileViewerTab.js +51 -0
  1089. package/dist/ui/components/tabs/FileViewerTab.js.map +1 -0
  1090. package/dist/ui/components/tabs/FilesTab.d.ts +21 -0
  1091. package/dist/ui/components/tabs/FilesTab.d.ts.map +1 -0
  1092. package/dist/ui/components/tabs/FilesTab.js +47 -0
  1093. package/dist/ui/components/tabs/FilesTab.js.map +1 -0
  1094. package/dist/ui/components/tabs/FilesTabWrapper.d.ts +12 -0
  1095. package/dist/ui/components/tabs/FilesTabWrapper.d.ts.map +1 -0
  1096. package/dist/ui/components/tabs/FilesTabWrapper.js +27 -0
  1097. package/dist/ui/components/tabs/FilesTabWrapper.js.map +1 -0
  1098. package/dist/ui/components/tabs/GitHubTab.d.ts +18 -0
  1099. package/dist/ui/components/tabs/GitHubTab.d.ts.map +1 -0
  1100. package/dist/ui/components/tabs/GitHubTab.js +38 -0
  1101. package/dist/ui/components/tabs/GitHubTab.js.map +1 -0
  1102. package/dist/ui/components/tabs/HooksTab.d.ts +21 -0
  1103. package/dist/ui/components/tabs/HooksTab.d.ts.map +1 -0
  1104. package/dist/ui/components/tabs/HooksTab.js +350 -0
  1105. package/dist/ui/components/tabs/HooksTab.js.map +1 -0
  1106. package/dist/ui/components/tabs/MCPTab.d.ts +24 -0
  1107. package/dist/ui/components/tabs/MCPTab.d.ts.map +1 -0
  1108. package/dist/ui/components/tabs/MCPTab.js +1101 -0
  1109. package/dist/ui/components/tabs/MCPTab.js.map +1 -0
  1110. package/dist/ui/components/tabs/SearchTab.d.ts +18 -0
  1111. package/dist/ui/components/tabs/SearchTab.d.ts.map +1 -0
  1112. package/dist/ui/components/tabs/SearchTab.js +56 -0
  1113. package/dist/ui/components/tabs/SearchTab.js.map +1 -0
  1114. package/dist/ui/components/tabs/SettingsTab.d.ts +14 -0
  1115. package/dist/ui/components/tabs/SettingsTab.d.ts.map +1 -0
  1116. package/dist/ui/components/tabs/SettingsTab.js +6 -0
  1117. package/dist/ui/components/tabs/SettingsTab.js.map +1 -0
  1118. package/dist/ui/components/tabs/ToolsTab.d.ts +14 -0
  1119. package/dist/ui/components/tabs/ToolsTab.d.ts.map +1 -0
  1120. package/dist/ui/components/tabs/ToolsTab.js +10 -0
  1121. package/dist/ui/components/tabs/ToolsTab.js.map +1 -0
  1122. package/dist/ui/components/tabs/index.d.ts +9 -0
  1123. package/dist/ui/components/tabs/index.d.ts.map +1 -0
  1124. package/dist/ui/components/tabs/index.js +9 -0
  1125. package/dist/ui/components/tabs/index.js.map +1 -0
  1126. package/dist/ui/components/tools/CategorySection.d.ts +22 -0
  1127. package/dist/ui/components/tools/CategorySection.d.ts.map +1 -0
  1128. package/dist/ui/components/tools/CategorySection.js +29 -0
  1129. package/dist/ui/components/tools/CategorySection.js.map +1 -0
  1130. package/dist/ui/components/tools/DiffViewer.d.ts +20 -0
  1131. package/dist/ui/components/tools/DiffViewer.d.ts.map +1 -0
  1132. package/dist/ui/components/tools/DiffViewer.js +33 -0
  1133. package/dist/ui/components/tools/DiffViewer.js.map +1 -0
  1134. package/dist/ui/components/tools/ReviewActions.d.ts +21 -0
  1135. package/dist/ui/components/tools/ReviewActions.d.ts.map +1 -0
  1136. package/dist/ui/components/tools/ReviewActions.js +12 -0
  1137. package/dist/ui/components/tools/ReviewActions.js.map +1 -0
  1138. package/dist/ui/components/tools/ToolItem.d.ts +19 -0
  1139. package/dist/ui/components/tools/ToolItem.d.ts.map +1 -0
  1140. package/dist/ui/components/tools/ToolItem.js +15 -0
  1141. package/dist/ui/components/tools/ToolItem.js.map +1 -0
  1142. package/dist/ui/components/tools/ToolModeSettings.d.ts +29 -0
  1143. package/dist/ui/components/tools/ToolModeSettings.d.ts.map +1 -0
  1144. package/dist/ui/components/tools/ToolModeSettings.js +57 -0
  1145. package/dist/ui/components/tools/ToolModeSettings.js.map +1 -0
  1146. package/dist/ui/components/tools/ToolToggle.d.ts +16 -0
  1147. package/dist/ui/components/tools/ToolToggle.d.ts.map +1 -0
  1148. package/dist/ui/components/tools/ToolToggle.js +22 -0
  1149. package/dist/ui/components/tools/ToolToggle.js.map +1 -0
  1150. package/dist/ui/components/tools/ToolsPanel.d.ts +24 -0
  1151. package/dist/ui/components/tools/ToolsPanel.d.ts.map +1 -0
  1152. package/dist/ui/components/tools/ToolsPanel.js +279 -0
  1153. package/dist/ui/components/tools/ToolsPanel.js.map +1 -0
  1154. package/dist/ui/components/tools/index.d.ts +7 -0
  1155. package/dist/ui/components/tools/index.d.ts.map +1 -0
  1156. package/dist/ui/components/tools/index.js +7 -0
  1157. package/dist/ui/components/tools/index.js.map +1 -0
  1158. package/dist/ui/contexts/DialogContext.d.ts +92 -0
  1159. package/dist/ui/contexts/DialogContext.d.ts.map +1 -0
  1160. package/dist/ui/contexts/DialogContext.js +151 -0
  1161. package/dist/ui/contexts/DialogContext.js.map +1 -0
  1162. package/dist/ui/contexts/HooksContext.d.ts +77 -0
  1163. package/dist/ui/contexts/HooksContext.d.ts.map +1 -0
  1164. package/dist/ui/contexts/HooksContext.js +261 -0
  1165. package/dist/ui/contexts/HooksContext.js.map +1 -0
  1166. package/dist/ui/contexts/InputRoutingContext.d.ts +15 -0
  1167. package/dist/ui/contexts/InputRoutingContext.d.ts.map +1 -0
  1168. package/dist/ui/contexts/InputRoutingContext.js +36 -0
  1169. package/dist/ui/contexts/InputRoutingContext.js.map +1 -0
  1170. package/dist/ui/contexts/MCPContext.d.ts +161 -0
  1171. package/dist/ui/contexts/MCPContext.d.ts.map +1 -0
  1172. package/dist/ui/contexts/MCPContext.js +904 -0
  1173. package/dist/ui/contexts/MCPContext.js.map +1 -0
  1174. package/dist/ui/contexts/Terminal2Context.d.ts +22 -0
  1175. package/dist/ui/contexts/Terminal2Context.d.ts.map +1 -0
  1176. package/dist/ui/contexts/Terminal2Context.js +154 -0
  1177. package/dist/ui/contexts/Terminal2Context.js.map +1 -0
  1178. package/dist/ui/contexts/TerminalContext.d.ts +22 -0
  1179. package/dist/ui/contexts/TerminalContext.d.ts.map +1 -0
  1180. package/dist/ui/contexts/TerminalContext.js +192 -0
  1181. package/dist/ui/contexts/TerminalContext.js.map +1 -0
  1182. package/dist/ui/contexts/ToolsContext.d.ts +87 -0
  1183. package/dist/ui/contexts/ToolsContext.d.ts.map +1 -0
  1184. package/dist/ui/contexts/ToolsContext.js +301 -0
  1185. package/dist/ui/contexts/ToolsContext.js.map +1 -0
  1186. package/dist/ui/contexts/UICallbacksContext.d.ts +80 -0
  1187. package/dist/ui/contexts/UICallbacksContext.d.ts.map +1 -0
  1188. package/dist/ui/contexts/UICallbacksContext.js +85 -0
  1189. package/dist/ui/contexts/UICallbacksContext.js.map +1 -0
  1190. package/dist/ui/contexts/WindowContext.d.ts +100 -0
  1191. package/dist/ui/contexts/WindowContext.d.ts.map +1 -0
  1192. package/dist/ui/contexts/WindowContext.js +111 -0
  1193. package/dist/ui/contexts/WindowContext.js.map +1 -0
  1194. package/dist/ui/contexts/__tests__/mcpTestUtils.d.ts +65 -0
  1195. package/dist/ui/contexts/__tests__/mcpTestUtils.d.ts.map +1 -0
  1196. package/dist/ui/contexts/__tests__/mcpTestUtils.js +180 -0
  1197. package/dist/ui/contexts/__tests__/mcpTestUtils.js.map +1 -0
  1198. package/dist/ui/hooks/index.d.ts +9 -0
  1199. package/dist/ui/hooks/index.d.ts.map +1 -0
  1200. package/dist/ui/hooks/index.js +9 -0
  1201. package/dist/ui/hooks/index.js.map +1 -0
  1202. package/dist/ui/hooks/useFocusedBorder.d.ts +19 -0
  1203. package/dist/ui/hooks/useFocusedBorder.d.ts.map +1 -0
  1204. package/dist/ui/hooks/useFocusedBorder.js +26 -0
  1205. package/dist/ui/hooks/useFocusedBorder.js.map +1 -0
  1206. package/dist/ui/hooks/useGlobalKeyboardShortcuts.d.ts +43 -0
  1207. package/dist/ui/hooks/useGlobalKeyboardShortcuts.d.ts.map +1 -0
  1208. package/dist/ui/hooks/useGlobalKeyboardShortcuts.js +196 -0
  1209. package/dist/ui/hooks/useGlobalKeyboardShortcuts.js.map +1 -0
  1210. package/dist/ui/hooks/useKeyboardShortcuts.d.ts +22 -0
  1211. package/dist/ui/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  1212. package/dist/ui/hooks/useKeyboardShortcuts.js +56 -0
  1213. package/dist/ui/hooks/useKeyboardShortcuts.js.map +1 -0
  1214. package/dist/ui/hooks/useMCPNavigation.d.ts +79 -0
  1215. package/dist/ui/hooks/useMCPNavigation.d.ts.map +1 -0
  1216. package/dist/ui/hooks/useMCPNavigation.js +228 -0
  1217. package/dist/ui/hooks/useMCPNavigation.js.map +1 -0
  1218. package/dist/ui/hooks/useMouse.d.ts +19 -0
  1219. package/dist/ui/hooks/useMouse.d.ts.map +1 -0
  1220. package/dist/ui/hooks/useMouse.js +115 -0
  1221. package/dist/ui/hooks/useMouse.js.map +1 -0
  1222. package/dist/ui/hooks/useNotifications.d.ts +43 -0
  1223. package/dist/ui/hooks/useNotifications.d.ts.map +1 -0
  1224. package/dist/ui/hooks/useNotifications.js +92 -0
  1225. package/dist/ui/hooks/useNotifications.js.map +1 -0
  1226. package/dist/ui/hooks/useTabEscapeHandler.d.ts +42 -0
  1227. package/dist/ui/hooks/useTabEscapeHandler.d.ts.map +1 -0
  1228. package/dist/ui/hooks/useTabEscapeHandler.js +56 -0
  1229. package/dist/ui/hooks/useTabEscapeHandler.js.map +1 -0
  1230. package/dist/ui/hooks/useTerminal.d.ts +7 -0
  1231. package/dist/ui/hooks/useTerminal.d.ts.map +1 -0
  1232. package/dist/ui/hooks/useTerminal.js +7 -0
  1233. package/dist/ui/hooks/useTerminal.js.map +1 -0
  1234. package/dist/ui/hooks/useTerminal2.d.ts +7 -0
  1235. package/dist/ui/hooks/useTerminal2.d.ts.map +1 -0
  1236. package/dist/ui/hooks/useTerminal2.js +7 -0
  1237. package/dist/ui/hooks/useTerminal2.js.map +1 -0
  1238. package/dist/ui/services/docsService.d.ts +44 -0
  1239. package/dist/ui/services/docsService.d.ts.map +1 -0
  1240. package/dist/ui/services/docsService.js +103 -0
  1241. package/dist/ui/services/docsService.js.map +1 -0
  1242. package/dist/ui/services/index.d.ts +7 -0
  1243. package/dist/ui/services/index.d.ts.map +1 -0
  1244. package/dist/ui/services/index.js +7 -0
  1245. package/dist/ui/services/index.js.map +1 -0
  1246. package/dist/ui/services/keyboardHandler.d.ts +71 -0
  1247. package/dist/ui/services/keyboardHandler.d.ts.map +1 -0
  1248. package/dist/ui/services/keyboardHandler.js +166 -0
  1249. package/dist/ui/services/keyboardHandler.js.map +1 -0
  1250. package/dist/ui/services/themeManager.d.ts +65 -0
  1251. package/dist/ui/services/themeManager.d.ts.map +1 -0
  1252. package/dist/ui/services/themeManager.js +158 -0
  1253. package/dist/ui/services/themeManager.js.map +1 -0
  1254. package/dist/ui/test-utils/TestProviders.d.ts +6 -0
  1255. package/dist/ui/test-utils/TestProviders.d.ts.map +1 -0
  1256. package/dist/ui/test-utils/TestProviders.js +54 -0
  1257. package/dist/ui/test-utils/TestProviders.js.map +1 -0
  1258. package/dist/ui/utils/errorHandling.d.ts +65 -0
  1259. package/dist/ui/utils/errorHandling.d.ts.map +1 -0
  1260. package/dist/ui/utils/errorHandling.js +242 -0
  1261. package/dist/ui/utils/errorHandling.js.map +1 -0
  1262. package/dist/ui/utils/errorLogger.d.ts +41 -0
  1263. package/dist/ui/utils/errorLogger.d.ts.map +1 -0
  1264. package/dist/ui/utils/errorLogger.js +126 -0
  1265. package/dist/ui/utils/errorLogger.js.map +1 -0
  1266. package/dist/ui/utils/keyUtils.d.ts +16 -0
  1267. package/dist/ui/utils/keyUtils.d.ts.map +1 -0
  1268. package/dist/ui/utils/keyUtils.js +70 -0
  1269. package/dist/ui/utils/keyUtils.js.map +1 -0
  1270. package/dist/ui/utils/performanceProfiler.d.ts +83 -0
  1271. package/dist/ui/utils/performanceProfiler.d.ts.map +1 -0
  1272. package/dist/ui/utils/performanceProfiler.js +160 -0
  1273. package/dist/ui/utils/performanceProfiler.js.map +1 -0
  1274. package/dist/ui/utils/terminalSerializer.d.ts +38 -0
  1275. package/dist/ui/utils/terminalSerializer.d.ts.map +1 -0
  1276. package/dist/ui/utils/terminalSerializer.js +451 -0
  1277. package/dist/ui/utils/terminalSerializer.js.map +1 -0
  1278. package/dist/ui/utils/windowDisplayLabels.d.ts +13 -0
  1279. package/dist/ui/utils/windowDisplayLabels.d.ts.map +1 -0
  1280. package/dist/ui/utils/windowDisplayLabels.js +29 -0
  1281. package/dist/ui/utils/windowDisplayLabels.js.map +1 -0
  1282. package/dist/utils/events.d.ts +24 -0
  1283. package/dist/utils/events.d.ts.map +1 -0
  1284. package/dist/utils/events.js +19 -0
  1285. package/dist/utils/events.js.map +1 -0
  1286. package/dist/utils/stdio.d.ts +29 -0
  1287. package/dist/utils/stdio.d.ts.map +1 -0
  1288. package/dist/utils/stdio.js +200 -0
  1289. package/dist/utils/stdio.js.map +1 -0
  1290. package/dist/utils/terminal.d.ts +16 -0
  1291. package/dist/utils/terminal.d.ts.map +1 -0
  1292. package/dist/utils/terminal.js +51 -0
  1293. package/dist/utils/terminal.js.map +1 -0
  1294. package/docs/Context/CheckpointFlowDiagram.md +673 -0
  1295. package/docs/Context/ContextArchitecture.md +898 -0
  1296. package/docs/Context/ContextCompression.md +1102 -0
  1297. package/docs/Context/ContextManagment.md +750 -0
  1298. package/docs/Context/Index.md +209 -0
  1299. package/docs/Context/README.md +390 -0
  1300. package/docs/DevelopmentRoadmap/Index.md +238 -0
  1301. package/docs/DevelopmentRoadmap/OLLM-CLI_Releases.md +419 -0
  1302. package/docs/DevelopmentRoadmap/PlanedFeatures.md +448 -0
  1303. package/docs/DevelopmentRoadmap/README.md +174 -0
  1304. package/docs/DevelopmentRoadmap/Roadmap.md +572 -0
  1305. package/docs/DevelopmentRoadmap/RoadmapVisual.md +372 -0
  1306. package/docs/Hooks/Architecture.md +885 -0
  1307. package/docs/Hooks/Index.md +244 -0
  1308. package/docs/Hooks/KeyboardShortcuts.md +248 -0
  1309. package/docs/Hooks/Protocol.md +817 -0
  1310. package/docs/Hooks/README.md +403 -0
  1311. package/docs/Hooks/UserGuide.md +1483 -0
  1312. package/docs/Hooks/VisualGuide.md +598 -0
  1313. package/docs/Index.md +506 -0
  1314. package/docs/Installation.md +586 -0
  1315. package/docs/Introduction.md +367 -0
  1316. package/docs/LLM Models/Index.md +239 -0
  1317. package/docs/LLM Models/LLM_GettingStarted.md +748 -0
  1318. package/docs/LLM Models/LLM_Index.md +701 -0
  1319. package/docs/LLM Models/LLM_MemorySystem.md +337 -0
  1320. package/docs/LLM Models/LLM_ModelCompatibility.md +499 -0
  1321. package/docs/LLM Models/LLM_ModelsArchitecture.md +933 -0
  1322. package/docs/LLM Models/LLM_ModelsCommands.md +839 -0
  1323. package/docs/LLM Models/LLM_ModelsConfiguration.md +1094 -0
  1324. package/docs/LLM Models/LLM_ModelsList.md +1071 -0
  1325. package/docs/LLM Models/LLM_ModelsList.md.backup +400 -0
  1326. package/docs/LLM Models/README.md +355 -0
  1327. package/docs/MCP/MCP_Architecture.md +1086 -0
  1328. package/docs/MCP/MCP_Commands.md +1111 -0
  1329. package/docs/MCP/MCP_GettingStarted.md +590 -0
  1330. package/docs/MCP/MCP_Index.md +524 -0
  1331. package/docs/MCP/MCP_Integration.md +866 -0
  1332. package/docs/MCP/MCP_Marketplace.md +160 -0
  1333. package/docs/MCP/README.md +415 -0
  1334. package/docs/Prompts System/Architecture.md +760 -0
  1335. package/docs/Prompts System/Index.md +223 -0
  1336. package/docs/Prompts System/PromptsRouting.md +1047 -0
  1337. package/docs/Prompts System/PromptsTemplates.md +1102 -0
  1338. package/docs/Prompts System/README.md +389 -0
  1339. package/docs/Prompts System/SystemPrompts.md +856 -0
  1340. package/docs/Quickstart.md +535 -0
  1341. package/docs/README.md +410 -0
  1342. package/docs/Tools/Architecture.md +884 -0
  1343. package/docs/Tools/GettingStarted.md +624 -0
  1344. package/docs/Tools/Index.md +216 -0
  1345. package/docs/Tools/ManifestReference.md +141 -0
  1346. package/docs/Tools/README.md +440 -0
  1347. package/docs/Tools/UserGuide.md +773 -0
  1348. package/docs/Troubleshooting.md +1265 -0
  1349. package/docs/UI&Settings/Architecture.md +729 -0
  1350. package/docs/UI&Settings/ColorASCII.md +34 -0
  1351. package/docs/UI&Settings/Commands.md +755 -0
  1352. package/docs/UI&Settings/Configuration.md +872 -0
  1353. package/docs/UI&Settings/Index.md +293 -0
  1354. package/docs/UI&Settings/Keybinds.md +372 -0
  1355. package/docs/UI&Settings/README.md +278 -0
  1356. package/docs/UI&Settings/Terminal.md +637 -0
  1357. package/docs/UI&Settings/Themes.md +604 -0
  1358. package/docs/UI&Settings/UIGuide.md +550 -0
  1359. package/package.json +82 -0
@@ -0,0 +1,105 @@
1
+ /**
2
+ * Prompt Utility Functions
3
+ *
4
+ * Helper functions for prompt management and tier resolution.
5
+ * Extracted from ChatContext.tsx for better organization.
6
+ */
7
+ import { existsSync, readFileSync } from 'fs';
8
+ import path from 'path';
9
+ import { ContextTier, OperationalMode, TieredPromptStore } from '@ollm/core';
10
+ const tieredPromptStore = new TieredPromptStore();
11
+ tieredPromptStore.load();
12
+ /**
13
+ * Resolve context tier based on size
14
+ */
15
+ export function resolveTierForSize(size) {
16
+ if (size < 8192)
17
+ return ContextTier.TIER_1_MINIMAL;
18
+ if (size < 16384)
19
+ return ContextTier.TIER_2_BASIC;
20
+ if (size < 32768)
21
+ return ContextTier.TIER_3_STANDARD;
22
+ if (size < 65536)
23
+ return ContextTier.TIER_4_PREMIUM;
24
+ return ContextTier.TIER_5_ULTRA;
25
+ }
26
+ /**
27
+ * Convert mode string to OperationalMode enum
28
+ */
29
+ export function toOperationalMode(mode) {
30
+ switch (mode) {
31
+ case 'assistant':
32
+ return OperationalMode.ASSISTANT;
33
+ case 'planning':
34
+ return OperationalMode.PLANNING;
35
+ case 'debugger':
36
+ return OperationalMode.DEBUGGER;
37
+ case 'developer':
38
+ default:
39
+ return OperationalMode.DEVELOPER;
40
+ }
41
+ }
42
+ /**
43
+ * Convert tier to key string for prompt loading
44
+ */
45
+ export function tierToKey(tier) {
46
+ switch (tier) {
47
+ case ContextTier.TIER_1_MINIMAL:
48
+ return 'tier1';
49
+ case ContextTier.TIER_2_BASIC:
50
+ return 'tier2';
51
+ case ContextTier.TIER_3_STANDARD:
52
+ return 'tier3';
53
+ case ContextTier.TIER_4_PREMIUM:
54
+ case ContextTier.TIER_5_ULTRA:
55
+ return 'tier4';
56
+ default:
57
+ return 'tier3';
58
+ }
59
+ }
60
+ /**
61
+ * Load tier prompt with fallback to file system
62
+ */
63
+ export function loadTierPromptWithFallback(mode, tier) {
64
+ const fromStore = tieredPromptStore.get(mode, tier);
65
+ if (fromStore) {
66
+ return fromStore;
67
+ }
68
+ const tierKey = tierToKey(tier);
69
+ const candidates = [
70
+ path.join(process.cwd(), 'packages', 'core', 'dist', 'prompts', 'templates', mode, `${tierKey}.txt`),
71
+ path.join(process.cwd(), 'packages', 'core', 'src', 'prompts', 'templates', mode, `${tierKey}.txt`),
72
+ ];
73
+ for (const candidate of candidates) {
74
+ try {
75
+ if (existsSync(candidate)) {
76
+ const content = readFileSync(candidate, 'utf8').trim();
77
+ if (content) {
78
+ return content;
79
+ }
80
+ }
81
+ }
82
+ catch (_e) {
83
+ // ignore and keep trying
84
+ }
85
+ }
86
+ return '';
87
+ }
88
+ /**
89
+ * Strip a section from source string
90
+ */
91
+ export function stripSection(source, section) {
92
+ if (!section)
93
+ return source;
94
+ const trimmed = source.trim();
95
+ const target = section.trim();
96
+ if (!target)
97
+ return source;
98
+ const index = trimmed.indexOf(target);
99
+ if (index === -1)
100
+ return source;
101
+ const before = trimmed.slice(0, index).trim();
102
+ const after = trimmed.slice(index + target.length).trim();
103
+ return [before, after].filter(Boolean).join('\n\n').trim();
104
+ }
105
+ //# sourceMappingURL=promptUtils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"promptUtils.js","sourceRoot":"","sources":["../../../../src/features/context/utils/promptUtils.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,39 @@
1
+ /**
2
+ * System Prompt Builder Utility
3
+ *
4
+ * Builds the final system prompt for LLM requests.
5
+ * Handles reasoning model simplification, tool support notes, and focused files injection.
6
+ *
7
+ * Extracted from ChatContext.tsx for better separation of concerns.
8
+ *
9
+ * TODO: This logic should eventually be moved to core PromptOrchestrator.
10
+ * The reasoning model simplification and tool support notes should be handled
11
+ * by the core prompt building system, not in the CLI layer. This is a temporary
12
+ * solution to reduce ChatContext.tsx size.
13
+ *
14
+ * Proper architecture:
15
+ * - PromptOrchestrator (core) should handle reasoning model detection
16
+ * - PromptOrchestrator should handle tool support notes
17
+ * - ChatContext should only add CLI-specific things (focused files)
18
+ */
19
+ import type { LLMProfile } from '../../../config/types.js';
20
+ export interface BuildSystemPromptOptions {
21
+ /** Base system prompt from context manager */
22
+ basePrompt: string;
23
+ /** Tier-specific prompt template */
24
+ tierPrompt: string;
25
+ /** Model profile for reasoning detection */
26
+ modelProfile: LLMProfile | undefined;
27
+ /** Whether the model supports tools */
28
+ supportsTools: boolean;
29
+ /** Focused files injection function */
30
+ injectFocusedFiles: (prompt: string) => string;
31
+ }
32
+ /**
33
+ * Build the final system prompt for LLM requests
34
+ *
35
+ * @param options - Prompt building options
36
+ * @returns Final system prompt ready to send to LLM
37
+ */
38
+ export declare function buildSystemPrompt(options: BuildSystemPromptOptions): string;
39
+ //# sourceMappingURL=systemPromptBuilder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"systemPromptBuilder.d.ts","sourceRoot":"","sources":["../../../../src/features/context/utils/systemPromptBuilder.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAIH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAE3D,MAAM,WAAW,wBAAwB;IACvC,8CAA8C;IAC9C,UAAU,EAAE,MAAM,CAAC;IAEnB,oCAAoC;IACpC,UAAU,EAAE,MAAM,CAAC;IAEnB,4CAA4C;IAC5C,YAAY,EAAE,UAAU,GAAG,SAAS,CAAC;IAErC,uCAAuC;IACvC,aAAa,EAAE,OAAO,CAAC;IAEvB,uCAAuC;IACvC,kBAAkB,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,MAAM,CAAC;CAChD;AAED;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,wBAAwB,GAAG,MAAM,CA4C3E"}
@@ -0,0 +1,66 @@
1
+ /**
2
+ * System Prompt Builder Utility
3
+ *
4
+ * Builds the final system prompt for LLM requests.
5
+ * Handles reasoning model simplification, tool support notes, and focused files injection.
6
+ *
7
+ * Extracted from ChatContext.tsx for better separation of concerns.
8
+ *
9
+ * TODO: This logic should eventually be moved to core PromptOrchestrator.
10
+ * The reasoning model simplification and tool support notes should be handled
11
+ * by the core prompt building system, not in the CLI layer. This is a temporary
12
+ * solution to reduce ChatContext.tsx size.
13
+ *
14
+ * Proper architecture:
15
+ * - PromptOrchestrator (core) should handle reasoning model detection
16
+ * - PromptOrchestrator should handle tool support notes
17
+ * - ChatContext should only add CLI-specific things (focused files)
18
+ */
19
+ import { stripSection } from './promptUtils.js';
20
+ /**
21
+ * Build the final system prompt for LLM requests
22
+ *
23
+ * @param options - Prompt building options
24
+ * @returns Final system prompt ready to send to LLM
25
+ */
26
+ export function buildSystemPrompt(options) {
27
+ const { basePrompt, tierPrompt, modelProfile, supportsTools, injectFocusedFiles } = options;
28
+ let systemPrompt = basePrompt;
29
+ // Check if this is a reasoning model
30
+ const isReasoningModel = modelProfile?.thinking_enabled === true;
31
+ // For reasoning models, use a simplified system prompt to avoid verbose thinking about rules
32
+ if (isReasoningModel) {
33
+ systemPrompt = `You are a helpful AI assistant for developers. You help with coding, debugging, and technical questions.
34
+
35
+ Key guidelines:
36
+ - Provide accurate, clear information
37
+ - Explain concepts simply and directly
38
+ - Use code examples when helpful
39
+ - Follow project conventions when working with code
40
+ - Ask for clarification if the request is unclear
41
+ ${supportsTools ? '\nIMPORTANT - Web Search Behavior:\n- When you use web_search, it returns URLs and titles - SHARE THOSE DIRECTLY with the user\n- DO NOT try to fetch or scrape the URLs unless the user explicitly asks you to read a specific page\n- DO NOT make up information - if web_search returns no results, say "I couldn\'t find information about that"\n- The search results ARE the answer - don\'t overthink it' : ''}
42
+
43
+ Focus your thinking on the user's actual question, not on these instructions.`;
44
+ }
45
+ else {
46
+ // Non-reasoning models get the full detailed prompt
47
+ if (!supportsTools) {
48
+ systemPrompt +=
49
+ '\n\nNote: This model does not support function calling. Do not attempt to use tools or make tool calls.';
50
+ }
51
+ else {
52
+ // Add tool usage instructions for non-reasoning models
53
+ systemPrompt +=
54
+ '\n\nIMPORTANT - Web Search Behavior:\n- When you use web_search, it returns URLs and titles - SHARE THOSE DIRECTLY with the user\n- DO NOT try to fetch or scrape the URLs unless the user explicitly asks you to read a specific page\n- DO NOT make up information - if web_search returns no results, say "I couldn\'t find information about that"\n- The search results ARE the answer - don\'t overthink it';
55
+ }
56
+ const toolNote = supportsTools
57
+ ? ''
58
+ : 'Note: This model does not support function calling. Do not attempt to use tools or make tool calls.';
59
+ const rulesOnly = stripSection(stripSection(systemPrompt, tierPrompt), toolNote);
60
+ systemPrompt = [tierPrompt, rulesOnly, toolNote].filter(Boolean).join('\n\n');
61
+ }
62
+ // Inject focused files into system prompt (CLI-specific feature)
63
+ systemPrompt = injectFocusedFiles(systemPrompt);
64
+ return systemPrompt;
65
+ }
66
+ //# sourceMappingURL=systemPromptBuilder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"systemPromptBuilder.js","sourceRoot":"","sources":["../../../../src/features/context/utils/systemPromptBuilder.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAqBhD;;;;;GAKG;AACH,MAAM,UAAU,iBAAiB,CAAC,OAAiC;IACjE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,GAAG,OAAO,CAAC;IAE5F,IAAI,YAAY,GAAG,UAAU,CAAC;IAE9B,qCAAqC;IACrC,MAAM,gBAAgB,GAAG,YAAY,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAEjE,6FAA6F;IAC7F,IAAI,gBAAgB,EAAE,CAAC;QACrB,YAAY,GAAG;;;;;;;;EAQjB,aAAa,CAAC,CAAC,CAAC,iZAAiZ,CAAC,CAAC,CAAC,EAAE;;8EAE1V,CAAC;IAC7E,CAAC;SAAM,CAAC;QACN,oDAAoD;QACpD,IAAI,CAAC,aAAa,EAAE,CAAC;YACnB,YAAY;gBACV,yGAAyG,CAAC;QAC9G,CAAC;aAAM,CAAC;YACN,uDAAuD;YACvD,YAAY;gBACV,mZAAmZ,CAAC;QACxZ,CAAC;QAED,MAAM,QAAQ,GAAG,aAAa;YAC5B,CAAC,CAAC,EAAE;YACJ,CAAC,CAAC,qGAAqG,CAAC;QAE1G,MAAM,SAAS,GAAG,YAAY,CAAC,YAAY,CAAC,YAAY,EAAE,UAAU,CAAC,EAAE,QAAQ,CAAC,CAAC;QACjF,YAAY,GAAG,CAAC,UAAU,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAChF,CAAC;IAED,iEAAiE;IACjE,YAAY,GAAG,kBAAkB,CAAC,YAAY,CAAC,CAAC;IAEhD,OAAO,YAAY,CAAC;AACtB,CAAC"}
@@ -0,0 +1,73 @@
1
+ /**
2
+ * Adapter layer for converting between core Hook and UI Hook types
3
+ *
4
+ * The core Hook system uses a command-based structure for execution,
5
+ * while the UI uses a when/then structure for better user understanding.
6
+ * This adapter bridges the two representations.
7
+ */
8
+ import type { UIHook, UIHookEventType, UIHookActionType } from './types.js';
9
+ import type { Hook as CoreHook } from '@ollm/ollm-cli-core/hooks/types.js';
10
+ /**
11
+ * Convert a core Hook to a UI Hook
12
+ *
13
+ * This function attempts to parse the command field to extract when/then structure.
14
+ * If the command doesn't follow the expected format, it creates a best-effort UIHook.
15
+ *
16
+ * @param coreHook - The core hook to convert
17
+ * @param enabled - Whether the hook is enabled (from settings)
18
+ * @returns A UI-friendly hook representation
19
+ */
20
+ export declare function coreHookToUIHook(coreHook: CoreHook, enabled?: boolean): UIHook;
21
+ /**
22
+ * Convert a UI Hook to a core Hook
23
+ *
24
+ * This function creates a command string that encodes the when/then structure
25
+ * in a format that the core hook system can execute.
26
+ *
27
+ * @param uiHook - The UI hook to convert
28
+ * @returns A core hook representation
29
+ */
30
+ export declare function uiHookToCoreHook(uiHook: UIHook): CoreHook;
31
+ /**
32
+ * Validate that a UIHook has all required fields
33
+ *
34
+ * @param hook - The hook to validate
35
+ * @returns Array of validation error messages (empty if valid)
36
+ */
37
+ export declare function validateUIHook(hook: Partial<UIHook>): string[];
38
+ /**
39
+ * Create a new UIHook with default values
40
+ *
41
+ * @param overrides - Optional field overrides
42
+ * @returns A new UIHook with defaults
43
+ */
44
+ export declare function createDefaultUIHook(overrides?: Partial<UIHook>): UIHook;
45
+ /**
46
+ * Convert form data to a UIHook
47
+ *
48
+ * @param formData - Form data from the add/edit dialog
49
+ * @returns A UIHook instance
50
+ */
51
+ export declare function formDataToUIHook(formData: {
52
+ name: string;
53
+ description: string;
54
+ eventType: UIHookEventType;
55
+ patterns: string[];
56
+ actionType: UIHookActionType;
57
+ promptOrCommand: string;
58
+ }): Omit<UIHook, 'id' | 'enabled' | 'trusted' | 'source'>;
59
+ /**
60
+ * Convert a UIHook to form data
61
+ *
62
+ * @param hook - The hook to convert
63
+ * @returns Form data for editing
64
+ */
65
+ export declare function uiHookToFormData(hook: UIHook): {
66
+ name: string;
67
+ description: string;
68
+ eventType: UIHookEventType;
69
+ patterns: string[];
70
+ actionType: UIHookActionType;
71
+ promptOrCommand: string;
72
+ };
73
+ //# sourceMappingURL=adapter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adapter.d.ts","sourceRoot":"","sources":["../../../src/features/hooks/adapter.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC5E,OAAO,KAAK,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,oCAAoC,CAAC;AAE3E;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,GAAE,OAAe,GAAG,MAAM,CAuBrF;AAED;;;;;;;;GAQG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,QAAQ,CAazD;AA6GD;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG,MAAM,EAAE,CAqC9D;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG,MAAM,CAmBvE;AAWD;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE;IACzC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,eAAe,CAAC;IAC3B,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,UAAU,EAAE,gBAAgB,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;CACzB,GAAG,IAAI,CAAC,MAAM,EAAE,IAAI,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC,CAexD;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG;IAC9C,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,eAAe,CAAC;IAC3B,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,UAAU,EAAE,gBAAgB,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;CACzB,CASA"}
@@ -0,0 +1,259 @@
1
+ /**
2
+ * Adapter layer for converting between core Hook and UI Hook types
3
+ *
4
+ * The core Hook system uses a command-based structure for execution,
5
+ * while the UI uses a when/then structure for better user understanding.
6
+ * This adapter bridges the two representations.
7
+ */
8
+ /**
9
+ * Convert a core Hook to a UI Hook
10
+ *
11
+ * This function attempts to parse the command field to extract when/then structure.
12
+ * If the command doesn't follow the expected format, it creates a best-effort UIHook.
13
+ *
14
+ * @param coreHook - The core hook to convert
15
+ * @param enabled - Whether the hook is enabled (from settings)
16
+ * @returns A UI-friendly hook representation
17
+ */
18
+ export function coreHookToUIHook(coreHook, enabled = false) {
19
+ // Try to parse the command to extract when/then structure
20
+ const parsed = parseHookCommand(coreHook.command, coreHook.args);
21
+ return {
22
+ id: coreHook.id,
23
+ name: coreHook.name,
24
+ version: '1.0.0', // Default version if not specified
25
+ description: undefined, // Core hooks don't have descriptions
26
+ when: {
27
+ type: parsed.eventType,
28
+ patterns: parsed.patterns,
29
+ },
30
+ then: {
31
+ type: parsed.actionType,
32
+ prompt: parsed.actionType === 'askAgent' ? parsed.actionValue : undefined,
33
+ command: parsed.actionType === 'runCommand' ? parsed.actionValue : undefined,
34
+ },
35
+ enabled,
36
+ trusted: coreHook.source === 'builtin' || coreHook.source === 'user',
37
+ source: coreHook.source,
38
+ extensionName: coreHook.extensionName,
39
+ };
40
+ }
41
+ /**
42
+ * Convert a UI Hook to a core Hook
43
+ *
44
+ * This function creates a command string that encodes the when/then structure
45
+ * in a format that the core hook system can execute.
46
+ *
47
+ * @param uiHook - The UI hook to convert
48
+ * @returns A core hook representation
49
+ */
50
+ export function uiHookToCoreHook(uiHook) {
51
+ // Build command string that encodes the when/then structure
52
+ const command = buildHookCommand(uiHook);
53
+ return {
54
+ id: uiHook.id,
55
+ name: uiHook.name,
56
+ command,
57
+ args: [],
58
+ source: uiHook.source,
59
+ extensionName: uiHook.extensionName,
60
+ sourcePath: undefined,
61
+ };
62
+ }
63
+ /**
64
+ * Parse a hook command to extract when/then structure
65
+ *
66
+ * This is a best-effort parser that handles common command patterns.
67
+ * For hooks created through the UI, the command will follow a known format.
68
+ * For legacy hooks, we make reasonable assumptions.
69
+ *
70
+ * @param command - The command string to parse
71
+ * @param args - Optional command arguments
72
+ * @returns Parsed hook structure
73
+ */
74
+ function parseHookCommand(command, _args) {
75
+ // Default fallback values
76
+ let eventType = 'userTriggered';
77
+ let patterns;
78
+ let actionType = 'runCommand';
79
+ let actionValue = command;
80
+ // Try to parse structured command format: "event:action:value"
81
+ // Example: "fileEdited:*.ts:askAgent:Review changes"
82
+ const parts = command.split(':');
83
+ if (parts.length >= 3) {
84
+ // Parse event type
85
+ const eventPart = parts[0];
86
+ if (isUIHookEventType(eventPart)) {
87
+ eventType = eventPart;
88
+ }
89
+ // Parse patterns (for file events)
90
+ if (parts.length >= 4 && isFileEvent(eventType)) {
91
+ patterns = parts[1].split(',').map((p) => p.trim());
92
+ actionType = parts[2];
93
+ actionValue = parts.slice(3).join(':');
94
+ }
95
+ else {
96
+ actionType = parts[1];
97
+ actionValue = parts.slice(2).join(':');
98
+ }
99
+ }
100
+ return {
101
+ eventType,
102
+ patterns,
103
+ actionType,
104
+ actionValue,
105
+ };
106
+ }
107
+ /**
108
+ * Build a command string from a UI Hook
109
+ *
110
+ * Creates a structured command format that can be parsed back into a UIHook.
111
+ * Format: "eventType:patterns:actionType:actionValue"
112
+ *
113
+ * @param uiHook - The UI hook to encode
114
+ * @returns Command string
115
+ */
116
+ function buildHookCommand(uiHook) {
117
+ const parts = [uiHook.when.type];
118
+ // Add patterns for file events
119
+ if (uiHook.when.patterns && uiHook.when.patterns.length > 0) {
120
+ parts.push(uiHook.when.patterns.join(','));
121
+ }
122
+ // Add action type
123
+ parts.push(uiHook.then.type);
124
+ // Add action value
125
+ const actionValue = uiHook.then.type === 'askAgent' ? uiHook.then.prompt : uiHook.then.command;
126
+ if (actionValue) {
127
+ parts.push(actionValue);
128
+ }
129
+ return parts.join(':');
130
+ }
131
+ /**
132
+ * Type guard to check if a string is a valid UIHookEventType
133
+ */
134
+ function isUIHookEventType(value) {
135
+ return [
136
+ 'fileEdited',
137
+ 'fileCreated',
138
+ 'fileDeleted',
139
+ 'userTriggered',
140
+ 'promptSubmit',
141
+ 'agentStop',
142
+ ].includes(value);
143
+ }
144
+ /**
145
+ * Check if an event type is a file event
146
+ */
147
+ function isFileEvent(eventType) {
148
+ return ['fileEdited', 'fileCreated', 'fileDeleted'].includes(eventType);
149
+ }
150
+ /**
151
+ * Validate that a UIHook has all required fields
152
+ *
153
+ * @param hook - The hook to validate
154
+ * @returns Array of validation error messages (empty if valid)
155
+ */
156
+ export function validateUIHook(hook) {
157
+ const errors = [];
158
+ if (!hook.name || hook.name.trim() === '') {
159
+ errors.push('Hook name is required');
160
+ }
161
+ if (!hook.when?.type) {
162
+ errors.push('Hook event type is required');
163
+ }
164
+ if (!hook.then?.type) {
165
+ errors.push('Hook action type is required');
166
+ }
167
+ // Validate file events have patterns
168
+ if (hook.when?.type && isFileEvent(hook.when.type)) {
169
+ if (!hook.when.patterns || hook.when.patterns.length === 0) {
170
+ errors.push('File events require at least one file pattern');
171
+ }
172
+ }
173
+ // Validate askAgent has prompt
174
+ if (hook.then?.type === 'askAgent') {
175
+ if (!hook.then.prompt || hook.then.prompt.trim() === '') {
176
+ errors.push('askAgent action requires a prompt');
177
+ }
178
+ }
179
+ // Validate runCommand has command
180
+ if (hook.then?.type === 'runCommand') {
181
+ if (!hook.then.command || hook.then.command.trim() === '') {
182
+ errors.push('runCommand action requires a command');
183
+ }
184
+ }
185
+ return errors;
186
+ }
187
+ /**
188
+ * Create a new UIHook with default values
189
+ *
190
+ * @param overrides - Optional field overrides
191
+ * @returns A new UIHook with defaults
192
+ */
193
+ export function createDefaultUIHook(overrides) {
194
+ return {
195
+ id: generateHookId(),
196
+ name: '',
197
+ version: '1.0.0',
198
+ description: '',
199
+ when: {
200
+ type: 'fileEdited',
201
+ patterns: [],
202
+ },
203
+ then: {
204
+ type: 'askAgent',
205
+ prompt: '',
206
+ },
207
+ enabled: true,
208
+ trusted: false,
209
+ source: 'user',
210
+ ...overrides,
211
+ };
212
+ }
213
+ /**
214
+ * Generate a unique hook ID
215
+ *
216
+ * @returns A unique hook identifier
217
+ */
218
+ function generateHookId() {
219
+ return `hook-${Date.now()}-${Math.random().toString(36).substring(2, 11)}`;
220
+ }
221
+ /**
222
+ * Convert form data to a UIHook
223
+ *
224
+ * @param formData - Form data from the add/edit dialog
225
+ * @returns A UIHook instance
226
+ */
227
+ export function formDataToUIHook(formData) {
228
+ return {
229
+ name: formData.name,
230
+ version: '1.0.0',
231
+ description: formData.description || undefined,
232
+ when: {
233
+ type: formData.eventType,
234
+ patterns: formData.patterns.length > 0 ? formData.patterns : undefined,
235
+ },
236
+ then: {
237
+ type: formData.actionType,
238
+ prompt: formData.actionType === 'askAgent' ? formData.promptOrCommand : undefined,
239
+ command: formData.actionType === 'runCommand' ? formData.promptOrCommand : undefined,
240
+ },
241
+ };
242
+ }
243
+ /**
244
+ * Convert a UIHook to form data
245
+ *
246
+ * @param hook - The hook to convert
247
+ * @returns Form data for editing
248
+ */
249
+ export function uiHookToFormData(hook) {
250
+ return {
251
+ name: hook.name,
252
+ description: hook.description || '',
253
+ eventType: hook.when.type,
254
+ patterns: hook.when.patterns || [],
255
+ actionType: hook.then.type,
256
+ promptOrCommand: (hook.then.type === 'askAgent' ? hook.then.prompt : hook.then.command) || '',
257
+ };
258
+ }
259
+ //# sourceMappingURL=adapter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"adapter.js","sourceRoot":"","sources":["../../../src/features/hooks/adapter.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Hooks feature module
3
+ *
4
+ * This module provides UI-specific types and utilities for the Hooks Panel.
5
+ * It includes an adapter layer to convert between core Hook types and UI Hook types.
6
+ */
7
+ export type { UIHook, UIHookEventType, UIHookActionType, HookCategory, HookFormData, ValidationErrors, HookTestResult, DialogState, NavigationItem, } from './types.js';
8
+ export { coreHookToUIHook, uiHookToCoreHook, validateUIHook, createDefaultUIHook, formDataToUIHook, uiHookToFormData, } from './adapter.js';
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/features/hooks/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,YAAY,EACV,MAAM,EACN,eAAe,EACf,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,cAAc,EACd,WAAW,EACX,cAAc,GACf,MAAM,YAAY,CAAC;AAGpB,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,GACjB,MAAM,cAAc,CAAC"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Hooks feature module
3
+ *
4
+ * This module provides UI-specific types and utilities for the Hooks Panel.
5
+ * It includes an adapter layer to convert between core Hook types and UI Hook types.
6
+ */
7
+ // Export adapter functions
8
+ export { coreHookToUIHook, uiHookToCoreHook, validateUIHook, createDefaultUIHook, formDataToUIHook, uiHookToFormData, } from './adapter.js';
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/features/hooks/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAeH,2BAA2B;AAC3B,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,GACjB,MAAM,cAAc,CAAC"}