From a19687a815ec7708a1ed81c395bb1a2c47b2dc77 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Sun, 4 May 2025 21:35:52 -0300 Subject: [PATCH] agent: Sort profiles based on relevance (#29893) Kinda feel like the way that makes the most sense to sort profiles in the dropdown is by relevance/impact. "Write" is the default profile and contains all built-in tools turned on by default, thus it should be the first. "Ask" contains read-only tools, one step down from Write. And "Manual" is totally empty, the least "powerful" profile, thus the last. Release Notes: - N/A --- assets/settings/default.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 8e75cb18dbe6da1c775e021684f307988ae21898..178adc504c951d87be5a686b0e046f47e2bba171 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -665,42 +665,42 @@ "single_file_review": true, "default_profile": "write", "profiles": { - "ask": { - "name": "Ask", - // We don't know which of the context server tools are safe for the "Ask" profile, so we don't enable them by default. - // "enable_all_context_servers": true, + "write": { + "name": "Write", + "enable_all_context_servers": true, "tools": { - "contents": true, + "copy_path": true, + "create_directory": true, + "create_file": true, + "delete_path": true, "diagnostics": true, + "edit_file": true, "fetch": true, "list_directory": true, + "move_path": true, "now": true, "find_path": true, "read_file": true, - "open": true, "grep": true, + "terminal": true, "thinking": true, "web_search": true } }, - "write": { - "name": "Write", - "enable_all_context_servers": true, + "ask": { + "name": "Ask", + // We don't know which of the context server tools are safe for the "Ask" profile, so we don't enable them by default. + // "enable_all_context_servers": true, "tools": { - "copy_path": true, - "create_directory": true, - "create_file": true, - "delete_path": true, + "contents": true, "diagnostics": true, - "edit_file": true, "fetch": true, "list_directory": true, - "move_path": true, "now": true, "find_path": true, "read_file": true, + "open": true, "grep": true, - "terminal": true, "thinking": true, "web_search": true }