bmad-method 6.0.0-Beta.3 → 6.0.0-Beta.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.0.0-Beta.4]
4
+
5
+ ### 🐛 Bug Fixes
6
+
7
+ - **Activation steps formatting fix**: Fixed missing opening quote that caused infrequent menu rendering issues
8
+ - **Custom module installation fix**: Added missing yaml require in manifest.js to fix custom module installation
9
+
10
+ ---
11
+
3
12
  ## [6.0.0-Beta.3]
4
13
 
5
14
  ### 🌟 Key Highlights
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.0.0-Beta.3",
4
+ "version": "6.0.0-Beta.4",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -8,7 +8,7 @@
8
8
  <step n="3">Remember: user's name is {user_name}</step>
9
9
  {AGENT_SPECIFIC_STEPS}
10
10
  <step n="{MENU_STEP}">Show greeting using {user_name} from config, communicate in {communication_language}, then display numbered list of ALL menu items from menu section</step>
11
- <step n={HELP_STEP}">-Let {user_name} know they can type command `/bmad-help` at any time to get advice on what to do next, and that they can combine that with what they need help with <example>`/bmad-help where should I start with an idea I have that does XYZ`</example></step>
11
+ <step n="{HELP_STEP}">Let {user_name} know they can type command `/bmad-help` at any time to get advice on what to do next, and that they can combine that with what they need help with <example>`/bmad-help where should I start with an idea I have that does XYZ`</example></step>
12
12
  <step n="{HALT_STEP}">STOP and WAIT for user input - do NOT execute menu items automatically - accept number or cmd trigger or fuzzy command match</step>
13
13
  <step n="{INPUT_STEP}">On user input: Number → process menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user to clarify | No match → show "Not recognized"</step>
14
14
  <step n="{EXECUTE_STEP}">When processing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item (workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
@@ -835,6 +835,7 @@ class Manifest {
835
835
  */
836
836
  async getModuleVersionInfo(moduleName, bmadDir, moduleSourcePath = null) {
837
837
  const os = require('node:os');
838
+ const yaml = require('yaml');
838
839
 
839
840
  // Built-in modules use BMad version (only core and bmm are in BMAD-METHOD repo)
840
841
  if (['core', 'bmm'].includes(moduleName)) {