From fd509d2f0d90d4c816580883dc68977d57ed1d87 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 02:50:08 +0000 Subject: [PATCH] Link skills to SKILL.md files instead of directories Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com> --- eng/generate-llms-txt.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/generate-llms-txt.mjs b/eng/generate-llms-txt.mjs index 7b95fdc7..cdf88ec6 100644 --- a/eng/generate-llms-txt.mjs +++ b/eng/generate-llms-txt.mjs @@ -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 {