Add delete-path tool (#26590)

Release Notes:

- N/A
This commit is contained in:
Richard Feldman 2025-03-12 16:16:26 -04:00 committed by GitHub
parent 3131b0459f
commit be8f3b3791
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 169 additions and 0 deletions

View file

@ -1,3 +1,4 @@
mod delete_path_tool;
mod edit_files_tool;
mod list_directory_tool;
mod now_tool;
@ -7,6 +8,7 @@ mod regex_search;
use assistant_tool::ToolRegistry;
use gpui::App;
use crate::delete_path_tool::DeletePathTool;
use crate::edit_files_tool::EditFilesTool;
use crate::list_directory_tool::ListDirectoryTool;
use crate::now_tool::NowTool;
@ -22,4 +24,5 @@ pub fn init(cx: &mut App) {
registry.register_tool(ListDirectoryTool);
registry.register_tool(EditFilesTool);
registry.register_tool(RegexSearchTool);
registry.register_tool(DeletePathTool);
}