cqs 1.22.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
//! Scoring algorithms, name matching, and search helpers.
//!
//! Split into submodules by concern:
//! - `config` - scoring configuration constants
//! - `name_match` - name matching/boosting logic
//! - `note_boost` - note-based score boosting
//! - `filter` - SQL filter building, glob compilation, chunk ID parsing
//! - `candidate` - candidate scoring, importance demotion, parent boost, bounded heap

mod candidate;
mod config;
mod filter;
mod name_match;
mod note_boost;

pub(crate) use candidate::{apply_parent_boost, score_candidate, BoundedScoreHeap, ScoringContext};
pub(crate) use filter::{build_filter_sql, compile_glob_filter, extract_file_from_chunk_id};
pub(crate) use name_match::NameMatcher;
pub(crate) use note_boost::NoteBoostIndex;