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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sample Page</title>
</head>
<body>
    <header>
        <nav id="main-nav">
            <a href="/">Home</a>
            <a href="/about">About</a>
        </nav>
    </header>

    <main>
        <h1>Welcome to the Sample</h1>
        <p>This is a sample HTML file for testing.</p>

        <section id="features">
            <h2>Features</h2>
            <ul>
                <li>Semantic parsing</li>
                <li>Landmark detection</li>
            </ul>
        </section>

        <article>
            <h2>Getting Started</h2>
            <p>Follow these steps to begin.</p>
        </article>

        <div id="app">
            <form>
                <input type="text" name="query">
                <button type="submit">Search</button>
            </form>
        </div>
    </main>

    <footer>
        <p>&copy; 2026 Sample Corp</p>
    </footer>

    <script src="main.js"></script>
    <script>
    function handleClick(event) {
        const el = document.getElementById('target');
        el.classList.toggle('active');
    }

    function setupListeners() {
        document.querySelector('button').addEventListener('click', handleClick);
    }
    </script>
    <style>
        body { font-family: sans-serif; }
        .container { max-width: 1200px; }
    </style>
</body>
</html>