Skip to content

Commit b7559db

Browse files
committed
Allow compatibility in skill frontmatter validation
1 parent 728a3e9 commit b7559db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

skills/.system/skill-creator/scripts/quick_validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def validate_skill(skill_path):
3737
except yaml.YAMLError as e:
3838
return False, f"Invalid YAML in frontmatter: {e}"
3939

40-
allowed_properties = {"name", "description", "license", "allowed-tools", "metadata"}
40+
allowed_properties = {"name", "description", "license", "allowed-tools", "metadata", "compatibility"}
4141

4242
unexpected_keys = set(frontmatter.keys()) - allowed_properties
4343
if unexpected_keys:

0 commit comments

Comments
 (0)