defect-tools 0.1.0-alpha.4

Built-in tool implementations (filesystem, shell, subagents, skills) for the defect agent.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Built-in `fs` tool family: `read_file`, `write_file`, `edit_file`.

mod edit;
mod local_backend;
mod read;
mod write;

#[cfg(test)]
mod tests;

pub use edit::EditFileTool;
pub use local_backend::{LocalFsBackend, MAX_FS_BYTES};
pub use read::ReadFileTool;
pub use write::WriteFileTool;