isInstalled method

  1. @override
Future<bool> isInstalled()
override

Check if agent is installed on the system

Implementation

@override
Future<bool> isInstalled() async {
  // Check for Claude Code by looking for the command
  return await detectByCommand('which claude');
}