guardvibe 2.4.3 → 2.4.4

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/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to GuardVibe are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.4.4] - 2026-04-04
9
+
10
+ ### Added
11
+ - Code coverage reporting with c8 (`npm run test:coverage`)
12
+ - Codecov integration in CI pipeline with coverage badge
13
+ - 89% line coverage across codebase
14
+
8
15
  ## [2.4.3] - 2026-04-04
9
16
 
10
17
  ### Added
package/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  [![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
5
5
  [![Node.js CI](https://github.com/goklab/guardvibe/actions/workflows/ci.yml/badge.svg)](https://github.com/goklab/guardvibe/actions/workflows/ci.yml)
6
6
  [![npm provenance](https://img.shields.io/badge/provenance-verified-brightgreen)](https://www.npmjs.com/package/guardvibe)
7
+ [![codecov](https://codecov.io/gh/goklab/guardvibe/graph/badge.svg)](https://codecov.io/gh/goklab/guardvibe)
7
8
 
8
9
  **The security MCP built for vibe coding.** 313 security rules covering the entire AI-generated code journey — from first line to production deployment.
9
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "guardvibe",
3
- "version": "2.4.3",
3
+ "version": "2.4.4",
4
4
  "description": "Security MCP for vibe coding. 313 rules, 25 tools for Next.js, Supabase, Clerk, Stripe, Prisma, tRPC, Hono, GraphQL, Convex, Turso, Uploadthing, AI SDK, and the full AI-generated stack.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -32,7 +32,8 @@
32
32
  "start": "node build/index.js",
33
33
  "prepare": "npm run build",
34
34
  "lint": "eslint src/",
35
- "test": "node --import tsx --test tests/**/*.test.ts"
35
+ "test": "node --import tsx --test tests/**/*.test.ts",
36
+ "test:coverage": "c8 --reporter=lcov --reporter=text node --import tsx --test tests/**/*.test.ts"
36
37
  },
37
38
  "keywords": [
38
39
  "mcp",
@@ -108,6 +109,7 @@
108
109
  },
109
110
  "devDependencies": {
110
111
  "@types/node": "^22.0.0",
112
+ "c8": "^11.0.0",
111
113
  "eslint": "^10.2.0",
112
114
  "tsx": "^4.21.0",
113
115
  "typescript": "^5.7.0",