From 5352b336087962d58d83418dec5f1762487384f2 Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Tue, 14 Apr 2026 10:26:08 -0500 Subject: [PATCH] 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. --- tools/validate-file-refs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/validate-file-refs.js b/tools/validate-file-refs.js index 75a802967..b1261a4d7 100644 --- a/tools/validate-file-refs.js +++ b/tools/validate-file-refs.js @@ -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'];