bmad-method 4.24.2 → 4.24.3

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,3 +1,10 @@
1
+ ## [4.24.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.2...v4.24.3) (2025-07-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update YAML library from 'yaml' to 'js-yaml' in resolveExpansionPackCoreAgents for consistency ([#295](https://github.com/bmadcode/BMAD-METHOD/issues/295)) ([03f30ad](https://github.com/bmadcode/BMAD-METHOD/commit/03f30ad28b282fbb4fa5a6ed6b57d0327218cce0))
7
+
1
8
  ## [4.24.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.24.1...v4.24.2) (2025-07-03)
2
9
 
3
10
 
@@ -0,0 +1,53 @@
1
+ # BMAD Method Guide for Visual Studio Code
2
+
3
+ This guide covers the setup and usage of the BMAD Method in Visual Studio Code. For the complete workflow, see the [BMAD Workflow Guide](../bmad-workflow-guide.md).
4
+
5
+ ## Installation
6
+
7
+ When running `npx bmad-method install`, select **Visual Studio Code** as your IDE. This command will perform the following actions:
8
+
9
+ - Create the `.bmad-core/` directory with all the agent rule files.
10
+
11
+ - Create the `.vscode/` directory and add a `settings.json` file with the basic configuration to enable GitHub Copilot's agent mode.
12
+
13
+ ## Using BMAD Agents in VS Code
14
+
15
+ 1. In the GitHub Copilot Chat window, select **Agent** from the chat mode dropdown list (usually located next to the input field).
16
+
17
+ 2. Once in Agent Mode, type `@` and the agent's name in the chat input to activate it:
18
+
19
+ - `@bmad-master` - Universal task executor
20
+
21
+ - `@sm` - Scrum Master
22
+
23
+ - `@dev` - Full-stack developer
24
+
25
+ - `@architect` - Solution architect
26
+
27
+ - `@pm` - Product manager
28
+
29
+ - `@analyst` - Business analyst
30
+
31
+ - `@qa` - QA specialist
32
+
33
+ - `@po` - Product owner
34
+
35
+ - `@ux-expert` - UX specialist
36
+
37
+ ## VS Code Specific Features
38
+
39
+ - **Dynamic Configuration**: When you first invoke an agent (e.g., `@dev`), VS Code will automatically update `.vscode/settings.json` by adding the configuration for that chat mode.
40
+
41
+ - **Activation**: Use the `@` prefix in the GitHub Copilot Chat for instant switching between agents.
42
+
43
+ - **Collaboration**: Fully compatible with **Live Share**, allowing you, your team, and BMAD agents to work together in real-time.
44
+
45
+ - **Project Context**: Agents have full access to your workspace, including open files and the selected code.
46
+
47
+ ## Tips for VS Code Users
48
+
49
+ - Use the `help` command (e.g., `@dev help`) to see the available commands for each agent.
50
+
51
+ - Use `@workspace` in the Copilot Chat to ask questions about your entire project.
52
+
53
+ - Consider adding `.vscode/` and `.bmad-core/` to your `.gitignore` file in team projects to avoid conflicts with personal settings.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.24.2",
3
+ "version": "4.24.3",
4
4
  "description": "Breakthrough Method of Agile AI-driven Development",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -1210,7 +1210,7 @@ class Installer {
1210
1210
 
1211
1211
  async resolveExpansionPackCoreDependencies(installDir, expansionDotFolder, packId, spinner) {
1212
1212
  const glob = require('glob');
1213
- const yaml = require('yaml');
1213
+ const yaml = require('js-yaml');
1214
1214
  const fs = require('fs').promises;
1215
1215
 
1216
1216
  // Find all agent files in the expansion pack
@@ -1265,7 +1265,7 @@ class Installer {
1265
1265
 
1266
1266
  async resolveExpansionPackCoreAgents(installDir, expansionDotFolder, packId, spinner) {
1267
1267
  const glob = require('glob');
1268
- const yaml = require('yaml');
1268
+ const yaml = require('js-yaml');
1269
1269
  const fs = require('fs').promises;
1270
1270
 
1271
1271
  // Find all team files in the expansion pack
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.24.2",
3
+ "version": "4.24.3",
4
4
  "description": "BMAD Method installer - AI-powered Agile development framework",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {