repopilot 0.18.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
10
11
use clap::Args;
use std::path::PathBuf;

/// Options for `repopilot mcp`.
///
#[derive(Args)]
pub struct McpOptions {
    /// Restrict all MCP file access to this workspace root
    #[arg(long, default_value = ".")]
    pub root: PathBuf,
}