Re-enable directory-related tools (#29809)

Richard Feldman , Cole Miller , and Cole Miller created

Also `now` in `write` profile

Release Notes:

- Tools for manipulating directories no longer require confirmation, and
are enabled in the Write profile
- Enabled `now` and `list_directory` tools by default in Write profile

---------

Co-authored-by: Cole Miller <m@cole-miller.net>
Co-authored-by: Cole Miller <cole@zed.dev>

Change summary

assets/settings/default.json                        | 11 ++++++-----
crates/assistant_tools/src/copy_path_tool.rs        |  2 +-
crates/assistant_tools/src/create_directory_tool.rs |  2 +-
crates/assistant_tools/src/delete_path_tool.rs      |  2 +-
crates/assistant_tools/src/move_path_tool.rs        |  2 +-
5 files changed, 10 insertions(+), 9 deletions(-)

Detailed changes

assets/settings/default.json 🔗

@@ -669,7 +669,7 @@
           "contents": true,
           "diagnostics": true,
           "fetch": true,
-          "list_directory": false,
+          "list_directory": true,
           "now": true,
           "find_path": true,
           "read_file": true,
@@ -683,15 +683,16 @@
         "name": "Write",
         "enable_all_context_servers": true,
         "tools": {
-          "copy_path": false,
+          "copy_path": true,
+          "create_directory": true,
           "create_file": true,
-          "delete_path": false,
+          "delete_path": true,
           "diagnostics": true,
           "edit_file": true,
           "fetch": true,
           "list_directory": true,
-          "move_path": false,
-          "now": false,
+          "move_path": true,
+          "now": true,
           "find_path": true,
           "read_file": true,
           "grep": true,