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
# Calculator module
module Calculator

export add, multiply, factorial

function add(x::Int, y::Int)::Int
    return x + y
end

function multiply(x, y)
    return x * y
end

function factorial(n::Int)
    if n <= 1
        return 1
    else
        return n * factorial(n - 1)
    end
end

end # module

# Point struct
struct Point
    x::Float64
    y::Float64
end

# Abstract type
abstract type Shape end

function greet(name::String)
    println("Hello, $name!")
end

function distance(p1::Point, p2::Point)
    dx = p1.x - p2.x
    dy = p1.y - p2.y
    return sqrt(dx^2 + dy^2)
end