What problem does it solve? Finding where functionality is implemented in a large codebase is slow with plain grep or manual browsing, especially when you only know the concept, an error message, or a partial symbol name rather than an exact location. ## Core Features & Use Cases - Hybrid Search: Combines structural (CodeGraph), semantic (vector), and lexical (BM25) channels fused with weighted RRF through the codekb_search MCP tool. - Automatic Query Routing: Detects whether a query is a symbol lookup, error string, bug-related question, or natural language and weights the appropriate channel. - Scoped Results: Supports scope, knowledge type filters, and result limits, returning file paths with line ranges for direct follow-up reads. - Use Case: Ask "where is user authentication handled" and receive ranked file locations with line ranges, then open the top result to read the implementation. ## Quick Start Ask the assistant to use codekb_search to find where payment refund processing is implemented in this repository.