@vibedrift/cli 0.5.2 → 0.5.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 +7 -7
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,13 +21,13 @@ vibedrift ./my-project
|
|
|
21
21
|
|
|
22
22
|
That's it. No signup, no API key, no config file. The default run produces an interactive HTML report and serves it on a local port.
|
|
23
23
|
|
|
24
|
-
### Free deep
|
|
24
|
+
### Free deep scans
|
|
25
25
|
|
|
26
|
-
Every account gets **
|
|
26
|
+
Every account gets **3 free deep scans per month** — no card required. Deep scans add Claude-powered AI analysis on top of the local scan (semantic duplicates, intent mismatches, anomaly detection):
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
vibedrift login # one-time browser sign-in
|
|
30
|
-
vibedrift . --deep # uses your
|
|
30
|
+
vibedrift . --deep # uses one of your 3 monthly deep scans
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
---
|
|
@@ -195,10 +195,10 @@ All scans (free and deep) are logged to your dashboard at [vibedrift.ai/dashboar
|
|
|
195
195
|
|
|
196
196
|
| Tier | Price | What you get |
|
|
197
197
|
|------|-------|-------------|
|
|
198
|
-
| **Free** | $0 | Unlimited local scans +
|
|
199
|
-
| **
|
|
200
|
-
| **
|
|
201
|
-
| **
|
|
198
|
+
| **Free** | $0 | Unlimited local scans + 3 deep scans per month + dashboard |
|
|
199
|
+
| **Pro** | $15/month | Unlimited deep scans + private repo CI/CD + API access |
|
|
200
|
+
| **Team** | $30/seat/month | GitHub App (auto PR) + team dashboard + quality gates + SSO |
|
|
201
|
+
| **Enterprise** | Custom | Custom rules + compliance + self-hosted + SLA |
|
|
202
202
|
|
|
203
203
|
See [vibedrift.ai/#pricing](https://vibedrift.ai/#pricing) for details.
|
|
204
204
|
|
package/dist/index.js
CHANGED
|
@@ -8532,7 +8532,7 @@ async function resolveAuthAndBanner(options) {
|
|
|
8532
8532
|
console.error("");
|
|
8533
8533
|
console.error(chalk2.red(" \u2717 Deep scans require a VibeDrift account."));
|
|
8534
8534
|
console.error("");
|
|
8535
|
-
console.error(chalk2.bgYellow.black.bold(" \u{1F381}
|
|
8535
|
+
console.error(chalk2.bgYellow.black.bold(" \u{1F381} Free accounts get 3 deep scans per month. "));
|
|
8536
8536
|
console.error("");
|
|
8537
8537
|
console.error(" Run " + chalk2.bold("vibedrift login") + " to sign in and claim it.");
|
|
8538
8538
|
console.error(" Or set " + chalk2.bold("VIBEDRIFT_TOKEN") + " in your environment for CI.");
|
|
@@ -8557,15 +8557,15 @@ async function resolveAuthAndBanner(options) {
|
|
|
8557
8557
|
const credits = await fetchCredits(bearerToken, { apiUrl });
|
|
8558
8558
|
if (credits.has_free_deep_scan && !credits.unlimited) {
|
|
8559
8559
|
console.log("");
|
|
8560
|
-
console.log(chalk2.bgYellow.black.bold(" \u{1F381}
|
|
8561
|
-
console.log(chalk2.yellow(" Run with
|
|
8560
|
+
console.log(chalk2.bgYellow.black.bold(" \u{1F381} 3 FREE DEEP SCANS EVERY MONTH "));
|
|
8561
|
+
console.log(chalk2.yellow(" Run with --deep to use AI-powered analysis (3 free per month)."));
|
|
8562
8562
|
console.log("");
|
|
8563
8563
|
}
|
|
8564
8564
|
} catch {
|
|
8565
8565
|
}
|
|
8566
8566
|
} else {
|
|
8567
8567
|
console.log("");
|
|
8568
|
-
console.log(chalk2.dim(" Tip: ") + chalk2.yellow("sign up free
|
|
8568
|
+
console.log(chalk2.dim(" Tip: ") + chalk2.yellow("sign up free \u2014 3 deep scans per month included"));
|
|
8569
8569
|
console.log(chalk2.dim(" Run ") + chalk2.bold("vibedrift login") + chalk2.dim(" to claim it (no card required)."));
|
|
8570
8570
|
console.log("");
|
|
8571
8571
|
}
|
|
@@ -9100,7 +9100,7 @@ async function handleLoginSuccess(result, options) {
|
|
|
9100
9100
|
});
|
|
9101
9101
|
if (credits.has_free_deep_scan && !credits.unlimited) {
|
|
9102
9102
|
console.log(
|
|
9103
|
-
chalk4.bgYellow.black.bold(" \u{1F381}
|
|
9103
|
+
chalk4.bgYellow.black.bold(" \u{1F381} 3 FREE deep scans every month with your account ")
|
|
9104
9104
|
);
|
|
9105
9105
|
console.log("");
|
|
9106
9106
|
console.log(
|