bmad-method 4.24.1 → 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 +14 -0
- package/bmad-core/core-config.yaml +1 -1
- package/dist/agents/analyst.txt +2731 -0
- package/dist/agents/architect.txt +3923 -0
- package/dist/agents/bmad-master.txt +10026 -0
- package/dist/agents/bmad-orchestrator.txt +2062 -0
- package/dist/agents/dev.txt +298 -0
- package/dist/agents/pm.txt +2249 -0
- package/dist/agents/po.txt +1511 -0
- package/dist/agents/qa.txt +262 -0
- package/dist/agents/sm.txt +726 -0
- package/dist/agents/ux-expert.txt +1101 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +2378 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +1584 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +809 -0
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +7475 -0
- package/dist/expansion-packs/bmad-creator-tools/agents/bmad-the-creator.txt +1960 -0
- package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +2073 -0
- package/dist/teams/team-all.txt +11952 -0
- package/dist/teams/team-fullstack.txt +11115 -0
- package/dist/teams/team-ide-minimal.txt +4365 -0
- package/dist/teams/team-no-ui.txt +9596 -0
- package/docs/agentic-tools/vs-code-copilot-guide.md +53 -0
- package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +1 -1
- package/expansion-packs/bmad-creator-tools/config.yaml +1 -1
- package/expansion-packs/bmad-infrastructure-devops/config.yaml +1 -1
- package/package.json +1 -1
- package/tools/installer/lib/installer.js +2 -2
- package/tools/installer/package.json +1 -1
|
@@ -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
|
@@ -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
|