//! Built-in tool set.
//!
//! Implements the `Tool` trait from [`defect_agent`], providing basic capabilities such
//! as file I/O, bash execution, and text search. Each tool resides in its own submodule
//! and can be enabled as needed.
pub use BashTool;
pub use FetchTool;
pub use ;
pub use SearchTool;
pub use ;