Port some more tools to agent2 (#35973)

Release Notes:

- N/A
This commit is contained in:
Antonio Scandurra 2025-08-11 15:10:46 +02:00 committed by GitHub
parent d5ed569fad
commit ebcce8730d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 1324 additions and 1 deletions

View file

@ -1,11 +1,23 @@
mod copy_path_tool;
mod create_directory_tool;
mod delete_path_tool;
mod edit_file_tool;
mod find_path_tool;
mod list_directory_tool;
mod move_path_tool;
mod open_tool;
mod read_file_tool;
mod terminal_tool;
mod thinking_tool;
pub use copy_path_tool::*;
pub use create_directory_tool::*;
pub use delete_path_tool::*;
pub use edit_file_tool::*;
pub use find_path_tool::*;
pub use list_directory_tool::*;
pub use move_path_tool::*;
pub use open_tool::*;
pub use read_file_tool::*;
pub use terminal_tool::*;
pub use thinking_tool::*;