bmad-method 6.10.1-next.21 → 6.10.1-next.22

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.21",
4
+ "version": "6.10.1-next.22",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -34,22 +34,16 @@ persistent_facts = [
34
34
  on_complete = ""
35
35
 
36
36
  # Handoff for the implementation subagent in step 03. The whole execution
37
- # recipe — a subagent by default, but an override may run anything (e.g. an
38
- # external coding tool via bash). {spec_file} is substituted at run time.
37
+ # recipe — a subagent by default, but an override may run it any other way
38
+ # (a different model, an external coding tool via bash). {spec_file} is
39
+ # substituted at run time.
39
40
 
40
41
  implementation_handoff = """
41
42
  Launch a subagent with no prior conversation context, with this prompt:
42
43
 
43
- > Read {spec_file} fully and implement it. The spec is the sole source of truth for this change; its Spec Change Log entries are binding constraints, not history.
44
+ > Read {spec_file} fully and implement it the spec is the sole source of truth. Load every file listed in its frontmatter `context:` before you start.
44
45
  >
45
- > Guardrails:
46
- >
47
- > - Work in the current project. Before starting, load every file listed in the spec frontmatter `context:`.
48
- > - Do not edit the spec file itself.
49
- > - Do not revert or overwrite changes unrelated to this spec.
50
- > - Run the verification described in the spec, plus focused checks for the code you touched.
51
- >
52
- > When done, report: files changed with one line each, verification commands run and their outcomes, any files changed beyond the spec's tasks and why each was needed, anything you could not complete and why, and residual risks.
46
+ > When done, report what you changed, how you verified it, and anything left incomplete or risky.
53
47
  """
54
48
 
55
49
  # Review layers for the review step. `instruction` is the layer's whole
@@ -48,10 +48,10 @@ warnings: [] # optional: machine-readable warnings for orchestration, e.g. overs
48
48
 
49
49
  ## Code Map
50
50
 
51
- <!-- Agent-populated during planning: the distilled investigation map, so the spec carries what exploration found and the implementation handoff need only point here. Annotated paths prevent blind codebase searching. Entries may drill to symbol/line and carry reuse pointers ("mirror X at FILE:LINE") or read-only evidence, where they save the implementer a search. -->
51
+ <!-- Agent-populated during planning. Annotated paths prevent blind codebase searching. -->
52
52
 
53
53
  - `FILE` -- ROLE_OR_RELEVANCE
54
- - `FILE:LINE` -- ROLE_OR_RELEVANCE; reuse pointer or READ-ONLY evidence when relevant
54
+ - `FILE` -- ROLE_OR_RELEVANCE
55
55
 
56
56
  ## Tasks & Acceptance
57
57
 
@@ -33,27 +33,17 @@ persistent_facts = [
33
33
 
34
34
  on_complete = ""
35
35
 
36
- # Handoff for the implementation subagent in step 03 nailed down here the same
37
- # way the review layers below are, so the main session never improvises a fat
38
- # dispatch prompt. The spec is the subagent's sole source of truth; investigation
39
- # findings belong in the spec's Code Map (see step 02), not re-narrated here.
40
- # {spec_file} is substituted at run time. An override may replace the whole recipe
41
- # (e.g. drive an external coding tool via bash).
36
+ # Handoff for the implementation subagent in step 03. The whole execution
37
+ # recipe a subagent by default, but an override may run it any other way
38
+ # (a different model, an external coding tool via bash). {spec_file} is
39
+ # substituted at run time.
42
40
 
43
41
  implementation_handoff = """
44
42
  Launch a subagent with no prior conversation context, with this prompt:
45
43
 
46
- > Read {spec_file} fully and implement it. The spec is the sole source of truth for this change; its Code Map is your investigation map, and its Spec Change Log entries are binding constraints, not history.
44
+ > Read {spec_file} fully and implement it the spec is the sole source of truth. Load every file listed in its frontmatter `context:` before you start.
47
45
  >
48
- > Guardrails:
49
- >
50
- > - Work in the current project. Before starting, load every file listed in the spec frontmatter `context:`.
51
- > - Do not edit the spec file itself.
52
- > - Do not commit or push — that happens later in the workflow.
53
- > - Do not revert or overwrite changes unrelated to this spec.
54
- > - Run the verification described in the spec, plus focused checks for the code you touched.
55
- >
56
- > When done, report: files changed with one line each, verification commands run and their outcomes, any files changed beyond the spec's tasks and why each was needed, anything you could not complete and why, and residual risks.
46
+ > When done, report what you changed, how you verified it, and anything left incomplete or risky.
57
47
  """
58
48
 
59
49
  # Review layers for the review step. `instruction` is the layer's whole
@@ -46,10 +46,10 @@ context: [] # optional: `{project-root}/`-prefixed paths to project-wide standar
46
46
 
47
47
  ## Code Map
48
48
 
49
- <!-- Agent-populated during planning: the distilled investigation map, so the spec carries what exploration found and the implementation handoff need only point here. Annotated paths prevent blind codebase searching. Entries may drill to symbol/line and carry reuse pointers ("mirror X at FILE:LINE") or read-only evidence, where they save the implementer a search. -->
49
+ <!-- Agent-populated during planning. Annotated paths prevent blind codebase searching. -->
50
50
 
51
51
  - `FILE` -- ROLE_OR_RELEVANCE
52
- - `FILE:LINE` -- ROLE_OR_RELEVANCE; reuse pointer or READ-ONLY evidence when relevant
52
+ - `FILE` -- ROLE_OR_RELEVANCE
53
53
 
54
54
  ## Tasks & Acceptance
55
55