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
//! Infrastructure commands — init, doctor, audit mode, telemetry, projects, references, cache

mod audit_mode;
mod cache_cmd;
#[cfg(feature = "convert")]
mod convert;
mod doctor;
mod init;
mod project;
mod reference;
mod telemetry_cmd;

pub(crate) use audit_mode::cmd_audit_mode;
pub(crate) use cache_cmd::{cmd_cache, CacheCommand};
#[cfg(feature = "convert")]
pub(crate) use convert::cmd_convert;
pub(crate) use doctor::cmd_doctor;
pub(crate) use init::cmd_init;
pub(crate) use project::{cmd_project, ProjectCommand};
pub(crate) use reference::{cmd_ref, RefCommand};
pub(crate) use telemetry_cmd::{cmd_telemetry, cmd_telemetry_reset};