@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.
@@ -36,14 +36,18 @@ export declare function isValidSkillFolderName(name: string): boolean;
36
36
  * Following the agentskills.io specification:
37
37
  * - name: Skill identifier (max 64 chars, lowercase + hyphens)
38
38
  * - description: What the skill does and when to use it
39
- * - allowedTools: Pre-approved tools the skill may use
40
- * - skills: Sub-skills for composite agents
39
+ * - license: License name or file reference (optional)
40
+ * - compatibility: Environment requirements, max 500 chars (optional)
41
+ * - allowedTools: Pre-approved tools the skill may use (space-delimited, experimental)
42
+ * - metadata: Arbitrary key-value pairs for additional properties
41
43
  */
42
44
  export declare const SkillMetadataSchema: z.ZodObject<{
43
45
  name: z.ZodString;
44
46
  description: z.ZodString;
47
+ license: z.ZodOptional<z.ZodString>;
48
+ compatibility: z.ZodOptional<z.ZodString>;
49
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
45
50
  allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
46
- skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
47
51
  }, z.core.$strip>;
48
52
  export type SkillMetadata = z.infer<typeof SkillMetadataSchema>;
49
53
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/evalforge-types",
3
- "version": "0.62.0",
3
+ "version": "0.63.0",
4
4
  "description": "Unified types for EvalForge agent evaluation system",
5
5
  "files": [
6
6
  "build"
@@ -46,5 +46,5 @@
46
46
  "artifactId": "evalforge-types"
47
47
  }
48
48
  },
49
- "falconPackageHash": "940ab3ce9b65fa090b0b5759049e93a2c0d6517bbe81a37d3f388678"
49
+ "falconPackageHash": "2c8290d4ff26704a326c1f5b883410e57b5098a4314909b8dcd47e2d"
50
50
  }