diff --git a/packages/cli/src/config/settingsSchema.ts b/packages/cli/src/config/settingsSchema.ts index cb6a9a35f3..9b2bde2976 100644 --- a/packages/cli/src/config/settingsSchema.ts +++ b/packages/cli/src/config/settingsSchema.ts @@ -518,7 +518,7 @@ const SETTINGS_SCHEMA = { label: 'Enable Follow-up Suggestions', category: 'UI', requiresRestart: false, - default: true, + default: false, description: 'Show context-aware follow-up suggestions after task completion. Press Tab or Right Arrow to accept, Enter to accept and submit.', showInDialog: true, diff --git a/packages/cli/src/ui/AppContainer.tsx b/packages/cli/src/ui/AppContainer.tsx index 34c6af341d..df3ef41534 100644 --- a/packages/cli/src/ui/AppContainer.tsx +++ b/packages/cli/src/ui/AppContainer.tsx @@ -1113,7 +1113,7 @@ export const AppContainer = (props: AppContainerProps) => { // Generate prompt suggestions when streaming completes const followupSuggestionsEnabled = - settings.merged.ui?.enableFollowupSuggestions !== false; + settings.merged.ui?.enableFollowupSuggestions === true; useEffect(() => { // Clear suggestion when feature is disabled at runtime diff --git a/packages/vscode-ide-companion/schemas/settings.schema.json b/packages/vscode-ide-companion/schemas/settings.schema.json index 1143813e4c..b2a4f04acd 100644 --- a/packages/vscode-ide-companion/schemas/settings.schema.json +++ b/packages/vscode-ide-companion/schemas/settings.schema.json @@ -183,7 +183,7 @@ "enableFollowupSuggestions": { "description": "Show context-aware follow-up suggestions after task completion. Press Tab or Right Arrow to accept, Enter to accept and submit.", "type": "boolean", - "default": true + "default": false }, "enableCacheSharing": { "description": "Use cache-aware forked queries for suggestion generation. Reduces cost on providers that support prefix caching (experimental).",