File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ export interface AgentModeSettings {
263263export const DEFAULT_AGENT_SETTINGS : AgentModeSettings = {
264264 enabled : false ,
265265 autoApproveFileCreation : true ,
266- autoApproveFileModification : false ,
266+ autoApproveFileModification : true ,
267267 autoApproveCommands : false ,
268268 maxIterations : 25 ,
269269} ;
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ Configurable via the Settings UI or programmatically:
147147interface AgentModeSettings {
148148 enabled: boolean ; // Toggle agent mode
149149 autoApproveFileCreation: boolean ; // Skip approval for new files (default: true)
150- autoApproveFileModification: boolean ; // Skip approval for file edits (default: false )
150+ autoApproveFileModification: boolean ; // Skip approval for file edits (default: true )
151151 autoApproveCommands: boolean ; // Skip approval for shell commands (default: false)
152152 maxIterations: number ; // Max iterations per session (default: 25)
153153}
You can’t perform that action at this time.
0 commit comments