📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-02 16:03:10 +00:00
parent c824ba9d7b
commit 2bf579321a
220 changed files with 4043 additions and 2598 deletions
@@ -337,6 +337,11 @@ const CATEGORY_RULES = [
},
];
const FRONTMATTER_CATEGORY_OVERRIDES = new Map([
["business", "business"],
["product", "business"],
]);
const BUNDLE_RULES = {
"core-dev": {
description:
@@ -559,6 +564,12 @@ function deriveTags(skill) {
}
function detectCategory(skill, tags) {
const explicitCategory =
typeof skill.category === "string" ? skill.category.trim().toLowerCase() : "";
if (FRONTMATTER_CATEGORY_OVERRIDES.has(explicitCategory)) {
return FRONTMATTER_CATEGORY_OVERRIDES.get(explicitCategory);
}
const haystack = normalizeTokens([
...tags,
...tokenize(skill.name),