@yemi33/minions 0.1.1768 → 0.1.1769

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,14 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.1768 (2026-05-07)
3
+ ## 0.1.1769 (2026-05-07)
4
4
 
5
5
  ### Fixes
6
- - stamp dispatchItem.started_at locally so updateMetrics sees it (#2158)
7
- - stop test fixtures leaking into live engine/log.json (#2154)
6
+ - drop /T from engine taskkill so agents survive restart
8
7
 
9
- ### Other
10
- - test(engine): add unit tests for PR branch/cause resolution helpers (#2160)
11
- - test(dispatch): add unit tests for dedup/lock-key + retry-classification helpers (#2159)
8
+ ## 0.1.1767 (2026-05-07)
9
+
10
+ ### Fixes
11
+ - stop test fixtures leaking into live engine/log.json (#2154)
12
12
 
13
13
  ## 0.1.1765 (2026-05-07)
14
14
 
package/dashboard.js CHANGED
@@ -3083,12 +3083,17 @@ function spawnEngine() {
3083
3083
  return engineProc.pid;
3084
3084
  }
3085
3085
 
3086
+ // Force-kill the engine process WITHOUT /T — agents are spawned as the engine's
3087
+ // children with `detached: true` and must survive an engine restart so the new
3088
+ // engine can re-attach via PID files + live-output.log mtimes (engine.js:1102,
3089
+ // engine/cli.js re-attach). Tree-kill would orphan in-flight work. Mirrors
3090
+ // bin/minions.js:killPidOnly.
3086
3091
  function killEnginePid(pid) {
3087
3092
  const { execFileSync } = require('child_process');
3088
3093
  try {
3089
3094
  const safePid = shared.validatePid(pid);
3090
3095
  if (process.platform === 'win32') {
3091
- execFileSync('taskkill', ['/PID', String(safePid), '/F', '/T'], { stdio: 'pipe', timeout: 5000, windowsHide: true });
3096
+ execFileSync('taskkill', ['/PID', String(safePid), '/F'], { stdio: 'pipe', timeout: 5000, windowsHide: true });
3092
3097
  } else {
3093
3098
  process.kill(safePid, 'SIGKILL');
3094
3099
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-07T15:03:20.055Z"
4
+ "cachedAt": "2026-05-07T15:45:25.869Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1768",
3
+ "version": "0.1.1769",
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"