wasmind_cli 0.1.0

Command-line interface for Wasmind AI agent coordination system
Documentation
1
2
3
4
5
6
7
8
9
10
//! Command implementations for the Wasmind CLI
//!
//! This module contains the implementation of all CLI commands:
//! - `info`: Show configuration and cache information
//! - `clean`: Clean the actor cache  
//! - `check`: Validate and show configuration details

pub mod check;
pub mod clean;
pub mod info;