lean-ctx 3.9.3

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
pub mod auto_load;
pub mod builder;
pub mod bundle;
pub mod composition;
pub mod content;
pub mod deps;
pub mod export;
pub mod graph_model;
pub mod import;
pub mod keys;
pub mod loader;
pub mod lockfile;
pub mod manifest;
pub mod registry;
pub mod remote;
pub mod signing;
pub mod skills;
pub mod verify;

pub use auto_load::auto_load_packages;
pub use builder::PackageBuilder;
pub use bundle::ContextPackage;
pub use composition::{MergeReport, merge_graphs};
pub use content::PackageContent;
pub use export::save_package;
pub use graph_model::{ContextEdge, ContextGraph, ContextNode};
pub use import::resume_package;
pub use loader::{LoadReport, load_package};
pub use manifest::{PackageLayer, PackageManifest};
pub use registry::LocalRegistry;
pub use signing::{sign_package, verify_signature};