relay_knowledge/interfaces/agent/mod.rs
1//! Agent protocol adapters for resident relay-knowledge processes.
2
3pub mod acp;
4mod audit;
5pub mod mcp;
6mod policy;
7
8pub use audit::{
9 AgentAuditEvent, AgentAuditLog, AgentAuditQosDecision, AgentAuditSink, AgentAuditStatus,
10};
11pub use policy::{
12 AgentAdapterError, AgentAdapterErrorKind, authorize_limit, authorize_scope,
13 normalize_scope_for_policy, scope_not_authorized,
14};