Skip to main content

bamboo_server_tools/
lib.rs

1//! Framework-agnostic server-side tool implementations.
2//!
3//! These tools (memory, session inspector, skill runtime, compact, overlay) and
4//! the [`ToolSurfaceFactory`] depend only on lower crates (`bamboo-agent-core`,
5//! `bamboo-engine`, `bamboo-infrastructure`, `bamboo-memory`, `bamboo-tools`) —
6//! never on `bamboo-server`'s `AppState`. Server-bound tools (sub-agent,
7//! schedule) live in `bamboo-server::tools` and reach this crate through ports.
8
9pub mod ask_agent;
10pub mod cluster_tool;
11pub mod compact;
12pub mod deploy_agent;
13pub mod fabric_deploy;
14pub mod memory;
15pub mod notify;
16pub mod overlay_executor;
17pub mod registry_keys;
18pub mod session_inspector;
19pub mod skill_runtime;
20pub mod sub_agent;
21pub mod surface;
22
23pub use ask_agent::AskAgentTool;
24pub use cluster_tool::ClusterTool;
25pub use compact::CompactContextTool;
26pub use deploy_agent::{DeployAgentTool, Deployed, DeployedRegistry};
27pub use fabric_deploy::{FabricDeployer, FabricError};
28pub use memory::MemoryTool;
29pub use notify::{NotificationDispatcher, NotifyTool};
30pub use overlay_executor::OverlayToolExecutor;
31pub use session_inspector::SessionInspectorTool;
32pub use skill_runtime::{LoadSkillTool, ReadSkillResourceTool};
33pub use sub_agent::{SubAgentTool, DEFAULT_MAX_SPAWN_DEPTH};
34pub use surface::{ToolSurface, ToolSurfaceFactory};