systemprompt-loader 0.55.1

File and module discovery infrastructure for systemprompt.io AI governance — manifests, schemas, and extension loading. Separates I/O from shared models in the MCP governance pipeline.
Documentation
//! File and module discovery infrastructure for systemprompt.io.
//!
//! Reads the active services-config (with include resolution and
//! deduplication), loads profile YAML, writes agent files, and discovers
//! extension manifests under `extensions/`. Sits one level above
//! [`systemprompt_config`] in the dependency graph so that domain crates
//! never need to know how the on-disk layout is structured.
//!
//! # Modules
//!
//! - [`config_loader`] — loads and merges `services.yaml` and its includes.
//! - [`config_writer`] — creates, edits, and deletes agent files.
//! - [`extension_loader`] / [`extension_registry`] — discover extension
//!   manifests and resolve binary paths.
//! - [`module_loader`] — `inventory`-driven extension discovery for the
//!   compiled-in extension trait registry.
//! - [`profile_loader`] — reads, validates, and writes profile YAML.
//! - [`bundle`] — signed services bundles: fetch, verify, compose, and the boot
//!   path that installs the active services root.
//! - [`vertex_discovery`] — boot-time catalog discovery: each provider's
//!   credential decides which `CatalogSource` may list it, and every priced,
//!   serverless model it returns is folded into the provider registry.
//! - [`services_root`] — the process-wide cell naming the services root the
//!   instance actually runs, with its provenance.
//! - [`services_bootstrap`] — the process-wide cell holding the loaded services
//!   config (provider catalog and gateway included), initialised right after
//!   the profile at boot.
//! - [`error`] — public error types ([`ConfigLoadError`], [`ConfigWriteError`],
//!   [`ExtensionLoadError`]).
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

pub mod bundle;
pub mod config_loader;
pub mod config_writer;
pub mod error;
pub mod extension_loader;
pub mod extension_registry;
pub mod module_loader;
pub mod profile_loader;
pub mod services_bootstrap;
pub mod services_root;
pub mod subprocess;
pub mod vertex_discovery;

pub use bundle::{BundleError, BundleResult, ServicesSourceBootstrap};
pub use config_loader::ConfigLoader;
pub use config_writer::ConfigWriter;
pub use error::{
    ConfigLoadError, ConfigLoadResult, ConfigWriteError, ConfigWriteResult, ExtensionLoadError,
    ExtensionLoadResult, ProfileLoadError, ProfileLoadResult,
};
pub use extension_loader::{ExtensionLoader, ExtensionValidationResult};
pub use extension_registry::ExtensionRegistry;
pub use module_loader::ModuleLoader;
pub use profile_loader::ProfileLoader;
pub use services_bootstrap::ServicesBootstrap;
pub use services_root::{ActiveServicesRoot, ServicesProvenance, ServicesRootBootstrap};