kvalita 1.15.0 → 1.16.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/README.md +2 -0
- package/configs/biome.json +0 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -82,10 +82,12 @@ This package includes agent skills for code formatting and test writing conventi
|
|
|
82
82
|
**Available skills:**
|
|
83
83
|
- `formatting` - Code formatting rules not handled by auto-formatters (arrow functions, exports, types, naming, comments, JSX)
|
|
84
84
|
- `testing` - Best practices, structure, coverage categories, and formatting conventions for writing tests
|
|
85
|
+
- `pr-create` - Author, open, and watch a PR through CI and the Codecov coverage report
|
|
85
86
|
|
|
86
87
|
To make them available globally in [Claude Code](https://docs.anthropic.com/en/docs/claude-code), symlink the skills directory:
|
|
87
88
|
|
|
88
89
|
```bash
|
|
89
90
|
ln -s /path/to/kvalita/skills/formatting ~/.claude/skills/formatting
|
|
90
91
|
ln -s /path/to/kvalita/skills/testing ~/.claude/skills/testing
|
|
92
|
+
ln -s /path/to/kvalita/skills/pr-create ~/.claude/skills/pr-create
|
|
91
93
|
```
|
package/configs/biome.json
CHANGED
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"conventional-changelog-conventionalcommits": "^9.0.0",
|
|
31
31
|
"lefthook": "^2.0.0",
|
|
32
32
|
"semantic-release": "^25.0.0",
|
|
33
|
-
"typescript": "^6.0.0"
|
|
33
|
+
"typescript": "^6.0.0 || ^7.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@biomejs/biome": "^2.5.0",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"semantic-release": "^25.0.5",
|
|
42
42
|
"typescript": "^6.0.3"
|
|
43
43
|
},
|
|
44
|
-
"version": "1.
|
|
44
|
+
"version": "1.16.0"
|
|
45
45
|
}
|