Skip to content

Commit 501e3ec

Browse files
committed
Fix(skill-creator): specify utf-8 encoding when reading SKILL.md
1 parent 69c0b1a commit 501e3ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

skills/skill-creator/scripts/quick_validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def validate_skill(skill_path):
1919
return False, "SKILL.md not found"
2020

2121
# Read and validate frontmatter
22-
content = skill_md.read_text()
22+
content = skill_md.read_text(encoding='utf-8')
2323
if not content.startswith('---'):
2424
return False, "No YAML frontmatter found"
2525

0 commit comments

Comments
 (0)