listSkillsInGcsDir function
Throws because GCS-backed skill loading is unsupported on Web.
Implementation
Future<Map<String, Frontmatter>> listSkillsInGcsDir(
String bucketName, {
String skillsBasePath = '',
Object? storageStore,
}) {
throw UnsupportedError(
'listSkillsInGcsDir is not supported on this platform. '
'Use inline Skill definitions instead.',
);
}