cargo-ai 0.3.0

Build lightweight AI agents with Cargo. Powered by Rust. Declared in JSON.
//! 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;
#[cfg(feature = "developer-tools")]
pub mod build;
pub mod credentials;
pub mod definition_source;
#[cfg(feature = "developer-tools")]
pub mod hatch;
pub mod hatch_pipeline;
pub mod init;
pub mod new;
#[cfg(feature = "developer-tools")]
pub mod package;
pub mod profile;
pub mod run;
pub mod runtime;
pub mod runtime_actions;
pub mod scaffold;
pub mod tools;
pub mod version;