@yemi33/minions 0.1.862 → 0.1.863

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,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.862 (2026-04-11)
3
+ ## 0.1.863 (2026-04-11)
4
4
 
5
5
  ### Features
6
6
  - optimistic running state on pipeline Run Now click
7
7
 
8
8
  ### Fixes
9
+ - add 3s delay before steering resume to let old process tree exit
9
10
  - set steering state before killImmediate to prevent race
10
11
  - pipeline race condition, delete refresh, abort error logging
11
12
  - _continuePipeline now calls refresh() to update card list
package/engine.js CHANGED
@@ -732,6 +732,10 @@ async function spawnAgent(dispatchItem, config) {
732
732
  // Write status to live output so the UI shows the agent is resuming (not stuck)
733
733
  try { fs.appendFileSync(liveOutputPath, `\n[steering] Resuming session with your message... (this may take 10-30s)\n`); } catch {}
734
734
 
735
+ // Wait for the old process tree to fully exit — on Windows, taskkill /F /T returns
736
+ // before child processes (Claude CLI) actually release their session locks
737
+ await new Promise(resolve => setTimeout(resolve, 3000));
738
+
735
739
  // Write new prompt with steering message
736
740
  const steerPrompt = `Message from your human teammate:\n\n${steerMsg}\n\nRespond to this, then continue working on your current task.`;
737
741
  const steerPromptPath = path.join(ENGINE_DIR, 'tmp', `prompt-steer-${safeId}.md`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.862",
3
+ "version": "0.1.863",
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"