systemprompt-cli 0.14.3

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
//! `systemprompt` binary entry point.
//!
//! Thin wrapper around the library entry [`systemprompt_cli::run`] so the cli
//! ships both as a library (for embedders) and as a runnable binary (so
//! coverage / integration harnesses can invoke it via `cargo_bin`).

fn main() -> anyhow::Result<()> {
    let runtime = tokio::runtime::Builder::new_multi_thread()
        .enable_all()
        .build()?;
    runtime.block_on(systemprompt_cli::run())
}