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
12
13
14
//! Outbound integrations bridging agents to external systems.
//!
//! Currently this surface is the [`webhook`] service for signed webhook
//! delivery and verification; the shared integration error, result, and
//! request/response models are re-exported here for consumers.

pub mod webhook;

pub use crate::models::external_integrations::{
    IntegrationError, IntegrationResult, RegisteredMcpServer, ToolExecutionResult, WebhookEndpoint,
    WebhookRequest, WebhookResponse,
};

pub use webhook::{RetryPolicy, WebhookConfig, WebhookDeliveryResult, WebhookService};