@yemi33/minions 0.1.1067 → 0.1.1068

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.1067 (2026-04-17)
3
+ ## 0.1.1068 (2026-04-18)
4
4
 
5
5
  ### Features
6
6
  - seed realActivityMap at spawn time, stamp pid in live-output (#1200)
7
7
 
8
8
  ### Fixes
9
+ - resolve native claude.exe from npm wrapper on Windows
9
10
  - cap temp-agent creation at maxConcurrent per tick (#1219)
10
11
  - reassign pending items from unspawned temp agents to idle named agents (#1204) (#1212)
11
12
  - guard undefined agent in pending dispatch loop (closes #1206) (#1210)
@@ -52,6 +52,14 @@ if (!claudeBin) try {
52
52
  const candidate = path.join(path.dirname(whichNative), 'node_modules', '@anthropic-ai', 'claude-code', 'cli.js');
53
53
  if (fs.existsSync(candidate)) { claudeBin = candidate; }
54
54
  }
55
+ // npm wrapper may reference native binary (claude.exe) instead of cli.js
56
+ if (!claudeBin) {
57
+ const exeMatch = content.match(/node_modules[\\/]@anthropic-ai[\\/]claude-code[\\/]bin[\\/]claude(?:\.exe)?/);
58
+ if (exeMatch) {
59
+ const candidate = path.join(path.dirname(whichNative), 'node_modules', '@anthropic-ai', 'claude-code', 'bin', isWin ? 'claude.exe' : 'claude');
60
+ if (fs.existsSync(candidate)) { claudeBin = candidate; claudeIsNative = true; }
61
+ }
62
+ }
55
63
  } catch {
56
64
  // Can't read as text — it's a compiled binary
57
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1067",
3
+ "version": "0.1.1068",
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"