systemprompt-cloud 0.2.1

Cloud API client, credentials, OAuth, and tenant management for systemprompt.io AI governance deployments. Remote sync and multi-tenant orchestration for the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod cloud;
mod context;
mod discovery;
mod project;

use std::path::{Path, PathBuf};

pub use cloud::{CloudPath, CloudPaths, get_cloud_paths};
pub use context::UnifiedContext;
pub use discovery::DiscoveredProject;
pub use project::{ProfilePath, ProjectContext, ProjectPath};
pub use systemprompt_models::profile::{expand_home, resolve_with_home};

#[must_use]
pub fn resolve_path(base_dir: &Path, path_str: &str) -> PathBuf {
    resolve_with_home(base_dir, path_str)
}