//! Core types and utilities for the Oxyde SDK
pub use OxydeError;
use HashMap;
/// Result type alias using OxydeError
pub type Result<T> = Result;
/// Agent context type - a map of string keys to JSON values
/// Used to pass arbitrary context data to behaviors
pub type AgentContext = ;