Skip to main content

mai_cli/
lib.rs

1//! MAI - AI tooling package manager library
2//!
3//! This crate provides the core functionality for managing AI tooling packages,
4//! including skills, commands, and MCP connectors for various AI agents.
5
6pub mod cli;
7pub mod core;
8pub mod error;
9pub mod storage;
10
11pub use error::{Error, Result};