agent: Sort profiles based on relevance (#29893)

Danilo Leal created

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

Change summary

assets/settings/default.json | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)

Detailed changes

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
         }