Merge pull request #647 from github/fix/skill-search-path

fix: use skillFile path in search index for skills
This commit is contained in:
Aaron Powell
2026-02-03 11:45:19 +11:00
committed by GitHub
+1 -1
View File
@@ -579,7 +579,7 @@ function generateSearchIndex(
id: skill.id,
title: skill.title,
description: skill.description,
path: skill.path,
path: skill.skillFile,
searchText: `${skill.title} ${skill.description}`.toLowerCase(),
});
}