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 ledger;
15pub mod memory;
16pub mod notify;
17pub mod overlay_executor;
18pub mod project_tools;
19pub mod registry_keys;
20pub mod session_inspector;
21pub mod skill_runtime;
22pub mod sub_agent;
23pub mod surface;
24
25pub use ask_agent::AskAgentTool;
26pub use cluster_tool::ClusterTool;
27pub use compact::CompactContextTool;
28pub use deploy_agent::{DeployAgentTool, Deployed, DeployedRegistry};
29pub use fabric_deploy::{FabricActionResult, FabricCommitSnapshot, FabricDeployer, FabricError};
30pub use ledger::{LedgerScheduleBridge, LedgerTool};
31pub use memory::MemoryTool;
32pub use notify::{NotificationDispatcher, NotifyTool};
33pub use overlay_executor::OverlayToolExecutor;
34pub use project_tools::{ProjectTool, ProjectWorkspaceTool};
35pub use session_inspector::SessionInspectorTool;
36pub use skill_runtime::{LoadSkillTool, ReadSkillResourceTool};
37pub use sub_agent::{SubAgentTool, DEFAULT_MAX_SPAWN_DEPTH};
38pub use surface::{ToolSurface, ToolSurfaceFactory};