knot 1.1.0

Codebase Graph + Vector RAG Indexer for Java, TypeScript, JavaScript, Kotlin, Rust, Python, Groovy, C/C++, Build Systems, and HTML/CSS codebases
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Phase 4 Test - Hybrid Web Ecosystem</title>
    <!-- Stylesheet import for Phase 4 cross-language linking -->
    <link rel="stylesheet" href="spa_app.css">
</head>
<body>
    <!-- Test container with id and class attributes -->
    <div id="app-container" class="app-wrapper">
        <header id="main-header" class="navbar">
            <h1>Hybrid Web App</h1>
            <button id="toggle-btn" class="btn btn-primary">Toggle Theme</button>
        </header>
        <main id="content-area" class="content-section">
            <div id="dashboard" class="dashboard-panel">
                <h2>Dashboard</h2>
                <p id="status-text">Status: Ready</p>
                <button id="load-btn" class="btn btn-secondary">Load Data</button>
            </div>
            <div id="sidebar" class="sidebar-widget">
                <h3>Sidebar</h3>
                <ul id="nav-list" class="nav-links">
                    <li><a href="#home">Home</a></li>
                    <li><a href="#about">About</a></li>
                </ul>
            </div>
        </main>
        <footer id="footer" class="footer-container">
            <p>&copy; 2026 Test App</p>
        </footer>
    </div>

    <!-- Script import for Phase 4 cross-language linking -->
    <script src="spa_app.js"></script>
</body>
</html>