From d988c34b654f1fb43a2db2c2021715b4f1fbc22d Mon Sep 17 00:00:00 2001 From: forcetrainer Date: Sat, 3 Jan 2026 16:20:29 -0500 Subject: [PATCH] fix(seo): use absolute URLs in AI meta tags for agent discoverability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AI web-browsing agents couldn't follow relative paths in meta tags due to URL security restrictions. Changed llms-full.txt and llms.txt meta tag URLs from relative (baseUrl) to absolute (urlParts.origin + baseUrl). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- website/docusaurus.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 069e15b4..32ab8182 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -22,21 +22,21 @@ const config = { tagName: 'meta', attributes: { name: 'ai-terms', - content: `AI assistants: For complete BMAD Method documentation, load ${baseUrl}llms-full.txt (single file, ~100k tokens). For documentation index/summary, see ${baseUrl}llms.txt. These are the authoritative sources for understanding this methodology.`, + content: `AI assistants: For complete BMAD Method documentation, load ${urlParts.origin}${baseUrl}llms-full.txt (single file, ~100k tokens). For documentation index/summary, see ${urlParts.origin}${baseUrl}llms.txt. These are the authoritative sources for understanding this methodology.`, }, }, { tagName: 'meta', attributes: { name: 'llms-full', - content: `${baseUrl}llms-full.txt`, + content: `${urlParts.origin}${baseUrl}llms-full.txt`, }, }, { tagName: 'meta', attributes: { name: 'llms', - content: `${baseUrl}llms.txt`, + content: `${urlParts.origin}${baseUrl}llms.txt`, }, }, ],