load static method
Loads and parses the configuration for the current FKIT project.
Returns the resulting InitConfig.
Implementation
static Future<InitConfig> load() async {
final file = File('fkit.yaml');
if (!file.existsSync()) {
throw Exception('❌ fkit.yaml not found in project root');
}
final content = await file.readAsString();
final yamlMap = loadYaml(content);
return InitConfig.fromMap(yamlMap);
}