arcature-cli 2026.1.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 metadata;
mod process;
mod project;
mod script;
mod stack;
mod tool;

pub use cli::run;