goodvibesonly-cc 0.3.0 → 0.3.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/.claude-plugin/plugin.json +25 -0
- package/README.md +23 -11
- package/package.json +3 -2
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "goodvibesonly",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Security scanner for vibe-coded projects. Automatically scans for hardcoded secrets, SQL injection, XSS, and other vulnerabilities before commits.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "jddoesdev",
|
|
7
|
+
"url": "https://github.com/jddoesdev"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/jddoesdev/goodvibesonly",
|
|
10
|
+
"repository": "https://github.com/jddoesdev/goodvibesonly",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"security",
|
|
14
|
+
"scanner",
|
|
15
|
+
"vibe-coding",
|
|
16
|
+
"secrets",
|
|
17
|
+
"vulnerabilities",
|
|
18
|
+
"sql-injection",
|
|
19
|
+
"xss",
|
|
20
|
+
"claude-code"
|
|
21
|
+
],
|
|
22
|
+
"commands": "./commands",
|
|
23
|
+
"skills": "./skills",
|
|
24
|
+
"hooks": "./hooks/hooks.json"
|
|
25
|
+
}
|
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
```
|
|
2
2
|
╔═════════════════════════════════════════════════════════════════╗
|
|
3
3
|
║ ║
|
|
4
|
-
║
|
|
5
|
-
║
|
|
6
|
-
║
|
|
7
|
-
║
|
|
8
|
-
║
|
|
9
|
-
║
|
|
4
|
+
║ ░██████╗░██╗░░░██╗░█████╗░ ║
|
|
5
|
+
║ ██╔════╝░██║░░░██║██╔══██╗ ║
|
|
6
|
+
║ ██║░░██╗░╚██╗░██╔╝██║░░██║ ║
|
|
7
|
+
║ ██║░░╚██╗░╚████╔╝░██║░░██║ ║
|
|
8
|
+
║ ╚██████╔╝░░╚██╔╝░░╚█████╔╝ ║
|
|
9
|
+
║ ░╚═════╝░░░░╚═╝░░░░╚════╝░ ║
|
|
10
10
|
║ ║
|
|
11
|
-
║ 🛡️ security scanner for vibe coders 🛡️
|
|
11
|
+
║ 🛡️ security scanner for vibe coders 🛡️ ║
|
|
12
12
|
║ ║
|
|
13
13
|
╚═════════════════════════════════════════════════════════════════╝
|
|
14
14
|
```
|
|
@@ -47,22 +47,34 @@ Commit blocked. Fix critical issues or use --no-verify to bypass.
|
|
|
47
47
|
|
|
48
48
|
## Installation
|
|
49
49
|
|
|
50
|
-
### Option 1:
|
|
50
|
+
### Option 1: skills.sh (recommended)
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npx skills add jddoesdev/goodvibesonly
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Or install globally:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npx skills add jddoesdev/goodvibesonly --global
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Option 2: npx
|
|
51
63
|
|
|
52
64
|
```bash
|
|
53
65
|
npx goodvibesonly-cc
|
|
54
66
|
```
|
|
55
67
|
|
|
56
|
-
### Option
|
|
68
|
+
### Option 3: npm global install
|
|
57
69
|
|
|
58
70
|
```bash
|
|
59
71
|
npm install -g goodvibesonly-cc
|
|
60
72
|
```
|
|
61
73
|
|
|
62
|
-
### Option
|
|
74
|
+
### Option 4: Manual
|
|
63
75
|
|
|
64
76
|
```bash
|
|
65
|
-
git clone https://github.com/
|
|
77
|
+
git clone https://github.com/jddoesdev/goodvibesonly.git
|
|
66
78
|
cd goodvibesonly
|
|
67
79
|
node bin/install.js --global
|
|
68
80
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "goodvibesonly-cc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Security scanner for vibe-coded projects - Claude Code extension",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
"url": "https://github.com/jddoesdev/
|
|
24
|
+
"url": "https://github.com/jddoesdev/goodvibesonly.git"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18.0.0"
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"commands/",
|
|
32
32
|
"skills/",
|
|
33
33
|
"hooks/",
|
|
34
|
+
".claude-plugin/",
|
|
34
35
|
"README.md",
|
|
35
36
|
"LICENSE"
|
|
36
37
|
]
|