//! Built-in tools — same names and rough semantics as the Claude Agent SDK
//! built-ins: `Read`, `Write`, `Edit`, `Glob`, `Grep`, `Bash`.
//!
//! Each tool is gated behind the `builtin-tools` feature.
pub use BashTool;
pub use EditTool;
pub use GlobTool;
pub use GrepTool;
pub use ReadTool;
pub use WriteTool;
use Tool;
/// Convenience: vector of all six built-ins, ready to pass to the loop.