codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Tool dispatch for agents.
//!
//! This module isolates tool execution, invalid-tool fallback handling, and
//! registry access for the `Agent` runtime.
//!
//! # Examples
//!
//! ```ignore
//! let has_bash = agent.has_tool("bash");
//! ```

mod dispatch;
mod registry_access;