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
"""Sample Python module for testing."""

def greet(name: str) -> str:
    """Return a greeting for the given name."""
    return f"Hello, {name}!"

def calculate_sum(numbers: list[int]) -> int:
    """Calculate the sum of a list of numbers."""
    return sum(numbers)

class Counter:
    """A simple counter class."""

    def __init__(self, start: int = 0):
        """Initialize counter with a starting value."""
        self.value = start

    def increment(self):
        """Increment the counter by 1."""
        self.value += 1

    def decrement(self):
        """Decrement the counter by 1."""
        self.value -= 1

    def get(self) -> int:
        """Get the current counter value."""
        return self.value