namespace ClaudeDo.Worker; internal static class StringExtensions { /// Returns null for null/whitespace input, otherwise the original string. public static string? NullIfBlank(this string? s) => string.IsNullOrWhiteSpace(s) ? null : s; }