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
14
//! Worker-local tool registry construction.
//!
//! This module keeps worker approval policy and workspace-aware tool wiring
//! out of the main worker loop.

mod build;
mod mutating;
mod policy;
mod safe;

pub use build::create_filtered_registry;
pub use mutating::register_mutating_tools;
pub use policy::is_tool_allowed;
pub use safe::register_safe_tools;