Skip to content

Commit d182ca9

Browse files
committed
chore: default auto-approve file operations to ON
1 parent 5646586 commit d182ca9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/lib/agent/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ export interface AgentModeSettings {
263263
export const DEFAULT_AGENT_SETTINGS: AgentModeSettings = {
264264
enabled: false,
265265
autoApproveFileCreation: true,
266-
autoApproveFileModification: false,
266+
autoApproveFileModification: true,
267267
autoApproveCommands: false,
268268
maxIterations: 25,
269269
};

docs/AGENT-MODE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Configurable via the Settings UI or programmatically:
147147
interface 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
}

0 commit comments

Comments
 (0)