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
//! File-search tools — `Glob` (filename pattern matching) and `Grep`
//! (content search via ripgrep).

pub mod glob_;
pub mod grep;

pub use glob_::GlobTool;
pub use grep::GrepTool;