bmad-method 6.10.1-next.5 → 6.10.1-next.6

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.5",
4
+ "version": "6.10.1-next.6",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -33,6 +33,25 @@ persistent_facts = [
33
33
 
34
34
  on_complete = ""
35
35
 
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.
39
+
40
+ implementation_handoff = """
41
+ Launch a subagent with no prior conversation context, with this prompt:
42
+
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
+ >
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, anything you could not complete and why, and residual risks.
53
+ """
54
+
36
55
  # Review layers for the review step. `instruction` is the layer's whole
37
56
  # execution recipe — subagents by default, but an override may run anything
38
57
  # (e.g. an external reviewer via bash). {diff_output} is substituted at run
@@ -23,9 +23,9 @@ Capture `baseline_revision` (current HEAD, or `NO_VCS` if version control is una
23
23
 
24
24
  Change `{spec_file}` status to `in-progress` in the frontmatter before starting implementation.
25
25
 
26
- If `{spec_file}` has a non-empty `context:` list in its frontmatter, load those files before implementation begins. When handing to a subagent, include them in the subagent prompt so it has access to the referenced context.
26
+ The implementation handoff is `{workflow.implementation_handoff}`, resolved during activation. Substitute the runtime placeholders (e.g. `{spec_file}`) into it, then follow it verbatim. Do not add parent-authored goal restatements, file lists, ownership boundaries, or acceptance criteria to the handoff the spec is the subagent's sole source of truth. If the resolved handoff conflicts with the spec, HALT with status `blocked` and blocking condition `handoff conflicts with spec`, and include both conflicting passages.
27
27
 
28
- Hand `{spec_file}` to an implementation subagent. Invoke it **synchronously** and wait for it to return in this same turn — do not background/detach it (`run_in_background`) or end your turn to await a notification (see SKILL.md → Subagents). Resume at "Verify" only after it returns.
28
+ Invoke the subagent **synchronously** and wait for it to return in this same turn — do not background/detach it (`run_in_background`) or end your turn to await a notification (see SKILL.md → Subagents). Resume at "Verify" only after it returns.
29
29
 
30
30
  **Path formatting rule:** Any markdown links written into `{spec_file}` must use paths relative to `{spec_file}`'s directory so they are clickable in VS Code. Any file paths displayed in terminal/conversation output must use CWD-relative format with `:line` notation (e.g., `src/path/file.ts:42`) for terminal clickability. No leading `/` in either case.
31
31