bmad-method 6.11.1-next.6 → 6.11.1-next.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-method",
4
- "version": "6.11.1-next.6",
4
+ "version": "6.11.1-next.7",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -25,18 +25,17 @@ If a layer's instruction requires subagents and none are available, for each suc
25
25
 
26
26
  ### Classify
27
27
 
28
- Deduplicate all review findings. Three categories only:
28
+ Deduplicate all review findings, then route each finding in this order:
29
29
 
30
- - **patch** — trivially fixable. Auto-fix immediately.
31
- - **defer** — pre-existing issue not caused by this change. Append one new entry to `{{.implementation_artifacts}}/deferred-work.md` using this format. Do not modify existing entries or look for duplicates.
30
+ - **patch** — Patch every finding caused or exposed by this change that shows a defect that actually occurs, missing coverage for a specific case, or a broken gate or convention — not a state nothing reaches — and whose smallest fix is trivial, adds no public surface, and guards no state the finding did not demonstrate. Apply that smallest fix immediately.
31
+ - **HALT** — HALT on every finding caused or exposed by this change that shows the same evidence but whose smallest fix fails any of those conditions. Present it to the human for decision before proceeding.
32
+ - **defer** — Defer every other real finding, including pre-existing issues and improvement ideas. Append one new entry to `{{.implementation_artifacts}}/deferred-work.md` using this format. Do not modify existing entries or look for duplicates.
32
33
  ```markdown
33
34
  - source_spec: `{spec_file}`
34
35
  summary: <one sentence>
35
36
  evidence: <why this is real>
36
37
  ```
37
- - **reject** — noise. Drop silently.
38
-
39
- If a finding is caused by this change but too significant for a trivial patch, HALT and present it to the human for decision before proceeding.
38
+ - **reject** — Reject only noise. Drop silently.
40
39
 
41
40
  ### Generate Spec Trace
42
41