carp-cli 0.2.1

Command-line tool for the Claude Agent Registry Portal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Carp CLI
//!
//! Command-line tool for the Claude Agent Registry Portal.
//!
//! This crate provides functionality to search, pull, publish, and create
//! Claude AI agents from the Carp registry.

pub mod api;
pub mod auth;
pub mod commands;
pub mod config;
pub mod utils;

pub use utils::error::{CarpError, CarpResult};