bmad-method 6.3.1-next.7 → 6.3.1-next.9

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-method",
4
- "version": "6.3.1-next.7",
4
+ "version": "6.3.1-next.9",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -193,11 +193,13 @@ class ManifestGenerator {
193
193
  }
194
194
  }
195
195
 
196
- // Recurse into subdirectories
197
- for (const entry of entries) {
198
- if (!entry.isDirectory()) continue;
199
- if (entry.name.startsWith('.') || entry.name.startsWith('_')) continue;
200
- await walk(path.join(dir, entry.name));
196
+ // Recurse into subdirectories — but not inside a discovered skill
197
+ if (!skillMeta) {
198
+ for (const entry of entries) {
199
+ if (!entry.isDirectory()) continue;
200
+ if (entry.name.startsWith('.') || entry.name.startsWith('_')) continue;
201
+ await walk(path.join(dir, entry.name));
202
+ }
201
203
  }
202
204
  };
203
205
 
@@ -82,7 +82,9 @@ module.exports = {
82
82
  stat: fsp.stat,
83
83
  readdir: fsp.readdir,
84
84
  access: fsp.access,
85
+ realpath: fsp.realpath,
85
86
  rename: fsp.rename,
87
+ rmdir: fsp.rmdir,
86
88
  unlink: fsp.unlink,
87
89
  chmod: fsp.chmod,
88
90
  mkdir: fsp.mkdir,
@@ -103,6 +105,9 @@ module.exports = {
103
105
  existsSync: fs.existsSync.bind(fs),
104
106
  readFileSync: fs.readFileSync.bind(fs),
105
107
  writeFileSync: fs.writeFileSync.bind(fs),
108
+ statSync: fs.statSync.bind(fs),
109
+ accessSync: fs.accessSync.bind(fs),
110
+ readdirSync: fs.readdirSync.bind(fs),
106
111
  createReadStream: fs.createReadStream.bind(fs),
107
112
  pathExistsSync: fs.existsSync.bind(fs),
108
113