arcature-cli 2026.2.0

Developer lifecycle CLI for Arcature applications.
Documentation
//! Arcature application lifecycle command-line interface.
//!
//! The `arcature-cli` package installs the `arc` binary. It orchestrates
//! Cargo and the certified Node/pnpm/Vite development toolchain while leaving
//! each upstream command directly usable. The implementation is intentionally
//! not a general-purpose CLI SDK; [`run`] is exposed only as the binary's
//! stable bootstrap boundary.

#![forbid(unsafe_code)]

mod cli;
mod commands;
mod contracts;
mod error;
mod inspection;
mod metadata;
mod process;
mod project;
mod release;
mod script;
mod stack;
// AP2.1-7: the system-check framework consumer for `arc doctor --checks`.
// Aggregates the framework's own `FRAMEWORK_CHECKS` slice (and, in a later
// wave, application-contributed slices) and prints the report. The trait +
// registry live in `arcature::system_check`; this is the CLI-side runner.
mod system_check;
mod tool;

pub use cli::run;