repopilot 0.15.0

Local-first CLI for repository audit, architecture risk detection, baseline tracking, and CI-friendly code review.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::findings::types::Finding;
use crate::frameworks::{DetectedFramework, FrameworkProject};
use crate::output::finding_helpers::{clusters_by_rule_scope, example_locations};
use crate::output::render_helpers::escape_table_cell;
use crate::output::report_stats::{ReportStats, TOOL_VERSION};
use crate::output::report_text::{markdown_severity_counts_text, named_counts_text};
use crate::scan::types::{DiagnosticSeverity, ScanSummary};
use std::fmt::Write;

include!("sections/overview.rs");
include!("sections/risk.rs");
include!("sections/inventory.rs");