klieo-ops 0.3.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
//! 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;
pub use trait_::{ApprovalError, ApprovalOutcome, Gate, GateDecision, GateRequest, PolicyCode};