@vibecheckai/cli 3.1.6 → 3.1.8

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
@@ -1,4 +1,4 @@
1
- # vibecheck CLI v3.1.1
1
+ # vibecheck CLI v3.1.8
2
2
 
3
3
  **Ship with confidence. One verdict: SHIP | WARN | BLOCK**
4
4
 
@@ -15,20 +15,20 @@ npx @vibecheckai/cli ship
15
15
  ## Quick Start
16
16
 
17
17
  ```bash
18
- # Get your ship verdict
19
- vibecheck ship
18
+ # 1. Setup your project
19
+ vibecheck init --local
20
20
 
21
- # Full proof loop (scan → reality → verdict)
22
- vibecheck prove --url http://localhost:3000
21
+ # 2. Scan for issues
22
+ vibecheck scan
23
23
 
24
- # Generate truthpack for AI agents
25
- vibecheck ctx
24
+ # 3. Get ship verdict
25
+ vibecheck ship
26
26
 
27
- # Environment diagnostics
28
- vibecheck doctor
27
+ # 4. Full proof loop (PRO tier)
28
+ vibecheck prove
29
29
 
30
- # Production polish check
31
- vibecheck polish
30
+ # 5. Runtime verification
31
+ vibecheck reality --url http://localhost:3000
32
32
  ```
33
33
 
34
34
  ## Commands
@@ -37,10 +37,8 @@ vibecheck polish
37
37
 
38
38
  | Command | Tier | Description |
39
39
  |---------|------|-------------|
40
- | `vibecheck init` | FREE | Project setup wizard (`--local` or `--connect`) |
41
- | `vibecheck install` | FREE | Zero-friction onboarding |
40
+ | `vibecheck init` | FREE | Project setup (`--local` or `--connect`) |
42
41
  | `vibecheck doctor` | FREE | Environment diagnostics |
43
- | `vibecheck status` | FREE | Project health dashboard |
44
42
  | `vibecheck watch` | FREE | Continuous mode - re-runs on changes |
45
43
 
46
44
  ### Proof Loop
@@ -49,10 +47,10 @@ vibecheck polish
49
47
  |---------|------|-------------|
50
48
  | `vibecheck scan` | FREE | Static analysis - routes, secrets, contracts |
51
49
  | `vibecheck ship` | FREE | Verdict engine - SHIP / WARN / BLOCK |
52
- | `vibecheck runtime` | FREE* | Browser-based runtime verification |
53
- | `vibecheck prove` | PRO | Full loop: ctx → reality → ship → fix |
50
+ | `vibecheck reality` | FREE* | Browser-based runtime verification |
51
+ | `vibecheck prove` | PRO | Full loop: scan → reality → ship → fix |
54
52
  | `vibecheck fix` | FREE* | AI-powered auto-fix (plan-only on FREE) |
55
- | `vibecheck security` | PRO | AuthZ matrix & IDOR detection |
53
+ | `vibecheck report` | FREE | Generate HTML/MD/SARIF reports |
56
54
 
57
55
  ### Quality & Checkpoints
58
56
 
@@ -65,26 +63,23 @@ vibecheck polish
65
63
 
66
64
  | Command | Tier | Description |
67
65
  |---------|------|-------------|
68
- | `vibecheck ctx` | FREE | Generate truthpack for AI agents |
66
+ | `vibecheck context` | FREE | Generate .cursorrules, .windsurf/rules, MDC |
69
67
  | `vibecheck guard` | FREE | Validate AI claims against truth |
70
- | `vibecheck context` | FREE | Generate .cursorrules, .windsurf/rules |
71
- | `vibecheck contracts` | FREE | CI gate for contract drift |
72
68
 
73
- ### Output & Export
69
+ ### Automation
74
70
 
75
71
  | Command | Tier | Description |
76
72
  |---------|------|-------------|
77
- | `vibecheck report` | FREE | Generate HTML/MD/SARIF reports |
78
- | `vibecheck export` | FREE | Generate collaboration outputs (pr, badge, bundle) |
73
+ | `vibecheck mcp` | STARTER | Start MCP server for AI IDEs |
74
+ | `vibecheck ai-test` | PRO | AI autonomous test |
79
75
 
80
- ### CI/CD & Automation
76
+ ### Account
81
77
 
82
78
  | Command | Tier | Description |
83
79
  |---------|------|-------------|
84
- | `vibecheck gate` | STARTER | CI/CD gate |
85
- | `vibecheck pr` | STARTER | Generate PR comment |
86
- | `vibecheck badge` | STARTER | Generate README badge |
87
- | `vibecheck mcp` | STARTER | Start MCP server for AI IDEs |
80
+ | `vibecheck login` | FREE | Authenticate with API key |
81
+ | `vibecheck logout` | FREE | Remove stored credentials |
82
+ | `vibecheck whoami` | FREE | Show current user and plan |
88
83
 
89
84
  *Commands marked with * have limited functionality on FREE tier
90
85
 
@@ -92,9 +87,9 @@ vibecheck polish
92
87
 
93
88
  | Tier | Price | Features |
94
89
  |------|-------|----------|
95
- | FREE | $0 | scan, ship (static), doctor, polish, report (HTML/MD), ctx, guard |
96
- | STARTER | $39/mo | + init --connect, gate, pr, badge, mcp, report (SARIF/CSV) |
97
- | PRO | $99/mo | + prove, fix --apply, security, checkpoint (hallucination), runtime (full) |
90
+ | FREE | $0 | init --local, scan, ship (static), doctor, polish, report (HTML/MD), context, guard, checkpoint (basic) |
91
+ | STARTER | $39/mo | + init --connect, scan --autofix, report (SARIF/CSV), mcp, reality (basic) |
92
+ | PRO | $99/mo | + prove, fix --apply, checkpoint (hallucination), reality (advanced), ai-test |
98
93
 
99
94
  ## What It Catches
100
95
 
@@ -114,7 +109,7 @@ vibecheck polish
114
109
  ╚═════════════════════════════════════════════════════════════════╝
115
110
  ```
116
111
 
117
- Exit codes: `0` = SHIP, `1` = WARN, `2` = BLOCK, `3` = Feature not allowed
112
+ Exit codes: `0` = SHIP, `1` = WARN, `2` = BLOCK, `3` = Feature not allowed, `4` = Unknown command
118
113
 
119
114
  ## MCP Server
120
115