chore(agents): refresh metadata and skill creator loader

This commit is contained in:
2026-03-05 07:24:26 -08:00
parent 6e7a8f6f54
commit fb9a30b8a6
3 changed files with 5 additions and 4 deletions

View File

@@ -1 +1 @@
d9c5b31d2059f436
6277a8b83820afd8

View File

@@ -11,8 +11,6 @@ import re
import sys
from pathlib import Path
import yaml
ACRONYMS = {
"GH",
"MCP",
@@ -114,6 +112,9 @@ def read_frontmatter_name(skill_dir):
print("[ERROR] Invalid SKILL.md frontmatter format.")
return None
frontmatter_text = match.group(1)
import yaml
try:
frontmatter = yaml.safe_load(frontmatter_text)
except yaml.YAMLError as exc: