qkpr 1.0.6 → 1.0.7
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 +32 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,38 @@ pnpm add -g qkpr
|
|
|
24
24
|
yarn global add qkpr
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
## Claude Code Integration
|
|
28
|
+
|
|
29
|
+
qkpr provides a Claude Code skill for better AI assistant integration. To install:
|
|
30
|
+
|
|
31
|
+
### Global Installation (Recommended)
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# From npm (if installed globally)
|
|
35
|
+
cp -r $(npm root -g)/qkpr/skills/qkpr ~/.claude/skills/
|
|
36
|
+
|
|
37
|
+
# From pnpm
|
|
38
|
+
cp -r $(pnpm root -g)/qkpr/skills/qkpr ~/.claude/skills/
|
|
39
|
+
|
|
40
|
+
# Or download directly
|
|
41
|
+
mkdir -p ~/.claude/skills/qkpr
|
|
42
|
+
curl -o ~/.claude/skills/qkpr/SKILL.md \
|
|
43
|
+
https://raw.githubusercontent.com/KazooTTT/qkpr/main/skills/qkpr/SKILL.md
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Project-Specific Installation
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
mkdir -p .claude/skills/qkpr
|
|
50
|
+
curl -o .claude/skills/qkpr/SKILL.md \
|
|
51
|
+
https://raw.githubusercontent.com/KazooTTT/qkpr/main/skills/qkpr/SKILL.md
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Once installed, you can ask Claude Code to:
|
|
55
|
+
- "Create a PR for this branch using qkpr"
|
|
56
|
+
- "Generate a commit message with qkpr"
|
|
57
|
+
- "Suggest a branch name for my changes"
|
|
58
|
+
|
|
27
59
|
## Usage
|
|
28
60
|
|
|
29
61
|
### Interactive Menu
|