klieo-ops 0.2.0

Operational layer above klieo-core: supervisor, governor, gates, escalation, worklog, handoff.
Documentation
#![deny(missing_docs)]
#![deny(rust_2018_idioms)]

//! # klieo-ops
//!
//! Operational layer above [`klieo_core`]. Ships supervisor, governor, gates,
//! escalation, worklog, and handoff primitives. Compliance evidence is a
//! byproduct: every primitive emits structured events into the existing
//! Merkle-chained [`klieo_core::EpisodicMemory`].
//!
//! ## Out of scope
//!
//! See `README.md` for the load-bearing out-of-scope list. Critically, the
//! framework does **not** assess agent decision quality, bias, or accuracy —
//! those are user-owned (EU AI Act Art 10, Art 15).

pub mod clock;
pub mod error;
pub mod ops_event;
pub mod redactor;
pub mod runtime;
pub mod tenant;
pub mod types;

#[cfg(feature = "supervisor")]
pub mod supervisor;

#[cfg(feature = "governor")]
pub mod governor;

#[cfg(feature = "gates")]
pub mod gates;

#[cfg(feature = "test-utils")]
pub mod test_fixtures;

pub use error::{BuildError, OpsError};
pub use ops_event::OpsEvent;
pub use runtime::OpsRuntime;
pub use tenant::{spawn_with_context, TenantResolver};
pub use types::{
    AgentId, AgentMeta, BudgetScope, KillReason, KillTrigger, ProviderId, RuntimeState, TenantId,
};