systemprompt-api 0.2.2

Axum-based HTTP server and API gateway for systemprompt.io AI governance infrastructure. Exposes governed agents, MCP, A2A, and admin endpoints with rate limiting and RBAC.
Documentation
pub mod analytics;
pub mod auth;
pub mod bot_detector;
pub mod context;
pub mod cors;
pub mod ip_ban;
pub mod jwt;
pub mod negotiation;
pub mod rate_limit;
pub mod security_headers;
pub mod session;
pub mod site_auth;
pub mod throttle;
pub mod trace;
pub mod trailing_slash;

pub use analytics::*;
pub use auth::*;
pub use bot_detector::*;
pub use context::{
    ContextExtractor, ContextMiddleware, ContextRequirement, HeaderContextExtractor,
};
pub use cors::*;
pub use ip_ban::*;
pub use jwt::*;
pub use negotiation::{
    AcceptedFormat, AcceptedMediaType, content_negotiation_middleware, parse_accept_header,
};
pub use rate_limit::*;
pub use security_headers::*;
pub use session::*;
pub use site_auth::*;
pub use throttle::*;
pub use trace::*;
pub use trailing_slash::*;