From 99532f681755ed74fba2c9a137e96ad5787b12b5 Mon Sep 17 00:00:00 2001 From: George Kastanis Date: Wed, 15 Jul 2026 14:43:50 +0300 Subject: [PATCH] fix: rename skill.md to SKILL.md so the website-to-components skill is discovered Claude Code's skill discovery looks for SKILL.md (per the Agent Skills spec); the lowercase skill.md is never found on case-sensitive filesystems, so the flagship website-to-components flow runs with 'Error: Unknown skill' and the agent proceeds without the canonical process and QA gates - silently. All nine sibling skills already use the uppercase name. On macOS's case-insensitive default filesystem the lowercase name is masked, which is likely why this never surfaced. Co-Authored-By: Claude Fable 5 --- .claude/skills/website-to-components/{skill.md => SKILL.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .claude/skills/website-to-components/{skill.md => SKILL.md} (100%) diff --git a/.claude/skills/website-to-components/skill.md b/.claude/skills/website-to-components/SKILL.md similarity index 100% rename from .claude/skills/website-to-components/skill.md rename to .claude/skills/website-to-components/SKILL.md