bmad-method 6.8.1-next.8 → 6.9.0

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.
Files changed (91) hide show
  1. package/.claude-plugin/marketplace.json +9 -3
  2. package/package.json +10 -4
  3. package/src/bmm-skills/1-analysis/bmad-prfaq/SKILL.md +2 -2
  4. package/src/bmm-skills/1-analysis/bmad-product-brief/SKILL.md +8 -8
  5. package/src/bmm-skills/2-plan-workflows/bmad-prd/SKILL.md +7 -7
  6. package/src/bmm-skills/2-plan-workflows/bmad-prd/assets/headless-schemas.md +2 -2
  7. package/src/bmm-skills/2-plan-workflows/bmad-prd/customize.toml +1 -1
  8. package/src/bmm-skills/2-plan-workflows/bmad-prd/references/headless.md +1 -1
  9. package/src/bmm-skills/2-plan-workflows/bmad-prd/references/validate.md +1 -1
  10. package/src/bmm-skills/2-plan-workflows/bmad-ux/SKILL.md +8 -8
  11. package/src/bmm-skills/2-plan-workflows/bmad-ux/assets/design-directions.md +1 -1
  12. package/src/bmm-skills/2-plan-workflows/bmad-ux/assets/headless-schemas.md +2 -2
  13. package/src/bmm-skills/2-plan-workflows/bmad-ux/assets/key-screens.md +4 -4
  14. package/src/bmm-skills/2-plan-workflows/bmad-ux/customize.toml +1 -1
  15. package/src/bmm-skills/2-plan-workflows/bmad-ux/references/creative-tools.md +1 -1
  16. package/src/bmm-skills/2-plan-workflows/bmad-ux/references/headless.md +1 -1
  17. package/src/bmm-skills/2-plan-workflows/bmad-ux/references/validate.md +2 -2
  18. package/src/bmm-skills/3-solutioning/bmad-agent-architect/customize.toml +2 -2
  19. package/src/bmm-skills/3-solutioning/bmad-architecture/SKILL.md +85 -0
  20. package/src/bmm-skills/3-solutioning/bmad-architecture/assets/spine-template.md +79 -0
  21. package/src/bmm-skills/3-solutioning/bmad-architecture/customize.toml +100 -0
  22. package/src/bmm-skills/3-solutioning/bmad-architecture/references/headless.md +26 -0
  23. package/src/bmm-skills/3-solutioning/bmad-architecture/references/reviewer-gate.md +13 -0
  24. package/src/bmm-skills/3-solutioning/bmad-architecture/scripts/lint_spine.py +257 -0
  25. package/src/bmm-skills/3-solutioning/bmad-architecture/scripts/tests/test_lint_spine.py +270 -0
  26. package/src/bmm-skills/3-solutioning/bmad-create-architecture/SKILL.md +16 -60
  27. package/src/bmm-skills/4-implementation/bmad-retrospective/SKILL.md +15 -0
  28. package/src/bmm-skills/4-implementation/bmad-sprint-planning/SKILL.md +20 -1
  29. package/src/bmm-skills/4-implementation/bmad-sprint-planning/checklist.md +2 -1
  30. package/src/bmm-skills/4-implementation/bmad-sprint-planning/sprint-status-template.yaml +13 -0
  31. package/src/bmm-skills/4-implementation/bmad-sprint-status/SKILL.md +13 -0
  32. package/src/bmm-skills/module-help.csv +2 -2
  33. package/src/core-skills/bmad-brainstorming/SKILL.md +8 -10
  34. package/src/core-skills/bmad-brainstorming/references/converge.md +1 -1
  35. package/src/core-skills/bmad-brainstorming/references/finalize.md +1 -1
  36. package/src/core-skills/bmad-brainstorming/references/headless.md +4 -4
  37. package/src/core-skills/bmad-brainstorming/references/in-chat-techniques.md +1 -1
  38. package/src/core-skills/bmad-brainstorming/references/mode-autonomous.md +1 -1
  39. package/src/core-skills/bmad-brainstorming/scripts/tests/test_brain.py +2 -2
  40. package/src/core-skills/bmad-customize/scripts/tests/test_list_customizable_skills.py +1 -1
  41. package/src/core-skills/bmad-forge-idea/SKILL.md +79 -0
  42. package/src/core-skills/bmad-forge-idea/customize.toml +42 -0
  43. package/src/core-skills/bmad-forge-idea/scripts/resolve_personas.py +270 -0
  44. package/src/core-skills/bmad-forge-idea/scripts/tests/test_resolve_personas.py +138 -0
  45. package/src/core-skills/bmad-party-mode/SKILL.md +39 -56
  46. package/src/core-skills/bmad-party-mode/customize.toml +175 -0
  47. package/src/core-skills/bmad-party-mode/references/create-party.md +70 -0
  48. package/src/core-skills/bmad-party-mode/references/mode-agent-team.md +11 -0
  49. package/src/core-skills/bmad-party-mode/references/mode-auto.md +13 -0
  50. package/src/core-skills/bmad-party-mode/references/mode-subagent.md +19 -0
  51. package/src/core-skills/bmad-party-mode/references/party-memory.md +51 -0
  52. package/src/core-skills/bmad-party-mode/scripts/resolve_party.py +272 -0
  53. package/src/core-skills/bmad-party-mode/scripts/tests/test-resolve_party.py +146 -0
  54. package/src/core-skills/bmad-spec/SKILL.md +5 -3
  55. package/src/core-skills/bmad-spec/assets/spec-template.md +3 -3
  56. package/src/core-skills/module-help.csv +1 -0
  57. package/src/scripts/resolve_config.py +8 -6
  58. package/src/scripts/resolve_customization.py +8 -6
  59. package/tools/installer/commands/install.js +3 -0
  60. package/tools/installer/core/installer.js +3 -0
  61. package/tools/installer/core/uv-check.js +97 -0
  62. package/tools/installer/core/wsl-node-check.js +109 -0
  63. package/tools/installer/ide/platform-codes.yaml +7 -0
  64. package/tools/installer/install-messages.yaml +4 -0
  65. package/tools/installer/ui.js +11 -0
  66. package/evals/bmm-skills/bmad-product-brief/evals.json +0 -237
  67. package/evals/bmm-skills/bmad-product-brief/files/branfield-memo.md +0 -46
  68. package/evals/bmm-skills/bmad-product-brief/files/forkbird-brief/addendum.md +0 -40
  69. package/evals/bmm-skills/bmad-product-brief/files/forkbird-brief/brief.md +0 -56
  70. package/evals/bmm-skills/bmad-product-brief/files/forkbird-brief/decision-log.md +0 -27
  71. package/evals/bmm-skills/bmad-product-brief/files/meridian-mobility-report.md +0 -116
  72. package/evals/bmm-skills/bmad-product-brief/files/mossridge-brief/addendum.md +0 -41
  73. package/evals/bmm-skills/bmad-product-brief/files/mossridge-brief/brief.md +0 -57
  74. package/evals/bmm-skills/bmad-product-brief/files/mossridge-brief/decision-log.md +0 -29
  75. package/evals/bmm-skills/bmad-product-brief/files/pantry-bridge-interviews.md +0 -90
  76. package/evals/bmm-skills/bmad-product-brief/files/q2-brainstorm.md +0 -101
  77. package/evals/bmm-skills/bmad-product-brief/triggers.json +0 -18
  78. package/src/bmm-skills/3-solutioning/bmad-create-architecture/architecture-decision-template.md +0 -12
  79. package/src/bmm-skills/3-solutioning/bmad-create-architecture/data/domain-complexity.csv +0 -13
  80. package/src/bmm-skills/3-solutioning/bmad-create-architecture/data/project-types.csv +0 -7
  81. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-01-init.md +0 -153
  82. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-01b-continue.md +0 -173
  83. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-02-context.md +0 -224
  84. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-03-starter.md +0 -329
  85. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-04-decisions.md +0 -318
  86. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-05-patterns.md +0 -359
  87. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-06-structure.md +0 -379
  88. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-07-validation.md +0 -361
  89. package/src/bmm-skills/3-solutioning/bmad-create-architecture/steps/step-08-complete.md +0 -82
  90. package/src/core-skills/bmad-brainstorming/scripts/memlog.py +0 -202
  91. package/src/core-skills/bmad-brainstorming/scripts/tests/test_memlog.py +0 -265
