@yemi33/minions 0.1.405 → 0.1.406

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,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.405 (2026-04-06)
3
+ ## 0.1.406 (2026-04-06)
4
4
 
5
5
  ### Fixes
6
+ - re-check npm registry every 4 hours via setInterval
6
7
  - PR delete is optimistic — row removed immediately, reverted on failure
7
8
  - PR delete searches all project files, not just the first project
8
9
 
package/dashboard.js CHANGED
@@ -208,8 +208,9 @@ function _compareVersions(a, b) {
208
208
  return 0;
209
209
  }
210
210
 
211
- // Kick off first npm check on startup (non-blocking)
211
+ // Kick off first npm check on startup, then re-check every 4 hours
212
212
  checkNpmVersion().catch(() => {});
213
+ setInterval(() => checkNpmVersion().catch(() => {}), NPM_CHECK_INTERVAL);
213
214
 
214
215
  // Cache disk version + git commit (only changes on deploy/pull, not per-request)
215
216
  let _diskVersionCache = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.405",
3
+ "version": "0.1.406",
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"