fix(validate): add customizations/ to install-only paths

The file reference validator was flagging {project-root}/_bmad/customizations/
paths in SKILL.md files as broken. These are user-created override files that
only exist at install time, not in the source tree.
This commit is contained in:
Brian Madison 2026-04-14 10:26:08 -05:00
parent 9f936213a2
commit 5352b33608
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ function escapeTableCell(str) {
}
// Path prefixes/patterns that only exist in installed structure, not in source
const INSTALL_ONLY_PATHS = ['_config/'];
const INSTALL_ONLY_PATHS = ['_config/', 'customizations/'];
// Files that are generated at install time and don't exist in the source tree
const INSTALL_GENERATED_FILES = ['config.yaml', 'config.user.yaml'];