repopilot 0.7.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::{FindingCategory, Severity};

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RuleMetadata {
    pub rule_id: &'static str,
    pub title: &'static str,
    pub category: FindingCategory,
    pub default_severity: Severity,
    pub docs_url: Option<&'static str>,
    pub description: &'static str,
    pub recommendation: Option<&'static str>,
}