zeph-core 0.11.6

Core agent loop, configuration, context builder, metrics, and vault for Zeph
Documentation
#[derive(Debug, thiserror::Error)]
pub enum SubAgentError {
    #[error("parse error in {path}: {reason}")]
    Parse { path: String, reason: String },

    #[error("invalid definition: {0}")]
    Invalid(String),

    #[error("agent not found: {0}")]
    NotFound(String),

    #[error("spawn failed: {0}")]
    Spawn(String),

    #[error("cancelled")]
    Cancelled,

    #[error("invalid command: {0}")]
    InvalidCommand(String),

    #[error(transparent)]
    Other(#[from] anyhow::Error),
}