maxsimcli 2.5.4 → 2.5.6

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.
@@ -1,3 +1,17 @@
1
+ ## [2.5.6](https://github.com/maystudios/maxsim/compare/v2.5.5...v2.5.6) (2026-02-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **dashboard:** spawn claude via system shell for reliable PATH resolution ([0030283](https://github.com/maystudios/maxsim/commit/0030283ac800d966a02290983455ec591557e55e))
7
+
8
+ ## [2.5.5](https://github.com/maystudios/maxsim/compare/v2.5.4...v2.5.5) (2026-02-25)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **dashboard:** resolve claude executable path on Windows ([18261ea](https://github.com/maystudios/maxsim/commit/18261eafb20dfab82bc4d864d35dcbb550320027))
14
+
1
15
  ## [2.5.4](https://github.com/maystudios/maxsim/compare/v2.5.3...v2.5.4) (2026-02-25)
2
16
 
3
17
 
@@ -41462,9 +41462,10 @@ var PtyManager = class PtyManager {
41462
41462
  ptyLog("INFO", "Killing existing session before spawn");
41463
41463
  this.kill();
41464
41464
  }
41465
- const shell = process.platform === "win32" ? "claude.cmd" : "claude";
41466
- const args = [];
41467
- if (opts.skipPermissions) args.push("--dangerously-skip-permissions");
41465
+ const isWin = process.platform === "win32";
41466
+ const shell = isWin ? "cmd.exe" : "/bin/sh";
41467
+ const claudeCmd = `claude${opts.skipPermissions ? " --dangerously-skip-permissions" : ""}`;
41468
+ const args = isWin ? ["/c", claudeCmd] : ["-c", claudeCmd];
41468
41469
  ptyLog("INFO", `Spawning: shell=${shell}, args=${JSON.stringify(args)}, cwd=${opts.cwd}, cols=${opts.cols ?? 120}, rows=${opts.rows ?? 30}`);
41469
41470
  const proc = pty.spawn(shell, args, {
41470
41471
  name: "xterm-256color",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maxsimcli",
3
- "version": "2.5.4",
3
+ "version": "2.5.6",
4
4
  "private": false,
5
5
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini and Codex by MayStudios.",
6
6
  "bin": {