claude-issue-solver 1.37.0 → 1.38.0

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.
@@ -217,9 +217,6 @@ Start by examining the diff and the changed files, then provide your review.`;
217
217
  const runnerContent = `#!/bin/bash
218
218
  cd "${projectRoot}"
219
219
 
220
- # Disable Oh My Zsh auto-update prompt to prevent blocking
221
- export DISABLE_AUTO_UPDATE="true"
222
-
223
220
  # Set bot token if configured
224
221
  ${botTokenEnv}
225
222
 
@@ -271,8 +268,8 @@ fi
271
268
  echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
272
269
  echo ""
273
270
 
274
- # Keep terminal open
275
- exec bash
271
+ # Keep terminal open with minimal shell (skip rc files to avoid prompts)
272
+ exec bash --norc --noprofile
276
273
  `;
277
274
  fs.writeFileSync(runnerScript, runnerContent, { mode: 0o755 });
278
275
  console.log();
@@ -508,9 +505,6 @@ Start by examining the diff and the changed files, then provide your review.`;
508
505
  const runnerContent = `#!/bin/bash
509
506
  cd "${projectRoot}"
510
507
 
511
- # Disable Oh My Zsh auto-update prompt to prevent blocking
512
- export DISABLE_AUTO_UPDATE="true"
513
-
514
508
  # Set bot token if configured
515
509
  ${botTokenEnv}
516
510
 
@@ -562,8 +556,8 @@ fi
562
556
  echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
563
557
  echo ""
564
558
 
565
- # Keep terminal open
566
- exec bash
559
+ # Keep terminal open with minimal shell (skip rc files to avoid prompts)
560
+ exec bash --norc --noprofile
567
561
  `;
568
562
  fs.writeFileSync(runnerScript, runnerContent, { mode: 0o755 });
569
563
  console.log(chalk_1.default.dim(` Starting review for PR #${pr.number}: ${pr.title.slice(0, 50)}...`));
@@ -128,9 +128,6 @@ Instructions:
128
128
  const runnerContent = `#!/bin/bash
129
129
  cd "${worktreePath}"
130
130
 
131
- # Disable Oh My Zsh auto-update prompt to prevent blocking
132
- export DISABLE_AUTO_UPDATE="true"
133
-
134
131
  # Set terminal title
135
132
  echo -ne "\\033]0;Issue #${issueNumber}: ${issue.title.replace(/"/g, '\\"').slice(0, 50)}\\007"
136
133
 
@@ -230,8 +227,8 @@ echo "To clean up after merge: claude-issue clean ${issueNumber}"
230
227
  echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
231
228
  echo ""
232
229
 
233
- # Keep terminal open
234
- exec bash
230
+ # Keep terminal open with minimal shell (skip rc files to avoid prompts)
231
+ exec bash --norc --noprofile
235
232
  `;
236
233
  fs.writeFileSync(runnerScript, runnerContent, { mode: 0o755 });
237
234
  console.log();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-issue-solver",
3
- "version": "1.37.0",
3
+ "version": "1.38.0",
4
4
  "description": "Automatically solve GitHub issues using Claude Code",
5
5
  "main": "dist/index.js",
6
6
  "bin": {