carp_cli/lib.rs
1//! # Carp CLI
2//!
3//! Command-line tool for the Claude Agent Registry Portal.
4//!
5//! This crate provides functionality to search, pull, publish, and create
6//! Claude AI agents from the Carp registry.
7
8pub mod api;
9pub mod auth;
10pub mod commands;
11pub mod config;
12pub mod utils;
13
14pub use utils::error::{CarpError, CarpResult};