XNCKPSQERHNFZ6R4HHLDYJJUZEAPCKI4NXZITXVOMJOQXSUD6QQAC // classifyImageSize returns the effective image size: CLI flag overrides config.// Zero from both means use the default (448, handled downstream).func classifyImageSize(cliSize, configSize int) int {if cliSize > 0 {return cliSize}return configSize}// RunCallsClassify handles the "calls classify" subcommand
## [2026-05-05] Restore `--size` flag to `calls classify`Re-added the `--size` CLI flag to `skraak calls classify` for controllingspectrogram display size. Removed earlier as a complexity reduction, butneeded back because the default 448px is too small on Retina displays.The flag overrides `img_dims` from config when specified (224-896px range).No complexity increase — reuses existing `requireIntRange` and a trivial`classifyImageSize` helper (complexity 2).