@devness/coverit 0.1.0 → 0.1.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 +13 -10
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
**Your code, covered. One command.**
|
|
4
4
|
|
|
5
5
|
<!-- badges -->
|
|
6
|
-

|
|
7
|
-

|
|
8
|
-
](https://www.npmjs.com/package/@devness/coverit)
|
|
7
|
+
[](https://opensource.org/licenses/MIT)
|
|
8
|
+
[](https://www.npmjs.com/package/@devness/coverit)
|
|
9
9
|
|
|
10
10
|
## What is coverit?
|
|
11
11
|
|
|
@@ -14,14 +14,17 @@ coverit is an AI-powered test generation and execution platform. It analyzes you
|
|
|
14
14
|
## Quick Start
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
# Install
|
|
18
|
-
|
|
17
|
+
# Install globally
|
|
18
|
+
npm install -g @devness/coverit
|
|
19
19
|
|
|
20
|
-
#
|
|
21
|
-
coverit run
|
|
20
|
+
# Or run with npx (no install)
|
|
21
|
+
npx @devness/coverit run
|
|
22
22
|
|
|
23
|
-
#
|
|
23
|
+
# Scan first (dry run)
|
|
24
24
|
coverit scan
|
|
25
|
+
|
|
26
|
+
# Full pipeline
|
|
27
|
+
coverit run
|
|
25
28
|
```
|
|
26
29
|
|
|
27
30
|
## Features
|
|
@@ -77,8 +80,8 @@ Add coverit as an MCP server in your Claude Code config:
|
|
|
77
80
|
{
|
|
78
81
|
"mcpServers": {
|
|
79
82
|
"coverit": {
|
|
80
|
-
"command": "
|
|
81
|
-
"args": ["coverit", "mcp"]
|
|
83
|
+
"command": "npx",
|
|
84
|
+
"args": ["@devness/coverit", "mcp"]
|
|
82
85
|
}
|
|
83
86
|
}
|
|
84
87
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devness/coverit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "AI-powered test generation and execution platform. Analyze features, generate tests, run them — one command.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -52,15 +52,15 @@
|
|
|
52
52
|
"ai",
|
|
53
53
|
"cli"
|
|
54
54
|
],
|
|
55
|
-
"author": "
|
|
55
|
+
"author": "Devness",
|
|
56
56
|
"license": "MIT",
|
|
57
57
|
"homepage": "https://coverit.dev",
|
|
58
58
|
"bugs": {
|
|
59
|
-
"url": "https://github.com/
|
|
59
|
+
"url": "https://github.com/devness-community/coverit/issues"
|
|
60
60
|
},
|
|
61
61
|
"repository": {
|
|
62
62
|
"type": "git",
|
|
63
|
-
"url": "https://github.com/
|
|
63
|
+
"url": "https://github.com/devness-community/coverit.git"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
66
|
"node": ">=18.0.0"
|