You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: move command whitelisting from VS Code settings to plugin UI
- Removed 'roo-code.commandWhitelist' from VS Code settings (package.json)
- Added command whitelisting to Auto Approve settings in plugin UI
- Migrated existing whitelist settings to new location on extension activation
- Updated all related components, tests, and localization files
- Maintains backward compatibility by migrating existing settings
This change improves user experience by consolidating all auto-approval
settings in one location within the plugin's settings interface.
Implemented a feature flag to disable LLM-based command suggestions in response to reviewer feedback about avoiding reliance on LLMs for command whitelist suggestions.
6
+
7
+
## Changes Made
8
+
9
+
### 1. Configuration Setting Added
10
+
11
+
-**File**: `src/package.json`
12
+
- Added new setting: `roo-cline.disableLlmCommandSuggestions`
13
+
- Type: boolean, default: false
14
+
- Description: "Disable LLM-generated command suggestions and use only programmatic pattern generation"
0 commit comments