gaji 0.3.2

Type-safe GitHub Actions workflows in TypeScript
Documentation
use clap::{Parser, Subcommand};

#[derive(Parser)]
#[command(name = "gaji")]
#[command(author = "gaji contributors")]
#[command(version)]
#[command(about = "Type-safe GitHub Actions workflows in TypeScript", long_about = None)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Commands,
}

#[derive(Subcommand)]
pub enum Commands {
    /// Initialize a new gaji project
    Init {
        /// Overwrite existing files
        #[arg(long)]
        force: bool,

        /// Skip example workflow creation
        #[arg(long)]
        skip_examples: bool,

        /// Migrate existing YAML workflows to TypeScript
        #[arg(long)]
        migrate: bool,

        /// Interactive mode
        #[arg(short, long)]
        interactive: bool,
    },

    /// Start development mode (one-time scan by default)
    Dev {
        /// Directory to watch
        #[arg(short, long, default_value = "workflows")]
        dir: String,

        /// Keep watching for changes after the initial scan
        #[arg(long)]
        watch: bool,
    },

    /// Build TypeScript workflows to YAML
    Build {
        /// Input directory containing TypeScript workflows
        #[arg(short, long, default_value = "workflows")]
        input: String,

        /// Output directory for YAML files
        #[arg(short, long, default_value = ".github")]
        output: String,

        /// Preview YAML output without writing files
        #[arg(long)]
        dry_run: bool,
    },

    /// Add a new action and generate types
    Add {
        /// Action reference (e.g., actions/checkout@v5)
        action: String,
    },

    /// Clean generated files
    Clean {
        /// Also clean cache
        #[arg(long)]
        cache: bool,
    },
}