📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-10 16:04:20 +00:00
parent 2bb0dc8c1d
commit 92c0c3f687
594 changed files with 55224 additions and 19038 deletions
@@ -14,18 +14,31 @@ const bundles = bundleData.bundles || {};
const catalog = JSON.parse(
fs.readFileSync(path.join(repoRoot, "data", "catalog.json"), "utf8"),
);
const canonicalIndex = JSON.parse(
fs.readFileSync(path.join(repoRoot, "skills_index.json"), "utf8"),
);
const skillsById = new Map(catalog.skills.map((skill) => [skill.id, skill]));
assert.strictEqual(
skillsById.get("before-you-build").category,
"business",
"explicit product frontmatter should keep product-risk skills out of security",
"product",
"catalog categories must match the canonical skills index",
);
assert.ok(
!bundles["security-core"].skills.includes("before-you-build"),
"explicit product frontmatter should keep product-risk skills out of the security bundle",
);
for (const canonicalSkill of canonicalIndex) {
const catalogSkill = catalog.skills.find(
(skill) => skill.path === `${canonicalSkill.path}/SKILL.md`,
);
assert.ok(catalogSkill, `catalog must contain ${canonicalSkill.path}`);
assert.strictEqual(catalogSkill.category, canonicalSkill.category);
assert.strictEqual(catalogSkill.risk, canonicalSkill.risk);
assert.strictEqual(catalogSkill.source, canonicalSkill.source);
}
for (const bundleId of [
"core-dev",
"security-core",