llm_coding_tools_rig/absolute/
mod.rs

1//! Tools using [`llm_coding_tools_core::path::AbsolutePathResolver`].
2//!
3//! These tools require absolute paths and perform no directory restriction.
4//! Use for unrestricted file system access.
5//!
6//! # Available Tools
7//!
8//! - [`ReadTool`] - Read file contents with optional line numbers
9//! - [`WriteTool`] - Write content to files
10//! - [`EditTool`] - Make exact string replacements
11//! - [`GlobTool`] - Find files by glob pattern
12//! - [`GrepTool`] - Search file contents by regex
13
14mod edit;
15mod glob;
16mod grep;
17mod read;
18mod write;
19
20pub use edit::{EditArgs, EditError, EditTool};
21pub use glob::{GlobArgs, GlobTool};
22pub use grep::{GrepArgs, GrepTool};
23pub use read::{ReadArgs, ReadTool};
24pub use write::{WriteTool, WriteToolArgs};