Update eng/generate-website-data.mjs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Aaron Powell
2026-02-03 14:36:53 +11:00
committed by GitHub
parent dc1b93354c
commit 07bc765948

View File

@@ -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`);
}