@geekbeer/minion 3.42.1 → 3.42.2

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.
@@ -36,6 +36,7 @@ function streamClaude(input, onEvent, ctx = {}) {
36
36
  cwd: config.HOME_DIR,
37
37
  stdio: ['pipe', 'pipe', 'pipe'],
38
38
  timeout: input.timeoutMs || 3600000, // 60 min default
39
+ shell: IS_WINDOWS, // Resolve .cmd shims (e.g. claude.cmd) on Windows
39
40
  env: {
40
41
  ...process.env,
41
42
  HOME: config.HOME_DIR,
@@ -40,6 +40,7 @@ function spawnWithStdin({ binary, args, prompt, homeDir, env = {}, timeoutMs = 3
40
40
  const child = spawn(binary, args, {
41
41
  cwd: homeDir,
42
42
  stdio: ['pipe', 'pipe', 'pipe'],
43
+ shell: IS_WINDOWS, // Resolve .cmd shims (e.g. claude.cmd) on Windows
43
44
  env: {
44
45
  ...process.env,
45
46
  HOME: homeDir,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geekbeer/minion",
3
- "version": "3.42.1",
3
+ "version": "3.42.2",
4
4
  "description": "AI Agent runtime for Minion - manages status and skill deployment on VPS",
5
5
  "main": "linux/server.js",
6
6
  "bin": {