@yemi33/minions 0.1.660 → 0.1.662

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.660 (2026-04-09)
3
+ ## 0.1.662 (2026-04-09)
4
4
 
5
5
  ### Fixes
6
+ - skip unused config read in fast poll, fix timer cleanup variable name
6
7
  - retry button broken for project-level work items, add _source field
7
8
  - use PowerShell instead of wmic for process kill on Windows 11
8
9
  - bust require cache for package.json in engine start
package/engine/cli.js CHANGED
@@ -363,7 +363,7 @@ const commands = {
363
363
  // and wakeup signals every 3s (control.json read)
364
364
  const { checkSteering } = require('./timeout');
365
365
  const fastPollTimer = setInterval(() => {
366
- try { checkSteering(getConfig()); } catch {}
366
+ try { checkSteering(); } catch {}
367
367
  const ctrl = getControl();
368
368
  if (ctrl._wakeupAt && Date.now() - ctrl._wakeupAt < 5000) {
369
369
  delete ctrl._wakeupAt;
@@ -421,7 +421,7 @@ const commands = {
421
421
  shuttingDown = true;
422
422
  console.log(`\n${signal} received — initiating graceful shutdown...`);
423
423
  clearInterval(tickTimer);
424
- clearInterval(wakeupTimer);
424
+ clearInterval(fastPollTimer);
425
425
  for (const f of _watchedFiles) { try { fs.unwatchFile(f); } catch { /* cleanup */ } }
426
426
  safeWrite(CONTROL_PATH, { state: 'stopping', pid: process.pid, stopping_at: e.ts() });
427
427
  e.log('info', `Graceful shutdown initiated (${signal})`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.660",
3
+ "version": "0.1.662",
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"