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
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,
}