vibecheck-ai 1.2.4 → 1.2.5
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/dist/index.js +17 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -90803,7 +90803,7 @@ async function configureOutput(currentConfig) {
|
|
|
90803
90803
|
}
|
|
90804
90804
|
|
|
90805
90805
|
// src/lib/version.ts
|
|
90806
|
-
var CLI_VERSION = "1.2.
|
|
90806
|
+
var CLI_VERSION = "1.2.5" ;
|
|
90807
90807
|
var CLI_NAME = "vibecheck-ai" ;
|
|
90808
90808
|
|
|
90809
90809
|
// src/ui/command-header.tsx
|
|
@@ -92938,7 +92938,7 @@ function renderUpgradePrompt(options) {
|
|
|
92938
92938
|
}
|
|
92939
92939
|
}
|
|
92940
92940
|
lines.push(colors.primary(chars.v) + pad2("") + colors.primary(chars.v));
|
|
92941
|
-
const upgradeUrl = isEnterprise ? UPGRADE_URLS.
|
|
92941
|
+
const upgradeUrl = isEnterprise ? UPGRADE_URLS.FULL_TEAMS_CHECKOUT : UPGRADE_URLS.FULL_DASHBOARD_CHECKOUT;
|
|
92942
92942
|
lines.push(colors.primary(chars.v) + " " + pad2(chalk9.bold("Upgrade:") + " " + colors.info(upgradeUrl)) + colors.primary(chars.v));
|
|
92943
92943
|
if (showRerunHint && !isEnterprise) {
|
|
92944
92944
|
lines.push(colors.primary(chars.v) + " " + pad2(colors.muted("Then rerun: ") + colors.code(truncateCommand(attemptedCommand, innerWidth - 15))) + colors.primary(chars.v));
|
|
@@ -92957,7 +92957,7 @@ function printUpgradePrompt(options) {
|
|
|
92957
92957
|
function printUpgradeHint(featureKey) {
|
|
92958
92958
|
const metadata = FEATURE_METADATA[featureKey];
|
|
92959
92959
|
const plan = PLAN_DEFINITIONS[metadata.requiredTier];
|
|
92960
|
-
const url = metadata.requiredTier === "enterprise" ? UPGRADE_URLS.
|
|
92960
|
+
const url = metadata.requiredTier === "enterprise" ? UPGRADE_URLS.FULL_TEAMS_CHECKOUT : UPGRADE_URLS.FULL_DASHBOARD_CHECKOUT;
|
|
92961
92961
|
console.log("");
|
|
92962
92962
|
console.log(
|
|
92963
92963
|
colors.warning(symbols.raw.warning) + " " + chalk9.bold(metadata.title) + " requires " + chalk9.bold(plan.name) + ". Upgrade: " + colors.info(url)
|
|
@@ -102310,7 +102310,7 @@ async function badgeCommand(options) {
|
|
|
102310
102310
|
console.log(chalk9.dim(" \u2022 Last scan timestamp"));
|
|
102311
102311
|
console.log(chalk9.dim(" \u2022 Detailed score breakdown"));
|
|
102312
102312
|
console.log("");
|
|
102313
|
-
console.log(chalk9.dim(" Upgrade: ") + chalk9.cyan.underline("https://vibecheckai.dev/
|
|
102313
|
+
console.log(chalk9.dim(" Upgrade: ") + chalk9.cyan.underline("https://vibecheckai.dev/billing"));
|
|
102314
102314
|
}
|
|
102315
102315
|
console.log("");
|
|
102316
102316
|
console.log(chalk9.dim(" \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500"));
|
|
@@ -103149,7 +103149,7 @@ async function realityRunCommand(options) {
|
|
|
103149
103149
|
code: "UPGRADE_REQUIRED",
|
|
103150
103150
|
entitlement: "reality_mode",
|
|
103151
103151
|
message: "Reality Mode requires Pro. Upgrade to unlock runtime verification.",
|
|
103152
|
-
upgradeUrl: "https://
|
|
103152
|
+
upgradeUrl: "https://vibecheckai.dev/checkout?plan=pro"
|
|
103153
103153
|
}, null, 2));
|
|
103154
103154
|
} else {
|
|
103155
103155
|
logger2.error("");
|
|
@@ -103158,7 +103158,7 @@ async function realityRunCommand(options) {
|
|
|
103158
103158
|
logger2.error(colors.muted(" Runtime verification with proof bundles requires Pro."));
|
|
103159
103159
|
logger2.error("");
|
|
103160
103160
|
logger2.error(colors.info(" Upgrade: vibecheck upgrade"));
|
|
103161
|
-
logger2.error(colors.info(" Or visit: https://
|
|
103161
|
+
logger2.error(colors.info(" Or visit: https://vibecheckai.dev/checkout?plan=pro"));
|
|
103162
103162
|
logger2.error("");
|
|
103163
103163
|
}
|
|
103164
103164
|
process.exit(1);
|
|
@@ -105689,6 +105689,17 @@ addCustomHelp(
|
|
|
105689
105689
|
}),
|
|
105690
105690
|
"fix"
|
|
105691
105691
|
);
|
|
105692
|
+
addCustomHelp(
|
|
105693
|
+
program2.command("polish").description("Formatting + small refactors + cleanup (alias for fix polish)").option("-d, --dry-run", "Show changes without applying").action(async (options, command) => {
|
|
105694
|
+
const globalOpts = command.optsWithGlobals();
|
|
105695
|
+
await fixConsolidatedCommand({
|
|
105696
|
+
subcommand: "polish",
|
|
105697
|
+
...options,
|
|
105698
|
+
...globalOpts
|
|
105699
|
+
});
|
|
105700
|
+
}),
|
|
105701
|
+
"fix"
|
|
105702
|
+
);
|
|
105692
105703
|
addCustomHelp(
|
|
105693
105704
|
program2.command("report").description("Generate enterprise-grade HTML/PDF reports").option(
|
|
105694
105705
|
"-t, --type <type>",
|