bmad-method 4.29.4 → 4.29.5
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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [4.29.5](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.4...v4.29.5) (2025-07-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* windows regex issue ([9f48c1a](https://github.com/bmadcode/BMAD-METHOD/commit/9f48c1a869a9cc54fb5e7d899c2af7a5cef70e10))
|
|
7
|
+
|
|
1
8
|
## [4.29.4](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.3...v4.29.4) (2025-07-14)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -454,7 +454,7 @@ class IdeSetup {
|
|
|
454
454
|
if (await fileManager.pathExists(agentPath)) {
|
|
455
455
|
try {
|
|
456
456
|
const agentContent = await fileManager.readFile(agentPath);
|
|
457
|
-
const yamlMatch = agentContent.match(/```ya?ml\n([\s\S]*?)```/);
|
|
457
|
+
const yamlMatch = agentContent.match(/```ya?ml\r?\n([\s\S]*?)```/);
|
|
458
458
|
|
|
459
459
|
if (yamlMatch) {
|
|
460
460
|
const yaml = yamlMatch[1];
|
|
@@ -945,7 +945,7 @@ class IdeSetup {
|
|
|
945
945
|
const agentTitle = await this.getAgentTitle(agentId, installDir);
|
|
946
946
|
|
|
947
947
|
// Extract whenToUse for the description
|
|
948
|
-
const yamlMatch = agentContent.match(/```ya?ml\n([\s\S]*?)```/);
|
|
948
|
+
const yamlMatch = agentContent.match(/```ya?ml\r?\n([\s\S]*?)```/);
|
|
949
949
|
let description = `Activates the ${agentTitle} agent persona.`;
|
|
950
950
|
if (yamlMatch) {
|
|
951
951
|
const whenToUseMatch = yamlMatch[1].match(/whenToUse:\s*"(.*?)"/);
|