@yemi33/minions 0.1.841 → 0.1.842

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.841 (2026-04-11)
3
+ ## 0.1.842 (2026-04-11)
4
4
 
5
5
  ### Features
6
6
  - optimistic UI updates for all dashboard actions
@@ -8,6 +8,7 @@
8
8
  - stale PRD shows Regenerate PRD + Resume as-is buttons
9
9
 
10
10
  ### Fixes
11
+ - cli.js reads PID files from wrong directory on reattach
11
12
  - revert modal CSS changes from 227779d that broke plan modal layout
12
13
  - restore text selection → doc-chat flow + regression tests
13
14
  - use structured marker for diff-aware PRD update detection
package/engine/cli.js CHANGED
@@ -137,7 +137,8 @@ const commands = {
137
137
  const agentId = item.agent;
138
138
  let agentPid = null;
139
139
 
140
- const pidFile = path.join(ENGINE_DIR, `pid-${item.id}.pid`);
140
+ const safeId = item.id.replace(/[:\\/*?"<>|]/g, '-');
141
+ const pidFile = path.join(ENGINE_DIR, 'tmp', `pid-${safeId}.pid`);
141
142
  try {
142
143
  const pidStr = fs.readFileSync(pidFile, 'utf8').trim();
143
144
  if (pidStr) agentPid = parseInt(pidStr);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.841",
3
+ "version": "0.1.842",
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"