Compare commits
1 Commits
165ddc0524
...
e3c3616a0d
| Author | SHA1 | Date |
|---|---|---|
|
|
e3c3616a0d |
|
|
@ -8,7 +8,7 @@ validationStatus: COMPLETE - PRODUCTION READY
|
||||||
|
|
||||||
# PRD Workflow Validation Report
|
# PRD Workflow Validation Report
|
||||||
|
|
||||||
**Workflow Being Validated:** _bmad/bmm/workflows/2-plan-workflows/create-prd
|
**Workflow Being Validated:** /Users/brianmadison/dev/BMAD-METHOD/src/bmm/workflows/2-plan-workflows/create-prd
|
||||||
**Validation Date:** 2026-01-08
|
**Validation Date:** 2026-01-08
|
||||||
**Validator:** BMAD Workflow Validation System
|
**Validator:** BMAD Workflow Validation System
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -121,10 +121,9 @@ class ActivationBuilder {
|
||||||
|
|
||||||
// Calculate final step numbers
|
// Calculate final step numbers
|
||||||
const menuStep = currentStepNum;
|
const menuStep = currentStepNum;
|
||||||
const helpStep = currentStepNum + 1;
|
const haltStep = currentStepNum + 1;
|
||||||
const haltStep = currentStepNum + 2;
|
const inputStep = currentStepNum + 2;
|
||||||
const inputStep = currentStepNum + 3;
|
const executeStep = currentStepNum + 3;
|
||||||
const executeStep = currentStepNum + 4;
|
|
||||||
|
|
||||||
// Replace placeholders
|
// Replace placeholders
|
||||||
const processed = stepsTemplate
|
const processed = stepsTemplate
|
||||||
|
|
@ -132,7 +131,6 @@ class ActivationBuilder {
|
||||||
.replace('{{module}}', metadata.module || 'core') // Fixed to use {{module}}
|
.replace('{{module}}', metadata.module || 'core') // Fixed to use {{module}}
|
||||||
.replace('{AGENT_SPECIFIC_STEPS}', agentStepsXml)
|
.replace('{AGENT_SPECIFIC_STEPS}', agentStepsXml)
|
||||||
.replace('{MENU_STEP}', menuStep.toString())
|
.replace('{MENU_STEP}', menuStep.toString())
|
||||||
.replace('{HELP_STEP}', helpStep.toString())
|
|
||||||
.replace('{HALT_STEP}', haltStep.toString())
|
.replace('{HALT_STEP}', haltStep.toString())
|
||||||
.replace('{INPUT_STEP}', inputStep.toString())
|
.replace('{INPUT_STEP}', inputStep.toString())
|
||||||
.replace('{EXECUTE_STEP}', executeStep.toString());
|
.replace('{EXECUTE_STEP}', executeStep.toString());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue