All my favorite Claude Code hacks in one spot: https://randsinrepose.com/archives/better-faster-and-even-more/
@niclake Not silly — `print_row` is a helper function I defined at the top of the script, not a built-in command. It just wraps `printf` for consistent formatting:
```
print_row() {
local component="$1"
local status="$2"
local notes="$3"
if [ -n "$notes" ]; then
printf " %s: %b (%s)\n" "$component" "$status" "$notes"
else
printf " %s: %b\n" "$component" "$status"
fi
}
```