pub trait Extension: Send + Sync { // Required methods fn name(&self) -> &str; fn init(&self, config: &Config) -> Result<(), AgentError>; }
Trait for optional extensions that can be loaded at runtime.
Human‑readable name of the extension.
Initialise the extension with access to configuration and client.