bmad-method 4.29.3 → 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,17 @@
|
|
|
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
|
+
|
|
8
|
+
## [4.29.4](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.3...v4.29.4) (2025-07-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* empty .roomodes, support Windows-style newlines in YAML block regex ([#311](https://github.com/bmadcode/BMAD-METHOD/issues/311)) ([551e30b](https://github.com/bmadcode/BMAD-METHOD/commit/551e30b65e1f04386f0bd0193f726828df684d5b))
|
|
14
|
+
|
|
1
15
|
## [4.29.3](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.2...v4.29.3) (2025-07-13)
|
|
2
16
|
|
|
3
17
|
|
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];
|
|
@@ -702,7 +702,7 @@ class IdeSetup {
|
|
|
702
702
|
const agentContent = await fileManager.readFile(agentPath);
|
|
703
703
|
|
|
704
704
|
// Extract YAML content
|
|
705
|
-
const yamlMatch = agentContent.match(/```ya?ml\n([\s\S]*?)```/);
|
|
705
|
+
const yamlMatch = agentContent.match(/```ya?ml\r?\n([\s\S]*?)```/);
|
|
706
706
|
if (yamlMatch) {
|
|
707
707
|
const yaml = yamlMatch[1];
|
|
708
708
|
|
|
@@ -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*"(.*?)"/);
|