caliban-tools-builtin 0.4.0

Built-in tools (Read/Write/Edit/Bash/Glob/Grep/WebFetch) for the caliban agent harness — internal crate for the caliban binary; no API stability, pin exact versions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Filesystem tools — `Read`, `Write`, `Edit`, `MultiEdit`, `NotebookEdit`.

pub mod edit;
pub(crate) mod match_old;
pub mod multi_edit;
pub mod notebook_edit;
pub mod read;
pub mod write;

pub use edit::EditTool;
pub use multi_edit::MultiEditTool;
pub use notebook_edit::NotebookEditTool;
pub use read::ReadTool;
pub use write::WriteTool;