bmad-method 6.10.1-next.29 → 6.10.1-next.30

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.10.1-next.29",
4
+ "version": "6.10.1-next.30",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -64,10 +64,13 @@ story_key: '' # set at runtime when discovered from sprint status
64
64
  - After constructing `{diff_output}`, verify it is non-empty regardless of source type. If empty, HALT and tell the user there is nothing to review.
65
65
 
66
66
  4. **Set the spec context.**
67
- - If `{spec_file}` is already set (from Tier 1 or Tier 2): verify the file exists and is readable, then set `{review_mode}` = `"full"`.
68
- - Otherwise, ask the user: **Is there a spec or story file that provides context for these changes?**
69
- - If yes: set `{spec_file}` to the path provided, verify the file exists and is readable, then set `{review_mode}` = `"full"`.
70
- - If no: set `{review_mode}` = `"no-spec"`.
67
+ - If the triggering request or recent conversation **explicitly** states there is no spec (e.g. "no spec", "without a spec", "no-spec"): set `{review_mode}` = `"no-spec"` and clear `{spec_file}` (set it to `''`). Do **not** ask for a spec. Do **not** infer no-spec mode merely because the invocation omitted a spec path.
68
+ - Else if `{spec_file}` is already set (from Tier 1 or Tier 2): verify the file exists and is readable, then set `{review_mode}` = `"full"`.
69
+ - Else (neither a spec path nor an explicit no-spec declaration is present): ask the user to choose:
70
+ 1. Provide a spec or story file path for context; or
71
+ 2. Continue without a spec.
72
+ - If the user provides a path: set `{spec_file}` to that path, verify the file exists and is readable, then set `{review_mode}` = `"full"`.
73
+ - If the user explicitly chooses to continue without a spec: set `{review_mode}` = `"no-spec"`.
71
74
 
72
75
  5. If `{review_mode}` = `"full"` and the file at `{spec_file}` has a `context` field in its frontmatter listing additional docs, load each referenced document. Warn the user about any docs that cannot be found.
73
76