@yemi33/minions 0.1.319 → 0.1.320

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.320 (2026-04-03)
4
+
5
+ ### Fixes
6
+ - project scan finds git repos — .git was in skipDirs
7
+
3
8
  ## 0.1.319 (2026-04-03)
4
9
 
5
10
  ### Other
package/dashboard.js CHANGED
@@ -2904,8 +2904,9 @@ What would you like to discuss or change? When you're happy, say "approve" and I
2904
2904
  let entries;
2905
2905
  try { entries = fs.readdirSync(dir, { withFileTypes: true }); } catch { return; }
2906
2906
  for (const e of entries) {
2907
- if (!e.isDirectory() || (e.name.startsWith('.') && e.name !== '.git') || skipDirs.has(e.name)) continue;
2907
+ if (!e.isDirectory()) continue;
2908
2908
  if (e.name === '.git') { repos.push(dir); return; }
2909
+ if (e.name.startsWith('.') || skipDirs.has(e.name)) continue;
2909
2910
  walk(path.join(dir, e.name), depth + 1);
2910
2911
  }
2911
2912
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.319",
3
+ "version": "0.1.320",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"