repopilot 0.20.0

Local-first CLI for reviewing Git changes, security boundaries, and blast radius before merge.
Documentation
1
2
3
4
5
6
7
8
9
use clap::Args;
use std::path::PathBuf;

#[derive(Args)]
pub struct SnapshotOptions {
    /// Path inside the repository to snapshot (defaults to the current directory)
    #[arg(default_value = ".")]
    pub path: PathBuf,
}