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
1
2
3
4
5
6
7
8
9
10
11
//! Index commands — indexing, stats, staleness, garbage collection

mod build;
mod gc;
mod stale;
mod stats;

pub(crate) use build::{build_hnsw_index, build_hnsw_index_owned, cmd_index};
pub(crate) use gc::{cmd_gc, GcOutput};
pub(crate) use stale::{build_stale, cmd_stale};
pub(crate) use stats::{build_stats, cmd_stats};