static bool isValidFeatureName(String name) { final regex = RegExp(r'^[a-z][a-zA-Z0-9_\-]+$'); return regex.hasMatch(name); }