systemprompt-scheduler 0.2.2

Background jobs, cron tasks, and job-extension dispatch for systemprompt.io AI governance infrastructure. Tokio-backed scheduling for the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod orchestration;
mod providers;
pub mod scheduling;
mod service_management;

pub use orchestration::{
    DbServiceRecord, DesiredStatus, ProcessCleanup, ProcessInfo, ReconciliationResult,
    RuntimeStatus, ServiceAction, ServiceConfig, ServiceReconciler, ServiceStateManager,
    ServiceType, VerifiedServiceState,
};
pub use scheduling::SchedulerService;
pub use service_management::ServiceManagementService;