bamboo-server 2026.4.29

HTTP server and API layer for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Server-side tool implementations.

pub mod compact;
pub mod memory;
pub mod overlay_executor;
pub mod session_inspector;
pub mod skill_runtime;
pub mod surface;

pub use compact::CompactContextTool;
pub use memory::MemoryTool;
pub use overlay_executor::OverlayToolExecutor;
pub use session_inspector::SessionInspectorTool;
pub use skill_runtime::{LoadSkillTool, ReadSkillResourceTool};
pub use surface::{ToolSurface, ToolSurfaceFactory};