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
12
13
14
15
16
//! Command execution modules for the `cargo-ai` CLI.
//!
//! Each submodule owns one command area and keeps `main.rs` dispatch-only.
pub mod account;
pub mod add;
pub mod auth;
pub mod credentials;
pub mod hatch;
pub mod hatch_pipeline;
pub mod init;
pub mod new;
pub mod preflight;
pub mod preflight_actions;
pub mod profile;
pub mod scaffold;
pub mod version;