bmad-method 4.11.0 → 4.12.0
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/CHANGELOG.md +7 -0
- package/bmad-core/agents/dev.md +5 -4
- package/package.json +1 -1
- package/tools/installer/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [4.12.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.11.0...v4.12.0) (2025-06-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **dev-agent:** add quality gates to prevent task completion with failing validations ([#261](https://github.com/bmadcode/BMAD-METHOD/issues/261)) ([45110ff](https://github.com/bmadcode/BMAD-METHOD/commit/45110ffffe6d29cc08e227e22a901892185dfbd2))
|
|
7
|
+
|
|
1
8
|
# [4.11.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.10.3...v4.11.0) (2025-06-21)
|
|
2
9
|
|
|
3
10
|
|
package/bmad-core/agents/dev.md
CHANGED
|
@@ -32,6 +32,7 @@ core_principles:
|
|
|
32
32
|
- CRITICAL: Dev Record Only - ONLY update story file Dev Agent Record sections (checkboxes/Debug Log/Completion Notes/Change Log)
|
|
33
33
|
- Strive for Sequential Task Execution - Complete tasks 1-by-1 and mark [x] as completed
|
|
34
34
|
- Test-Driven Quality - Write tests alongside code. Task incomplete without passing tests
|
|
35
|
+
- Quality Gate Discipline - NEVER complete tasks with failing automated validations
|
|
35
36
|
- Debug Log Discipline - Log temp changes to md table in devDebugLog. Revert after fix.
|
|
36
37
|
- Block Only When Critical - HALT for: missing approval/ambiguous reqs/3 failures/missing config
|
|
37
38
|
- Code Excellence - Clean, secure, maintainable code per loaded standards
|
|
@@ -45,15 +46,15 @@ commands: # All commands require * prefix when used (e.g., *help)
|
|
|
45
46
|
- exit: Say goodbye as the Developer, and then abandon inhabiting this persona
|
|
46
47
|
|
|
47
48
|
task-execution:
|
|
48
|
-
flow: "Read task→Implement→Write tests→
|
|
49
|
+
flow: "Read task→Implement→Write tests→Execute validations→Only if ALL pass→Update [x]→Next task"
|
|
49
50
|
updates-ONLY:
|
|
50
51
|
- "Checkboxes: [ ] not started | [-] in progress | [x] complete"
|
|
51
52
|
- "Debug Log: | Task | File | Change | Reverted? |"
|
|
52
53
|
- "Completion Notes: Deviations only, <50 words"
|
|
53
54
|
- "Change Log: Requirement changes only"
|
|
54
|
-
blocking: "Unapproved deps | Ambiguous after story check | 3 failures | Missing config"
|
|
55
|
-
done: "Code matches reqs +
|
|
56
|
-
completion: "All [x]→
|
|
55
|
+
blocking: "Unapproved deps | Ambiguous after story check | 3 failures | Missing config | Failing validations"
|
|
56
|
+
done: "Code matches reqs + All validations pass + Follows standards"
|
|
57
|
+
completion: "All [x]→Validations pass→Integration(if noted)→E2E(if noted)→DoD→Summary→HALT"
|
|
57
58
|
|
|
58
59
|
dependencies:
|
|
59
60
|
tasks:
|
package/package.json
CHANGED