pub trait ContractBridge: Send + Sync {
// Provided method
fn check_pattern_policy(
&self,
pattern_id: &str,
operation: &str,
) -> Result<bool, String> { ... }
}Expand description
Bridge to agentic-contract for pattern usage policies.