bamboo-agent 2026.4.5

A fully self-contained AI agent backend framework with built-in web services, multi-LLM provider support, and comprehensive tool execution
Documentation
//! Server-only tools and tool executors.
//!
//! These tools are registered only when running the Bamboo HTTP server.
//! They may depend on `AppState` components (storage, schedulers, etc.).

pub mod memory;
pub mod overlay_executor;
pub mod schedule_tasks;
pub mod session_inspector;
pub mod skill_runtime;
pub mod spawn_session;
pub mod sub_session_manager;

pub use memory::MemoryTool;
pub use overlay_executor::OverlayToolExecutor;
pub use schedule_tasks::ScheduleTasksTool;
pub use session_inspector::SessionInspectorTool;
pub use skill_runtime::{LoadSkillTool, ReadSkillResourceTool};
pub use spawn_session::SpawnSessionTool;
pub use sub_session_manager::SubSessionManagerTool;