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, MAX_AGENT_PATH_CHARS, MAX_AGENT_QUERY_CHARS,
13 authorize_limit, authorize_scope, normalize_scope_for_policy, scope_not_authorized,
14 validate_optional_query_text, validate_path_texts, validate_query_text,
15};