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
//! Agent-orchestration tools — sub-agent invocation (`AgentTool`) and
//! `TodoWrite`.

pub mod agent_tool;
pub mod todo_write;

pub use agent_tool::{
    AgentFactory, AgentTool, AgentToolInput, BackgroundSpawnResult, BackgroundSpawner,
    IsolationMode, WorktreeOptions,
};
pub use todo_write::TodoWriteTool;