From 88714c774745605d6d6bcf2e1f7ff73fa76bae03 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 5 Mar 2026 07:24:26 -0800 Subject: [PATCH] chore(agents): refresh metadata and skill creator loader --- dotfiles/agents/AGENTS.md | 2 +- dotfiles/agents/skills/.system/.codex-system-skills.marker | 2 +- .../.system/skill-creator/scripts/generate_openai_yaml.py | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dotfiles/agents/AGENTS.md b/dotfiles/agents/AGENTS.md index de33bf56..fb7d9dba 100644 --- a/dotfiles/agents/AGENTS.md +++ b/dotfiles/agents/AGENTS.md @@ -55,7 +55,7 @@ - Address: 100 Broderick St APT 401, San Francisco, CA 94117, United States - Employer: Railbird Inc. - GitHub: colonelpanic8 -- Phone: 301-244-9534 +- Phone: 301-244-8534 - Primary Credit Card: Chase-Reserve ## Repository Overview diff --git a/dotfiles/agents/skills/.system/.codex-system-skills.marker b/dotfiles/agents/skills/.system/.codex-system-skills.marker index 990727a0..1c191041 100644 --- a/dotfiles/agents/skills/.system/.codex-system-skills.marker +++ b/dotfiles/agents/skills/.system/.codex-system-skills.marker @@ -1 +1 @@ -d9c5b31d2059f436 +6277a8b83820afd8 diff --git a/dotfiles/agents/skills/.system/skill-creator/scripts/generate_openai_yaml.py b/dotfiles/agents/skills/.system/skill-creator/scripts/generate_openai_yaml.py index 1a9d784f..3fd74053 100644 --- a/dotfiles/agents/skills/.system/skill-creator/scripts/generate_openai_yaml.py +++ b/dotfiles/agents/skills/.system/skill-creator/scripts/generate_openai_yaml.py @@ -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: