bmad-method 4.44.0 → 4.44.2
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/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/workflows/manual-release.yaml +1 -1
- package/PR-opencode-agents-generator.md +40 -0
- package/README.md +38 -44
- package/bmad-core/agents/analyst.md +1 -1
- package/bmad-core/agents/architect.md +1 -1
- package/bmad-core/agents/bmad-master.md +7 -7
- package/bmad-core/agents/bmad-orchestrator.md +2 -2
- package/bmad-core/agents/dev.md +1 -1
- package/bmad-core/agents/pm.md +1 -1
- package/bmad-core/agents/po.md +1 -1
- package/bmad-core/agents/qa.md +2 -6
- package/bmad-core/agents/sm.md +1 -1
- package/bmad-core/agents/ux-expert.md +1 -1
- package/bmad-core/checklists/po-master-checklist.md +3 -3
- package/bmad-core/data/bmad-kb.md +1 -1
- package/bmad-core/tasks/apply-qa-fixes.md +4 -4
- package/bmad-core/tasks/nfr-assess.md +3 -3
- package/bmad-core/tasks/qa-gate.md +2 -2
- package/bmad-core/tasks/review-story.md +1 -1
- package/bmad-core/templates/brownfield-architecture-tmpl.yaml +6 -6
- package/dist/agents/analyst.txt +3 -11
- package/dist/agents/architect.txt +1 -7
- package/dist/agents/bmad-master.txt +7 -31
- package/dist/agents/bmad-orchestrator.txt +1 -8
- package/dist/agents/dev.txt +5 -10
- package/dist/agents/pm.txt +0 -10
- package/dist/agents/po.txt +4 -10
- package/dist/agents/qa.txt +7 -15
- package/dist/agents/sm.txt +0 -4
- package/dist/agents/ux-expert.txt +0 -4
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +0 -6
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +0 -3
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +0 -3
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +2 -25
- package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-architect.txt +0 -9
- package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-designer.txt +0 -8
- package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-developer.txt +1 -4
- package/dist/expansion-packs/bmad-2d-unity-game-dev/agents/game-sm.txt +0 -4
- package/dist/expansion-packs/bmad-2d-unity-game-dev/teams/unity-2d-game-team.txt +3 -35
- package/dist/expansion-packs/bmad-creative-writing/agents/beta-reader.txt +0 -9
- package/dist/expansion-packs/bmad-creative-writing/agents/character-psychologist.txt +0 -8
- package/dist/expansion-packs/bmad-creative-writing/agents/dialog-specialist.txt +0 -7
- package/dist/expansion-packs/bmad-creative-writing/agents/editor.txt +0 -8
- package/dist/expansion-packs/bmad-creative-writing/agents/genre-specialist.txt +0 -10
- package/dist/expansion-packs/bmad-creative-writing/agents/narrative-designer.txt +0 -8
- package/dist/expansion-packs/bmad-creative-writing/agents/plot-architect.txt +0 -7
- package/dist/expansion-packs/bmad-creative-writing/agents/world-builder.txt +0 -9
- package/dist/expansion-packs/bmad-creative-writing/teams/agent-team.txt +0 -85
- package/dist/expansion-packs/bmad-godot-game-dev/agents/game-developer.txt +2 -2
- package/dist/expansion-packs/bmad-godot-game-dev/agents/game-qa.txt +1 -2
- package/dist/expansion-packs/bmad-godot-game-dev/teams/godot-game-team.txt +5 -6
- package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +0 -5
- package/dist/teams/team-all.txt +34 -69
- package/dist/teams/team-fullstack.txt +23 -46
- package/dist/teams/team-ide-minimal.txt +16 -42
- package/dist/teams/team-no-ui.txt +12 -34
- package/docs/user-guide.md +48 -1
- package/expansion-packs/bmad-godot-game-dev/agents/bmad-orchestrator.md +1 -1
- package/expansion-packs/bmad-godot-game-dev/agents/game-qa.md +1 -2
- package/expansion-packs/bmad-godot-game-dev/tasks/apply-qa-fixes.md +2 -2
- package/package.json +2 -1
- package/tools/installer/bin/bmad.js +46 -1
- package/tools/installer/config/install.config.yaml +18 -7
- package/tools/installer/lib/ide-setup.js +709 -77
- package/tools/installer/lib/installer.js +17 -4
- package/tools/installer/package.json +1 -1
- package/release_notes.md +0 -48
|
@@ -409,10 +409,23 @@ class Installer {
|
|
|
409
409
|
for (const ide of ides) {
|
|
410
410
|
spinner.text = `Setting up ${ide} integration...`;
|
|
411
411
|
let preConfiguredSettings = null;
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
412
|
+
switch (ide) {
|
|
413
|
+
case 'github-copilot': {
|
|
414
|
+
preConfiguredSettings = config.githubCopilotConfig;
|
|
415
|
+
break;
|
|
416
|
+
}
|
|
417
|
+
case 'auggie-cli': {
|
|
418
|
+
preConfiguredSettings = config.augmentCodeConfig;
|
|
419
|
+
break;
|
|
420
|
+
}
|
|
421
|
+
case 'opencode': {
|
|
422
|
+
preConfiguredSettings = config.openCodeConfig;
|
|
423
|
+
break;
|
|
424
|
+
}
|
|
425
|
+
default: {
|
|
426
|
+
// no pre-configured settings
|
|
427
|
+
break;
|
|
428
|
+
}
|
|
416
429
|
}
|
|
417
430
|
await ideSetup.setup(ide, installDir, config.agent, spinner, preConfiguredSettings);
|
|
418
431
|
}
|
package/release_notes.md
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
## 🚀 What's New in v4.44.0
|
|
2
|
-
|
|
3
|
-
### ✨ New Features
|
|
4
|
-
- feat: implement fork-friendly CI/CD with opt-in mechanism (#476)
|
|
5
|
-
- feat(installer): add Codex CLI + Codex Web modes, generate AGENTS.md, inject npm scripts, and docs (#529)
|
|
6
|
-
- feat: add PR validation workflow and contribution checks
|
|
7
|
-
- feat: Add Auggie CLI (Augment Code) Integration (#520)
|
|
8
|
-
- feat: enhance file exclusion capabilities with .bmad-flattenignore support (#531)
|
|
9
|
-
- feat: add iflow cli support to bmad installer. (#510)
|
|
10
|
-
|
|
11
|
-
### 🐛 Bug Fixes
|
|
12
|
-
- fix: update installer version display to show 4.39.0
|
|
13
|
-
- fix: prettier fixes
|
|
14
|
-
- fix: previous merge set wrong default install location
|
|
15
|
-
- fix: documentation and trademark updates
|
|
16
|
-
- fix: remove incorrect else branch causing flatten command regression (#452)
|
|
17
|
-
- fix: correct dependency path format in bmad-master agent (#495)
|
|
18
|
-
- fix: Codex options missing from the IDE selection menu (#535)
|
|
19
|
-
- Fixed: "glob" is not defined (#504)
|
|
20
|
-
- fix: Template file extension in validation next story steps (#523)
|
|
21
|
-
- fix: update .gitignore to correct cursor file entry (#485)
|
|
22
|
-
|
|
23
|
-
### 📦 Other Changes
|
|
24
|
-
- patch: move script to tools folder
|
|
25
|
-
- typo in README.md (#515)
|
|
26
|
-
- Update dev.md (#491)
|
|
27
|
-
- test: trigger PR validation (#533)
|
|
28
|
-
- docs: remove misplaced Codex section from README
|
|
29
|
-
- Expansion pack doc correction
|
|
30
|
-
- added gemini cli custom commands! (#549)
|
|
31
|
-
- Update ide-setup.js - add missing glob require (#514)
|
|
32
|
-
- Godot Game Dev expansion pack for BMAD (#532)
|
|
33
|
-
- documentation updates
|
|
34
|
-
|
|
35
|
-
### 🔧 Maintenance
|
|
36
|
-
- chore: bump to 4.39.1 to fix installer version display
|
|
37
|
-
- chore: update project dependencies and development tooling (#508)
|
|
38
|
-
- chore: bump version to 4.42.0 for release
|
|
39
|
-
- chore: sync version to 4.42.1 after release
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
## 📦 Installation
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
npx bmad-method install
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
**Full Changelog**: https://github.com/bmadcode/BMAD-METHOD/compare/v4.39.0...v4.44.0
|