vibecheck-ai 1.2.2 → 1.2.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/README.md +23 -21
- package/dist/index.js +10043 -2079
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ npx vibecheck-ai
|
|
|
102
102
|
|
|
103
103
|
# Initialize in your project
|
|
104
104
|
cd your-project
|
|
105
|
-
vibecheck
|
|
105
|
+
vibecheck link
|
|
106
106
|
|
|
107
107
|
# Run pre-ship checks
|
|
108
108
|
vibecheck ship
|
|
@@ -158,7 +158,7 @@ VibeCheck extracts verified facts about your codebase:
|
|
|
158
158
|
|
|
159
159
|
```bash
|
|
160
160
|
vibecheck scan # Generate truthpack
|
|
161
|
-
vibecheck validate file.ts # Validate
|
|
161
|
+
vibecheck audit --mode validate file.ts # Validate files vs truthpack
|
|
162
162
|
```
|
|
163
163
|
|
|
164
164
|
**What gets extracted:**
|
|
@@ -202,24 +202,26 @@ vibecheck report --json # Machine-readable output
|
|
|
202
202
|
|
|
203
203
|
## All Commands
|
|
204
204
|
|
|
205
|
-
| Command | Description |
|
|
206
|
-
|
|
207
|
-
| `vibecheck
|
|
208
|
-
| `vibecheck
|
|
209
|
-
| `vibecheck
|
|
210
|
-
| `vibecheck ship` | **Pre-deployment security checks** |
|
|
211
|
-
| `vibecheck
|
|
212
|
-
| `vibecheck
|
|
213
|
-
| `vibecheck
|
|
214
|
-
| `vibecheck
|
|
215
|
-
| `vibecheck
|
|
216
|
-
| `vibecheck
|
|
217
|
-
| `vibecheck
|
|
218
|
-
| `vibecheck
|
|
219
|
-
| `vibecheck
|
|
220
|
-
| `vibecheck
|
|
221
|
-
| `vibecheck
|
|
222
|
-
| `vibecheck
|
|
205
|
+
| Command | Aliases | Description |
|
|
206
|
+
|---------|---------|-------------|
|
|
207
|
+
| `vibecheck link` | init, setup, configure | **Link project** — Initialize VibeCheck and create config |
|
|
208
|
+
| `vibecheck audit` | check, validate | **Full audit** — Validate files vs truthpack + hallucination/drift detection |
|
|
209
|
+
| `vibecheck scan` | — | Scan codebase and generate truthpack (.vibecheck/truthpack) |
|
|
210
|
+
| `vibecheck ship` | — | **Pre-deployment security checks** |
|
|
211
|
+
| `vibecheck quickstart` | start | Interactive setup wizard for new users |
|
|
212
|
+
| `vibecheck certify` | verify | Full certification: Reality + Chaos → Badge |
|
|
213
|
+
| `vibecheck status` | — | Show active modules and last run info |
|
|
214
|
+
| `vibecheck reality run` | — | Run Reality Mode with proof generation |
|
|
215
|
+
| `vibecheck missions` | — | View fix missions grouped by category |
|
|
216
|
+
| `vibecheck fix` | — | Apply auto-fixes for detected issues |
|
|
217
|
+
| `vibecheck forge` | — | Generate AI context rules for Cursor/Windsurf |
|
|
218
|
+
| `vibecheck trace` | — | Trace data flow from sources to sinks |
|
|
219
|
+
| `vibecheck github` | — | Set up GitHub Action for CI gate |
|
|
220
|
+
| `vibecheck report` | — | Generate enterprise-grade reports |
|
|
221
|
+
| `vibecheck badge` | — | Generate Ship Score badges for README |
|
|
222
|
+
| `vibecheck config` | — | View or edit configuration |
|
|
223
|
+
| `vibecheck doctor` | — | Validate system dependencies |
|
|
224
|
+
| `vibecheck menu` | — | Open interactive menu |
|
|
223
225
|
|
|
224
226
|
---
|
|
225
227
|
|
|
@@ -316,7 +318,7 @@ jobs:
|
|
|
316
318
|
{
|
|
317
319
|
"husky": {
|
|
318
320
|
"hooks": {
|
|
319
|
-
"pre-commit": "vibecheck
|
|
321
|
+
"pre-commit": "vibecheck audit"
|
|
320
322
|
}
|
|
321
323
|
}
|
|
322
324
|
}
|