cargo-ai 0.2.0

Build lightweight AI agents with Cargo. Powered by Rust. Declared in JSON.
1
2
3
4
5
6
7
8
9
10
11
//! CLI parser definition for `cargo ai add`.
use clap::Command;

mod guidance;

/// Builds the `add` command schema and nested subcommands.
pub fn command() -> Command {
    Command::new("add")
        .about("Add lightweight support artifacts")
        .subcommand(guidance::command())
}