Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions packages/cli/src/ui/hooks/useAutoAcceptIndicator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ import { MessageType } from '../types.js';
import { type LoadedSettings, SettingScope } from '../../config/settings.js';

const AUTO_MODE_FIRST_TIME_MESSAGE =
'✨ Auto mode enabled.\n' +
' An LLM classifier evaluates each tool call and auto-approves safe actions,\n' +
' blocks risky ones. Most read-only operations and in-cwd edits skip the\n' +
' classifier for speed. To exit: Shift+Tab or /approval-mode default.\n' +
' (This notice will not appear again.)';
'Auto mode enabled.\n' +
' An LLM classifier evaluates each tool call — safe actions auto-approve,\n' +
' risky ones are blocked. Exit: Shift+Tab or /approval-mode default.';

export interface UseAutoAcceptIndicatorArgs {
config: Config;
Expand Down
Loading