bamboo-engine 2026.7.25

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
//! Durable, catalog-revision-pinned workflow execution.

mod executor;
mod repository;

pub use bamboo_domain::{CompiledWorkflow, WorkflowCompileError};
pub use executor::{
    AgentStepPort, AgentStepResult, NamedAgentSpec, PermissionDecision, WorkflowDefinitionPort,
    WorkflowPolicyPort, WorkflowPolicyTarget, WorkflowRunEngine, WorkflowRunError,
    WorkflowSecretMaterial, WorkflowSecretResolverPort,
};
pub use repository::{FileWorkflowRunRepository, WorkflowRunRepository};

#[cfg(test)]
mod tests;