bmad-method 6.9.1-next.13 → 6.9.1-next.14

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.9.1-next.13",
4
+ "version": "6.9.1-next.14",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -7,23 +7,29 @@ failed_layers: '' # set at runtime: comma-separated list of layers that failed o
7
7
  ## RULES
8
8
 
9
9
  - YOU MUST ALWAYS SPEAK OUTPUT in your Agent communication style with the config `{communication_language}`
10
- - The Blind Hunter subagent receives NO project context — diff only.
11
- - The Edge Case Hunter subagent receives diff and project read access.
12
- - The Acceptance Auditor subagent receives diff, spec, and context docs.
13
10
  - All review subagents must run at the same model capability as the current session.
14
11
 
15
12
  ## INSTRUCTIONS
16
13
 
17
14
  1. If `{review_mode}` = `"no-spec"`, note to the user: "Acceptance Auditor skipped — no spec file provided."
18
15
 
19
- 2. Launch parallel subagents without conversation context. If subagents are not available, generate prompt files in `{implementation_artifacts}` one per reviewer role below — and HALT. Ask the user to run each in a separate session (ideally a different LLM) and paste back the findings. When findings are pasted, resume from this point and proceed to step 3.
16
+ 2. Launch Blind Hunter and Edge Case Hunter in parallel without prior conversation context. If `{review_mode}` = `"full"`, include the Acceptance Auditor in the same parallel launch. If subagents are not available, generate prompt files in `{implementation_artifacts}` for each applicable reviewer role and HALT. Ask the user to run each in a separate session (ideally a different LLM) and paste back the findings. When findings are pasted, resume from this point and proceed to step 3.
20
17
 
21
- - **Blind Hunter** — prompt: "Use the `bmad-review-adversarial-general` skill on `{diff_output}`."
18
+ - **Blind Hunter** — prompt:
19
+ > Invoke the `bmad-review-adversarial-general` skill on this diff:
20
+ >
21
+ > {diff_output}
22
22
 
23
- - **Edge Case Hunter** — prompt: "Use the `bmad-review-edge-case-hunter` skill on `{diff_output}`."
23
+ - **Edge Case Hunter** — prompt:
24
+ > Invoke the `bmad-review-edge-case-hunter` skill on this diff:
25
+ >
26
+ > {diff_output}
24
27
 
25
- - **Acceptance Auditor** (only if `{review_mode}` = `"full"`) — receives `{diff_output}`, the content of the file at `{spec_file}`, and any loaded context docs. Its prompt:
26
- > You are an Acceptance Auditor. Review this diff against the spec and context docs. Check for: violations of acceptance criteria, deviations from spec intent, missing implementation of specified behavior, contradictions between spec constraints and actual code. Output findings as a Markdown list. Each finding: one-line title, which AC/constraint it violates, and evidence from the diff.
28
+ - **Acceptance Auditor** (only if `{review_mode}` = `"full"`) — prompt:
29
+ > You are an Acceptance Auditor. Review the provided diff against `{spec_file}` and any loaded context docs. Check for: violations of acceptance criteria, deviations from spec intent, missing implementation of specified behavior, contradictions between spec constraints and actual code. Output findings as a Markdown list. Each finding: one-line title, which AC/constraint it violates, and evidence from the diff.
30
+ >
31
+ > Diff:
32
+ > {diff_output}
27
33
 
28
34
  3. **Subagent failure handling**: If any subagent fails, times out, or returns empty results, append the layer name to `{failed_layers}` (comma-separated) and proceed with findings from the remaining layers.
29
35
 
@@ -8,7 +8,6 @@ deferred_work_file: '{implementation_artifacts}/deferred-work.md'
8
8
 
9
9
  - YOU MUST ALWAYS SPEAK OUTPUT in your Agent communication style with the config `{communication_language}`
10
10
  - No human interaction: do not ask questions or wait for approval in this step.
11
- - Review subagents get no prior session context.
12
11
  - All review subagents must run at the same model capability as the current session.
13
12
 
14
13
  ## INSTRUCTIONS
