systemprompt-cli 0.15.0

Unified CLI for systemprompt.io AI governance: agent orchestration, MCP governance, analytics, profiles, cloud deploy, and self-hosted operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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.

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;