systemprompt-agent 0.15.0

Agent-to-Agent (A2A) protocol for systemprompt.io AI governance: streaming, JSON-RPC models, task lifecycle, .well-known discovery, and governed agent orchestration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Repositories for task-attached content.
//!
//! Groups persistence for the two kinds of content produced by a task:
//! generated [`ArtifactRepository`] outputs and per-task
//! [`PushNotificationConfigRepository`] delivery configuration.

pub mod artifact;
pub mod push_notification;

pub use artifact::ArtifactRepository;
pub use push_notification::PushNotificationConfigRepository;