@sleighmaster/bmad 1.5.7 → 1.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/_bmad/bmm/agents/dev.md +1 -1
- package/data/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01-init.md +2 -1
- package/data/_bmad/bmm/workflows/2-plan-workflows/create-prd/workflow.md +2 -0
- package/data/_bmad/bmm/workflows/4-implementation/dev-story/instructions.xml +3 -2
- package/package.json +1 -1
|
@@ -25,7 +25,7 @@ You must fully embody this agent's persona and follow all activation instruction
|
|
|
25
25
|
<step n="5">Execute tasks/subtasks IN ORDER as written in story file - no skipping, no reordering, no doing what you want</step>
|
|
26
26
|
<step n="6">Mark task/subtask [x] ONLY when both implementation AND tests are complete and passing</step>
|
|
27
27
|
<step n="7">Run full test suite after each task - NEVER proceed with failing tests</step>
|
|
28
|
-
<step n="8">Execute
|
|
28
|
+
<step n="8">Execute the task loop autonomously without asking for user confirmation — but ALWAYS complete git commit for each task before proceeding to the next</step>
|
|
29
29
|
<step n="9">Document in story file Dev Agent Record what was implemented, tests created, and any decisions made</step>
|
|
30
30
|
<step n="10">Update story file File List with ALL changed files after each task completion</step>
|
|
31
31
|
<step n="11">NEVER lie about tests being written or passing - tests must actually exist and pass 100%</step>
|
|
@@ -114,7 +114,8 @@ Try to discover the following:
|
|
|
114
114
|
|
|
115
115
|
**Document Setup:**
|
|
116
116
|
|
|
117
|
-
- Copy the template from `{prdTemplate}` to `{outputFile}`
|
|
117
|
+
- Copy the template from `{prdTemplate}` to `{outputFile}` (this is `{planning_artifacts}/prd.md`)
|
|
118
|
+
- ⚠️ Do NOT save to `{prd_artifacts}` — that path is for sharded PRD sections, not the main PRD document
|
|
118
119
|
- Initialize frontmatter with proper structure including inputDocuments array.
|
|
119
120
|
|
|
120
121
|
#### C. Present Initialization Results
|
|
@@ -133,6 +133,8 @@ Load and read full config from {main_config} and resolve:
|
|
|
133
133
|
|
|
134
134
|
✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the configured `{communication_language}`.
|
|
135
135
|
|
|
136
|
+
⚠️ **CRITICAL: PRD Output Path** — The PRD document MUST be saved to `{planning_artifacts}/prd.md` as defined in each step file's `outputFile`. Do NOT use `prd_artifacts` — that config value is only for sharded PRD sections used by other workflows.
|
|
137
|
+
|
|
136
138
|
### 3. Route to Appropriate Workflow
|
|
137
139
|
|
|
138
140
|
**IF mode == create:**
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
|
|
299
299
|
<critical>NEVER implement anything not mapped to a specific task/subtask in the story file</critical>
|
|
300
300
|
<critical>NEVER proceed to next task until current task/subtask is complete AND tests pass</critical>
|
|
301
|
-
<critical>Execute
|
|
301
|
+
<critical>Execute the Step 5→6→7→8 loop autonomously for each task without asking for user confirmation — but ALWAYS complete Step 8 (including git commit) before proceeding to the next task</critical>
|
|
302
302
|
<critical>Do NOT propose to pause for review until Step 9 completion gates are satisfied</critical>
|
|
303
303
|
</step>
|
|
304
304
|
|
|
@@ -349,7 +349,8 @@
|
|
|
349
349
|
<action>Update File List section with ALL new, modified, or deleted files (paths relative to repo root)</action>
|
|
350
350
|
<action>Add completion notes to Dev Agent Record summarizing what was ACTUALLY implemented and tested</action>
|
|
351
351
|
|
|
352
|
-
<!-- GIT COMMIT FOR COMPLETED TASK -->
|
|
352
|
+
<!-- GIT COMMIT FOR COMPLETED TASK - MANDATORY -->
|
|
353
|
+
<critical>Git commit is NOT a pause — it is a MANDATORY part of each task completion cycle. Do NOT batch commits across multiple tasks.</critical>
|
|
353
354
|
<check if="git repository detected">
|
|
354
355
|
<action>변경된 파일 스테이징: git add {{modified_files_for_this_task}}</action>
|
|
355
356
|
<action>태스크 커밋 생성:
|