main function
Entry point of the CLI tool.
Accepts a single argument: the feature name.
Example: flutter_feature_gen meal-plan
Implementation
void main(List<String> args) {
final options = parseArguments(args);
final generator = FeatureGenerator(options);
generator.generate();
}