systemprompt-api 0.9.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 audit;
pub mod captures;
pub mod parse;
pub mod policy;
pub mod pricing;
pub mod protocol;
pub mod quota;
pub mod registry;
pub mod safety;
pub mod service;
pub mod stream_tap;

pub use audit::{GatewayAudit, GatewayRequestContext};
pub use captures::{CapturedToolUse, CapturedUsage};
pub use protocol::{
    CanonicalEvent, CanonicalRequest, CanonicalResponse, InboundAdapter, OutboundAdapter,
    OutboundAdapterRegistration, OutboundCtx, OutboundOutcome,
};
pub use registry::GatewayUpstreamRegistry;
pub use service::{DispatchInputs, GatewayService, REQUEST_ID_HEADER};