bamboo-engine 2026.6.5

Execution engine and orchestration for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Subagent profile composition (built-ins + layered loader).
//!
//! - [`builtin`] supplies the six default profiles
//!   (`general-purpose` / `plan` / `researcher` / `coder` /
//!   `reviewer` / `tester`).
//! - [`loader`] composes builtin + user-global + project-level + env-pointed
//!   override files into a single
//!   [`bamboo_domain::subagent::SubagentProfileRegistry`].
//!
//! This module owns the canonical profile system. `bamboo-server` re-exports
//! it through a thin shim (`crate::subagent_profiles`) for back-compat.

pub mod builtin;
pub mod loader;

pub use builtin::builtin_profiles;
pub use loader::{load_registry, LoaderError};