@@ -2057,11 +2057,11 @@ export class ClineProvider implements vscode.WebviewViewProvider {
20572057 version : this . context . extension ?. packageJSON ?. version ?? "" ,
20582058 apiConfiguration,
20592059 customInstructions,
2060- alwaysAllowReadOnly : alwaysAllowReadOnly ?? false ,
2061- alwaysAllowWrite : alwaysAllowWrite ?? false ,
2062- alwaysAllowExecute : alwaysAllowExecute ?? false ,
2063- alwaysAllowBrowser : alwaysAllowBrowser ?? false ,
2064- alwaysAllowMcp : alwaysAllowMcp ?? false ,
2060+ alwaysAllowReadOnly : alwaysAllowReadOnly ?? true ,
2061+ alwaysAllowWrite : alwaysAllowWrite ?? true ,
2062+ alwaysAllowExecute : alwaysAllowExecute ?? true ,
2063+ alwaysAllowBrowser : alwaysAllowBrowser ?? true ,
2064+ alwaysAllowMcp : alwaysAllowMcp ?? true ,
20652065 alwaysAllowModeSwitch : alwaysAllowModeSwitch ?? false ,
20662066 uriScheme : vscode . env . uriScheme ,
20672067 currentTaskItem : this . cline ?. taskId
@@ -2085,7 +2085,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
20852085 fuzzyMatchThreshold : fuzzyMatchThreshold ?? 1.0 ,
20862086 mcpEnabled : mcpEnabled ?? true ,
20872087 enableMcpServerCreation : enableMcpServerCreation ?? true ,
2088- alwaysApproveResubmit : alwaysApproveResubmit ?? false ,
2088+ alwaysApproveResubmit : alwaysApproveResubmit ?? true ,
20892089 requestDelaySeconds : requestDelaySeconds ?? 10 ,
20902090 rateLimitSeconds : rateLimitSeconds ?? 0 ,
20912091 currentApiConfigName : currentApiConfigName ?? "default" ,
@@ -2094,7 +2094,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
20942094 customModePrompts : customModePrompts ?? { } ,
20952095 customSupportPrompts : customSupportPrompts ?? { } ,
20962096 enhancementApiConfigId,
2097- autoApprovalEnabled : autoApprovalEnabled ?? false ,
2097+ autoApprovalEnabled : autoApprovalEnabled ?? true ,
20982098 customModes : await this . customModesManager . getCustomModes ( ) ,
20992099 experiments : experiments ?? experimentDefault ,
21002100 mcpServers : this . mcpHub ?. getAllServers ( ) ?? [ ] ,
@@ -2405,12 +2405,12 @@ export class ClineProvider implements vscode.WebviewViewProvider {
24052405 } ,
24062406 lastShownAnnouncementId,
24072407 customInstructions,
2408- alwaysAllowReadOnly : alwaysAllowReadOnly ?? false ,
2409- alwaysAllowWrite : alwaysAllowWrite ?? false ,
2410- alwaysAllowExecute : alwaysAllowExecute ?? false ,
2411- alwaysAllowBrowser : alwaysAllowBrowser ?? false ,
2412- alwaysAllowMcp : alwaysAllowMcp ?? false ,
2413- alwaysAllowModeSwitch : alwaysAllowModeSwitch ?? false ,
2408+ alwaysAllowReadOnly : alwaysAllowReadOnly ?? true ,
2409+ alwaysAllowWrite : alwaysAllowWrite ?? true ,
2410+ alwaysAllowExecute : alwaysAllowExecute ?? true ,
2411+ alwaysAllowBrowser : alwaysAllowBrowser ?? true ,
2412+ alwaysAllowMcp : alwaysAllowMcp ?? true ,
2413+ alwaysAllowModeSwitch : alwaysAllowModeSwitch ?? true ,
24142414 taskHistory,
24152415 allowedCommands,
24162416 soundEnabled : soundEnabled ?? false ,
@@ -2456,7 +2456,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
24562456 } ) ( ) ,
24572457 mcpEnabled : mcpEnabled ?? true ,
24582458 enableMcpServerCreation : enableMcpServerCreation ?? true ,
2459- alwaysApproveResubmit : alwaysApproveResubmit ?? false ,
2459+ alwaysApproveResubmit : alwaysApproveResubmit ?? true ,
24602460 requestDelaySeconds : Math . max ( 5 , requestDelaySeconds ?? 10 ) ,
24612461 rateLimitSeconds : rateLimitSeconds ?? 0 ,
24622462 currentApiConfigName : currentApiConfigName ?? "default" ,
@@ -2466,7 +2466,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
24662466 customSupportPrompts : customSupportPrompts ?? { } ,
24672467 enhancementApiConfigId,
24682468 experiments : experiments ?? experimentDefault ,
2469- autoApprovalEnabled : autoApprovalEnabled ?? false ,
2469+ autoApprovalEnabled : autoApprovalEnabled ?? true ,
24702470 customModes,
24712471 maxOpenTabsContext : maxOpenTabsContext ?? 20 ,
24722472 }
0 commit comments