ai-dispatch 9.3.2

Multi-AI CLI team orchestrator
1
2
3
4
5
6
7
8
9
// Status guard helpers for Store mutation methods.
// Exports warn-only escape hatch predicate.
// Deps: std env.

pub(crate) fn status_guard_warn_only() -> bool {
    std::env::var("AID_STATUS_GUARD")
        .map(|value| value == "warn")
        .unwrap_or(false)
}