@yemi33/minions 0.1.664 → 0.1.666

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.664 (2026-04-09)
3
+ ## 0.1.666 (2026-04-09)
4
4
 
5
5
  ### Fixes
6
+ - write status marker to live output during steering resume gap
6
7
  - PRD list/graph toggle uses rerenderPrdFromCache instead of refresh
7
8
  - include agent and failReason in PRD progress items mapping
8
9
  - skip unused config read in fast poll, fix timer cleanup variable name
package/engine.js CHANGED
@@ -646,6 +646,8 @@ async function spawnAgent(dispatchItem, config) {
646
646
  }
647
647
 
648
648
  log('info', `Steering: re-spawning ${agentId} with --resume ${steerSessionId}`);
649
+ // Write status to live output so the UI shows the agent is resuming (not stuck)
650
+ try { fs.appendFileSync(liveOutputPath, `\n[steering] Resuming session with your message... (this may take 10-30s)\n`); } catch {}
649
651
 
650
652
  // Write new prompt with steering message
651
653
  const steerPrompt = `Message from your human teammate:\n\n${steerMsg}\n\nRespond to this, then continue working on your current task.`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.664",
3
+ "version": "0.1.666",
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"