Get all model file paths
List<String> get modelFiles { if (serverPath == null) return []; final models = SpyYamlParser.parseAll(serverPath!); return models.map((m) => m.filePath).toList(); }