@indicated/vibeguard 1.5.2 → 1.5.3
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 -2
- package/package.json +16 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Local CLI security scanner for AI-generated code. Your code never leaves your ma
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g vibeguard
|
|
8
|
+
npm install -g @indicated/vibeguard
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Quick Start
|
|
@@ -87,7 +87,7 @@ VibeGuard can run as an MCP (Model Context Protocol) server, allowing AI coding
|
|
|
87
87
|
|
|
88
88
|
1. Install VibeGuard globally:
|
|
89
89
|
```bash
|
|
90
|
-
npm install -g vibeguard
|
|
90
|
+
npm install -g @indicated/vibeguard
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
2. Add to your Claude Code MCP settings (`~/.claude/settings.json`):
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indicated/vibeguard",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "Local CLI security scanner for AI-generated code",
|
|
5
5
|
"main": "dist/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -19,10 +19,23 @@
|
|
|
19
19
|
"scanner",
|
|
20
20
|
"cli",
|
|
21
21
|
"vulnerability",
|
|
22
|
-
"code-analysis"
|
|
22
|
+
"code-analysis",
|
|
23
|
+
"ai",
|
|
24
|
+
"mcp",
|
|
25
|
+
"claude",
|
|
26
|
+
"vibe-coding",
|
|
27
|
+
"static-analysis"
|
|
23
28
|
],
|
|
24
|
-
"author": "",
|
|
29
|
+
"author": "Indicated <pupkin.alan@gmail.com>",
|
|
25
30
|
"license": "ISC",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/indicated/vibeguard.git"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/indicated/vibeguard#readme",
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/indicated/vibeguard/issues"
|
|
38
|
+
},
|
|
26
39
|
"type": "commonjs",
|
|
27
40
|
"engines": {
|
|
28
41
|
"node": ">=18.0.0"
|