systemprompt-cli 0.21.1

Unified CLI for systemprompt.io AI governance: agent orchestration, MCP governance, analytics, profiles, cloud deploy, and self-hosted operations.
Documentation
//! Top-level CLI command groups.
//!
//! Each submodule owns one command domain — [`admin`], [`analytics`],
//! [`cloud`], [`core`], [`infrastructure`], [`plugins`], [`web`], and the
//! build tooling in [`build`] — and exposes its own clap subcommand tree.
//! The private `shared` module holds helpers used across those groups.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

pub mod admin;
pub mod analytics;
pub mod build;
pub mod cloud;
pub mod core;
pub mod infrastructure;
pub mod plugins;
mod shared;
pub mod web;