@yemi33/minions 0.1.859 → 0.1.860

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.859 (2026-04-11)
3
+ ## 0.1.860 (2026-04-11)
4
4
 
5
5
  ### Fixes
6
+ - set steering state before killImmediate to prevent race
6
7
  - pipeline race condition, delete refresh, abort error logging
7
8
  - _continuePipeline now calls refresh() to update card list
8
9
  - pipeline modal refresh was silently broken — API returns array not object
package/engine/timeout.js CHANGED
@@ -113,11 +113,12 @@ function checkSteering(config) {
113
113
 
114
114
  log('info', `Steering: killing ${info.agentId} (${id}) for session resume with human message`);
115
115
 
116
- shared.killImmediate(info.proc);
117
-
116
+ // Set steering state BEFORE kill — close event may fire synchronously on some platforms
118
117
  info._steeringMessage = message;
119
118
  info._steeringSessionId = sessionId;
120
119
  info._steeringAt = Date.now();
120
+
121
+ shared.killImmediate(info.proc);
121
122
  }
122
123
  }
123
124
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.859",
3
+ "version": "0.1.860",
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"