repopilot 0.10.0

Local-first CLI for repository audit, architecture risk detection, baseline tracking, and CI-friendly code review.
Documentation
//! RepoPilot is a local-first repository audit CLI.
//!
//! It scans repositories, detects architecture, testing, code-quality, and
//! security risks, supports project-level configuration, and can compare
//! current findings against a baseline for CI-friendly workflows.
//!
//! Most users interact with RepoPilot through the CLI:
//!
//! ```text
//! repopilot init
//! repopilot scan .
//! repopilot review .
//! repopilot baseline create .
//! ```

pub mod audits;
pub mod baseline;
pub mod compare;
pub mod config;
pub mod doctor;
pub mod explain;
pub mod findings;
pub mod frameworks;
pub mod graph;
pub mod knowledge;
pub mod output;
pub mod receipt;
pub mod report;
pub mod review;
pub mod rules;
pub mod scan;