cargo-ai 0.0.11

Build lightweight AI agents with Cargo. Powered by Rust. Declared in JSON.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! CLI parser definition for `cargo ai shipyard`.
use clap::{Arg, Command};

/// Builds the hidden `shipyard` command schema.
pub fn command() -> Command {
    Command::new("shipyard")
        .hide(true)
        .about("Launch Shipyard desktop UI (exploratory)")
        .arg(
            Arg::new("experimental")
                .long("experimental")
                .help("Internal: enable experimental Shipyard UI launch")
                .hide(true)
                .action(clap::ArgAction::SetTrue),
        )
}