pmat 3.24.2

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use clap::Subcommand;
use std::path::PathBuf;

/// Commands for Google Anti-Gravity customizations translator
#[derive(Debug, Clone, Subcommand, PartialEq)]
pub enum AgyCommands {
    /// Transpile PMAT skill requirements and contracts into AGY formats (MACS-017)
    Sync {
        /// Optional path to .pmat-work contracts
        #[arg(long, default_value = ".pmat-work")]
        work_dir: PathBuf,
        /// Target AGY config dir (e.g. .gemini/config/skills)
        #[arg(long, default_value = ".agents/skills")]
        out_dir: PathBuf,
    },
}