claude-issue-solver 1.36.0 → 1.37.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.
package/dist/commands/review.js
CHANGED
|
@@ -217,6 +217,9 @@ 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
|
+
|
|
220
223
|
# Set bot token if configured
|
|
221
224
|
${botTokenEnv}
|
|
222
225
|
|
|
@@ -505,6 +508,9 @@ Start by examining the diff and the changed files, then provide your review.`;
|
|
|
505
508
|
const runnerContent = `#!/bin/bash
|
|
506
509
|
cd "${projectRoot}"
|
|
507
510
|
|
|
511
|
+
# Disable Oh My Zsh auto-update prompt to prevent blocking
|
|
512
|
+
export DISABLE_AUTO_UPDATE="true"
|
|
513
|
+
|
|
508
514
|
# Set bot token if configured
|
|
509
515
|
${botTokenEnv}
|
|
510
516
|
|
package/dist/commands/solve.js
CHANGED
|
@@ -128,6 +128,9 @@ 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
|
+
|
|
131
134
|
# Set terminal title
|
|
132
135
|
echo -ne "\\033]0;Issue #${issueNumber}: ${issue.title.replace(/"/g, '\\"').slice(0, 50)}\\007"
|
|
133
136
|
|