@@ -23,10 +22,16 @@ Do NOT `git add` anything — this is read-only inspection.
23
22
 
24
23
  ### Review
25
24
 
26
- Launch two subagents without prior session context.
25
+ Launch Blind Hunter and Edge Case Hunter in parallel without prior conversation context.
27
26
 
28
- - **Blind hunter** — prompt: "Use the `bmad-review-adversarial-general` skill on `{diff_output}`."
29
- - **Edge case hunter** — prompt: "Use the `bmad-review-edge-case-hunter` skill on `{diff_output}`."
27
+ - **Blind Hunter** — prompt:
28
+ > Invoke the `bmad-review-adversarial-general` skill on this diff:
29
+ >
30
+ > {diff_output}
31
+ - **Edge Case Hunter** — prompt:
32
+ > Invoke the `bmad-review-edge-case-hunter` skill on this diff:
33
+ >
34
+ > {diff_output}
30
35
 
31
36
  ### Classify
32
37
 
@@ -7,7 +7,6 @@ deferred_work_file: '{implementation_artifacts}/deferred-work.md'
7
7
  ## RULES
8
8
 
9
9
  - YOU MUST ALWAYS SPEAK OUTPUT in your Agent communication style with the config `{communication_language}`
10
- - Review subagents get NO conversation context.
11
10
  - All review subagents must run at the same model capability as the current session.
12
11
 
13
12
  ## INSTRUCTIONS
@@ -22,10 +21,16 @@ Do NOT `git add` anything — this is read-only inspection.
22
21
 
23
22
  ### Review
24
23
 
25
- Launch two subagents without conversation context. If no subagents are available, generate two review prompt files in `{implementation_artifacts}` — one per reviewer role below — and HALT. Ask the human to run each in a separate session (ideally a different LLM) and paste back the findings.
24
+ Launch Blind Hunter and Edge Case Hunter in parallel without prior conversation context. If no subagents are available, generate two review prompt files in `{implementation_artifacts}` — one per reviewer role below — and HALT. Ask the human to run each in a separate session (ideally a different LLM) and paste back the findings.
26
25
 
27
- - **Blind hunter** — prompt: "Use the `bmad-review-adversarial-general` skill on `{diff_output}`."
28
- - **Edge case hunter** — prompt: "Use the `bmad-review-edge-case-hunter` skill on `{diff_output}`."
26
+ - **Blind Hunter** — prompt:
27
+ > Invoke the `bmad-review-adversarial-general` skill on this diff:
28
+ >
29
+ > {diff_output}
30
+ - **Edge Case Hunter** — prompt:
31
+ > Invoke the `bmad-review-edge-case-hunter` skill on this diff:
32
+ >
33
+ > {diff_output}
29
34
 
30
35
  ### Classify
31
36
 
@@ -8,6 +8,7 @@ deferred_work_file: '{implementation_artifacts}/deferred-work.md'
8
8
 
9
9
  - YOU MUST ALWAYS SPEAK OUTPUT in your Agent communication style with the config `{communication_language}`
10
10
  - NEVER auto-push.
11
+ - All review subagents must run at the same model capability as the current session.
11
12
 
12
13
  ## INSTRUCTIONS
13
14
 
@@ -19,7 +20,9 @@ Implement the clarified intent directly.
19
20
 
20
21
  ### Review
21
22
 
22
- Invoke the `bmad-review-adversarial-general` skill in a subagent with the changed files. The subagent gets NO conversation context — to avoid anchoring bias. Launch at the same model capability as the current session. If no subagents are available, write the changed files to a review prompt file in `{implementation_artifacts}` and HALT. Ask the human to run the review in a separate session and paste back the findings.
23
+ Launch Blind Hunter without prior conversation context. If no subagents are available, generate one review prompt file in `{implementation_artifacts}` and HALT. Ask the human to run it in a separate session and paste back the findings.
24
+
25
+ - **Blind Hunter** — prompt: "Invoke the `bmad-review-adversarial-general` skill on the changed files."
23
26
 
24
27
  ### Classify
25
28