@yemi33/minions 0.1.617 → 0.1.618

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.618 (2026-04-08)
4
+
5
+ ### Fixes
6
+ - also check for claude.exe in Windows tasklist before killing
7
+
3
8
  ## 0.1.617 (2026-04-08)
4
9
 
5
10
  ### Fixes
package/engine/cleanup.js CHANGED
@@ -72,7 +72,8 @@ function _killProcessInWorktree(dir, activeProcesses, activeIds) {
72
72
  try {
73
73
  if (process.platform === 'win32') {
74
74
  const taskInfo = exec(`tasklist /FI "PID eq ${pid}" /NH`, { encoding: 'utf8', timeout: 3000, windowsHide: true });
75
- if (!taskInfo.toLowerCase().includes('node')) continue; // not a node process — skip
75
+ const taskLower = taskInfo.toLowerCase();
76
+ if (!taskLower.includes('node') && !taskLower.includes('claude')) continue;
76
77
  exec(`taskkill /F /PID ${pid}`, { stdio: 'pipe', timeout: 5000, windowsHide: true });
77
78
  } else {
78
79
  // Verify it's a node process before killing (prevent recycled PID kill)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.617",
3
+ "version": "0.1.618",
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"