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
1
2
3
4
5
6
7
8
9
10
11
12
13
mod listing;
mod routes;
#[cfg(test)]
mod tests;
mod tools;
mod types;
mod workflows;

pub use listing::{get_skill, list_skills};
pub use routes::config;
pub use tools::{get_available_tools, get_filtered_tools};
pub use types::{FilteredToolsQuery, ListSkillsQuery};
pub use workflows::get_available_workflows;