bmad-method 4.35.1 → 4.35.2

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,9 +1,15 @@
1
- ## [4.35.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.0...v4.35.1) (2025-08-06)
1
+ ## [4.35.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.1...v4.35.2) (2025-08-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * npx status check ([f7c2a4f](https://github.com/bmadcode/BMAD-METHOD/commit/f7c2a4fb6c454b17d250b85537129b01ffee6b85))
2
7
 
8
+ ## [4.35.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.35.0...v4.35.1) (2025-08-06)
3
9
 
4
10
  ### Bug Fixes
5
11
 
6
- * npx hanging commands ([2cf322e](https://github.com/bmadcode/BMAD-METHOD/commit/2cf322ee0d9b563a4998c72b2c5eab259594739b))
12
+ - npx hanging commands ([2cf322e](https://github.com/bmadcode/BMAD-METHOD/commit/2cf322ee0d9b563a4998c72b2c5eab259594739b))
7
13
 
8
14
  # [4.35.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.34.0...v4.35.0) (2025-08-04)
9
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.35.1",
3
+ "version": "4.35.2",
4
4
  "description": "Breakthrough Method of Agile AI-driven Development",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -1729,7 +1729,7 @@ class Installer {
1729
1729
  const manifestPath = path.join(bmadDir, "install-manifest.yaml");
1730
1730
 
1731
1731
  if (await fileManager.pathExists(manifestPath)) {
1732
- return bmadDir;
1732
+ return currentDir; // Return parent directory, not .bmad-core itself
1733
1733
  }
1734
1734
 
1735
1735
  currentDir = path.dirname(currentDir);
@@ -1739,7 +1739,7 @@ class Installer {
1739
1739
  if (path.basename(process.cwd()) === ".bmad-core") {
1740
1740
  const manifestPath = path.join(process.cwd(), "install-manifest.yaml");
1741
1741
  if (await fileManager.pathExists(manifestPath)) {
1742
- return process.cwd();
1742
+ return path.dirname(process.cwd()); // Return parent directory
1743
1743
  }
1744
1744
  }
1745
1745
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.35.1",
3
+ "version": "4.35.2",
4
4
  "description": "BMad Method installer - AI-powered Agile development framework",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {