fix: make skill/template discovery dynamic

Replace hardcoded SKILL_FILES and TEMPLATES arrays in skill-check.ts,
gen-skill-docs.ts, and dev-skill.ts with a shared discover-skills.ts
utility that scans the filesystem. New skills are now picked up
automatically without updating three separate lists.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Joshua O’Hanlon
2026-03-14 15:41:08 -07:00
parent 2aa745cb0e
commit 68ec3d05d3
4 changed files with 49 additions and 36 deletions
+5 -4
View File
@@ -7,16 +7,17 @@
*/
import { validateSkill } from '../test/helpers/skill-parser';
import { discoverTemplates } from './discover-skills';
import { execSync } from 'child_process';
import * as fs from 'fs';
import * as path from 'path';
const ROOT = path.resolve(import.meta.dir, '..');
const TEMPLATES = [
{ tmpl: path.join(ROOT, 'SKILL.md.tmpl'), output: 'SKILL.md' },
{ tmpl: path.join(ROOT, 'browse', 'SKILL.md.tmpl'), output: 'browse/SKILL.md' },
];
const TEMPLATES = discoverTemplates(ROOT).map(t => ({
tmpl: path.join(ROOT, t.tmpl),
output: t.output,
}));
function regenerateAndValidate() {
// Regenerate