bmad-method 4.43.1 → 4.44.1
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/PR-opencode-agents-generator.md +40 -0
- package/bmad-core/agents/analyst.md +1 -1
- package/bmad-core/agents/architect.md +1 -1
- package/bmad-core/agents/bmad-master.md +1 -1
- 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 +1 -1
- package/dist/agents/analyst.txt +1 -1
- package/dist/agents/architect.txt +1 -1
- package/dist/agents/bmad-master.txt +5 -5
- package/dist/agents/bmad-orchestrator.txt +1 -1
- package/dist/agents/dev.txt +4 -4
- package/dist/agents/po.txt +3 -3
- package/dist/agents/qa.txt +7 -11
- 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 -5
- package/dist/expansion-packs/bmad-godot-game-dev/teams/godot-game-team.txt +5 -9
- package/dist/teams/team-all.txt +16 -20
- package/dist/teams/team-fullstack.txt +5 -5
- package/dist/teams/team-ide-minimal.txt +15 -19
- package/dist/teams/team-no-ui.txt +5 -5
- 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/release_notes.md +5 -2
- package/tools/installer/bin/bmad.js +39 -1
- package/tools/installer/config/install.config.yaml +11 -0
- package/tools/installer/lib/ide-setup.js +641 -1
- package/tools/installer/lib/installer.js +17 -4
- package/tools/installer/package.json +1 -1
|
@@ -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
|
}
|