claude-issue-solver 1.12.0 → 1.13.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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -100,6 +100,9 @@ Run from any git repository with GitHub issues:
100
100
  # Interactive: show issues and select one
101
101
  claude-issue
102
102
 
103
+ # Or use the short alias
104
+ cis
105
+
103
106
  # Solve a specific issue directly
104
107
  claude-issue 42
105
108
 
@@ -133,7 +136,7 @@ claude-issue --help
133
136
 
134
137
  | Command | Alias | Description |
135
138
  |---------|-------|-------------|
136
- | `claude-issue` | - | Interactive issue selection |
139
+ | `claude-issue` | `cis` | Interactive issue selection |
137
140
  | `claude-issue <number>` | - | Solve specific issue |
138
141
  | `claude-issue new <title>` | - | Create issue and solve it |
139
142
  | `claude-issue list` | `ls` | List open issues |
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "claude-issue-solver",
3
- "version": "1.12.0",
3
+ "version": "1.13.0",
4
4
  "description": "Automatically solve GitHub issues using Claude Code",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
- "claude-issue": "dist/index.js"
7
+ "claude-issue": "dist/index.js",
8
+ "cis": "dist/index.js"
8
9
  },
9
10
  "scripts": {
10
11
  "build": "tsc",