argus-codelens 0.2.0

AI code review platform — your coding agent shouldn't grade its own homework
Documentation
1
2
3
4
5
6
7
8
9
10
//! Code intelligence, AST-aware chunking, and semantic search.
//!
//! Provides local-first semantic search using AST-aware chunking (by
//! function/method), vector embeddings, and hybrid retrieval combining
//! vector similarity with keyword search via Reciprocal Rank Fusion.

pub mod chunker;
pub mod embedding;
pub mod search;
pub mod store;