pub fn step_done()
Print a step completion marker
use oxur_cli::common::output::{step, step_done}; step(1, "Parsing input"); // ... do work ... step_done(); // Output: ✓ Done (in green, indented)