Check if a skill exists
Future<bool> exists(String name) async { final skill = await loadSkill(name); return skill != null; }