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

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.8",
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