claude-issue-solver 1.7.0 → 1.7.1
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/README.md +4 -0
- package/claude-issue-solver-logo.webp +0 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Claude Issue Solver
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="claude-issue-solver-logo.webp" alt="Claude Issue Solver Logo" width="200">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
3
7
|
Automatically solve GitHub issues using [Claude Code](https://claude.ai/code).
|
|
4
8
|
|
|
5
9
|
This CLI tool fetches an issue from your repo, creates a worktree, opens Claude Code in a new terminal to solve it, and creates a PR when done.
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-issue-solver",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "Automatically solve GitHub issues using Claude Code",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"files": [
|
|
43
43
|
"dist",
|
|
44
|
-
"package.json"
|
|
44
|
+
"package.json",
|
|
45
|
+
"claude-issue-solver-logo.webp"
|
|
45
46
|
]
|
|
46
47
|
}
|