lean-ctx 3.9.15

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
//! Tests for `ctx_read`. Extracted from `ctx_read/mod.rs`;
//! `super::*` resolves to the `ctx_read` module.

use super::*;

#[cfg(test)]
#[path = "tests_compression.rs"]
mod tests_compression;
#[cfg(test)]
#[path = "tests_e26_benchmark.rs"]
mod tests_e26_benchmark;
#[cfg(test)]
#[path = "tests_inflation.rs"]
mod tests_inflation;
#[cfg(test)]
#[path = "tests_modes.rs"]
mod tests_modes;
#[cfg(test)]
#[path = "tests_ranges.rs"]
mod tests_ranges;
#[cfg(test)]
#[path = "tests_verbatim.rs"]
mod tests_verbatim;