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.
package/dist/assets/CHANGELOG.md
CHANGED
|
@@ -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
|
|
41466
|
-
const
|
|
41467
|
-
|
|
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