systemprompt-content 0.14.0

Markdown content management, sources, and event tracking for systemprompt.io AI governance dashboards. Governed publishing pipeline for the MCP governance platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Content configuration lifecycle.
//!
//! Models the two-stage transition from raw config to a queryable content
//! index: [`ContentConfigValidated`] verifies sources and categories against
//! the filesystem, and [`ContentReady`] scans the validated sources to produce
//! parsed content keyed by slug and source, alongside [`LoadStats`].

mod ready;
mod validated;

pub use ready::{ContentReady, LoadStats, ParsedContent};
pub use validated::{ContentConfigValidated, ContentSourceConfigValidated, ValidationResult};