systemprompt-cli 0.14.4

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
//! Synchronise the authenticated cloud user as an admin across local profiles.
//!
//! Discovers profile databases, then creates or promotes the cloud user to
//! admin in each. Public surface: [`CloudUser`], [`SyncResult`], the discovery
//! helpers, and the per-database / all-profiles sync entry points.

mod discovery;
mod sync;
mod types;

pub use discovery::{discover_profiles, print_discovery_summary};
pub use sync::{print_sync_results, sync_admin_to_all_profiles, sync_admin_to_database};
pub use types::{CloudUser, ProfileDiscoveryResult, ProfileInfo, ProfileSkipReason, SyncResult};