Validates project name format
static bool isValidProjectName(String name) { return RegExp(r'^[a-z][a-z0-9_]*$').hasMatch(name); }