@roo-code/types 1.33.0 → 1.34.0

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.
package/dist/index.d.cts CHANGED
@@ -3904,6 +3904,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3904
3904
  alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
3905
3905
  allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3906
3906
  deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3907
+ commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
3907
3908
  allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3908
3909
  autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
3909
3910
  autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
@@ -4176,6 +4177,7 @@ declare const globalSettingsSchema: z.ZodObject<{
4176
4177
  alwaysAllowUpdateTodoList?: boolean | undefined;
4177
4178
  allowedCommands?: string[] | undefined;
4178
4179
  deniedCommands?: string[] | undefined;
4180
+ commandExecutionTimeout?: number | undefined;
4179
4181
  allowedMaxRequests?: number | null | undefined;
4180
4182
  autoCondenseContext?: boolean | undefined;
4181
4183
  autoCondenseContextPercent?: number | undefined;
@@ -4314,6 +4316,7 @@ declare const globalSettingsSchema: z.ZodObject<{
4314
4316
  alwaysAllowUpdateTodoList?: boolean | undefined;
4315
4317
  allowedCommands?: string[] | undefined;
4316
4318
  deniedCommands?: string[] | undefined;
4319
+ commandExecutionTimeout?: number | undefined;
4317
4320
  allowedMaxRequests?: number | null | undefined;
4318
4321
  autoCondenseContext?: boolean | undefined;
4319
4322
  autoCondenseContextPercent?: number | undefined;
@@ -4392,7 +4395,7 @@ declare const globalSettingsSchema: z.ZodObject<{
4392
4395
  lastModeImportPath?: string | undefined;
4393
4396
  }>;
4394
4397
  type GlobalSettings = z.infer<typeof globalSettingsSchema>;
4395
- declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "deniedCommands", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
4398
+ declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "deniedCommands", "commandExecutionTimeout", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
4396
4399
  /**
4397
4400
  * RooCodeSettings
4398
4401
  */
@@ -4663,6 +4666,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4663
4666
  alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
4664
4667
  allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4665
4668
  deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4669
+ commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
4666
4670
  allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4667
4671
  autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
4668
4672
  autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
@@ -5049,6 +5053,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
5049
5053
  alwaysAllowUpdateTodoList?: boolean | undefined;
5050
5054
  allowedCommands?: string[] | undefined;
5051
5055
  deniedCommands?: string[] | undefined;
5056
+ commandExecutionTimeout?: number | undefined;
5052
5057
  allowedMaxRequests?: number | null | undefined;
5053
5058
  autoCondenseContext?: boolean | undefined;
5054
5059
  autoCondenseContextPercent?: number | undefined;
@@ -5301,6 +5306,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
5301
5306
  alwaysAllowUpdateTodoList?: boolean | undefined;
5302
5307
  allowedCommands?: string[] | undefined;
5303
5308
  deniedCommands?: string[] | undefined;
5309
+ commandExecutionTimeout?: number | undefined;
5304
5310
  allowedMaxRequests?: number | null | undefined;
5305
5311
  autoCondenseContext?: boolean | undefined;
5306
5312
  autoCondenseContextPercent?: number | undefined;
@@ -6299,6 +6305,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6299
6305
  alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
6300
6306
  allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6301
6307
  deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6308
+ commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
6302
6309
  allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6303
6310
  autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
6304
6311
  autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
@@ -6685,6 +6692,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6685
6692
  alwaysAllowUpdateTodoList?: boolean | undefined;
6686
6693
  allowedCommands?: string[] | undefined;
6687
6694
  deniedCommands?: string[] | undefined;
6695
+ commandExecutionTimeout?: number | undefined;
6688
6696
  allowedMaxRequests?: number | null | undefined;
6689
6697
  autoCondenseContext?: boolean | undefined;
6690
6698
  autoCondenseContextPercent?: number | undefined;
@@ -6937,6 +6945,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6937
6945
  alwaysAllowUpdateTodoList?: boolean | undefined;
6938
6946
  allowedCommands?: string[] | undefined;
6939
6947
  deniedCommands?: string[] | undefined;
6948
+ commandExecutionTimeout?: number | undefined;
6940
6949
  allowedMaxRequests?: number | null | undefined;
6941
6950
  autoCondenseContext?: boolean | undefined;
6942
6951
  autoCondenseContextPercent?: number | undefined;
@@ -7195,6 +7204,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7195
7204
  alwaysAllowUpdateTodoList?: boolean | undefined;
7196
7205
  allowedCommands?: string[] | undefined;
7197
7206
  deniedCommands?: string[] | undefined;
7207
+ commandExecutionTimeout?: number | undefined;
7198
7208
  allowedMaxRequests?: number | null | undefined;
7199
7209
  autoCondenseContext?: boolean | undefined;
7200
7210
  autoCondenseContextPercent?: number | undefined;
@@ -7452,6 +7462,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7452
7462
  alwaysAllowUpdateTodoList?: boolean | undefined;
7453
7463
  allowedCommands?: string[] | undefined;
7454
7464
  deniedCommands?: string[] | undefined;
7465
+ commandExecutionTimeout?: number | undefined;
7455
7466
  allowedMaxRequests?: number | null | undefined;
7456
7467
  autoCondenseContext?: boolean | undefined;
7457
7468
  autoCondenseContextPercent?: number | undefined;
@@ -7712,6 +7723,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7712
7723
  alwaysAllowUpdateTodoList?: boolean | undefined;
7713
7724
  allowedCommands?: string[] | undefined;
7714
7725
  deniedCommands?: string[] | undefined;
7726
+ commandExecutionTimeout?: number | undefined;
7715
7727
  allowedMaxRequests?: number | null | undefined;
7716
7728
  autoCondenseContext?: boolean | undefined;
7717
7729
  autoCondenseContextPercent?: number | undefined;
@@ -7972,6 +7984,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7972
7984
  alwaysAllowUpdateTodoList?: boolean | undefined;
7973
7985
  allowedCommands?: string[] | undefined;
7974
7986
  deniedCommands?: string[] | undefined;
7987
+ commandExecutionTimeout?: number | undefined;
7975
7988
  allowedMaxRequests?: number | null | undefined;
7976
7989
  autoCondenseContext?: boolean | undefined;
7977
7990
  autoCondenseContextPercent?: number | undefined;
@@ -8857,6 +8870,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8857
8870
  alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
8858
8871
  allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8859
8872
  deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8873
+ commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
8860
8874
  allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8861
8875
  autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
8862
8876
  autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
@@ -9243,6 +9257,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9243
9257
  alwaysAllowUpdateTodoList?: boolean | undefined;
9244
9258
  allowedCommands?: string[] | undefined;
9245
9259
  deniedCommands?: string[] | undefined;
9260
+ commandExecutionTimeout?: number | undefined;
9246
9261
  allowedMaxRequests?: number | null | undefined;
9247
9262
  autoCondenseContext?: boolean | undefined;
9248
9263
  autoCondenseContextPercent?: number | undefined;
@@ -9495,6 +9510,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9495
9510
  alwaysAllowUpdateTodoList?: boolean | undefined;
9496
9511
  allowedCommands?: string[] | undefined;
9497
9512
  deniedCommands?: string[] | undefined;
9513
+ commandExecutionTimeout?: number | undefined;
9498
9514
  allowedMaxRequests?: number | null | undefined;
9499
9515
  autoCondenseContext?: boolean | undefined;
9500
9516
  autoCondenseContextPercent?: number | undefined;
@@ -9753,6 +9769,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9753
9769
  alwaysAllowUpdateTodoList?: boolean | undefined;
9754
9770
  allowedCommands?: string[] | undefined;
9755
9771
  deniedCommands?: string[] | undefined;
9772
+ commandExecutionTimeout?: number | undefined;
9756
9773
  allowedMaxRequests?: number | null | undefined;
9757
9774
  autoCondenseContext?: boolean | undefined;
9758
9775
  autoCondenseContextPercent?: number | undefined;
@@ -10010,6 +10027,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10010
10027
  alwaysAllowUpdateTodoList?: boolean | undefined;
10011
10028
  allowedCommands?: string[] | undefined;
10012
10029
  deniedCommands?: string[] | undefined;
10030
+ commandExecutionTimeout?: number | undefined;
10013
10031
  allowedMaxRequests?: number | null | undefined;
10014
10032
  autoCondenseContext?: boolean | undefined;
10015
10033
  autoCondenseContextPercent?: number | undefined;
@@ -10270,6 +10288,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10270
10288
  alwaysAllowUpdateTodoList?: boolean | undefined;
10271
10289
  allowedCommands?: string[] | undefined;
10272
10290
  deniedCommands?: string[] | undefined;
10291
+ commandExecutionTimeout?: number | undefined;
10273
10292
  allowedMaxRequests?: number | null | undefined;
10274
10293
  autoCondenseContext?: boolean | undefined;
10275
10294
  autoCondenseContextPercent?: number | undefined;
@@ -10530,6 +10549,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10530
10549
  alwaysAllowUpdateTodoList?: boolean | undefined;
10531
10550
  allowedCommands?: string[] | undefined;
10532
10551
  deniedCommands?: string[] | undefined;
10552
+ commandExecutionTimeout?: number | undefined;
10533
10553
  allowedMaxRequests?: number | null | undefined;
10534
10554
  autoCondenseContext?: boolean | undefined;
10535
10555
  autoCondenseContextPercent?: number | undefined;
@@ -10812,6 +10832,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10812
10832
  alwaysAllowUpdateTodoList?: boolean | undefined;
10813
10833
  allowedCommands?: string[] | undefined;
10814
10834
  deniedCommands?: string[] | undefined;
10835
+ commandExecutionTimeout?: number | undefined;
10815
10836
  allowedMaxRequests?: number | null | undefined;
10816
10837
  autoCondenseContext?: boolean | undefined;
10817
10838
  autoCondenseContextPercent?: number | undefined;
@@ -11083,6 +11104,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11083
11104
  alwaysAllowUpdateTodoList?: boolean | undefined;
11084
11105
  allowedCommands?: string[] | undefined;
11085
11106
  deniedCommands?: string[] | undefined;
11107
+ commandExecutionTimeout?: number | undefined;
11086
11108
  allowedMaxRequests?: number | null | undefined;
11087
11109
  autoCondenseContext?: boolean | undefined;
11088
11110
  autoCondenseContextPercent?: number | undefined;
package/dist/index.d.ts CHANGED
@@ -3904,6 +3904,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3904
3904
  alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
3905
3905
  allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3906
3906
  deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3907
+ commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
3907
3908
  allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3908
3909
  autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
3909
3910
  autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
@@ -4176,6 +4177,7 @@ declare const globalSettingsSchema: z.ZodObject<{
4176
4177
  alwaysAllowUpdateTodoList?: boolean | undefined;
4177
4178
  allowedCommands?: string[] | undefined;
4178
4179
  deniedCommands?: string[] | undefined;
4180
+ commandExecutionTimeout?: number | undefined;
4179
4181
  allowedMaxRequests?: number | null | undefined;
4180
4182
  autoCondenseContext?: boolean | undefined;
4181
4183
  autoCondenseContextPercent?: number | undefined;
@@ -4314,6 +4316,7 @@ declare const globalSettingsSchema: z.ZodObject<{
4314
4316
  alwaysAllowUpdateTodoList?: boolean | undefined;
4315
4317
  allowedCommands?: string[] | undefined;
4316
4318
  deniedCommands?: string[] | undefined;
4319
+ commandExecutionTimeout?: number | undefined;
4317
4320
  allowedMaxRequests?: number | null | undefined;
4318
4321
  autoCondenseContext?: boolean | undefined;
4319
4322
  autoCondenseContextPercent?: number | undefined;
@@ -4392,7 +4395,7 @@ declare const globalSettingsSchema: z.ZodObject<{
4392
4395
  lastModeImportPath?: string | undefined;
4393
4396
  }>;
4394
4397
  type GlobalSettings = z.infer<typeof globalSettingsSchema>;
4395
- declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "deniedCommands", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
4398
+ declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "deniedCommands", "commandExecutionTimeout", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
4396
4399
  /**
4397
4400
  * RooCodeSettings
4398
4401
  */
@@ -4663,6 +4666,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4663
4666
  alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
4664
4667
  allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4665
4668
  deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4669
+ commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
4666
4670
  allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4667
4671
  autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
4668
4672
  autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
@@ -5049,6 +5053,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
5049
5053
  alwaysAllowUpdateTodoList?: boolean | undefined;
5050
5054
  allowedCommands?: string[] | undefined;
5051
5055
  deniedCommands?: string[] | undefined;
5056
+ commandExecutionTimeout?: number | undefined;
5052
5057
  allowedMaxRequests?: number | null | undefined;
5053
5058
  autoCondenseContext?: boolean | undefined;
5054
5059
  autoCondenseContextPercent?: number | undefined;
@@ -5301,6 +5306,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
5301
5306
  alwaysAllowUpdateTodoList?: boolean | undefined;
5302
5307
  allowedCommands?: string[] | undefined;
5303
5308
  deniedCommands?: string[] | undefined;
5309
+ commandExecutionTimeout?: number | undefined;
5304
5310
  allowedMaxRequests?: number | null | undefined;
5305
5311
  autoCondenseContext?: boolean | undefined;
5306
5312
  autoCondenseContextPercent?: number | undefined;
@@ -6299,6 +6305,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6299
6305
  alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
6300
6306
  allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6301
6307
  deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6308
+ commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
6302
6309
  allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6303
6310
  autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
6304
6311
  autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
@@ -6685,6 +6692,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6685
6692
  alwaysAllowUpdateTodoList?: boolean | undefined;
6686
6693
  allowedCommands?: string[] | undefined;
6687
6694
  deniedCommands?: string[] | undefined;
6695
+ commandExecutionTimeout?: number | undefined;
6688
6696
  allowedMaxRequests?: number | null | undefined;
6689
6697
  autoCondenseContext?: boolean | undefined;
6690
6698
  autoCondenseContextPercent?: number | undefined;
@@ -6937,6 +6945,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6937
6945
  alwaysAllowUpdateTodoList?: boolean | undefined;
6938
6946
  allowedCommands?: string[] | undefined;
6939
6947
  deniedCommands?: string[] | undefined;
6948
+ commandExecutionTimeout?: number | undefined;
6940
6949
  allowedMaxRequests?: number | null | undefined;
6941
6950
  autoCondenseContext?: boolean | undefined;
6942
6951
  autoCondenseContextPercent?: number | undefined;
@@ -7195,6 +7204,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7195
7204
  alwaysAllowUpdateTodoList?: boolean | undefined;
7196
7205
  allowedCommands?: string[] | undefined;
7197
7206
  deniedCommands?: string[] | undefined;
7207
+ commandExecutionTimeout?: number | undefined;
7198
7208
  allowedMaxRequests?: number | null | undefined;
7199
7209
  autoCondenseContext?: boolean | undefined;
7200
7210
  autoCondenseContextPercent?: number | undefined;
@@ -7452,6 +7462,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7452
7462
  alwaysAllowUpdateTodoList?: boolean | undefined;
7453
7463
  allowedCommands?: string[] | undefined;
7454
7464
  deniedCommands?: string[] | undefined;
7465
+ commandExecutionTimeout?: number | undefined;
7455
7466
  allowedMaxRequests?: number | null | undefined;
7456
7467
  autoCondenseContext?: boolean | undefined;
7457
7468
  autoCondenseContextPercent?: number | undefined;
@@ -7712,6 +7723,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7712
7723
  alwaysAllowUpdateTodoList?: boolean | undefined;
7713
7724
  allowedCommands?: string[] | undefined;
7714
7725
  deniedCommands?: string[] | undefined;
7726
+ commandExecutionTimeout?: number | undefined;
7715
7727
  allowedMaxRequests?: number | null | undefined;
7716
7728
  autoCondenseContext?: boolean | undefined;
7717
7729
  autoCondenseContextPercent?: number | undefined;
@@ -7972,6 +7984,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7972
7984
  alwaysAllowUpdateTodoList?: boolean | undefined;
7973
7985
  allowedCommands?: string[] | undefined;
7974
7986
  deniedCommands?: string[] | undefined;
7987
+ commandExecutionTimeout?: number | undefined;
7975
7988
  allowedMaxRequests?: number | null | undefined;
7976
7989
  autoCondenseContext?: boolean | undefined;
7977
7990
  autoCondenseContextPercent?: number | undefined;
@@ -8857,6 +8870,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8857
8870
  alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
8858
8871
  allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8859
8872
  deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8873
+ commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
8860
8874
  allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8861
8875
  autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
8862
8876
  autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
@@ -9243,6 +9257,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9243
9257
  alwaysAllowUpdateTodoList?: boolean | undefined;
9244
9258
  allowedCommands?: string[] | undefined;
9245
9259
  deniedCommands?: string[] | undefined;
9260
+ commandExecutionTimeout?: number | undefined;
9246
9261
  allowedMaxRequests?: number | null | undefined;
9247
9262
  autoCondenseContext?: boolean | undefined;
9248
9263
  autoCondenseContextPercent?: number | undefined;
@@ -9495,6 +9510,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9495
9510
  alwaysAllowUpdateTodoList?: boolean | undefined;
9496
9511
  allowedCommands?: string[] | undefined;
9497
9512
  deniedCommands?: string[] | undefined;
9513
+ commandExecutionTimeout?: number | undefined;
9498
9514
  allowedMaxRequests?: number | null | undefined;
9499
9515
  autoCondenseContext?: boolean | undefined;
9500
9516
  autoCondenseContextPercent?: number | undefined;
@@ -9753,6 +9769,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9753
9769
  alwaysAllowUpdateTodoList?: boolean | undefined;
9754
9770
  allowedCommands?: string[] | undefined;
9755
9771
  deniedCommands?: string[] | undefined;
9772
+ commandExecutionTimeout?: number | undefined;
9756
9773
  allowedMaxRequests?: number | null | undefined;
9757
9774
  autoCondenseContext?: boolean | undefined;
9758
9775
  autoCondenseContextPercent?: number | undefined;
@@ -10010,6 +10027,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10010
10027
  alwaysAllowUpdateTodoList?: boolean | undefined;
10011
10028
  allowedCommands?: string[] | undefined;
10012
10029
  deniedCommands?: string[] | undefined;
10030
+ commandExecutionTimeout?: number | undefined;
10013
10031
  allowedMaxRequests?: number | null | undefined;
10014
10032
  autoCondenseContext?: boolean | undefined;
10015
10033
  autoCondenseContextPercent?: number | undefined;
@@ -10270,6 +10288,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10270
10288
  alwaysAllowUpdateTodoList?: boolean | undefined;
10271
10289
  allowedCommands?: string[] | undefined;
10272
10290
  deniedCommands?: string[] | undefined;
10291
+ commandExecutionTimeout?: number | undefined;
10273
10292
  allowedMaxRequests?: number | null | undefined;
10274
10293
  autoCondenseContext?: boolean | undefined;
10275
10294
  autoCondenseContextPercent?: number | undefined;
@@ -10530,6 +10549,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10530
10549
  alwaysAllowUpdateTodoList?: boolean | undefined;
10531
10550
  allowedCommands?: string[] | undefined;
10532
10551
  deniedCommands?: string[] | undefined;
10552
+ commandExecutionTimeout?: number | undefined;
10533
10553
  allowedMaxRequests?: number | null | undefined;
10534
10554
  autoCondenseContext?: boolean | undefined;
10535
10555
  autoCondenseContextPercent?: number | undefined;
@@ -10812,6 +10832,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10812
10832
  alwaysAllowUpdateTodoList?: boolean | undefined;
10813
10833
  allowedCommands?: string[] | undefined;
10814
10834
  deniedCommands?: string[] | undefined;
10835
+ commandExecutionTimeout?: number | undefined;
10815
10836
  allowedMaxRequests?: number | null | undefined;
10816
10837
  autoCondenseContext?: boolean | undefined;
10817
10838
  autoCondenseContextPercent?: number | undefined;
@@ -11083,6 +11104,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11083
11104
  alwaysAllowUpdateTodoList?: boolean | undefined;
11084
11105
  allowedCommands?: string[] | undefined;
11085
11106
  deniedCommands?: string[] | undefined;
11107
+ commandExecutionTimeout?: number | undefined;
11086
11108
  allowedMaxRequests?: number | null | undefined;
11087
11109
  autoCondenseContext?: boolean | undefined;
11088
11110
  autoCondenseContextPercent?: number | undefined;
package/dist/index.js CHANGED
@@ -2959,6 +2959,7 @@ var globalSettingsSchema = z11.object({
2959
2959
  alwaysAllowUpdateTodoList: z11.boolean().optional(),
2960
2960
  allowedCommands: z11.array(z11.string()).optional(),
2961
2961
  deniedCommands: z11.array(z11.string()).optional(),
2962
+ commandExecutionTimeout: z11.number().optional(),
2962
2963
  allowedMaxRequests: z11.number().nullish(),
2963
2964
  autoCondenseContext: z11.boolean().optional(),
2964
2965
  autoCondenseContextPercent: z11.number().optional(),
@@ -3063,6 +3064,7 @@ var EVALS_SETTINGS = {
3063
3064
  alwaysAllowUpdateTodoList: true,
3064
3065
  followupAutoApproveTimeoutMs: 0,
3065
3066
  allowedCommands: ["*"],
3067
+ commandExecutionTimeout: 3e4,
3066
3068
  browserToolEnabled: false,
3067
3069
  browserViewportSize: "900x600",
3068
3070
  screenshotQuality: 75,