handleCheckTools function
Check all tools (required and optional)
Implementation
Future<void> handleCheckTools() async {
final result = await _checker.checkAll();
result.printSummary();
if (!result.allRequiredInstalled) {
error(
'Some required tools are missing. Please install them before continuing.',
);
} else {
success('All required tools are installed!');
}
}