Skip to main content

cmdhub_shared/
lib.rs

1//! CmdHub Shared Types
2//!
3//! Common types, ACI (Agent-Computer Interface) schema definitions,
4//! and error types used across cmdhub-cli and cmdhub-mcp.
5
6pub mod aci;
7pub mod error;
8
9pub use aci::*;
10pub use error::*;