From 07bc7659487173d22db3ac0f275b8c98894c312c Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Tue, 3 Feb 2026 14:36:53 +1100 Subject: [PATCH] Update eng/generate-website-data.mjs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- eng/generate-website-data.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eng/generate-website-data.mjs b/eng/generate-website-data.mjs index d4296e36..f3573ac6 100644 --- a/eng/generate-website-data.mjs +++ b/eng/generate-website-data.mjs @@ -898,7 +898,11 @@ async function main() { // Generate llms.txt const llmsTxtContent = generateLlmsTxt(agents, prompts, instructions, skills); - fs.writeFileSync(path.join(WEBSITE_DATA_DIR, "llms.txt"), llmsTxtContent, "utf8"); + fs.writeFileSync( + path.join(ROOT_FOLDER, "website", "public", "llms.txt"), + llmsTxtContent, + "utf8" + ); console.log(`✓ llms.txt generated with ${agents.length} agents, ${prompts.length} prompts, ${instructions.length} instructions, ${skills.length} skills`); }