cqs 1.25.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
# Sample R file for parser tests

# Calculate the mean of a numeric vector
calculate_mean <- function(x) {
    sum(x) / length(x)
}

# Filter values above a threshold
filter_above <- function(values, threshold) {
    values[values > threshold]
}

# Generate a summary report
generate_report <- function(data) {
    avg <- mean(data)
    std_dev <- sd(data)
    cat("Mean:", avg, "\n")
    cat("SD:", std_dev, "\n")
    return(list(mean = avg, sd = std_dev))
}