fix: quote scoped package names in skill frontmatter and update validator (#79)

- Wrapped unquoted @scope/pkg values in double quotes across 19 SKILL.md files.
- Added 'package' to ALLOWED_FIELDS in JS validator.
- Added YAML validity regression test to test suite.
- Updated package-lock.json.

Fixes #79
Closes #80
This commit is contained in:
sck_0
2026-02-14 09:46:41 +01:00
parent f4a2f1d23d
commit a4c74c869d
22 changed files with 180 additions and 89 deletions

View File

@@ -1,11 +1,11 @@
const assert = require('assert');
const { hasUseSection } = require('../validate-skills');
const assert = require("assert");
const { hasUseSection } = require("../validate-skills");
const samples = [
['## When to Use', true],
['## Use this skill when', true],
['## When to Use This Skill', true],
['## Overview', false],
["## When to Use", true],
["## Use this skill when", true],
["## When to Use This Skill", true],
["## Overview", false],
];
for (const [heading, expected] of samples) {
@@ -13,4 +13,31 @@ for (const [heading, expected] of samples) {
assert.strictEqual(hasUseSection(content), expected, heading);
}
console.log('ok');
// Regression test for YAML validity in frontmatter (Issue #79)
const fs = require("fs");
const path = require("path");
const { listSkillIds, parseFrontmatter } = require("../../lib/skill-utils");
const SKILLS_DIR = path.join(__dirname, "../../skills");
const skillIds = listSkillIds(SKILLS_DIR);
console.log(`Checking YAML validity for ${skillIds.length} skills...`);
for (const skillId of skillIds) {
const skillPath = path.join(SKILLS_DIR, skillId, "SKILL.md");
const content = fs.readFileSync(skillPath, "utf8");
const { errors, hasFrontmatter } = parseFrontmatter(content);
if (!hasFrontmatter) {
console.warn(`[WARN] No frontmatter in ${skillId}`);
continue;
}
assert.strictEqual(
errors.length,
0,
`YAML parse errors in ${skillId}: ${errors.join(", ")}`,
);
}
console.log("ok");