@vybestack/llxprt-code 0.1.18-nightly.250807.306d1939 → 0.1.18-nightly.250811.b0db22c6

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 (250) hide show
  1. package/README.md +1 -0
  2. package/dist/package.json +6 -4
  3. package/dist/src/acp/acpPeer.js +72 -64
  4. package/dist/src/acp/acpPeer.js.map +1 -1
  5. package/dist/src/auth/gemini-oauth-provider.d.ts +15 -0
  6. package/dist/src/auth/gemini-oauth-provider.js +33 -0
  7. package/dist/src/auth/gemini-oauth-provider.js.map +1 -0
  8. package/dist/src/auth/oauth-manager.d.ts +103 -0
  9. package/dist/src/auth/oauth-manager.js +326 -0
  10. package/dist/src/auth/oauth-manager.js.map +1 -0
  11. package/dist/src/auth/oauth-manager.spec.d.ts +6 -0
  12. package/dist/src/auth/oauth-manager.spec.js +523 -0
  13. package/dist/src/auth/oauth-manager.spec.js.map +1 -0
  14. package/dist/src/auth/qwen-oauth-provider.d.ts +14 -0
  15. package/dist/src/auth/qwen-oauth-provider.js +75 -0
  16. package/dist/src/auth/qwen-oauth-provider.js.map +1 -0
  17. package/dist/src/auth/types.d.ts +7 -0
  18. package/dist/src/auth/types.js +7 -0
  19. package/dist/src/auth/types.js.map +1 -0
  20. package/dist/src/commands/mcp/add.d.ts +7 -0
  21. package/dist/src/commands/mcp/add.js +155 -0
  22. package/dist/src/commands/mcp/add.js.map +1 -0
  23. package/dist/src/commands/mcp/list.d.ts +8 -0
  24. package/dist/src/commands/mcp/list.js +110 -0
  25. package/dist/src/commands/mcp/list.js.map +1 -0
  26. package/dist/src/commands/mcp/remove.d.ts +7 -0
  27. package/dist/src/commands/mcp/remove.js +44 -0
  28. package/dist/src/commands/mcp/remove.js.map +1 -0
  29. package/dist/src/commands/mcp.d.ts +7 -0
  30. package/dist/src/commands/mcp.js +23 -0
  31. package/dist/src/commands/mcp.js.map +1 -0
  32. package/dist/src/config/auth.js +9 -0
  33. package/dist/src/config/auth.js.map +1 -1
  34. package/dist/src/config/config.js +100 -43
  35. package/dist/src/config/config.js.map +1 -1
  36. package/dist/src/config/keyBindings.d.ts +66 -0
  37. package/dist/src/config/keyBindings.js +136 -0
  38. package/dist/src/config/keyBindings.js.map +1 -0
  39. package/dist/src/config/settings.d.ts +3 -56
  40. package/dist/src/config/settings.js +20 -4
  41. package/dist/src/config/settings.js.map +1 -1
  42. package/dist/src/config/settingsSchema.d.ts +587 -0
  43. package/dist/src/config/settingsSchema.js +565 -0
  44. package/dist/src/config/settingsSchema.js.map +1 -0
  45. package/dist/src/gemini.js +12 -109
  46. package/dist/src/gemini.js.map +1 -1
  47. package/dist/src/generated/git-commit.d.ts +1 -1
  48. package/dist/src/generated/git-commit.js +1 -1
  49. package/dist/src/nonInteractiveCli.js +0 -1
  50. package/dist/src/nonInteractiveCli.js.map +1 -1
  51. package/dist/src/providers/logging/git-stats-service-impl.d.ts +19 -0
  52. package/dist/src/providers/logging/git-stats-service-impl.js +25 -0
  53. package/dist/src/providers/logging/git-stats-service-impl.js.map +1 -0
  54. package/dist/src/providers/logging/git-stats.d.ts +43 -0
  55. package/dist/src/providers/logging/git-stats.js +137 -0
  56. package/dist/src/providers/logging/git-stats.js.map +1 -0
  57. package/dist/src/providers/providerManagerInstance.js +42 -4
  58. package/dist/src/providers/providerManagerInstance.js.map +1 -1
  59. package/dist/src/services/BuiltinCommandLoader.js +4 -0
  60. package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
  61. package/dist/src/services/todo-continuation/todoContinuationService.d.ts +172 -0
  62. package/dist/src/services/todo-continuation/todoContinuationService.js +387 -0
  63. package/dist/src/services/todo-continuation/todoContinuationService.js.map +1 -0
  64. package/dist/src/services/todo-continuation/todoContinuationService.spec.d.ts +6 -0
  65. package/dist/src/services/todo-continuation/todoContinuationService.spec.js +385 -0
  66. package/dist/src/services/todo-continuation/todoContinuationService.spec.js.map +1 -0
  67. package/dist/src/ui/App.js +123 -37
  68. package/dist/src/ui/App.js.map +1 -1
  69. package/dist/src/ui/IdeIntegrationNudge.d.ts +14 -0
  70. package/dist/src/ui/IdeIntegrationNudge.js +32 -0
  71. package/dist/src/ui/IdeIntegrationNudge.js.map +1 -0
  72. package/dist/src/ui/colors.d.ts +5 -0
  73. package/dist/src/ui/colors.js +51 -0
  74. package/dist/src/ui/colors.js.map +1 -1
  75. package/dist/src/ui/commands/authCommand.d.ts +11 -1
  76. package/dist/src/ui/commands/authCommand.js +143 -48
  77. package/dist/src/ui/commands/authCommand.js.map +1 -1
  78. package/dist/src/ui/commands/chatCommand.js +16 -0
  79. package/dist/src/ui/commands/chatCommand.js.map +1 -1
  80. package/dist/src/ui/commands/diagnosticsCommand.js +9 -1
  81. package/dist/src/ui/commands/diagnosticsCommand.js.map +1 -1
  82. package/dist/src/ui/commands/ideCommand.js +67 -31
  83. package/dist/src/ui/commands/ideCommand.js.map +1 -1
  84. package/dist/src/ui/commands/keyfileCommand.js +15 -12
  85. package/dist/src/ui/commands/keyfileCommand.js.map +1 -1
  86. package/dist/src/ui/commands/loggingCommand.d.ts +15 -0
  87. package/dist/src/ui/commands/loggingCommand.js +421 -0
  88. package/dist/src/ui/commands/loggingCommand.js.map +1 -0
  89. package/dist/src/ui/commands/mcpCommand.js.map +1 -1
  90. package/dist/src/ui/commands/privacyCommand.d.ts +3 -0
  91. package/dist/src/ui/commands/privacyCommand.js +6 -3
  92. package/dist/src/ui/commands/privacyCommand.js.map +1 -1
  93. package/dist/src/ui/commands/profileCommand.js +1 -0
  94. package/dist/src/ui/commands/profileCommand.js.map +1 -1
  95. package/dist/src/ui/commands/setCommand.js +2 -0
  96. package/dist/src/ui/commands/setCommand.js.map +1 -1
  97. package/dist/src/ui/commands/settingsCommand.d.ts +7 -0
  98. package/dist/src/ui/commands/settingsCommand.js +16 -0
  99. package/dist/src/ui/commands/settingsCommand.js.map +1 -0
  100. package/dist/src/ui/commands/setupGithubCommand.js +90 -26
  101. package/dist/src/ui/commands/setupGithubCommand.js.map +1 -1
  102. package/dist/src/ui/commands/toolsCommand.js.map +1 -1
  103. package/dist/src/ui/commands/types.d.ts +14 -2
  104. package/dist/src/ui/commands/types.js.map +1 -1
  105. package/dist/src/ui/components/AuthDialog.js +13 -56
  106. package/dist/src/ui/components/AuthDialog.js.map +1 -1
  107. package/dist/src/ui/components/AuthInProgress.js +3 -3
  108. package/dist/src/ui/components/AuthInProgress.js.map +1 -1
  109. package/dist/src/ui/components/ContextUsageDisplay.d.ts +10 -0
  110. package/dist/src/ui/components/ContextUsageDisplay.js +27 -0
  111. package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -0
  112. package/dist/src/ui/components/FolderTrustDialog.d.ts +16 -0
  113. package/dist/src/ui/components/FolderTrustDialog.js +38 -0
  114. package/dist/src/ui/components/FolderTrustDialog.js.map +1 -0
  115. package/dist/src/ui/components/Footer.js +132 -15
  116. package/dist/src/ui/components/Footer.js.map +1 -1
  117. package/dist/src/ui/components/InputPrompt.d.ts +1 -0
  118. package/dist/src/ui/components/InputPrompt.js +87 -31
  119. package/dist/src/ui/components/InputPrompt.js.map +1 -1
  120. package/dist/src/ui/components/LoggingDialog.d.ts +37 -0
  121. package/dist/src/ui/components/LoggingDialog.js +155 -0
  122. package/dist/src/ui/components/LoggingDialog.js.map +1 -0
  123. package/dist/src/ui/components/MemoryUsageDisplay.js +6 -4
  124. package/dist/src/ui/components/MemoryUsageDisplay.js.map +1 -1
  125. package/dist/src/ui/components/ProviderDialog.js +100 -26
  126. package/dist/src/ui/components/ProviderDialog.js.map +1 -1
  127. package/dist/src/ui/components/ProviderModelDialog.js +99 -27
  128. package/dist/src/ui/components/ProviderModelDialog.js.map +1 -1
  129. package/dist/src/ui/components/SettingsDialog.d.ts +14 -0
  130. package/dist/src/ui/components/SettingsDialog.js +247 -0
  131. package/dist/src/ui/components/SettingsDialog.js.map +1 -0
  132. package/dist/src/ui/components/ThemeDialog.js +4 -15
  133. package/dist/src/ui/components/ThemeDialog.js.map +1 -1
  134. package/dist/src/ui/components/TodoPanel.d.ts +11 -0
  135. package/dist/src/ui/components/TodoPanel.js +206 -0
  136. package/dist/src/ui/components/TodoPanel.js.map +1 -0
  137. package/dist/src/ui/components/ToolsDialog.d.ts +2 -2
  138. package/dist/src/ui/components/messages/ToolConfirmationMessage.js +116 -16
  139. package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -1
  140. package/dist/src/ui/components/messages/ToolGroupMessage.js +36 -8
  141. package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -1
  142. package/dist/src/ui/components/todo-utils.d.ts +16 -0
  143. package/dist/src/ui/components/todo-utils.js +41 -0
  144. package/dist/src/ui/components/todo-utils.js.map +1 -0
  145. package/dist/src/ui/contexts/SettingsContext.d.ts +9 -0
  146. package/dist/src/ui/contexts/SettingsContext.js +15 -0
  147. package/dist/src/ui/contexts/SettingsContext.js.map +1 -0
  148. package/dist/src/ui/contexts/TodoContext.d.ts +15 -0
  149. package/dist/src/ui/contexts/TodoContext.js +18 -0
  150. package/dist/src/ui/contexts/TodoContext.js.map +1 -0
  151. package/dist/src/ui/contexts/TodoProvider.d.ts +7 -0
  152. package/dist/src/ui/contexts/TodoProvider.js +62 -0
  153. package/dist/src/ui/contexts/TodoProvider.js.map +1 -0
  154. package/dist/src/ui/contexts/ToolCallContext.d.ts +19 -0
  155. package/dist/src/ui/contexts/ToolCallContext.js +13 -0
  156. package/dist/src/ui/contexts/ToolCallContext.js.map +1 -0
  157. package/dist/src/ui/contexts/ToolCallProvider.d.ts +12 -0
  158. package/dist/src/ui/contexts/ToolCallProvider.js +62 -0
  159. package/dist/src/ui/contexts/ToolCallProvider.js.map +1 -0
  160. package/dist/src/ui/hooks/atCommandProcessor.js +28 -4
  161. package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -1
  162. package/dist/src/ui/hooks/slashCommandProcessor.d.ts +6 -2
  163. package/dist/src/ui/hooks/slashCommandProcessor.js +142 -113
  164. package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
  165. package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
  166. package/dist/src/ui/hooks/useAtCompletion.js +180 -0
  167. package/dist/src/ui/hooks/useAtCompletion.js.map +1 -0
  168. package/dist/src/ui/hooks/useAuthCommand.js +14 -0
  169. package/dist/src/ui/hooks/useAuthCommand.js.map +1 -1
  170. package/dist/src/ui/hooks/useConsoleMessages.js +7 -0
  171. package/dist/src/ui/hooks/useConsoleMessages.js.map +1 -1
  172. package/dist/src/ui/hooks/useFolderTrust.d.ts +11 -0
  173. package/dist/src/ui/hooks/useFolderTrust.js +22 -0
  174. package/dist/src/ui/hooks/useFolderTrust.js.map +1 -0
  175. package/dist/src/ui/hooks/useGeminiStream.d.ts +1 -1
  176. package/dist/src/ui/hooks/useGeminiStream.js +16 -4
  177. package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
  178. package/dist/src/ui/hooks/useReactToolScheduler.js +12 -12
  179. package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -1
  180. package/dist/src/ui/hooks/useResponsive.d.ts +14 -0
  181. package/dist/src/ui/hooks/useResponsive.js +19 -0
  182. package/dist/src/ui/hooks/useResponsive.js.map +1 -0
  183. package/dist/src/ui/hooks/useSettingsCommand.d.ts +10 -0
  184. package/dist/src/ui/hooks/useSettingsCommand.js +21 -0
  185. package/dist/src/ui/hooks/useSettingsCommand.js.map +1 -0
  186. package/dist/src/ui/hooks/useTodoContinuation.d.ts +31 -0
  187. package/dist/src/ui/hooks/useTodoContinuation.js +148 -0
  188. package/dist/src/ui/hooks/useTodoContinuation.js.map +1 -0
  189. package/dist/src/ui/hooks/useTodoContinuation.spec.d.ts +6 -0
  190. package/dist/src/ui/hooks/useTodoContinuation.spec.js +378 -0
  191. package/dist/src/ui/hooks/useTodoContinuation.spec.js.map +1 -0
  192. package/dist/src/ui/hooks/useToolsDialog.d.ts +2 -2
  193. package/dist/src/ui/hooks/useToolsDialog.js.map +1 -1
  194. package/dist/src/ui/keyMatchers.d.ts +26 -0
  195. package/dist/src/ui/keyMatchers.js +68 -0
  196. package/dist/src/ui/keyMatchers.js.map +1 -0
  197. package/dist/src/ui/privacy/PrivacyNotice.js +10 -4
  198. package/dist/src/ui/privacy/PrivacyNotice.js.map +1 -1
  199. package/dist/src/ui/themes/semantic-resolver.d.ts +12 -0
  200. package/dist/src/ui/themes/semantic-resolver.js +32 -0
  201. package/dist/src/ui/themes/semantic-resolver.js.map +1 -0
  202. package/dist/src/ui/themes/semantic-tokens.d.ts +52 -0
  203. package/dist/src/ui/themes/semantic-tokens.js +7 -0
  204. package/dist/src/ui/themes/semantic-tokens.js.map +1 -0
  205. package/dist/src/ui/themes/theme-compat.d.ts +34 -0
  206. package/dist/src/ui/themes/theme-compat.js +65 -0
  207. package/dist/src/ui/themes/theme-compat.js.map +1 -0
  208. package/dist/src/ui/themes/theme-manager.d.ts +8 -0
  209. package/dist/src/ui/themes/theme-manager.js +18 -0
  210. package/dist/src/ui/themes/theme-manager.js.map +1 -1
  211. package/dist/src/ui/types.d.ts +1 -1
  212. package/dist/src/ui/utils/CodeColorizer.d.ts +2 -1
  213. package/dist/src/ui/utils/CodeColorizer.js +4 -3
  214. package/dist/src/ui/utils/CodeColorizer.js.map +1 -1
  215. package/dist/src/ui/utils/ConsolePatcher.d.ts +1 -0
  216. package/dist/src/ui/utils/ConsolePatcher.js +3 -0
  217. package/dist/src/ui/utils/ConsolePatcher.js.map +1 -1
  218. package/dist/src/ui/utils/MarkdownDisplay.js +4 -2
  219. package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -1
  220. package/dist/src/ui/utils/commandUtils.d.ts +1 -0
  221. package/dist/src/ui/utils/commandUtils.js +22 -1
  222. package/dist/src/ui/utils/commandUtils.js.map +1 -1
  223. package/dist/src/ui/utils/responsive.d.ts +16 -0
  224. package/dist/src/ui/utils/responsive.js +111 -0
  225. package/dist/src/ui/utils/responsive.js.map +1 -0
  226. package/dist/src/utils/cleanup.d.ts +2 -2
  227. package/dist/src/utils/cleanup.js +2 -2
  228. package/dist/src/utils/cleanup.js.map +1 -1
  229. package/dist/src/utils/dialogScopeUtils.d.ts +31 -0
  230. package/dist/src/utils/dialogScopeUtils.js +48 -0
  231. package/dist/src/utils/dialogScopeUtils.js.map +1 -0
  232. package/dist/src/utils/gitUtils.d.ts +21 -1
  233. package/dist/src/utils/gitUtils.js +70 -3
  234. package/dist/src/utils/gitUtils.js.map +1 -1
  235. package/dist/src/utils/privacy/ConversationDataRedactor.d.ts +75 -0
  236. package/dist/src/utils/privacy/ConversationDataRedactor.js +412 -0
  237. package/dist/src/utils/privacy/ConversationDataRedactor.js.map +1 -0
  238. package/dist/src/utils/privacy/PrivacyManager.d.ts +58 -0
  239. package/dist/src/utils/privacy/PrivacyManager.js +133 -0
  240. package/dist/src/utils/privacy/PrivacyManager.js.map +1 -0
  241. package/dist/src/utils/sandbox.js +430 -401
  242. package/dist/src/utils/sandbox.js.map +1 -1
  243. package/dist/src/utils/settingsUtils.d.ts +126 -0
  244. package/dist/src/utils/settingsUtils.js +327 -0
  245. package/dist/src/utils/settingsUtils.js.map +1 -0
  246. package/dist/tsconfig.tsbuildinfo +1 -1
  247. package/package.json +6 -4
  248. package/dist/src/ui/components/IDEContextDetailDisplay.d.ts +0 -12
  249. package/dist/src/ui/components/IDEContextDetailDisplay.js +0 -17
  250. package/dist/src/ui/components/IDEContextDetailDisplay.js.map +0 -1
