@shareai-lab/kode 1.0.71 → 1.0.73

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 (106) hide show
  1. package/README.md +142 -1
  2. package/README.zh-CN.md +47 -1
  3. package/package.json +5 -1
  4. package/src/ProjectOnboarding.tsx +47 -29
  5. package/src/Tool.ts +33 -4
  6. package/src/commands/agents.tsx +3401 -0
  7. package/src/commands/help.tsx +2 -2
  8. package/src/commands/resume.tsx +2 -1
  9. package/src/commands/terminalSetup.ts +4 -4
  10. package/src/commands.ts +3 -0
  11. package/src/components/ApproveApiKey.tsx +1 -1
  12. package/src/components/Config.tsx +10 -6
  13. package/src/components/ConsoleOAuthFlow.tsx +5 -4
  14. package/src/components/CustomSelect/select-option.tsx +28 -2
  15. package/src/components/CustomSelect/select.tsx +14 -5
  16. package/src/components/CustomSelect/theme.ts +45 -0
  17. package/src/components/Help.tsx +4 -4
  18. package/src/components/InvalidConfigDialog.tsx +1 -1
  19. package/src/components/LogSelector.tsx +1 -1
  20. package/src/components/MCPServerApprovalDialog.tsx +1 -1
  21. package/src/components/Message.tsx +2 -0
  22. package/src/components/ModelListManager.tsx +10 -6
  23. package/src/components/ModelSelector.tsx +201 -23
  24. package/src/components/ModelStatusDisplay.tsx +7 -5
  25. package/src/components/PromptInput.tsx +117 -87
  26. package/src/components/SentryErrorBoundary.ts +3 -3
  27. package/src/components/StickerRequestForm.tsx +16 -0
  28. package/src/components/StructuredDiff.tsx +36 -29
  29. package/src/components/TextInput.tsx +13 -0
  30. package/src/components/TodoItem.tsx +11 -0
  31. package/src/components/TrustDialog.tsx +1 -1
  32. package/src/components/messages/AssistantLocalCommandOutputMessage.tsx +5 -1
  33. package/src/components/messages/AssistantToolUseMessage.tsx +14 -4
  34. package/src/components/messages/TaskProgressMessage.tsx +32 -0
  35. package/src/components/messages/TaskToolMessage.tsx +58 -0
  36. package/src/components/permissions/FallbackPermissionRequest.tsx +2 -4
  37. package/src/components/permissions/FileEditPermissionRequest/FileEditPermissionRequest.tsx +1 -1
  38. package/src/components/permissions/FileEditPermissionRequest/FileEditToolDiff.tsx +5 -3
  39. package/src/components/permissions/FileWritePermissionRequest/FileWritePermissionRequest.tsx +1 -1
  40. package/src/components/permissions/FileWritePermissionRequest/FileWriteToolDiff.tsx +5 -3
  41. package/src/components/permissions/FilesystemPermissionRequest/FilesystemPermissionRequest.tsx +2 -4
  42. package/src/components/permissions/PermissionRequest.tsx +3 -5
  43. package/src/constants/macros.ts +2 -0
  44. package/src/constants/modelCapabilities.ts +179 -0
  45. package/src/constants/models.ts +90 -0
  46. package/src/constants/product.ts +1 -1
  47. package/src/context.ts +7 -7
  48. package/src/entrypoints/cli.tsx +23 -3
  49. package/src/entrypoints/mcp.ts +10 -10
  50. package/src/hooks/useCanUseTool.ts +1 -1
  51. package/src/hooks/useTextInput.ts +5 -2
  52. package/src/hooks/useUnifiedCompletion.ts +1404 -0
  53. package/src/messages.ts +1 -0
  54. package/src/query.ts +3 -0
  55. package/src/screens/ConfigureNpmPrefix.tsx +1 -1
  56. package/src/screens/Doctor.tsx +1 -1
  57. package/src/screens/REPL.tsx +15 -9
  58. package/src/services/adapters/base.ts +38 -0
  59. package/src/services/adapters/chatCompletions.ts +90 -0
  60. package/src/services/adapters/responsesAPI.ts +170 -0
  61. package/src/services/claude.ts +198 -62
  62. package/src/services/customCommands.ts +43 -22
  63. package/src/services/gpt5ConnectionTest.ts +340 -0
  64. package/src/services/mcpClient.ts +1 -1
  65. package/src/services/mentionProcessor.ts +273 -0
  66. package/src/services/modelAdapterFactory.ts +69 -0
  67. package/src/services/openai.ts +521 -12
  68. package/src/services/responseStateManager.ts +90 -0
  69. package/src/services/systemReminder.ts +113 -12
  70. package/src/test/testAdapters.ts +96 -0
  71. package/src/tools/AskExpertModelTool/AskExpertModelTool.tsx +120 -56
  72. package/src/tools/BashTool/BashTool.tsx +4 -31
  73. package/src/tools/BashTool/BashToolResultMessage.tsx +1 -1
  74. package/src/tools/BashTool/OutputLine.tsx +1 -0
  75. package/src/tools/FileEditTool/FileEditTool.tsx +4 -5
  76. package/src/tools/FileReadTool/FileReadTool.tsx +43 -10
  77. package/src/tools/MCPTool/MCPTool.tsx +2 -1
  78. package/src/tools/MultiEditTool/MultiEditTool.tsx +2 -2
  79. package/src/tools/NotebookReadTool/NotebookReadTool.tsx +15 -23
  80. package/src/tools/StickerRequestTool/StickerRequestTool.tsx +1 -1
  81. package/src/tools/TaskTool/TaskTool.tsx +170 -86
  82. package/src/tools/TaskTool/prompt.ts +61 -25
  83. package/src/tools/ThinkTool/ThinkTool.tsx +1 -3
  84. package/src/tools/TodoWriteTool/TodoWriteTool.tsx +11 -10
  85. package/src/tools/lsTool/lsTool.tsx +5 -2
  86. package/src/tools.ts +16 -16
  87. package/src/types/conversation.ts +51 -0
  88. package/src/types/logs.ts +58 -0
  89. package/src/types/modelCapabilities.ts +64 -0
  90. package/src/types/notebook.ts +87 -0
  91. package/src/utils/advancedFuzzyMatcher.ts +290 -0
  92. package/src/utils/agentLoader.ts +284 -0
  93. package/src/utils/ask.tsx +1 -0
  94. package/src/utils/commands.ts +1 -1
  95. package/src/utils/commonUnixCommands.ts +161 -0
  96. package/src/utils/config.ts +173 -2
  97. package/src/utils/conversationRecovery.ts +1 -0
  98. package/src/utils/debugLogger.ts +13 -13
  99. package/src/utils/exampleCommands.ts +1 -0
  100. package/src/utils/fuzzyMatcher.ts +328 -0
  101. package/src/utils/messages.tsx +6 -5
  102. package/src/utils/responseState.ts +23 -0
  103. package/src/utils/secureFile.ts +559 -0
  104. package/src/utils/terminal.ts +1 -0
  105. package/src/utils/theme.ts +11 -0
  106. package/src/hooks/useSlashCommandTypeahead.ts +0 -137
