spec-driven-docs 0.8.1

Spec-driven documentation: current specs, immutable decision records, and executable gates kept coherent for people and coding agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `verify` subcommand: parse-shape.
//!
//! Holds the clap derive struct only. No I/O, no business logic.

use camino::Utf8PathBuf;

/// Verify an installed instance offline.
#[derive(Debug, clap::Args)]
pub struct VerifyArgs {
    /// The instance to verify; absolute, or the working directory.
    #[arg(long, default_value = ".")]
    pub target: Utf8PathBuf,
}