lean-ctx 3.9.16

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
//! Agent profiles — workload-specific configurations.
//!
//! Profiles compose existing configuration knobs into named presets. They are
//! loaded from three tiers (highest priority first):
//! 1. Project: `.lean-ctx/profiles/<name>.toml`
//! 2. User: `~/.config/lean-ctx/profiles/<name>.toml`
//! 3. Built-in defaults
//!
//! A profile can extend another via `extends = "parent"`. Child fields override
//! parent fields; unset fields inherit.

mod builtins;
mod loading;
#[allow(dead_code)]
mod types;

pub(crate) use loading::*;
pub(crate) use types::*;

#[cfg(test)]
mod tests;