bamboo-hooks 2026.8.2

Lifecycle hook dispatch and external script orchestration for Bamboo
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Lifecycle hook registry and configured handler runtimes.
//!
//! The agent engine owns lifecycle seams and applies returned decisions. This
//! crate owns handler matching, deterministic dispatch, command execution, and
//! external script runtime selection.

mod configured;
mod dispatcher;

pub use bamboo_config::LifecycleScriptRunner;
pub use configured::{
    test_lifecycle_handler, test_lifecycle_shell_command, LifecycleHookEvent,
    LifecycleHookTestOutput, ScriptHook, ShellCommandHook, ShellHookEvent, ShellHookTestOutput,
};
pub use dispatcher::{HookDispatchReport, HookDispatcher, HookExecution, HookRunOutcome};