fix: ensure case-insensitive alphabetical order in skill registry

This commit is contained in:
sck_0
2026-01-22 16:41:09 +01:00
parent f6cdf4dc59
commit 81ecf7cec3
3 changed files with 209 additions and 209 deletions

View File

@@ -59,7 +59,7 @@ def generate_index(skills_dir, output_file):
skills.append(skill_info)
skills.sort(key=lambda x: x["name"])
skills.sort(key=lambda x: x["name"].lower())
with open(output_file, 'w', encoding='utf-8') as f:
json.dump(skills, f, indent=2)