vibecheck-ai 1.2.2 → 1.2.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 CHANGED
@@ -102,7 +102,7 @@ npx vibecheck-ai
102
102
 
103
103
  # Initialize in your project
104
104
  cd your-project
105
- vibecheck init
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 against truthpack
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 quickstart` | Interactive setup wizard for new users |
208
- | `vibecheck certify` | Full certification: Reality + Chaos Badge |
209
- | `vibecheck status` | Show active modules and last run info |
210
- | `vibecheck ship` | **Pre-deployment security checks** |
211
- | `vibecheck reality run` | Run Reality Mode with proof generation |
212
- | `vibecheck missions` | View fix missions grouped by category |
213
- | `vibecheck scan` | Scan codebase and generate truthpack |
214
- | `vibecheck fix` | Apply auto-fixes for detected issues |
215
- | `vibecheck forge` | Generate AI context rules for Cursor/Windsurf |
216
- | `vibecheck trace` | Trace data flow from sources to sinks |
217
- | `vibecheck github` | Set up GitHub Action for CI gate |
218
- | `vibecheck report` | Generate enterprise-grade reports |
219
- | `vibecheck badge` | Generate Ship Score badges for README |
220
- | `vibecheck config` | View or edit configuration |
221
- | `vibecheck doctor` | Validate system dependencies |
222
- | `vibecheck menu` | Open interactive menu |
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 check"
321
+ "pre-commit": "vibecheck audit"
320
322
  }
321
323
  }
322
324
  }