@@ -0,0 +1,111 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2025 Google LLC
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ export const BREAKPOINTS = {
7
+ NARROW: 80,
8
+ STANDARD: 120,
9
+ WIDE: 160,
10
+ };
11
+ export function getBreakpoint(width) {
12
+ if (width < BREAKPOINTS.NARROW) {
13
+ return 'NARROW';
14
+ }
15
+ if (width <= BREAKPOINTS.STANDARD) {
16
+ return 'STANDARD';
17
+ }
18
+ return 'WIDE';
19
+ }
20
+ export function isNarrowWidth(width) {
21
+ return width < BREAKPOINTS.NARROW;
22
+ }
23
+ export function truncateMiddle(text, maxLength) {
24
+ if (text.length <= maxLength) {
25
+ return text;
26
+ }
27
+ if (maxLength <= 1) {
28
+ return '.';
29
+ }
30
+ if (maxLength <= 3) {
31
+ return '..';
32
+ }
33
+ const ellipsis = '...';
34
+ // For path-like strings, use smart path truncation
35
+ if (text.includes('/')) {
36
+ const segments = text.split('/');
37
+ if (segments.length < 2) {
38
+ // Not really a path, fall back to standard truncation
39
+ }
40
+ else {
41
+ const firstDir = segments[0];
42
+ const filename = segments[segments.length - 1];
43
+ const parentDir = segments.length > 2 ? segments[segments.length - 2] : '';
44
+ // Try: firstDir + ... + parentDir + filename
45
+ if (parentDir && segments.length >= 3) {
46
+ const candidate = firstDir + ellipsis + '/' + parentDir + '/' + filename;
47
+ if (candidate.length <= maxLength) {
48
+ return candidate;
49
+ }
50
+ }
51
+ // Try: firstDir + ... + filename
52
+ const candidate2 = firstDir + ellipsis + '/' + filename;
53
+ if (candidate2.length <= maxLength) {
54
+ return candidate2;
55
+ }
56
+ // Try: /firstChar + ... + endOfFilename (for very constrained cases)
57
+ if (maxLength <= 10) {
58
+ const firstChar = firstDir.length > 0 ? firstDir.charAt(0) : '/';
59
+ const availableForEnd = maxLength - firstChar.length - ellipsis.length - 1; // -1 for '/'
60
+ if (availableForEnd > 0) {
61
+ const endPart = filename.length <= availableForEnd
62
+ ? filename
63
+ : filename.substring(filename.length - availableForEnd);
64
+ return firstChar + ellipsis + '/' + endPart;
65
+ }
66
+ }
67
+ // Character-based fallback
68
+ const availableForStart = maxLength - ellipsis.length - filename.length - 1; // -1 for '/'
69
+ if (availableForStart > 0) {
70
+ const startPart = text.substring(0, availableForStart);
71
+ return startPart + ellipsis + '/' + filename;
72
+ }
73
+ }
74
+ }
75
+ // Standard middle truncation for non-path strings
76
+ const availableSpace = maxLength - ellipsis.length;
77
+ const startChars = Math.ceil(availableSpace / 2);
78
+ const endChars = Math.floor(availableSpace / 2);
79
+ const start = text.substring(0, startChars);
80
+ const end = text.substring(text.length - endChars);
81
+ return start + ellipsis + end;
82
+ }
83
+ export function truncateStart(text, maxLength) {
84
+ if (text.length <= maxLength) {
85
+ return text;
86
+ }
87
+ if (maxLength <= 1) {
88
+ return '.';
89
+ }
90
+ if (maxLength <= 3) {
91
+ return '.'.repeat(maxLength);
92
+ }
93
+ const ellipsis = '...';
94
+ const endChars = maxLength - ellipsis.length;
95
+ return ellipsis + text.slice(-endChars);
96
+ }
97
+ export function truncateEnd(text, maxLength) {
98
+ if (text.length <= maxLength) {
99
+ return text;
100
+ }
101
+ if (maxLength <= 1) {
102
+ return '.';
103
+ }
104
+ if (maxLength <= 3) {
105
+ return '.'.repeat(maxLength);
106
+ }
107
+ const ellipsis = '...';
108
+ const keepChars = maxLength - ellipsis.length;
109
+ return text.substring(0, keepChars) + ellipsis;
110
+ }
111
+ //# sourceMappingURL=responsive.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responsive.js","sourceRoot":"","sources":["../../../../src/ui/utils/responsive.ts"],"names":[],"mappings":"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"}
@@ -3,6 +3,6 @@
3
3
  * Copyright 2025 Google LLC
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
- export declare function registerCleanup(fn: () => void): void;
7
- export declare function runExitCleanup(): void;
6
+ export declare function registerCleanup(fn: (() => void) | (() => Promise<void>)): void;
7
+ export declare function runExitCleanup(): Promise<void>;
8
8
  export declare function cleanupCheckpoints(): Promise<void>;
