listSkillsInGcsDir function

Future<Map<String, Frontmatter>> listSkillsInGcsDir(
  1. String bucketName, {
  2. String skillsBasePath = '',
  3. Object? storageStore,
})

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.',
  );
}