claude-issue-solver 1.44.1 → 1.44.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.
@@ -83,9 +83,10 @@ function generateTerminalOpenScript(script) {
83
83
  const escapedDir = scriptDir.replace(/"/g, '\\"');
84
84
  // cd to the script's directory first, so session path matches worktree
85
85
  const bashCommand = `cd \\"${escapedDir}\\" && /bin/bash \\"${escapedScript}\\"`;
86
+ // Create a new window and run the command in it
86
87
  return `tell application "Terminal"
87
- activate
88
88
  do script "${bashCommand}"
89
+ activate
89
90
  end tell`;
90
91
  }
91
92
  function openInNewTerminal(script) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-issue-solver",
3
- "version": "1.44.1",
3
+ "version": "1.44.2",
4
4
  "description": "Automatically solve GitHub issues using Claude Code",
5
5
  "main": "dist/index.js",
6
6
  "bin": {