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
12
13
14
mod args;
mod commands;
mod help;

pub(crate) use args::{
    ExportCliArgs, ExportFormatArg, FixCliArgs, ImportDistillArg, ImportProviderArg,
    ImportReviewsCliArgs, InitCliArgs, LearnCliArgs, MemoryPackageFormatArg, RecallCliArgs,
    ReviewCliArgs, StatusLane, SyncCliArgs,
};
pub(crate) use commands::*;
pub(crate) use help::build_cli;

#[cfg(test)]
mod tests;