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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Stats formatting, split by view (GL#440): `util` (shared helpers),
//! `cep` (CEP report), `dashboard` (gain hero), `views` (graph/daily/json).

mod cep;
mod dashboard;
mod util;
mod views;

pub use cep::format_cep_report;
pub use dashboard::{
    format_gain, format_gain_body, format_gain_footer, format_gain_hero, format_gain_hero_themed,
    format_gain_themed, format_gain_themed_at, gain_live,
};
pub(crate) use util::normalize_command;
pub use views::{format_gain_daily, format_gain_graph, format_gain_json};