bamboo-domain 2026.8.13

Domain models and shared types for the Bamboo agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Bamboo workflow domain types.
//!
//! Defines the `WorkflowDefinition` entity and its validation rules,
//! independent of filesystem loading and server infrastructure.

pub mod compiler;
pub mod definition;
pub mod run;
pub mod schema;

pub use compiler::{CompiledWorkflow, WorkflowCompileError};
pub use definition::{validate_expr, validate_required, WorkflowDefinition, WorkflowLoadError};
pub use run::*;
pub use schema::{validate_schema, validate_schema_shape};