@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.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
|
-
|
|
430
|
-
|
|
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" */
|