@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 +4 -2
- package/build/index.js.map +2 -2
- package/build/index.mjs +4 -2
- package/build/index.mjs.map +2 -2
- package/build/types/target/skill.d.ts +7 -3
- package/package.json +2 -2
package/build/index.mjs
CHANGED
|
@@ -226,8 +226,10 @@ function isValidSkillFolderName(name) {
|
|
|
226
226
|
var SkillMetadataSchema = z7.object({
|
|
227
227
|
name: z7.string(),
|
|
228
228
|
description: z7.string(),
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
license: z7.string().optional(),
|
|
230
|
+
compatibility: z7.string().optional(),
|
|
231
|
+
metadata: z7.record(z7.string(), z7.string()).optional(),
|
|
232
|
+
allowedTools: z7.array(z7.string()).optional()
|
|
231
233
|
});
|
|
232
234
|
var SkillFileSchema = z7.object({
|
|
233
235
|
/** Relative path within the skill directory, e.g. "SKILL.md" or "references/API_SPEC.md" */
|