cqs 1.26.0

Code intelligence and RAG for AI agents. Semantic search, call graphs, impact analysis, type dependencies, and smart context assembly — in single tool calls. 54 languages + L5X/L5K PLC exports, 91.2% Recall@1 (BGE-large), 0.951 MRR (296 queries). Local ML, GPU-accelerated.
Documentation
/// Adds two numbers together
pub fn add(a: i32, b: i32) -> i32 {
    a + b
}

/// Subtracts b from a
pub fn subtract(a: i32, b: i32) -> i32 {
    a - b
}

/// A simple calculator
pub struct Calculator {
    value: i32,
}

impl Calculator {
    /// Creates a new calculator
    pub fn new() -> Self {
        Self { value: 0 }
    }

    /// Adds to the current value
    pub fn add(&mut self, x: i32) {
        self.value += x;
    }

    /// Gets the current value
    pub fn get(&self) -> i32 {
        self.value
    }
}