systemprompt-agent 0.2.2

Agent-to-Agent (A2A) protocol for systemprompt.io AI governance: streaming, JSON-RPC models, task lifecycle, .well-known discovery, and governed agent orchestration.
Documentation
mod events;
mod push_notification;
mod requests;

pub use events::{TaskArtifactUpdateEvent, TaskStatusUpdateEvent};
pub use push_notification::{
    DeleteTaskPushNotificationConfigParams, DeleteTaskPushNotificationConfigRequest,
    DeleteTaskPushNotificationConfigResponse, GetTaskPushNotificationConfigParams,
    GetTaskPushNotificationConfigRequest, GetTaskPushNotificationConfigResponse,
    ListTaskPushNotificationConfigRequest, ListTaskPushNotificationConfigResponse,
    PushNotificationConfig, PushNotificationNotSupportedError,
    SetTaskPushNotificationConfigRequest, SetTaskPushNotificationConfigResponse,
    TaskPushNotificationConfig, TaskResubscriptionRequest, TaskResubscriptionResponse,
};
pub use requests::{
    A2aJsonRpcRequest, A2aParseError, A2aRequest, A2aRequestParams, A2aResponse,
    CancelTaskResponse, GetAuthenticatedExtendedCardResponse, GetTaskResponse,
    MessageSendConfiguration, MessageSendParams, SendMessageResponse, SendStreamingMessageResponse,
    TaskIdParams, TaskNotCancelableError, TaskNotFoundError, TaskQueryParams,
    UnsupportedOperationError,
};