From 8d32444867038624d159c0834dd1cee70876fdc7 Mon Sep 17 00:00:00 2001 From: Daniel Bates Date: Thu, 19 Feb 2026 19:28:08 -0800 Subject: [PATCH] Fix step file path in check-implementation-readiness workflow Add missing `steps/` subdirectory prefix to the first step reference in workflow.md. The step files live in a `steps/` subdirectory but the entry point was referencing `./step-01-document-discovery.md` instead of `./steps/step-01-document-discovery.md`, causing a file-not-found error on workflow initialization. Closes #1615 Co-Authored-By: Claude Opus 4.6 --- .../3-solutioning/check-implementation-readiness/workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md b/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md index 49d2afab9..0c20e032a 100644 --- a/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +++ b/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md @@ -51,4 +51,4 @@ Load and read full config from {project-root}/_bmad/bmm/config.yaml and resolve: ### 2. First Step EXECUTION -Read fully and follow: `./step-01-document-discovery.md` to begin the workflow. +Read fully and follow: `./steps/step-01-document-discovery.md` to begin the workflow.