systemprompt-loader 0.9.0

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
1
2
3
4
5
6
7
8
9
10
use std::collections::HashSet;
use std::path::PathBuf;

use systemprompt_models::services::ServicesConfig;

pub(super) struct IncludeResolveCtx<'a> {
    pub visited: &'a mut HashSet<PathBuf>,
    pub merged: &'a mut ServicesConfig,
    pub chain: Vec<PathBuf>,
}