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.
- package/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/bmad-core/agents/bmad-master.md +14 -1
- package/bmad-core/agents/bmad-orchestrator.md +14 -0
- package/bmad-core/core-config.yml +5 -0
- package/bmad-core/tasks/create-brownfield-story.md +355 -0
- package/bmad-core/tasks/create-next-story.md +25 -0
- package/bmad-core/tasks/create-workflow-plan.md +289 -0
- package/bmad-core/tasks/update-workflow-plan.md +248 -0
- package/bmad-core/templates/brownfield-prd-tmpl.md +52 -28
- package/bmad-core/utils/plan-management.md +223 -0
- package/bmad-core/workflows/brownfield-fullstack.yml +240 -55
- package/bmad-core/workflows/brownfield-service.yml +110 -36
- package/bmad-core/workflows/brownfield-ui.yml +110 -36
- package/bmad-core/workflows/greenfield-fullstack.yml +110 -36
- package/bmad-core/workflows/greenfield-service.yml +110 -36
- package/bmad-core/workflows/greenfield-ui.yml +110 -36
- package/common/tasks/create-doc.md +21 -1
- package/dist/agents/analyst.txt +23 -1
- package/dist/agents/architect.txt +21 -1
- package/dist/agents/bmad-master.txt +883 -30
- package/dist/agents/bmad-orchestrator.txt +806 -1
- package/dist/agents/pm.txt +73 -29
- package/dist/agents/sm.txt +25 -0
- package/dist/agents/ux-expert.txt +21 -1
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +21 -1
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +804 -1
- package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +21 -1
- package/dist/teams/team-all.txt +1675 -266
- package/dist/teams/team-fullstack.txt +1650 -266
- package/dist/teams/team-ide-minimal.txt +831 -1
- package/dist/teams/team-no-ui.txt +1079 -102
- package/package.json +1 -1
- package/tools/installer/lib/installer.js +2 -12
- package/tools/installer/package.json +1 -1
- package/tools/lib/dependency-resolver.js +2 -2
package/package.json
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
|
@@ -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;
|