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 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
  ```
@@ -40,7 +40,6 @@
40
40
  "style": {
41
41
  "noCommonJs": "error",
42
42
  "noDoneCallback": "error",
43
- "noExcessiveClassesPerFile": "error",
44
43
  "noImplicitBoolean": "error",
45
44
  "noInferrableTypes": "error",
46
45
  "noMultiAssign": "error",
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.15.0"
44
+ "version": "1.16.0"
45
45
  }