guardvibe 2.4.3 → 2.4.5

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,18 @@ 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.5] - 2026-04-04
9
+
10
+ ### Added
11
+ - Official MCP Registry support (`mcpName` in package.json, `server.json`)
12
+
13
+ ## [2.4.4] - 2026-04-04
14
+
15
+ ### Added
16
+ - Code coverage reporting with c8 (`npm run test:coverage`)
17
+ - Codecov integration in CI pipeline with coverage badge
18
+ - 89% line coverage across codebase
19
+
8
20
  ## [2.4.3] - 2026-04-04
9
21
 
10
22
  ### 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,7 @@
1
1
  {
2
2
  "name": "guardvibe",
3
- "version": "2.4.3",
3
+ "version": "2.4.5",
4
+ "mcpName": "io.github.goklab/guardvibe",
4
5
  "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
6
  "type": "module",
6
7
  "bin": {
@@ -32,7 +33,8 @@
32
33
  "start": "node build/index.js",
33
34
  "prepare": "npm run build",
34
35
  "lint": "eslint src/",
35
- "test": "node --import tsx --test tests/**/*.test.ts"
36
+ "test": "node --import tsx --test tests/**/*.test.ts",
37
+ "test:coverage": "c8 --reporter=lcov --reporter=text node --import tsx --test tests/**/*.test.ts"
36
38
  },
37
39
  "keywords": [
38
40
  "mcp",
@@ -108,6 +110,7 @@
108
110
  },
109
111
  "devDependencies": {
110
112
  "@types/node": "^22.0.0",
113
+ "c8": "^11.0.0",
111
114
  "eslint": "^10.2.0",
112
115
  "tsx": "^4.21.0",
113
116
  "typescript": "^5.7.0",