From 51d010e450db5e15b39230f32066be9358dc0a22 Mon Sep 17 00:00:00 2001 From: hannesrudolph Date: Tue, 15 Jul 2025 16:18:08 -0600 Subject: [PATCH] fix: add missing roo-cline.allowedCommands configuration registration --- src/package.json | 8 ++++++++ src/package.nls.json | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/package.json b/src/package.json index 9038c0523d..7e9d22dbdf 100644 --- a/src/package.json +++ b/src/package.json @@ -350,6 +350,14 @@ "type": "string", "default": "", "description": "%settings.autoImportSettingsPath.description%" + }, + "roo-cline.allowedCommands": { + "type": "array", + "items": { + "type": "string" + }, + "default": [], + "description": "%settings.allowedCommands.description%" } } } diff --git a/src/package.nls.json b/src/package.nls.json index e4995cfc24..f4a8cbe4c5 100644 --- a/src/package.nls.json +++ b/src/package.nls.json @@ -32,5 +32,6 @@ "settings.vsCodeLmModelSelector.family.description": "The family of the language model (e.g. gpt-4)", "settings.customStoragePath.description": "Custom storage path. Leave empty to use the default location. Supports absolute paths (e.g. 'D:\\RooCodeStorage')", "settings.enableCodeActions.description": "Enable Roo Code quick fixes", - "settings.autoImportSettingsPath.description": "Path to a RooCode configuration file to automatically import on extension startup. Supports absolute paths and paths relative to the home directory (e.g. '~/Documents/roo-code-settings.json'). Leave empty to disable auto-import." + "settings.autoImportSettingsPath.description": "Path to a RooCode configuration file to automatically import on extension startup. Supports absolute paths and paths relative to the home directory (e.g. '~/Documents/roo-code-settings.json'). Leave empty to disable auto-import.", + "settings.allowedCommands.description": "List of allowed commands that can be executed without prompting. Commands not in this list will require user confirmation before execution." }