Skip to main content

Crate entrenar_common

Crate entrenar_common 

Source
Expand description

Shared infrastructure for entrenar CLI tools.

This crate provides common utilities used across all entrenar sub-crates:

  • CLI styling and output formatting
  • Error handling with actionable diagnostics
  • Table rendering for terminal output
  • Progress indicators

§Toyota Way Principles

  • Jidoka: Rich error messages with actionable diagnostics
  • Andon: Visual problem indication through consistent styling
  • Muda Elimination: Single source of truth for shared code

Re-exports§

pub use cli::Cli;
pub use cli::OutputFormat;
pub use error::EntrenarError;
pub use error::Result;
pub use output::Table;
pub use output::TableBuilder;
pub use trueno_viz;

Modules§

cli
CLI framework and styling (Standardized Work principle).
error
Error types with actionable diagnostics (Andon principle).
output
Output formatting and table rendering (Visual Control principle).
progress
Progress indicators for long-running operations.