@@ -1,265 +0,0 @@
1
- # /// script
2
- # requires-python = ">=3.10"
3
- # dependencies = ["pytest>=8.0"]
4
- # ///
5
- """Tests for memlog.py. Run: uv run --with pytest pytest scripts/tests/test_memlog.py
6
-
7
- The spine under test is the flat, append-only, chronological invariant: every entry is
8
- one line recorded at the end in the order it happened — no sections, no grouping.
9
- """
10
- import json
11
- import sys
12
- from pathlib import Path
13
-
14
- import pytest
15
-
16
- sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
17
- import memlog # noqa: E402
18
-
19
- MEMLOG = ".memlog.md"
20
-
21
-
22
- @pytest.fixture
23
- def ws(tmp_path):
24
- return str(tmp_path)
25
-
26
-
27
- def read(ws):
28
- return (Path(ws) / MEMLOG).read_text(encoding="utf-8")
29
-
30
-
31
- def body_of(ws):
32
- return memlog.split(read(ws))[1]
33
-
34
-
35
- def entries(ws):
36
- return [ln for ln in body_of(ws).splitlines() if ln.startswith("- ")]
37
-
38
-
39
- def init(ws, **fields):
40
- fields = fields or {"topic": "Reinvent the lunchbox", "goal": "ideas for a pitch"}
41
- argv = ["init", "--workspace", ws]
42
- for k, v in fields.items():
43
- argv += ["--field", f"{k}={v}"]
44
- assert memlog.main(argv) == 0
45
-
46
-
47
- def append(ws, text, entry_type=None, by=None):
48
- argv = ["append", "--workspace", ws, "--text", text]
49
- if entry_type:
50
- argv += ["--type", entry_type]
51
- if by:
52
- argv += ["--by", by]
53
- assert memlog.main(argv) == 0
54
-
55
-
56
- # --- init ---------------------------------------------------------------
57
-
58
- def test_init_writes_frontmatter_fields(ws):
59
- init(ws)
60
- meta, body = memlog.split(read(ws))
61
- assert meta["topic"] == "Reinvent the lunchbox"
62
- assert meta["goal"] == "ideas for a pitch"
63
- assert meta["status"] == "active"
64
- assert "updated" in meta
65
- assert body.strip() == ""
66
-
67
-
68
- def test_init_arbitrary_fields(ws):
69
- init(ws, topic="T", audience="board")
70
- meta, _ = memlog.split(read(ws))
71
- assert meta["audience"] == "board"
72
-
73
-
74
- def test_init_refuses_overwrite(ws):
75
- init(ws)
76
- assert memlog.main(["init", "--workspace", ws, "--field", "topic=other"]) == 2
77
-
78
-
79
- def test_init_creates_missing_workspace(tmp_path):
80
- nested = str(tmp_path / "a" / "b")
81
- assert memlog.main(["init", "--workspace", nested, "--field", "topic=T"]) == 0
82
- assert (Path(nested) / MEMLOG).is_file()
83
-
84
-
85
- def test_init_rejects_malformed_field(ws):
86
- assert memlog.main(["init", "--workspace", ws, "--field", "noequals"]) == 2
87
-
88
-
89
- # --- append: flat chronological order is the whole point -----------------
90
-
91
- def test_append_lands_at_end_in_order(ws):
92
- init(ws)
93
- append(ws, "first")
94
- append(ws, "second")
95
- append(ws, "third")
96
- assert entries(ws) == ["- first", "- second", "- third"]
97
-
98
-
99
- def test_no_sections_or_headings_ever(ws):
100
- init(ws)
101
- append(ws, "started foo", entry_type="technique")
102
- append(ws, "an idea", entry_type="idea")
103
- append(ws, "started bar", entry_type="technique")
104
- assert "## " not in body_of(ws) # the flat log never grows headings
105
-
106
-
107
- def test_type_renders_as_inline_tag(ws):
108
- init(ws)
109
- append(ws, "the earth revolves around the sun", entry_type="idea")
110
- append(ws, "how do we handle stampede?", entry_type="question")
111
- body = body_of(ws)
112
- assert "- (idea) the earth revolves around the sun" in body
113
- assert "- (question) how do we handle stampede?" in body
114
-
115
-
116
- def test_append_without_type_is_plain_note(ws):
117
- init(ws)
118
- append(ws, "bare entry")
119
- assert entries(ws) == ["- bare entry"]
120
-
121
-
122
- def test_append_collapses_newlines_into_one_line(ws):
123
- init(ws)
124
- append(ws, "line one\nline two\n spaced out")
125
- assert entries(ws) == ["- line one line two spaced out"]
126
-
127
-
128
- def test_revisited_technique_is_just_a_later_entry(ws):
129
- # the user's model: switching techniques is an entry, not a section to return to
130
- init(ws)
131
- append(ws, "started SCAMPER", entry_type="technique")
132
- append(ws, "magnetic latch", entry_type="idea")
133
- append(ws, "started Six Hats", entry_type="technique")
134
- append(ws, "stale data risk", entry_type="idea")
135
- append(ws, "started SCAMPER", entry_type="technique") # back to SCAMPER — just appended again
136
- append(ws, "stackable tiers", entry_type="idea")
137
- assert entries(ws) == [
138
- "- (technique) started SCAMPER",
139
- "- (idea) magnetic latch",
140
- "- (technique) started Six Hats",
141
- "- (idea) stale data risk",
142
- "- (technique) started SCAMPER",
143
- "- (idea) stackable tiers",
144
- ]
145
-
146
-
147
- def test_by_renders_attribution_in_tag(ws):
148
- # Creative Partner mode must record whose idea each one was
149
- init(ws)
150
- append(ws, "magnetic latch lid", entry_type="idea", by="user")
151
- append(ws, "lid doubles as a plate", entry_type="idea", by="coach")
152
- body = body_of(ws)
153
- assert "- (idea by user) magnetic latch lid" in body
154
- assert "- (idea by coach) lid doubles as a plate" in body
155
-
156
-
157
- def test_by_without_type_renders_alone(ws):
158
- init(ws)
159
- append(ws, "off-the-cuff thought", by="coach")
160
- assert entries(ws) == ["- (by coach) off-the-cuff thought"]
161
-
162
-
163
- def test_heterogeneous_entry_types_coexist(ws):
164
- init(ws)
165
- append(ws, "an idea", entry_type="idea")
166
- append(ws, "an open question", entry_type="question")
167
- append(ws, "a decision we made", entry_type="decision")
168
- append(ws, "user wants mobile-first", entry_type="direction")
169
- body = body_of(ws)
170
- for tag in ("(idea)", "(question)", "(decision)", "(direction)"):
171
- assert tag in body
172
-
173
-
174
- # --- set ----------------------------------------------------------------
175
-
176
- def test_set_flips_status(ws):
177
- init(ws)
178
- memlog.main(["set", "--workspace", ws, "--key", "status", "--value", "complete"])
179
- assert memlog.split(read(ws))[0]["status"] == "complete"
180
-
181
-
182
- def test_set_preserves_body(ws):
183
- init(ws)
184
- append(ws, "keep me", entry_type="idea")
185
- memlog.main(["set", "--workspace", ws, "--key", "status", "--value", "complete"])
186
- meta, body = memlog.split(read(ws))
187
- assert meta["status"] == "complete"
188
- assert "- (idea) keep me" in body
189
-
190
-
191
- def test_set_can_add_new_field(ws):
192
- init(ws)
193
- memlog.main(["set", "--workspace", ws, "--key", "owner", "--value", "BMad"])
194
- assert memlog.split(read(ws))[0]["owner"] == "BMad"
195
-
196
-
197
- def test_updated_stays_last(ws):
198
- init(ws)
199
- memlog.main(["set", "--workspace", ws, "--key", "owner", "--value", "BMad"])
200
- meta = memlog.split(read(ws))[0]
201
- assert list(meta)[-1] == "updated"
202
-
203
-
204
- # --- robustness ---------------------------------------------------------
205
-
206
- def test_roundtrip_render_is_stable(ws):
207
- init(ws)
208
- append(ws, "one", entry_type="idea")
209
- first = read(ws)
210
- meta, body = memlog.split(first)
211
- assert memlog.render(meta, body) == first
212
-
213
-
214
- def test_commas_in_field_survive(ws):
215
- init(ws, topic="cars, trains, and planes")
216
- append(ws, "z", entry_type="idea")
217
- meta, _ = memlog.split(read(ws))
218
- assert meta["topic"] == "cars, trains, and planes"
219
-
220
-
221
- def test_triple_dash_in_field_does_not_corrupt_frontmatter(ws):
222
- # A `---` inside a value must NOT be read as the closing fence: topic stays intact,
223
- # status survives, and the body never leaks frontmatter text.
224
- init(ws, topic="Pricing --- tiers --- and add-ons")
225
- append(ws, "an idea", entry_type="idea")
226
- meta, body = memlog.split(read(ws))
227
- assert meta["topic"] == "Pricing --- tiers --- and add-ons"
228
- assert meta["status"] == "active"
229
- assert entries(ws) == ["- (idea) an idea"]
230
- assert "status:" not in body # frontmatter never bled into the body
231
-
232
-
233
- def test_triple_dash_status_survives_in_ack(ws, capsys):
234
- init(ws, topic="a --- b")
235
- append(ws, "x", entry_type="idea")
236
- out = json.loads(capsys.readouterr().out.strip().splitlines()[-1])
237
- assert out["status"] == "active" # not "" — frontmatter recovered cleanly
238
-
239
-
240
- def test_newline_in_field_is_neutralized(ws):
241
- # A value carrying a newline can't break the fence on the next round-trip.
242
- memlog.main(["init", "--workspace", ws, "--field", "topic=line one\nline two"])
243
- append(ws, "x", entry_type="idea")
244
- meta, _ = memlog.split(read(ws))
245
- assert "\n" not in meta["topic"]
246
- assert meta["status"] == "active"
247
-
248
-
249
- def test_append_emits_json_ack(ws, capsys):
250
- init(ws)
251
- append(ws, "x", entry_type="idea")
252
- out = json.loads(capsys.readouterr().out.strip().splitlines()[-1])
253
- assert out["ok"] is True
254
- assert out["status"] == "active"
255
- assert out["entries"] == 1
256
- assert out["memlog"].endswith(MEMLOG)
257
- assert "section" not in out # sections are gone
258
-
259
-
260
- def test_ack_entry_count_climbs(ws, capsys):
261
- init(ws)
262
- append(ws, "a")
263
- append(ws, "b")
264
- out = json.loads(capsys.readouterr().out.strip().splitlines()[-1])
265
- assert out["entries"] == 2