llm_coding_tools_core/tool_names.rs
1//! Canonical tool name constants for consistent naming across crates.
2
3/// The "Read" tool name constant.
4pub const READ: &str = "Read";
5/// The "Write" tool name constant.
6pub const WRITE: &str = "Write";
7/// The "Edit" tool name constant.
8pub const EDIT: &str = "Edit";
9/// The "Glob" tool name constant.
10pub const GLOB: &str = "Glob";
11/// The "Grep" tool name constant.
12pub const GREP: &str = "Grep";
13/// The "Bash" tool name constant.
14pub const BASH: &str = "Bash";
15/// The "WebFetch" tool name constant.
16pub const WEBFETCH: &str = "WebFetch";
17/// The "TodoWrite" tool name constant.
18pub const TODO_WRITE: &str = "TodoWrite";
19/// The "TodoRead" tool name constant.
20pub const TODO_READ: &str = "TodoRead";