claude-issue-solver 1.17.0 → 1.18.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/pr.js +2 -1
- package/dist/commands/solve.js +10 -9
- package/dist/utils/git.d.ts +1 -0
- package/dist/utils/git.js +26 -2
- package/package.json +1 -1
package/dist/commands/pr.js
CHANGED
|
@@ -105,7 +105,8 @@ ${commitList}
|
|
|
105
105
|
---
|
|
106
106
|
|
|
107
107
|
🤖 Generated with [Claude Code](https://claude.com/claude-code)`;
|
|
108
|
-
const
|
|
108
|
+
const baseBranch = (0, git_1.getDefaultBranch)();
|
|
109
|
+
const prUrl = (0, child_process_1.execSync)(`gh pr create --title "Fix #${issueNumber}: ${issue.title.replace(/"/g, '\\"')}" --body "${prBody.replace(/"/g, '\\"')}" --head "${branchName}" --base ${baseBranch}`, { cwd: worktreePath, encoding: 'utf-8', stdio: ['pipe', 'pipe', 'pipe'] }).trim();
|
|
109
110
|
pushSpinner.succeed('PR created!');
|
|
110
111
|
console.log();
|
|
111
112
|
console.log(chalk_1.default.green(`✅ PR created: ${prUrl}`));
|
package/dist/commands/solve.js
CHANGED
|
@@ -59,17 +59,18 @@ async function solveCommand(issueNumber) {
|
|
|
59
59
|
console.log();
|
|
60
60
|
const projectRoot = (0, git_1.getProjectRoot)();
|
|
61
61
|
const projectName = (0, git_1.getProjectName)();
|
|
62
|
+
const baseBranch = (0, git_1.getDefaultBranch)();
|
|
62
63
|
const branchSlug = (0, helpers_1.slugify)(issue.title);
|
|
63
64
|
const branchName = `issue-${issueNumber}-${branchSlug}`;
|
|
64
65
|
const worktreePath = path.join(path.dirname(projectRoot), `${projectName}-${branchName}`);
|
|
65
|
-
// Fetch latest
|
|
66
|
-
const fetchSpinner = (0, ora_1.default)(
|
|
66
|
+
// Fetch latest base branch
|
|
67
|
+
const fetchSpinner = (0, ora_1.default)(`Fetching latest ${baseBranch}...`).start();
|
|
67
68
|
try {
|
|
68
|
-
(0, child_process_1.execSync)(
|
|
69
|
-
fetchSpinner.succeed(
|
|
69
|
+
(0, child_process_1.execSync)(`git fetch origin ${baseBranch} --quiet`, { cwd: projectRoot, stdio: 'pipe' });
|
|
70
|
+
fetchSpinner.succeed(`Fetched latest ${baseBranch}`);
|
|
70
71
|
}
|
|
71
72
|
catch {
|
|
72
|
-
fetchSpinner.warn(
|
|
73
|
+
fetchSpinner.warn(`Could not fetch origin/${baseBranch}`);
|
|
73
74
|
}
|
|
74
75
|
// Check if worktree already exists
|
|
75
76
|
if (fs.existsSync(worktreePath)) {
|
|
@@ -86,7 +87,7 @@ async function solveCommand(issueNumber) {
|
|
|
86
87
|
});
|
|
87
88
|
}
|
|
88
89
|
else {
|
|
89
|
-
(0, child_process_1.execSync)(`git worktree add "${worktreePath}" -b "${branchName}" origin
|
|
90
|
+
(0, child_process_1.execSync)(`git worktree add "${worktreePath}" -b "${branchName}" origin/${baseBranch}`, {
|
|
90
91
|
cwd: projectRoot,
|
|
91
92
|
stdio: 'pipe',
|
|
92
93
|
});
|
|
@@ -139,7 +140,7 @@ echo ""
|
|
|
139
140
|
|
|
140
141
|
# Function to create PR
|
|
141
142
|
create_pr() {
|
|
142
|
-
COMMITS=$(git log origin
|
|
143
|
+
COMMITS=$(git log origin/${baseBranch}..HEAD --oneline 2>/dev/null | wc -l | tr -d ' ')
|
|
143
144
|
|
|
144
145
|
if [ "$COMMITS" -gt 0 ]; then
|
|
145
146
|
# Check if PR already exists
|
|
@@ -151,7 +152,7 @@ create_pr() {
|
|
|
151
152
|
|
|
152
153
|
git push -u origin "${branchName}" 2>/dev/null
|
|
153
154
|
|
|
154
|
-
COMMIT_LIST=$(git log origin
|
|
155
|
+
COMMIT_LIST=$(git log origin/${baseBranch}..HEAD --pretty=format:'- %s' | head -10)
|
|
155
156
|
|
|
156
157
|
PR_URL=$(gh pr create \\
|
|
157
158
|
--title "Fix #${issueNumber}: ${issue.title.replace(/"/g, '\\"')}" \\
|
|
@@ -167,7 +168,7 @@ $COMMIT_LIST
|
|
|
167
168
|
|
|
168
169
|
🤖 Generated with [Claude Code](https://claude.com/claude-code)" \\
|
|
169
170
|
--head "${branchName}" \\
|
|
170
|
-
--base
|
|
171
|
+
--base ${baseBranch} 2>/dev/null)
|
|
171
172
|
|
|
172
173
|
if [ -n "$PR_URL" ]; then
|
|
173
174
|
echo ""
|
package/dist/utils/git.d.ts
CHANGED
|
@@ -4,5 +4,6 @@ export declare function getProjectRoot(): string;
|
|
|
4
4
|
export declare function getProjectName(): string;
|
|
5
5
|
export declare function isGitRepo(): boolean;
|
|
6
6
|
export declare function branchExists(branchName: string): boolean;
|
|
7
|
+
export declare function getDefaultBranch(): string;
|
|
7
8
|
export declare function getCommitCount(worktreePath: string): number;
|
|
8
9
|
export declare function getCommitList(worktreePath: string, limit?: number): string;
|
package/dist/utils/git.js
CHANGED
|
@@ -6,6 +6,7 @@ exports.getProjectRoot = getProjectRoot;
|
|
|
6
6
|
exports.getProjectName = getProjectName;
|
|
7
7
|
exports.isGitRepo = isGitRepo;
|
|
8
8
|
exports.branchExists = branchExists;
|
|
9
|
+
exports.getDefaultBranch = getDefaultBranch;
|
|
9
10
|
exports.getCommitCount = getCommitCount;
|
|
10
11
|
exports.getCommitList = getCommitList;
|
|
11
12
|
const child_process_1 = require("child_process");
|
|
@@ -69,9 +70,31 @@ function branchExists(branchName) {
|
|
|
69
70
|
return false;
|
|
70
71
|
}
|
|
71
72
|
}
|
|
73
|
+
function getDefaultBranch() {
|
|
74
|
+
// Try to get from remote HEAD
|
|
75
|
+
try {
|
|
76
|
+
const output = exec('git symbolic-ref refs/remotes/origin/HEAD');
|
|
77
|
+
if (output) {
|
|
78
|
+
// Output is like "refs/remotes/origin/main" or "refs/remotes/origin/develop"
|
|
79
|
+
const match = output.match(/refs\/remotes\/origin\/(.+)/);
|
|
80
|
+
if (match) {
|
|
81
|
+
return match[1];
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
catch {
|
|
86
|
+
// Ignore
|
|
87
|
+
}
|
|
88
|
+
// Fallback: check if develop exists, otherwise main
|
|
89
|
+
if (branchExists('develop') || exec('git ls-remote --heads origin develop')) {
|
|
90
|
+
return 'develop';
|
|
91
|
+
}
|
|
92
|
+
return 'main';
|
|
93
|
+
}
|
|
72
94
|
function getCommitCount(worktreePath) {
|
|
73
95
|
try {
|
|
74
|
-
const
|
|
96
|
+
const baseBranch = getDefaultBranch();
|
|
97
|
+
const output = exec(`git log origin/${baseBranch}..HEAD --oneline`, worktreePath);
|
|
75
98
|
if (!output)
|
|
76
99
|
return 0;
|
|
77
100
|
return output.split('\n').filter(Boolean).length;
|
|
@@ -81,5 +104,6 @@ function getCommitCount(worktreePath) {
|
|
|
81
104
|
}
|
|
82
105
|
}
|
|
83
106
|
function getCommitList(worktreePath, limit = 10) {
|
|
84
|
-
|
|
107
|
+
const baseBranch = getDefaultBranch();
|
|
108
|
+
return exec(`git log origin/${baseBranch}..HEAD --pretty=format:'- %s' | head -${limit}`, worktreePath);
|
|
85
109
|
}
|