difflore-cli 0.2.0

Your AI coding agent learned public code, not your team's private decisions. difflore turns past PR reviews into source-backed local rules.
1
2
3
4
5
6
7
8
9
10
11
//! Crate-level shared helpers used across commands, installer, and hook
//! paths. Nothing here is a user command — that's exactly why it lives
//! outside `commands/` (naming rule: command path = module path).

pub(crate) mod file_ext;
pub(crate) mod impact_payload;
pub(crate) mod proven_rule;
pub(crate) mod review_text;
#[cfg(test)]
pub(crate) mod test_home;
pub(crate) mod util;