Merge branch 'main' into add-custom-contributors

This commit is contained in:
Matt Soucoup
2026-01-07 15:01:11 -10:00
committed by GitHub
10 changed files with 926 additions and 24 deletions

View File

@@ -172,7 +172,8 @@ function parseSkillMetadata(skillPath) {
} else {
const relativePath = path.relative(skillPath, filePath);
if (relativePath !== "SKILL.md") {
arrayOfFiles.push(relativePath);
// Normalize path separators to forward slashes for cross-platform consistency
arrayOfFiles.push(relativePath.replace(/\\/g, '/'));
}
}
});