lean-ctx 3.9.5

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
//! Doctor check catalog, split by domain.
//!
//! Every check returns an [`Outcome`] (or `Option`/`Vec` thereof) and is
//! re-exported flat so `doctor/mod.rs` and `doctor/report.rs` keep addressing
//! `checks::foo()` — the split is purely structural.

mod clients;
mod environment;
mod providers;
mod proxy;
mod security;
mod storage;

pub(crate) use clients::*;
pub(crate) use environment::*;
pub(crate) use providers::*;
pub(crate) use proxy::*;
pub(crate) use security::*;
pub(crate) use storage::*;

#[cfg(test)]
use crate::doctor::Outcome;

#[cfg(test)]
mod tests;