arcature-cli 2026.1.0

Developer lifecycle CLI for Arcature applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Application metadata artifact loading and inspection types.
//!
//! The CLI reaches application metadata by shelling out to the app's
//! `arcature-metadata` binary (AGENTS.md §16 standalone-first: the CLI does
//! not depend on `arcature`). The binary emits a JSON artifact with modules,
//! routes, and services — never booted infrastructure (PROGRAM.md
//! §"Side-effect-free inspection").

mod artifact;
mod execute;

pub(crate) use artifact::{
    CadenceEntry, CommandEntry, JobEntry, ListenerEntry, MetadataArtifact, ModuleEntry, RouteEntry,
    ScheduleEntry, ServiceEntry,
};
pub(crate) use execute::load;