From c0a49bcafe1a14bc41ca11d41c3e1117b7e2481e Mon Sep 17 00:00:00 2001 From: Scott Jennings Date: Mon, 8 Dec 2025 11:22:54 -0600 Subject: [PATCH] fix: use bmad_folder variable instead of hardcoded .bmad path Allows users to customize the config location via bmad_folder setting. --- .../bmm/workflows/4-implementation/code-review/workflow.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml b/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml index 8cdc0fe1..06d359ce 100644 --- a/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +++ b/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml @@ -4,7 +4,7 @@ description: "Perform an ADVERSARIAL Senior Developer code review that finds 3-1 author: "BMad" # Critical variables from config -config_source: "{project-root}/.bmad/bmm/config.yaml" +config_source: "{project-root}/{bmad_folder}/bmm/config.yaml" output_folder: "{config_source}:output_folder" user_name: "{config_source}:user_name" communication_language: "{config_source}:communication_language" @@ -15,7 +15,7 @@ sprint_artifacts: "{config_source}:sprint_artifacts" sprint_status: "{sprint_artifacts}/sprint-status.yaml || {output_folder}/sprint-status.yaml" # Workflow components -installed_path: "{project-root}/.bmad/bmm/workflows/4-implementation/code-review" +installed_path: "{project-root}/{bmad_folder}/bmm/workflows/4-implementation/code-review" instructions: "{installed_path}/instructions.xml" validation: "{installed_path}/checklist.md" external_agent_prompt: "{installed_path}/external-agent-prompt.md"