Link skills to SKILL.md files instead of directories

Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-03 02:50:08 +00:00
parent a2bd4fda47
commit fd509d2f0d

View File

@@ -181,7 +181,7 @@ function generateLlmsTxt() {
if (fs.existsSync(skillPath)) {
const name = extractName(skillDirPath, "skill");
const description = extractDescription(skillDirPath, "skill");
const url = getRelativeUrl(skillDirPath, ROOT_FOLDER);
const url = getRelativeUrl(skillPath, ROOT_FOLDER);
content += `- [${name}](${url}): ${description}\n`;
} else {