@yemi33/minions 0.1.843 → 0.1.844

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.843 (2026-04-11)
3
+ ## 0.1.844 (2026-04-11)
4
4
 
5
5
  ### Features
6
6
  - optimistic UI updates for all dashboard actions
@@ -22,6 +22,7 @@
22
22
  - diff-aware plan-to-prd triggered by Resume, not auto-dispatch
23
23
 
24
24
  ### Other
25
+ - perf: reduce steering detection latency from 3s to 1s
25
26
  - remove: /api/prd/regenerate endpoint (destructive delete + fresh gen)
26
27
  - refactor: migrate handlePrdRegenerate and handlePlansExecute to queuePlanToPrd
27
28
  - refactor: add PRD_ITEM_STATUS/PRD_MATERIALIZABLE constants, extract queuePlanToPrd
package/engine/cli.js CHANGED
@@ -360,8 +360,8 @@ const commands = {
360
360
  // Start tick loop
361
361
  const tickTimer = setInterval(() => e.tick(), interval);
362
362
 
363
- // Fast poll: check steering every 3s (lightweight — just fs.stat per agent)
364
- // and wakeup signals every 3s (control.json read)
363
+ // Fast poll: check steering every 1s (lightweight — just fs.stat per agent)
364
+ // and wakeup signals every 1s (control.json read)
365
365
  const { checkSteering } = require('./timeout');
366
366
  const fastPollTimer = setInterval(() => {
367
367
  try { checkSteering(); } catch {}
@@ -371,7 +371,7 @@ const commands = {
371
371
  safeWrite(CONTROL_PATH, ctrl);
372
372
  e.tick();
373
373
  }
374
- }, 3000);
374
+ }, 1000);
375
375
 
376
376
  // Teams inbox poll timer — process incoming Teams messages through CC
377
377
  const teams = require('./teams');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.843",
3
+ "version": "0.1.844",
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"