path method
Show configuration file path
Implementation
@cliCommand
Future<void> path() async {
print('Configuration path: $configPath');
final exists = File(configPath).existsSync();
print('Exists: ${exists ? 'Yes' : 'No'}');
if (!exists) {
info("Run 'claudio config init' to create configuration");
}
}