@wix/evalforge-types 0.62.0 → 0.63.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.js CHANGED
@@ -426,8 +426,10 @@ function isValidSkillFolderName(name) {
426
426
  var SkillMetadataSchema = import_zod7.z.object({
427
427
  name: import_zod7.z.string(),
428
428
  description: import_zod7.z.string(),
429
- allowedTools: import_zod7.z.array(import_zod7.z.string()).optional(),
430
- skills: import_zod7.z.array(import_zod7.z.string()).optional()
429
+ license: import_zod7.z.string().optional(),
430
+ compatibility: import_zod7.z.string().optional(),
431
+ metadata: import_zod7.z.record(import_zod7.z.string(), import_zod7.z.string()).optional(),
432
+ allowedTools: import_zod7.z.array(import_zod7.z.string()).optional()
431
433
  });
432
434
  var SkillFileSchema = import_zod7.z.object({
433
435
  /** Relative path within the skill directory, e.g. "SKILL.md" or "references/API_SPEC.md" */