2026-09-05 00:31:28 -07:00
|
|
|
//! Agent Integration Layer (Phase 6)
|
|
|
|
|
//!
|
|
|
|
|
//! SDK patterns, webhook support, observability, agent lifecycle management.
|
|
|
|
|
|
|
|
|
|
pub mod agent_interface;
|
|
|
|
|
pub mod webhook_handler;
|
|
|
|
|
pub mod observability;
|
|
|
|
|
pub mod client_sdk;
|
|
|
|
|
|
|
|
|
|
pub use agent_interface::{Agent, AgentConfig, AgentCapability};
|
|
|
|
|
pub use webhook_handler::{WebhookEvent, WebhookPayload};
|
|
|
|
|
pub use observability::{AgentMetrics, MetricsCollector};
|
|
|
|
|
pub use client_sdk::{SynthesisClient, ClientRequest, ClientResponse};
|
2026-09-08 01:11:14 +00:00
|
|
|
pub use agent_interface::DefaultAgent;
|