lean-ctx 3.9.17

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
use rmcp::ErrorData;
use rmcp::model::Tool;
use serde_json::{Map, Value, json};

use crate::server::tool_trait::{McpTool, ToolContext, ToolOutput, get_str, get_usize};
use crate::tool_defs::tool_def;

pub struct CtxReviewTool;

impl McpTool for CtxReviewTool {
    fn name(&self) -> &'static str {
        "ctx_review"
    }

    fn tool_def(&self) -> Tool {
        tool_def(
            "ctx_review",
            "Automated code review with impact analysis, caller tracking, and test discovery.\n\
             Actions: review (single file), diff-review (from git diff text),\n\
             checklist (structured review questions). depth=N (default 3).\n\
             WORKFLOW: run tests first, then use review for structured analysis.\n\
             ANTIPATTERN: not a substitute for actual test execution.",
            json!({
                "type": "object",
                "properties": {
                    "action": {
                        "type": "string",
                        "enum": ["review", "diff-review", "checklist"]
                    },
                    "path": {
                        "type": "string",
                        "description": "File path (review/checklist) or git diff text (diff-review)"
                    },
                    "depth": {
                        "type": "integer",
                        "description": "Analysis breadth (default 3)"
                    }
                },
                "required": ["action"],
                "allOf": [
                    {
                        "if": {
                            "properties": { "action": { "const": "review" } },
                            "required": ["action"]
                        },
                        "then": { "required": ["action", "path"] }
                    },
                    {
                        "if": {
                            "properties": { "action": { "const": "diff-review" } },
                            "required": ["action"]
                        },
                        "then": { "required": ["action", "path"] }
                    },
                    {
                        "if": {
                            "properties": { "action": { "const": "checklist" } },
                            "required": ["action"]
                        },
                        "then": { "required": ["action", "path"] }
                    }
                ]
            }),
        )
    }

    fn handle(
        &self,
        args: &Map<String, Value>,
        ctx: &ToolContext,
    ) -> Result<ToolOutput, ErrorData> {
        let action = get_str(args, "action")
            .ok_or_else(|| ErrorData::invalid_params("action is required", None))?;
        let path = get_str(args, "path");
        let depth = get_usize(args, "depth").map(|d| d.min(64));
        let project_root = if let Some(p) = ctx
            .resolved_path("project_root")
            .or(ctx.resolved_path("root"))
        {
            p
        } else if let Some(err) = ctx.path_error("project_root").or(ctx.path_error("root")) {
            return Err(ErrorData::invalid_params(
                format!("project_root: {err}"),
                None,
            ));
        } else {
            &ctx.project_root
        };

        let result =
            crate::tools::ctx_review::handle(&action, path.as_deref(), project_root, depth);

        Ok(ToolOutput::simple(result))
    }
}