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 | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 8e75cb18db..178adc504c 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -665,24 +665,6 @@ "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, - "tools": { - "contents": true, - "diagnostics": true, - "fetch": true, - "list_directory": true, - "now": true, - "find_path": true, - "read_file": true, - "open": true, - "grep": true, - "thinking": true, - "web_search": true - } - }, "write": { "name": "Write", "enable_all_context_servers": true, @@ -705,6 +687,24 @@ "web_search": 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": { + "contents": true, + "diagnostics": true, + "fetch": true, + "list_directory": true, + "now": true, + "find_path": true, + "read_file": true, + "open": true, + "grep": true, + "thinking": true, + "web_search": true + } + }, "manual": { "name": "Manual", "enable_all_context_servers": false,