bmad-method 6.11.1-next.2 → 6.11.1-next.3

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.11.1-next.2",
4
+ "version": "6.11.1-next.3",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -448,9 +448,9 @@ class ConfigDrivenIdeSetup {
448
448
  await fs.ensureDir(skillDir);
449
449
  this.skillWriteTracker?.add(canonicalId);
450
450
 
451
- // Copy all skill files, filtering OS/editor artifacts recursively
452
- const skipPatterns = new Set(['.DS_Store', 'Thumbs.db', 'desktop.ini']);
453
- const skipSuffixes = ['~', '.swp', '.swo', '.bak'];
451
+ // Copy all skill files, filtering OS/editor artifacts and Python caches recursively
452
+ const skipPatterns = new Set(['.DS_Store', 'Thumbs.db', 'desktop.ini', '__pycache__']);
453
+ const skipSuffixes = ['~', '.swp', '.swo', '.bak', '.pyc', '.pyo'];
454
454
  const filter = (src) => {
455
455
  const name = path.basename(src);
456
456
  if (src === sourceDir) return true;