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
//! Search commands — semantic code search, context assembly, exploration

pub(crate) mod gather;
mod neighbors;
mod onboard;
mod query;
mod related;
mod scout;
mod similar;
mod where_cmd;

pub(crate) use gather::{build_gather_output, cmd_gather, GatherContext};
pub(crate) use neighbors::cmd_neighbors;
pub(crate) use onboard::cmd_onboard;
pub(crate) use query::cmd_query;
pub(crate) use related::{build_related_output, cmd_related};
pub(crate) use scout::cmd_scout;
pub(crate) use similar::cmd_similar;
pub(crate) use where_cmd::{build_where_output, cmd_where};