bmad-method 4.23.0 → 4.24.0

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.
Files changed (36) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +1 -1
  3. package/bmad-core/agents/bmad-master.md +14 -1
  4. package/bmad-core/agents/bmad-orchestrator.md +14 -0
  5. package/bmad-core/core-config.yml +5 -0
  6. package/bmad-core/tasks/create-brownfield-story.md +355 -0
  7. package/bmad-core/tasks/create-next-story.md +25 -0
  8. package/bmad-core/tasks/create-workflow-plan.md +289 -0
  9. package/bmad-core/tasks/update-workflow-plan.md +248 -0
  10. package/bmad-core/templates/brownfield-prd-tmpl.md +52 -28
  11. package/bmad-core/utils/plan-management.md +223 -0
  12. package/bmad-core/workflows/brownfield-fullstack.yml +240 -55
  13. package/bmad-core/workflows/brownfield-service.yml +110 -36
  14. package/bmad-core/workflows/brownfield-ui.yml +110 -36
  15. package/bmad-core/workflows/greenfield-fullstack.yml +110 -36
  16. package/bmad-core/workflows/greenfield-service.yml +110 -36
  17. package/bmad-core/workflows/greenfield-ui.yml +110 -36
  18. package/common/tasks/create-doc.md +21 -1
  19. package/dist/agents/analyst.txt +23 -1
  20. package/dist/agents/architect.txt +21 -1
  21. package/dist/agents/bmad-master.txt +883 -30
  22. package/dist/agents/bmad-orchestrator.txt +806 -1
  23. package/dist/agents/pm.txt +73 -29
  24. package/dist/agents/sm.txt +25 -0
  25. package/dist/agents/ux-expert.txt +21 -1
  26. package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +21 -1
  27. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +804 -1
  28. package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +21 -1
  29. package/dist/teams/team-all.txt +1675 -266
  30. package/dist/teams/team-fullstack.txt +1650 -266
  31. package/dist/teams/team-ide-minimal.txt +831 -1
  32. package/dist/teams/team-no-ui.txt +1079 -102
  33. package/package.json +1 -1
  34. package/tools/installer/lib/installer.js +2 -12
  35. package/tools/installer/package.json +1 -1
  36. package/tools/lib/dependency-resolver.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.23.0",
3
+ "version": "4.24.0",
4
4
  "description": "Breakthrough Method of Agile AI-driven Development",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -757,12 +757,7 @@ class Installer {
757
757
  const ides = manifest.ides_setup || [];
758
758
  if (ides.includes('cursor')) {
759
759
  console.log(chalk.yellow.bold("\n⚠️ IMPORTANT: Cursor Custom Modes Update Required"));
760
- console.log(chalk.yellow("Since agent files have been repaired, you need to manually update your Cursor custom modes:"));
761
- console.log(chalk.yellow("1. Open Cursor Settings (Cmd/Ctrl + ,)"));
762
- console.log(chalk.yellow("2. Go to: Features > Cursor Tab > Custom Modes"));
763
- console.log(chalk.yellow("3. Update each custom mode with the latest agent templates from:"));
764
- console.log(chalk.yellow(` ${path.join(installDir, '.bmad-core', 'agents')}`));
765
- console.log(chalk.yellow("4. Copy the full content of each agent file into the corresponding custom mode"));
760
+ console.log(chalk.yellow("Since agent files have been repaired, you need to update any custom agent modes configured in the Cursor custom agent GUI per the Cursor docs."));
766
761
  }
767
762
 
768
763
  } catch (error) {
@@ -861,12 +856,7 @@ class Installer {
861
856
  // Warning for Cursor custom modes if agents were updated
862
857
  if (options.isUpdate && ides.includes('cursor')) {
863
858
  console.log(chalk.yellow.bold("\n⚠️ IMPORTANT: Cursor Custom Modes Update Required"));
864
- console.log(chalk.yellow("Since agents have been updated, you need to manually update your Cursor custom modes:"));
865
- console.log(chalk.yellow("1. Open Cursor Settings (Cmd/Ctrl + ,)"));
866
- console.log(chalk.yellow("2. Go to: Features > Cursor Tab > Custom Modes"));
867
- console.log(chalk.yellow("3. Update each custom mode with the latest agent templates from:"));
868
- console.log(chalk.yellow(` ${path.join(installDir, '.bmad-core', 'agents')}`));
869
- console.log(chalk.yellow("4. Copy the full content of each agent file into the corresponding custom mode"));
859
+ console.log(chalk.yellow("Since agents have been updated, you need to update any custom agent modes configured in the Cursor custom agent GUI per the Cursor docs."));
870
860
  }
871
861
  }
872
862
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.23.0",
3
+ "version": "4.24.0",
4
4
  "description": "BMAD Method installer - AI-powered Agile development framework",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {
@@ -15,7 +15,7 @@ class DependencyResolver {
15
15
  const agentContent = await fs.readFile(agentPath, 'utf8');
16
16
 
17
17
  // Extract YAML from markdown content
18
- const yamlMatch = agentContent.match(/```ya?ml\n([\s\S]*?)\n```/);
18
+ const yamlMatch = agentContent.replace(/\r/g, "").match(/```ya?ml\n([\s\S]*?)\n```/);
19
19
  if (!yamlMatch) {
20
20
  throw new Error(`No YAML configuration found in agent ${agentId}`);
21
21
  }
@@ -191,4 +191,4 @@ class DependencyResolver {
191
191
  }
192
192
  }
193
193
 
194
- module.exports = DependencyResolver;
194
+ module.exports = DependencyResolver;