lean-ctx 3.9.18

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
//! `lean-ctx team …` — OSS stub (ADR-023).
//!
//! Team server management commands (serve, token, sync, slo-report) require
//! the enterprise edition. This stub prints a notice and exits.

pub(crate) fn cmd_team(_rest: &[String]) {
    eprintln!("lean-ctx team: requires lean-ctx Enterprise edition.");
    eprintln!("See https://leanctx.dev/enterprise for details.");
    std::process::exit(1);
}