klieo-ops 0.3.0

Operational layer above klieo-core: supervisor, governor, gates, escalation, worklog, handoff.
Documentation
//! Escalation primitive: severity-routed ticket raise + resolve.
//!
//! Phase B (M6) ships:
//!  - Trait + default `JobQueueEscalation` impl.
//!  - Three reference channel adapters (Log, Webhook, JobQueue passthrough).
//!  - OpsEvent variants for ticket lifecycle.
//!
//! Channel adapters live alongside this module under `channels/`. M6
//! follow-up tasks land them in parallel with this foundation commit.

pub mod channels;
mod jobqueue;
mod trait_;

pub use channels::{ChannelAdapter, ChannelError, JobQueueChannel, LogChannel, WebhookChannel};
pub use jobqueue::JobQueueEscalation;
pub use trait_::{
    Escalation, EscalationError, EscalationFilter, EscalationId, EscalationState, EscalationTicket,
    ProvenanceRef, Resolution, ResolutionOutcome, Severity,
};