//! Canonical tool name constants for consistent naming across crates.
/// The "Read" tool name constant.
pub const READ: &str = "Read";
/// The "Write" tool name constant.
pub const WRITE: &str = "Write";
/// The "Edit" tool name constant.
pub const EDIT: &str = "Edit";
/// The "Glob" tool name constant.
pub const GLOB: &str = "Glob";
/// The "Grep" tool name constant.
pub const GREP: &str = "Grep";
/// The "Bash" tool name constant.
pub const BASH: &str = "Bash";
/// The "WebFetch" tool name constant.
pub const WEBFETCH: &str = "WebFetch";
/// The "TodoWrite" tool name constant.
pub const TODO_WRITE: &str = "TodoWrite";
/// The "TodoRead" tool name constant.
pub const TODO_READ: &str = "TodoRead";