systemprompt-extension 0.21.1

Compile-time extension framework for systemprompt.io AI governance infrastructure. Built on the inventory crate — registers schemas, API routes, jobs, and providers in the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Compile-time-checked sub-traits for typed extension declarations.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod api;
mod config;
mod job;
mod provider;
mod schema;

pub use api::{ApiExtensionTyped, ApiExtensionTypedDyn};
pub use config::ConfigExtensionTyped;
pub use job::JobExtensionTyped;
pub use provider::ProviderExtensionTyped;
pub use schema::{SchemaDefinitionTyped, SchemaExtensionTyped};