bctx-conductor 0.1.24

bctx-conductor — Spiral Cycle agent runtime, SignalGraph, PassageRun
Documentation
1
2
3
4
5
6
pub fn evaluate_guard(guard: &str, evidence: &[String]) -> bool {
    if guard == "always" {
        return true;
    }
    evidence.iter().any(|e| e.contains(guard))
}