axon-lang 2.11.0

AXON — the formal cognitive language: a deterministic, proof-carrying AI runtime. Native Rust lexer/parser/type-checker/IR generator (re-exported from axon-frontend) plus the runtime: typed channels (π-calculus mobility, capability extrusion), algebraic effects via Free Monad CPS handlers, lease kernel + reconcile loop, the Epistemic Security Kernel, Trust Types, Proof-Carrying Code (independently verifiable proof objects), and the closed-catalog extension mechanism. Crate publishes as `axon-lang`; library import is `use axon::*` so existing call sites keep working unchanged.
Documentation
//! AXON Runtime — Cognitive Immune System kernels (§λ-L-E Fase 5).
//!
//! Direct port of `axon/runtime/immune/`. Formal spec:
//! [`docs/paper_immune_v2.md`](../../../../docs/paper_immune_v2.md).

pub mod detector;
pub mod heal;
pub mod health_report;
pub mod reflex;

pub use detector::{AnomalyDetector, KLDistribution};
pub use heal::{
    ApplyFn, Clock, HealDecision, HealKernel, HealOutcome, Patch, PatchState, ShieldApproveFn,
    SynthesizeFn, default_apply, default_shield_approve, default_synthesize,
};
pub use health_report::{
    HealthReport, VALID_LEVELS, certainty_from_kl, level_at_least, level_from_kl, level_order,
    make_health_report,
};
pub use reflex::{ReflexEngine, ReflexOutcome};