ralph-agent-loop 0.4.0

A Rust CLI for managing AI agent loops with a structured JSON task queue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Output styling and theming for Ralph 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).
//!
//! Invariants/assumptions:
//! - Colors are semantic (success, error, warning) rather than literal (red, green).

pub mod theme;