lean-ctx 3.9.13

Context Runtime for AI Agents with CCP. 71 MCP tools, 10 read modes, 95+ compression patterns, cross-session memory (CCP), persistent AI knowledge with temporal facts + contradiction detection, multi-agent context sharing, LITM-aware positioning, AAAK compact format, adaptive compression with Thompson Sampling bandits. Supports 24+ AI tools. Reduces LLM token consumption by up to 99%.
Documentation
//! Open Context & Token Lifecycle Architecture (OCLA) public OSS contract.
//!
//! OCLA exposes local, provider-neutral control points. Implementations remain
//! in the engine or an OSS extension; commercial systems may consume this
//! versioned boundary but must never become a data-plane dependency.

pub mod budget;
pub mod builtin;
pub mod capsule;
pub mod content_port;
pub mod grpc_bridge;
pub mod health;
pub mod ledger_export;
pub mod openapi;
pub mod policy_bundle;
pub mod registry;
pub mod regression_gate;
pub mod response_cache;
pub mod routing_experiment;
pub mod routing_quality;
#[cfg(feature = "http-server")]
pub mod runtime;
pub mod sidecar;
pub mod tracing;
pub mod traits;
pub mod types;
pub mod unified_ledger;
pub mod wire;
#[cfg(feature = "http-server")]
pub mod wire_api;
#[cfg(feature = "http-server")]
pub mod wire_middleware;
pub mod wire_stream;

pub use registry::OclaRegistry;
pub use traits::*;
pub use types::*;