@@ -0,0 +1,559 @@
1
+ import { existsSync, readFileSync, writeFileSync, mkdirSync, statSync, unlinkSync, renameSync } from 'node:fs'
2
+ import { join, dirname, normalize, resolve, extname } from 'node:path'
3
+ import { homedir } from 'node:os'
4
+
5
+ /**
6
+ * 安全文件系统操作服务
7
+ * 解决文件系统操作中缺少适当验证和错误处理的问题
8
+ */
9
+ export class SecureFileService {
10
+ private static instance: SecureFileService
11
+ private allowedBasePaths: Set<string>
12
+ private maxFileSize: number
13
+ private allowedExtensions: Set<string>
14
+
15
+ private constructor() {
16
+ // 允许的基础路径
17
+ this.allowedBasePaths = new Set([
18
+ process.cwd(),
19
+ homedir(),
20
+ '/tmp',
21
+ '/var/tmp'
22
+ ])
23
+
24
+ // 默认最大文件大小 (10MB)
25
+ this.maxFileSize = 10 * 1024 * 1024
26
+
27
+ // 允许的文件扩展名
28
+ this.allowedExtensions = new Set([
29
+ '.txt', '.md', '.json', '.js', '.ts', '.tsx', '.jsx',
30
+ '.yaml', '.yml', '.toml', '.ini', '.env', '.log',
31
+ '.html', '.css', '.scss', '.less', '.xml', '.csv',
32
+ '.py', '.go', '.rs', '.java', '.cpp', '.c', '.h',
33
+ '.sh', '.bash', '.zsh', '.fish', '.ps1', '.bat',
34
+ '.dockerfile', '.gitignore', '.npmignore', '.eslintignore'
35
+ ])
36
+ }
37
+
38
+ public static getInstance(): SecureFileService {
39
+ if (!SecureFileService.instance) {
40
+ SecureFileService.instance = new SecureFileService()
41
+ }
42
+ return SecureFileService.instance
43
+ }
44
+
45
+ /**
46
+ * 验证文件路径是否安全
47
+ * @param filePath 文件路径
48
+ * @returns 验证结果
49
+ */
50
+ public validateFilePath(filePath: string): { isValid: boolean; normalizedPath: string; error?: string } {
51
+ try {
52
+ // 规范化路径
53
+ const normalizedPath = normalize(filePath)
54
+
55
+ // 检查路径长度
56
+ if (normalizedPath.length > 4096) {
57
+ return {
58
+ isValid: false,
59
+ normalizedPath,
60
+ error: 'Path too long (max 4096 characters)'
61
+ }
62
+ }
63
+
64
+ // 检查是否包含路径遍历字符
65
+ if (normalizedPath.includes('..') || normalizedPath.includes('~')) {
66
+ return {
67
+ isValid: false,
68
+ normalizedPath,
69
+ error: 'Path contains traversal characters'
70
+ }
71
+ }
72
+
73
+ // 检查是否包含可疑的字符序列
74
+ const suspiciousPatterns = [
75
+ /\.\./, // 父目录
76
+ /~/, // 用户目录
77
+ /\$\{/, // 环境变量
78
+ /`/, // 命令执行
79
+ /\|/, // 管道符
80
+ /;/, // 命令分隔符
81
+ /&/, // 后台执行
82
+ />/, // 输出重定向
83
+ /</, // 输入重定向
84
+ ]
85
+
86
+ for (const pattern of suspiciousPatterns) {
87
+ if (pattern.test(normalizedPath)) {
88
+ return {
89
+ isValid: false,
90
+ normalizedPath,
91
+ error: `Path contains suspicious pattern: ${pattern}`
92
+ }
93
+ }
94
+ }
95
+
96
+ // 解析为绝对路径
97
+ const absolutePath = resolve(normalizedPath)
98
+
99
+ // 检查是否在允许的基础路径中
100
+ const isInAllowedPath = Array.from(this.allowedBasePaths).some(basePath => {
101
+ return absolutePath.startsWith(basePath)
102
+ })
103
+
104
+ if (!isInAllowedPath) {
105
+ return {
106
+ isValid: false,
107
+ normalizedPath,
108
+ error: 'Path is outside allowed directories'
109
+ }
110
+ }
111
+
112
+ return { isValid: true, normalizedPath: absolutePath }
113
+ } catch (error) {
114
+ return {
115
+ isValid: false,
116
+ normalizedPath: filePath,
117
+ error: `Path validation failed: ${error instanceof Error ? error.message : String(error)}`
118
+ }
119
+ }
120
+ }
121
+
122
+ /**
123
+ * 安全地检查文件是否存在
124
+ * @param filePath 文件路径
125
+ * @returns 文件是否存在
126
+ */
127
+ public safeExists(filePath: string): boolean {
128
+ const validation = this.validateFilePath(filePath)
129
+ if (!validation.isValid) {
130
+ return false
131
+ }
132
+
133
+ try {
134
+ return existsSync(validation.normalizedPath)
135
+ } catch (error) {
136
+ return false
137
+ }
138
+ }
139
+
140
+ /**
141
+ * 安全地读取文件
142
+ * @param filePath 文件路径
143
+ * @param options 读取选项
144
+ * @returns 读取结果
145
+ */
146
+ public safeReadFile(
147
+ filePath: string,
148
+ options: {
149
+ encoding?: BufferEncoding;
150
+ maxFileSize?: number;
151
+ allowedExtensions?: string[];
152
+ checkFileExtension?: boolean;
153
+ } = {}
154
+ ): { success: boolean; content?: string | Buffer; error?: string; stats?: any } {
155
+ const validation = this.validateFilePath(filePath)
156
+ if (!validation.isValid) {
157
+ return { success: false, error: validation.error }
158
+ }
159
+
160
+ try {
161
+ const normalizedPath = validation.normalizedPath
162
+
163
+ // 检查文件扩展名(如果启用)
164
+ if (options.checkFileExtension !== false) {
165
+ const ext = extname(normalizedPath).toLowerCase()
166
+ const allowedExts = options.allowedExtensions ||
167
+ Array.from(this.allowedExtensions)
168
+
169
+ if (allowedExts.length > 0 && !allowedExts.includes(ext)) {
170
+ return {
171
+ success: false,
172
+ error: `File extension '${ext}' is not allowed`
173
+ }
174
+ }
175
+ }
176
+
177
+ // 检查文件是否存在
178
+ if (!existsSync(normalizedPath)) {
179
+ return { success: false, error: 'File does not exist' }
180
+ }
181
+
182
+ // 获取文件信息
183
+ const stats = statSync(normalizedPath)
184
+ const maxSize = options.maxFileSize || this.maxFileSize
185
+
186
+ // 检查文件大小
187
+ if (stats.size > maxSize) {
188
+ return {
189
+ success: false,
190
+ error: `File too large (${stats.size} bytes, max ${maxSize} bytes)`
191
+ }
192
+ }
193
+
194
+ // 检查文件类型
195
+ if (!stats.isFile()) {
196
+ return { success: false, error: 'Path is not a file' }
197
+ }
198
+
199
+ // 检查文件权限
200
+ if ((stats.mode & parseInt('400', 8)) === 0) { // 检查读权限
201
+ return { success: false, error: 'No read permission' }
202
+ }
203
+
204
+ // 读取文件内容
205
+ const content = readFileSync(normalizedPath, {
206
+ encoding: options.encoding || 'utf8'
207
+ })
208
+
209
+ return {
210
+ success: true,
211
+ content,
212
+ stats: {
213
+ size: stats.size,
214
+ mtime: stats.mtime,
215
+ atime: stats.atime,
216
+ mode: stats.mode
217
+ }
218
+ }
219
+ } catch (error) {
220
+ return {
221
+ success: false,
222
+ error: `Failed to read file: ${error instanceof Error ? error.message : String(error)}`
223
+ }
224
+ }
225
+ }
226
+
227
+ /**
228
+ * 安全地写入文件
229
+ * @param filePath 文件路径
230
+ * @param content 文件内容
231
+ * @param options 写入选项
232
+ * @returns 写入结果
233
+ */
234
+ public safeWriteFile(
235
+ filePath: string,
236
+ content: string | Buffer,
237
+ options: {
238
+ encoding?: BufferEncoding;
239
+ createDirectory?: boolean;
240
+ atomic?: boolean;
241
+ mode?: number;
242
+ allowedExtensions?: string[];
243
+ checkFileExtension?: boolean;
244
+ maxSize?: number;
245
+ } = {}
246
+ ): { success: boolean; error?: string } {
247
+ const validation = this.validateFilePath(filePath)
248
+ if (!validation.isValid) {
249
+ return { success: false, error: validation.error }
250
+ }
251
+
252
+ try {
253
+ const normalizedPath = validation.normalizedPath
254
+
255
+ // 检查文件扩展名(如果启用)
256
+ if (options.checkFileExtension !== false) {
257
+ const ext = extname(normalizedPath).toLowerCase()
258
+ const allowedExts = options.allowedExtensions ||
259
+ Array.from(this.allowedExtensions)
260
+
261
+ if (allowedExts.length > 0 && !allowedExts.includes(ext)) {
262
+ return {
263
+ success: false,
264
+ error: `File extension '${ext}' is not allowed`
265
+ }
266
+ }
267
+ }
268
+
269
+ // 检查内容大小
270
+ const contentSize = typeof content === 'string' ?
271
+ Buffer.byteLength(content, options.encoding as BufferEncoding || 'utf8') :
272
+ content.length
273
+
274
+ const maxSize = options.maxSize || this.maxFileSize
275
+ if (contentSize > maxSize) {
276
+ return {
277
+ success: false,
278
+ error: `Content too large (${contentSize} bytes, max ${maxSize} bytes)`
279
+ }
280
+ }
281
+
282
+ // 创建目录(如果需要)
283
+ if (options.createDirectory) {
284
+ const dir = dirname(normalizedPath)
285
+ if (!existsSync(dir)) {
286
+ mkdirSync(dir, { recursive: true, mode: 0o755 })
287
+ }
288
+ }
289
+
290
+ // 原子写入(如果启用)
291
+ if (options.atomic) {
292
+ const tempPath = `${normalizedPath}.tmp.${Date.now()}`
293
+
294
+ try {
295
+ // 写入临时文件
296
+ writeFileSync(tempPath, content, {
297
+ encoding: options.encoding as BufferEncoding || 'utf8',
298
+ mode: options.mode || 0o644
299
+ })
300
+
301
+ // 重命名为目标文件
302
+ renameSync(tempPath, normalizedPath)
303
+ } catch (renameError) {
304
+ // 清理临时文件
305
+ try {
306
+ if (existsSync(tempPath)) {
307
+ unlinkSync(tempPath)
308
+ }
309
+ } catch {
310
+ // 忽略清理错误
311
+ }
312
+ throw renameError
313
+ }
314
+ } else {
315
+ // 直接写入
316
+ writeFileSync(normalizedPath, content, {
317
+ encoding: options.encoding as BufferEncoding || 'utf8',
318
+ mode: options.mode || 0o644
319
+ })
320
+ }
321
+
322
+ return { success: true }
323
+ } catch (error) {
324
+ return {
325
+ success: false,
326
+ error: `Failed to write file: ${error instanceof Error ? error.message : String(error)}`
327
+ }
328
+ }
329
+ }
330
+
331
+ /**
332
+ * 安全地删除文件
333
+ * @param filePath 文件路径
334
+ * @returns 删除结果
335
+ */
336
+ public safeDeleteFile(filePath: string): { success: boolean; error?: string } {
337
+ const validation = this.validateFilePath(filePath)
338
+ if (!validation.isValid) {
339
+ return { success: false, error: validation.error }
340
+ }
341
+
342
+ try {
343
+ const normalizedPath = validation.normalizedPath
344
+
345
+ // 检查文件是否存在
346
+ if (!existsSync(normalizedPath)) {
347
+ return { success: false, error: 'File does not exist' }
348
+ }
349
+
350
+ // 检查文件类型
351
+ const stats = statSync(normalizedPath)
352
+ if (!stats.isFile()) {
353
+ return { success: false, error: 'Path is not a file' }
354
+ }
355
+
356
+ // 检查写权限
357
+ if ((stats.mode & parseInt('200', 8)) === 0) {
358
+ return { success: false, error: 'No write permission' }
359
+ }
360
+
361
+ // 安全删除
362
+ unlinkSync(normalizedPath)
363
+ return { success: true }
364
+ } catch (error) {
365
+ return {
366
+ success: false,
367
+ error: `Failed to delete file: ${error instanceof Error ? error.message : String(error)}`
368
+ }
369
+ }
370
+ }
371
+
372
+ /**
373
+ * 安全地创建目录
374
+ * @param dirPath 目录路径
375
+ * @param mode 目录权限
376
+ * @returns 创建结果
377
+ */
378
+ public safeCreateDirectory(dirPath: string, mode: number = 0o755): { success: boolean; error?: string } {
379
+ const validation = this.validateFilePath(dirPath)
380
+ if (!validation.isValid) {
381
+ return { success: false, error: validation.error }
382
+ }
383
+
384
+ try {
385
+ const normalizedPath = validation.normalizedPath
386
+
387
+ if (existsSync(normalizedPath)) {
388
+ const stats = statSync(normalizedPath)
389
+ if (!stats.isDirectory()) {
390
+ return { success: false, error: 'Path already exists and is not a directory' }
391
+ }
392
+ return { success: true }
393
+ }
394
+
395
+ mkdirSync(normalizedPath, { recursive: true, mode })
396
+ return { success: true }
397
+ } catch (error) {
398
+ return {
399
+ success: false,
400
+ error: `Failed to create directory: ${error instanceof Error ? error.message : String(error)}`
401
+ }
402
+ }
403
+ }
404
+
405
+ /**
406
+ * 安全地获取文件信息
407
+ * @param filePath 文件路径
408
+ * @returns 文件信息
409
+ */
410
+ public safeGetFileInfo(filePath: string): {
411
+ success: boolean;
412
+ stats?: {
413
+ size: number;
414
+ isFile: boolean;
415
+ isDirectory: boolean;
416
+ mode: number;
417
+ atime: Date;
418
+ mtime: Date;
419
+ ctime: Date;
420
+ };
421
+ error?: string
422
+ } {
423
+ const validation = this.validateFilePath(filePath)
424
+ if (!validation.isValid) {
425
+ return { success: false, error: validation.error }
426
+ }
427
+
428
+ try {
429
+ const normalizedPath = validation.normalizedPath
430
+
431
+ if (!existsSync(normalizedPath)) {
432
+ return { success: false, error: 'File does not exist' }
433
+ }
434
+
435
+ const stats = statSync(normalizedPath)
436
+
437
+ return {
438
+ success: true,
439
+ stats: {
440
+ size: stats.size,
441
+ isFile: stats.isFile(),
442
+ isDirectory: stats.isDirectory(),
443
+ mode: stats.mode,
444
+ atime: stats.atime,
445
+ mtime: stats.mtime,
446
+ ctime: stats.ctime
447
+ }
448
+ }
449
+ } catch (error) {
450
+ return {
451
+ success: false,
452
+ error: `Failed to get file info: ${error instanceof Error ? error.message : String(error)}`
453
+ }
454
+ }
455
+ }
456
+
457
+ /**
458
+ * 添加允许的基础路径
459
+ * @param basePath 基础路径
460
+ */
461
+ public addAllowedBasePath(basePath: string): { success: boolean; error?: string } {
462
+ try {
463
+ const normalized = normalize(resolve(basePath))
464
+
465
+ // 验证路径是否存在
466
+ if (!existsSync(normalized)) {
467
+ return { success: false, error: 'Base path does not exist' }
468
+ }
469
+
470
+ this.allowedBasePaths.add(normalized)
471
+ return { success: true }
472
+ } catch (error) {
473
+ return {
474
+ success: false,
475
+ error: `Failed to add base path: ${error instanceof Error ? error.message : String(error)}`
476
+ }
477
+ }
478
+ }
479
+
480
+ /**
481
+ * 设置最大文件大小
482
+ * @param maxSize 最大文件大小(字节)
483
+ */
484
+ public setMaxFileSize(maxSize: number): void {
485
+ this.maxFileSize = maxSize
486
+ }
487
+
488
+ /**
489
+ * 添加允许的文件扩展名
490
+ * @param extensions 文件扩展名数组
491
+ */
492
+ public addAllowedExtensions(extensions: string[]): void {
493
+ extensions.forEach(ext => {
494
+ if (!ext.startsWith('.')) {
495
+ ext = '.' + ext
496
+ }
497
+ this.allowedExtensions.add(ext.toLowerCase())
498
+ })
499
+ }
500
+
501
+ /**
502
+ * 检查文件是否在允许的基础路径中
503
+ * @param filePath 文件路径
504
+ * @returns 是否允许
505
+ */
506
+ public isPathAllowed(filePath: string): boolean {
507
+ const validation = this.validateFilePath(filePath)
508
+ return validation.isValid
509
+ }
510
+
511
+ /**
512
+ * 验证文件名安全性
513
+ * @param filename 文件名
514
+ * @returns 验证结果
515
+ */
516
+ public validateFileName(filename: string): { isValid: boolean; error?: string } {
517
+ // 检查文件名长度
518
+ if (filename.length === 0) {
519
+ return { isValid: false, error: 'Filename cannot be empty' }
520
+ }
521
+
522
+ if (filename.length > 255) {
523
+ return { isValid: false, error: 'Filename too long (max 255 characters)' }
524
+ }
525
+
526
+ // 检查文件名字符
527
+ const invalidChars = /[<>:"/\\|?*\x00-\x1F]/
528
+ if (invalidChars.test(filename)) {
529
+ return { isValid: false, error: 'Filename contains invalid characters' }
530
+ }
531
+
532
+ // 检查保留文件名
533
+ const reservedNames = [
534
+ 'CON', 'PRN', 'AUX', 'NUL',
535
+ 'COM1', 'COM2', 'COM3', 'COM4', 'COM5', 'COM6', 'COM7', 'COM8', 'COM9',
536
+ 'LPT1', 'LPT2', 'LPT3', 'LPT4', 'LPT5', 'LPT6', 'LPT7', 'LPT8', 'LPT9'
537
+ ]
538
+
539
+ const baseName = filename.split('.')[0].toUpperCase()
540
+ if (reservedNames.includes(baseName)) {
541
+ return { isValid: false, error: 'Filename is reserved' }
542
+ }
543
+
544
+ // 检查是否以点开头或结尾
545
+ if (filename.startsWith('.') || filename.endsWith('.')) {
546
+ return { isValid: false, error: 'Filename cannot start or end with a dot' }
547
+ }
548
+
549
+ // 检查是否以空格开头或结尾
550
+ if (filename.startsWith(' ') || filename.endsWith(' ')) {
551
+ return { isValid: false, error: 'Filename cannot start or end with spaces' }
552
+ }
553
+
554
+ return { isValid: true }
555
+ }
556
+ }
557
+
558
+ // 导出单例实例
559
+ export const secureFileService = SecureFileService.getInstance()
@@ -1,5 +1,6 @@
1
1
  import { safeParseJSON } from './json'
2
2
  import { logError } from './log'
3
+ import { queryQuick } from '../services/claude'
3
4
 
4
5
  export function setTerminalTitle(title: string): void {
5
6
  if (process.platform === 'win32') {
@@ -13,6 +13,9 @@ export interface Theme {
13
13
  success: string
14
14
  error: string
15
15
  warning: string
16
+ // UI colors
17
+ primary: string
18
+ secondary: string
16
19
  diff: {
17
20
  added: string
18
21
  removed: string
@@ -33,6 +36,8 @@ const lightTheme: Theme = {
33
36
  success: '#2c7a39',
34
37
  error: '#ab2b3f',
35
38
  warning: '#966c1e',
39
+ primary: '#000',
40
+ secondary: '#666',
36
41
  diff: {
37
42
  added: '#69db7c',
38
43
  removed: '#ffa8b4',
@@ -53,6 +58,8 @@ const lightDaltonizedTheme: Theme = {
53
58
  success: '#006699', // Blue instead of green
54
59
  error: '#cc0000', // Pure red for better distinction
55
60
  warning: '#ff9900', // Orange adjusted for deuteranopia
61
+ primary: '#000',
62
+ secondary: '#666',
56
63
  diff: {
57
64
  added: '#99ccff', // Light blue instead of green
58
65
  removed: '#ffcccc', // Light red for better contrast
@@ -73,6 +80,8 @@ const darkTheme: Theme = {
73
80
  success: '#4eba65',
74
81
  error: '#ff6b80',
75
82
  warning: '#ffc107',
83
+ primary: '#fff',
84
+ secondary: '#999',
76
85
  diff: {
77
86
  added: '#225c2b',
78
87
  removed: '#7a2936',
@@ -93,6 +102,8 @@ const darkDaltonizedTheme: Theme = {
93
102
  success: '#3399ff', // Bright blue instead of green
94
103
  error: '#ff6666', // Bright red for better visibility
95
104
  warning: '#ffcc00', // Yellow-orange for deuteranopia
105
+ primary: '#fff',
106
+ secondary: '#999',
96
107
  diff: {
97
108
  added: '#004466', // Dark blue instead of green
98
109
  removed: '#660000', // Dark red for better contrast