repotoire 0.5.3

Graph-powered code analysis CLI. 106 detectors for security, architecture, and code quality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Pure function stages for the analysis pipeline.
//!
//! Each stage: `fn(Input) -> Result<Output>`.
//! No engine state, no I/O side effects, independently testable.

pub mod calibrate;
pub mod collect;
pub mod detect;
pub mod git_enrich;
pub mod graph;
pub mod graph_builder_patch;
pub mod parse;
pub mod postprocess;
pub mod score;