cueloop 0.4.1

A Rust CLI for managing AI agent loops with a structured JSON task queue
Documentation
//! Output styling and theming for CueLoop CLI.
//!
//! Purpose:
//! - Output styling and theming for CueLoop CLI.
//!
//! Responsibilities:
//! - Provide centralized color theme definitions for CLI (colored crate).
//! - Export semantic color mappings for consistent styling across the application.
//!
//! Not handled here:
//! - Direct terminal output (see outpututil.rs for CLI output helpers).
//!
//!
//! Usage:
//! - Used through the crate module tree or integration test harness.
//!
//! Invariants/assumptions:
//! - Colors are semantic (success, error, warning) rather than literal (red, green).

pub mod theme;