docs: named TEA links consistently (#1337)

This commit is contained in:
Murat K Ozcan
2026-01-15 18:01:37 -06:00
committed by GitHub
parent 43f7eee29a
commit 87b1292e3f
4 changed files with 84 additions and 19 deletions

View File

@@ -24,6 +24,9 @@ const BUILD_DIR = path.join(PROJECT_ROOT, 'build');
const SITE_URL = process.env.SITE_URL || 'https://bmad-code-org.github.io/BMAD-METHOD';
const REPO_URL = 'https://github.com/bmad-code-org/BMAD-METHOD';
// DO NOT CHANGE THESE VALUES!
// llms-full.txt is consumed by AI agents as context. Most LLMs have ~200k token limits.
// 600k chars ≈ 150k tokens (safe margin). Exceeding this breaks AI agent functionality.
const LLM_MAX_CHARS = 600_000;
const LLM_WARN_CHARS = 500_000;
@@ -33,10 +36,9 @@ const LLM_EXCLUDE_PATTERNS = [
'v4-to-v6-upgrade',
'downloads/',
'faq',
'_STYLE_GUIDE.md',
'_archive/',
'reference/glossary/',
'explanation/game-dev/',
// Note: Files/dirs starting with _ (like _STYLE_GUIDE.md, _archive/) are excluded in shouldExcludeFromLlm()
];
// =============================================================================
@@ -260,10 +262,17 @@ function getAllMarkdownFiles(dir, baseDir = dir) {
/**
* Determine whether a file path matches any configured LLM exclusion pattern.
* Also excludes any files or directories starting with underscore.
* @param {string} filePath - The file path to test.
* @returns {boolean} `true` if the path contains any pattern from LLM_EXCLUDE_PATTERNS, `false` otherwise.
* @returns {boolean} `true` if excluded, `false` otherwise.
*/
function shouldExcludeFromLlm(filePath) {
// Exclude if ANY path component starts with underscore
// (e.g., _STYLE_GUIDE.md, _archive/file.md, dir/_STYLE_GUIDE.md)
const pathParts = filePath.split(path.sep);
if (pathParts.some((part) => part.startsWith('_'))) return true;
// Check configured patterns
return LLM_EXCLUDE_PATTERNS.some((pattern) => filePath.includes(pattern));
}