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
//! IO commands — file reading, reconstruction, blame, context, notes, diffs

pub(crate) mod blame;
mod brief;
pub(crate) mod context;
mod diff;
mod drift;
mod notes;
pub(crate) mod read;
mod reconstruct;

pub(crate) use blame::cmd_blame;
pub(crate) use brief::cmd_brief;
pub(crate) use context::cmd_context;
pub(crate) use diff::cmd_diff;
pub(crate) use drift::cmd_drift;
pub(crate) use notes::{cmd_notes, cmd_notes_mutate, NotesCommand};
pub(crate) use read::cmd_read;
pub(crate) use reconstruct::cmd_reconstruct;