lean-ctx 3.6.5

Context Runtime for AI Agents with CCP. 51 MCP tools, 10 read modes, 60+ 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
1
2
3
4
5
6
7
use crate::core::cache::SessionCache;
use crate::tools::CrpMode;

/// Thin redirect: delegates to ctx_read mode=diff.
pub fn handle(cache: &mut SessionCache, path: &str) -> String {
    crate::tools::ctx_read::handle(cache, path, "diff", CrpMode::effective())
}