vtcode-core 0.136.0

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
9
use clap::Subcommand;

/// Built-in repository checks
#[derive(Debug, Subcommand, Clone, PartialEq, Eq)]
pub enum CheckSubcommand {
    /// Run ast-grep rule tests and scan for the current workspace
    #[command(name = "ast-grep")]
    AstGrep,
}