@@ -10,10 +10,10 @@ const cleanupFunctions = [];
10
10
  export function registerCleanup(fn) {
11
11
  cleanupFunctions.push(fn);
12
12
  }
13
- export function runExitCleanup() {
13
+ export async function runExitCleanup() {
14
14
  for (const fn of cleanupFunctions) {
15
15
  try {
16
- fn();
16
+ await fn();
17
17
  }
18
18
  catch (_) {
19
19
  // Ignore errors during cleanup.
@@ -1 +1 @@
1
- {"version":3,"file":"cleanup.js","sourceRoot":"","sources":["../../../src/utils/cleanup.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,QAAQ,IAAI,EAAE,EAAE,MAAM,IAAI,CAAC;AACpC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAC5B,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAEhE,MAAM,gBAAgB,GAAsB,EAAE,CAAC;AAE/C,MAAM,UAAU,eAAe,CAAC,EAAc;IAC5C,gBAAgB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC5B,CAAC;AAED,MAAM,UAAU,cAAc;IAC5B,KAAK,MAAM,EAAE,IAAI,gBAAgB,EAAE,CAAC;QAClC,IAAI,CAAC;YACH,EAAE,EAAE,CAAC;QACP,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,gCAAgC;QAClC,CAAC;IACH,CAAC;IACD,gBAAgB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,kBAAkB;AACjD,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,kBAAkB;IACtC,MAAM,OAAO,GAAG,iBAAiB,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IACjD,MAAM,cAAc,GAAG,IAAI,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC;IACpD,IAAI,CAAC;QACH,MAAM,EAAE,CAAC,EAAE,CAAC,cAAc,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;IAChE,CAAC;IAAC,MAAM,CAAC;QACP,mEAAmE;IACrE,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"cleanup.js","sourceRoot":"","sources":["../../../src/utils/cleanup.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,QAAQ,IAAI,EAAE,EAAE,MAAM,IAAI,CAAC;AACpC,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAC5B,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAEhE,MAAM,gBAAgB,GAAgD,EAAE,CAAC;AAEzE,MAAM,UAAU,eAAe,CAAC,EAAwC;IACtE,gBAAgB,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC5B,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,cAAc;IAClC,KAAK,MAAM,EAAE,IAAI,gBAAgB,EAAE,CAAC;QAClC,IAAI,CAAC;YACH,MAAM,EAAE,EAAE,CAAC;QACb,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,gCAAgC;QAClC,CAAC;IACH,CAAC;IACD,gBAAgB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,kBAAkB;AACjD,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,kBAAkB;IACtC,MAAM,OAAO,GAAG,iBAAiB,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IACjD,MAAM,cAAc,GAAG,IAAI,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC;IACpD,IAAI,CAAC;QACH,MAAM,EAAE,CAAC,EAAE,CAAC,cAAc,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;IAChE,CAAC;IAAC,MAAM,CAAC;QACP,mEAAmE;IACrE,CAAC;AACH,CAAC"}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2025 Google LLC
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ import { SettingScope, LoadedSettings } from '../config/settings.js';
7
+ /**
8
+ * Shared scope labels for dialog components that need to display setting scopes
9
+ */
10
+ export declare const SCOPE_LABELS: {
11
+ readonly User: "User Settings";
12
+ readonly Workspace: "Workspace Settings";
13
+ readonly System: "System Settings";
14
+ };
15
+ /**
16
+ * Helper function to get scope items for radio button selects
17
+ */
18
+ export declare function getScopeItems(): ({
19
+ label: "User Settings";
20
+ value: SettingScope;
21
+ } | {
22
+ label: "Workspace Settings";
23
+ value: SettingScope;
24
+ } | {
25
+ label: "System Settings";
26
+ value: SettingScope;
27
+ })[];
28
+ /**
29
+ * Generate scope message for a specific setting
30
+ */
31
+ export declare function getScopeMessageForSetting(settingKey: string, selectedScope: SettingScope, settings: LoadedSettings): string;
@@ -0,0 +1,48 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2025 Google LLC
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ import { SettingScope } from '../config/settings.js';
7
+ import { settingExistsInScope } from './settingsUtils.js';
8
+ /**
9
+ * Shared scope labels for dialog components that need to display setting scopes
10
+ */
11
+ export const SCOPE_LABELS = {
12
+ [SettingScope.User]: 'User Settings',
13
+ [SettingScope.Workspace]: 'Workspace Settings',
14
+ [SettingScope.System]: 'System Settings',
15
+ };
16
+ /**
17
+ * Helper function to get scope items for radio button selects
18
+ */
19
+ export function getScopeItems() {
20
+ return [
21
+ { label: SCOPE_LABELS[SettingScope.User], value: SettingScope.User },
22
+ {
23
+ label: SCOPE_LABELS[SettingScope.Workspace],
24
+ value: SettingScope.Workspace,
25
+ },
26
+ { label: SCOPE_LABELS[SettingScope.System], value: SettingScope.System },
27
+ ];
28
+ }
29
+ /**
30
+ * Generate scope message for a specific setting
31
+ */
32
+ export function getScopeMessageForSetting(settingKey, selectedScope, settings) {
33
+ const otherScopes = Object.values(SettingScope).filter((scope) => scope !== selectedScope);
34
+ const modifiedInOtherScopes = otherScopes.filter((scope) => {
35
+ const scopeSettings = settings.forScope(scope).settings;
36
+ return settingExistsInScope(settingKey, scopeSettings);
37
+ });
38
+ if (modifiedInOtherScopes.length === 0) {
39
+ return '';
40
+ }
41
+ const modifiedScopesStr = modifiedInOtherScopes.join(', ');
42
+ const currentScopeSettings = settings.forScope(selectedScope).settings;
43
+ const existsInCurrentScope = settingExistsInScope(settingKey, currentScopeSettings);
44
+ return existsInCurrentScope
45
+ ? `(Also modified in ${modifiedScopesStr})`
46
+ : `(Modified in ${modifiedScopesStr})`;
47
+ }
48
+ //# sourceMappingURL=dialogScopeUtils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dialogScopeUtils.js","sourceRoot":"","sources":["../../../src/utils/dialogScopeUtils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,YAAY,EAAkB,MAAM,uBAAuB,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAE1D;;GAEG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,CAAC,YAAY,CAAC,IAAI,CAAC,EAAE,eAAe;IACpC,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,oBAAoB;IAC9C,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,iBAAiB;CAChC,CAAC;AAEX;;GAEG;AACH,MAAM,UAAU,aAAa;IAC3B,OAAO;QACL,EAAE,KAAK,EAAE,YAAY,CAAC,YAAY,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,IAAI,EAAE;QACpE;YACE,KAAK,EAAE,YAAY,CAAC,YAAY,CAAC,SAAS,CAAC;YAC3C,KAAK,EAAE,YAAY,CAAC,SAAS;SAC9B;QACD,EAAE,KAAK,EAAE,YAAY,CAAC,YAAY,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,MAAM,EAAE;KACzE,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,yBAAyB,CACvC,UAAkB,EAClB,aAA2B,EAC3B,QAAwB;IAExB,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,MAAM,CACpD,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,aAAa,CACnC,CAAC;IAEF,MAAM,qBAAqB,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE;QACzD,MAAM,aAAa,GAAG,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC;QACxD,OAAO,oBAAoB,CAAC,UAAU,EAAE,aAAa,CAAC,CAAC;IACzD,CAAC,CAAC,CAAC;IAEH,IAAI,qBAAqB,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACvC,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,MAAM,iBAAiB,GAAG,qBAAqB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC3D,MAAM,oBAAoB,GAAG,QAAQ,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC;IACvE,MAAM,oBAAoB,GAAG,oBAAoB,CAC/C,UAAU,EACV,oBAAoB,CACrB,CAAC;IAEF,OAAO,oBAAoB;QACzB,CAAC,CAAC,qBAAqB,iBAAiB,GAAG;QAC3C,CAAC,CAAC,gBAAgB,iBAAiB,GAAG,CAAC;AAC3C,CAAC"}
@@ -7,4 +7,24 @@
7
7
  * Checks if a directory is within a git repository hosted on GitHub.
8
8
  * @returns true if the directory is in a git repository with a github.com remote, false otherwise
9
9
  */
10
- export declare function isGitHubRepository(): boolean;
10
+ export declare const isGitHubRepository: () => boolean;
11
+ /**
12
+ * getGitRepoRoot returns the root directory of the git repository.
13
+ * @returns the path to the root of the git repo.
14
+ * @throws error if the exec command fails.
15
+ */
16
+ export declare const getGitRepoRoot: () => string;
17
+ /**
18
+ * getLatestGitHubRelease returns the release tag as a string.
19
+ * @returns string of the release tag (e.g. "v1.2.3").
20
+ */
21
+ export declare const getLatestGitHubRelease: (proxy?: string) => Promise<string>;
22
+ /**
23
+ * getGitHubRepoInfo returns the owner and repository for a GitHub repo.
24
+ * @returns the owner and repository of the github repo.
25
+ * @throws error if the exec command fails.
26
+ */
27
+ export declare function getGitHubRepoInfo(): {
28
+ owner: string;
29
+ repo: string;
30
+ };
@@ -4,21 +4,88 @@
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { execSync } from 'child_process';
7
+ import { ProxyAgent, setGlobalDispatcher } from 'undici';
7
8
  /**
8
9
  * Checks if a directory is within a git repository hosted on GitHub.
9
10
  * @returns true if the directory is in a git repository with a github.com remote, false otherwise
10
11
  */
11
- export function isGitHubRepository() {
12
+ export const isGitHubRepository = () => {
12
13
  try {
13
- const remotes = execSync('git remote -v', {
14
+ const remotes = (execSync('git remote -v', {
14
15
  encoding: 'utf-8',
15
- });
16
+ }) || '').trim();
16
17
  const pattern = /github\.com/;
17
18
  return pattern.test(remotes);
18
19
  }
19
20
  catch (_error) {
20
21
  // If any filesystem error occurs, assume not a git repo
22
+ console.debug(`Failed to get git remote:`, _error);
21
23
  return false;
22
24
  }
25
+ };
26
+ /**
27
+ * getGitRepoRoot returns the root directory of the git repository.
28
+ * @returns the path to the root of the git repo.
29
+ * @throws error if the exec command fails.
30
+ */
31
+ export const getGitRepoRoot = () => {
32
+ const gitRepoRoot = (execSync('git rev-parse --show-toplevel', {
33
+ encoding: 'utf-8',
34
+ }) || '').trim();
35
+ if (!gitRepoRoot) {
36
+ throw new Error(`Git repo returned empty value`);
37
+ }
38
+ return gitRepoRoot;
39
+ };
40
+ /**
41
+ * getLatestGitHubRelease returns the release tag as a string.
42
+ * @returns string of the release tag (e.g. "v1.2.3").
43
+ */
44
+ export const getLatestGitHubRelease = async (proxy) => {
45
+ try {
46
+ const controller = new AbortController();
47
+ if (proxy) {
48
+ setGlobalDispatcher(new ProxyAgent(proxy));
49
+ }
50
+ const endpoint = `https://api.github.com/repos/acoliver/run-llxprt-code/releases/latest`;
51
+ const response = await fetch(endpoint, {
52
+ method: 'GET',
53
+ headers: {
54
+ Accept: 'application/vnd.github+json',
55
+ 'Content-Type': 'application/json',
56
+ 'X-GitHub-Api-Version': '2022-11-28',
57
+ },
58
+ signal: controller.signal,
59
+ });
60
+ if (!response.ok) {
61
+ throw new Error(`Invalid response code: ${response.status} - ${response.statusText}`);
62
+ }
63
+ const releaseTag = (await response.json()).tag_name;
64
+ if (!releaseTag) {
65
+ throw new Error(`Response did not include tag_name field`);
66
+ }
67
+ return releaseTag;
68
+ }
69
+ catch (_error) {
70
+ console.debug(`Failed to determine latest run-llxprt-code release:`, _error);
71
+ throw new Error(`Unable to determine the latest run-llxprt-code release on GitHub.`);
72
+ }
73
+ };
74
+ /**
75
+ * getGitHubRepoInfo returns the owner and repository for a GitHub repo.
76
+ * @returns the owner and repository of the github repo.
77
+ * @throws error if the exec command fails.
78
+ */
79
+ export function getGitHubRepoInfo() {
80
+ const remoteUrl = execSync('git remote get-url origin', {
81
+ encoding: 'utf-8',
82
+ }).trim();
83
+ // Matches either https://github.com/owner/repo.git or git@github.com:owner/repo.git
84
+ const match = remoteUrl.match(/(?:https?:\/\/|git@)github\.com(?::|\/)([^/]+)\/([^/]+?)(?:\.git)?$/);
85
+ // If the regex fails match, throw an error.
86
+ if (!match || !match[1] || !match[2]) {
87
+ throw new Error(`Owner & repo could not be extracted from remote URL: ${remoteUrl}`);
88
+ }
89
+ return { owner: match[1], repo: match[2] };
23
90
  }
24
91
  //# sourceMappingURL=gitUtils.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"gitUtils.js","sourceRoot":"","sources":["../../../src/utils/gitUtils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC;;;GAGG;AACH,MAAM,UAAU,kBAAkB;IAChC,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,QAAQ,CAAC,eAAe,EAAE;YACxC,QAAQ,EAAE,OAAO;SAClB,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,aAAa,CAAC;QAE9B,OAAO,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAC/B,CAAC;IAAC,OAAO,MAAM,EAAE,CAAC;QAChB,wDAAwD;QACxD,OAAO,KAAK,CAAC;IACf,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"gitUtils.js","sourceRoot":"","sources":["../../../src/utils/gitUtils.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,75 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2025 Vybestack LLC
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ import { IMessage, ITool } from '@vybestack/llxprt-code-core';
7
+ export interface RedactionPattern {
8
+ name: string;
9
+ pattern: RegExp;
10
+ replacement: string;
11
+ enabled: boolean;
12
+ }
13
+ export interface RedactionConfig {
14
+ redactApiKeys: boolean;
15
+ redactCredentials: boolean;
16
+ redactFilePaths: boolean;
17
+ redactUrls: boolean;
18
+ redactEmails: boolean;
19
+ redactPersonalInfo: boolean;
20
+ customPatterns?: RedactionPattern[];
21
+ }
22
+ export declare class ConversationDataRedactor {
23
+ private redactionConfig;
24
+ private redactionPatterns;
25
+ constructor(config?: Partial<RedactionConfig>);
26
+ /**
27
+ * Redact sensitive data from a conversation message
28
+ */
29
+ redactMessage(message: IMessage, providerName: string): IMessage;
30
+ /**
31
+ * Redact sensitive data from tool definitions
32
+ */
33
+ redactToolCall(tool: ITool): ITool;
34
+ /**
35
+ * Redact sensitive data from response content
36
+ */
37
+ redactResponseContent(content: string, providerName: string): string;
38
+ /**
39
+ * Redact entire conversation consistently
40
+ */
41
+ redactConversation(messages: IMessage[], providerName: string): IMessage[];
42
+ /**
43
+ * Redact API keys from content based on provider
44
+ */
45
+ redactApiKeys(content: string, providerName: string): string;
46
+ /**
47
+ * Redact sensitive file paths
48
+ */
49
+ redactSensitivePaths(content: string): string;
50
+ /**
51
+ * Redact personal identifiable information
52
+ */
53
+ redactPersonalInfo(content: string): string;
54
+ private shouldRedact;
55
+ private redactContent;
56
+ private redactContentPart;
57
+ private redactToolParameters;
58
+ private redactFilePath;
59
+ private redactShellCommand;
60
+ private redactUrl;
61
+ private initializeRedactionPatterns;
62
+ private isPatternEnabled;
63
+ /**
64
+ * Update redaction configuration
65
+ */
66
+ updateConfig(config: Partial<RedactionConfig>): void;
67
+ /**
68
+ * Get current redaction statistics
69
+ */
70
+ getRedactionStats(content: string, providerName: string): RedactionStats;
71
+ }
72
+ export interface RedactionStats {
73
+ totalRedactions: number;
74
+ redactionsByType: Record<string, number>;
75
+ }