klieo-ops 3.5.0

Operational layer above klieo-core: supervisor, governor, gates, escalation, worklog, handoff.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Gates primitive: policy-as-code at the pre-effect boundary.

mod allowlist;
mod four_eyes;
mod gated_tool;
mod policy;
mod trait_;

pub use allowlist::AllowlistGate;
pub use four_eyes::{DualControlClassifier, FourEyesGate};
pub use gated_tool::GatedTool;
pub use policy::{PolicyGate, PolicyGateError};
pub use trait_::{
    ApprovalError, ApprovalOutcome, ApprovalTimeoutPolicy, Gate, GateDecision, GateRequest,
    PolicyCode,
};