codetether_agent/a2a/worker_tool_registry/mod.rs
1//! Worker-local tool registry construction.
2//!
3//! This module keeps worker approval policy and workspace-aware tool wiring
4//! out of the main worker loop.
5
6mod build;
7mod mutating;
8mod policy;
9mod safe;
10
11pub use build::create_filtered_registry;
12pub use mutating::register_mutating_tools;
13pub use policy::is_tool_allowed;
14pub use safe::register_safe_tools;