ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
//! API service module - translated from api/

pub mod empty_usage;
pub mod error_utils;
pub mod errors;
pub mod logging;
pub mod retry_helpers;
pub mod usage;
pub mod with_retry;

// Additional module stubs for remaining TypeScript files
mod admin_requests;
mod bootstrap;
mod claude;
mod client;
mod dump_prompts;
mod files_api;
mod first_token_date;
mod grove;
mod metrics_opt_out;
mod overage_credit_grant;
mod prompt_cache_break_detection;
mod referral;
mod session_ingress;
mod ultrareview_quota;

pub use empty_usage::*;
pub use error_utils::*;
pub use errors::*;
pub use files_api::*;
pub use logging::*;
pub use usage::*;
pub use with_retry::*;