@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 +5 -0
- package/dashboard.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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()
|
|
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.
|
|
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"
|