systemprompt-generator 0.9.0

Static site generation, theme rendering, and asset bundling for systemprompt.io AI governance dashboards. Handlebars and Markdown pipeline for the MCP governance platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Scheduled jobs registered with the systemprompt scheduler via the
//! `inventory` crate: content prerender, page prerender, and copy-extension
//! -assets.

mod content_prerender;
mod copy_assets;
mod page_prerender;

pub use content_prerender::ContentPrerenderJob;
pub use copy_assets::execute_copy_extension_assets;
pub use page_prerender::PagePrerenderJob;