@holdyourvoice/hyv 2.9.1 → 2.9.2
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/CHANGELOG.md +5 -0
- package/dist/index.js +19 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable CLI changes. Also mirrored to [holdyourvoice.com/changelog](https://holdyourvoice.com/changelog) for user-facing releases.
|
|
4
4
|
|
|
5
|
+
## [2.9.2] — 2026-06-12
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Welcome step 4 copy — warmer signup pitch, highlights $1 first month and what paid unlocks
|
|
9
|
+
|
|
5
10
|
## [2.9.1] — 2026-06-12
|
|
6
11
|
|
|
7
12
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -11443,13 +11443,14 @@ function buildStepGuide(step, profileName) {
|
|
|
11443
11443
|
return [
|
|
11444
11444
|
"### Step 4 \u2014 save & unlock",
|
|
11445
11445
|
"",
|
|
11446
|
-
"
|
|
11447
|
-
"1
|
|
11448
|
-
"
|
|
11446
|
+
"Explain warmly: their profile is local-only until they sign up. A free account backs it up and syncs across machines.",
|
|
11447
|
+
"Paid unlock is **$1 for the first month** \u2014 profiles that learn, hybrid rewrite, dashboard.",
|
|
11448
|
+
"Scanning/fix/MCP stay free forever without an account.",
|
|
11449
11449
|
"",
|
|
11450
|
-
`
|
|
11450
|
+
"1. `hyv init` \u2014 browser signup",
|
|
11451
|
+
"2. `hyv plan --upgrade` \u2014 $1 first month",
|
|
11451
11452
|
"",
|
|
11452
|
-
|
|
11453
|
+
`Pricing: ${PRICING_URL}`
|
|
11453
11454
|
].join("\n");
|
|
11454
11455
|
default:
|
|
11455
11456
|
return buildWelcomeGuide({ profileName });
|
|
@@ -11774,15 +11775,20 @@ async function stepTest(profileName) {
|
|
|
11774
11775
|
}
|
|
11775
11776
|
async function stepSignup(profileName) {
|
|
11776
11777
|
console.log(import_chalk12.default.bold("\nstep 4 \xB7 save & unlock\n"));
|
|
11777
|
-
console.log("
|
|
11778
|
-
console.log(
|
|
11779
|
-
console.log(
|
|
11780
|
-
|
|
11781
|
-
|
|
11778
|
+
console.log(" your voice profile is saved locally \u2014 that's enough to scan and test.");
|
|
11779
|
+
console.log(" but it won't follow you to another machine, and it won't get sharper");
|
|
11780
|
+
console.log(" every time you rewrite.\n");
|
|
11781
|
+
console.log(" a free account backs up your profile and syncs it everywhere you use hyv.");
|
|
11782
|
+
console.log(" upgrade when you're ready: " + import_chalk12.default.bold("$1 for your first month") + ", then full");
|
|
11783
|
+
console.log(" access to profiles that learn, hybrid rewrite, and your dashboard.\n");
|
|
11784
|
+
console.log(import_chalk12.default.dim(" free forever (no account): scan, fix, check, mcp"));
|
|
11785
|
+
console.log(import_chalk12.default.dim(" paid unlock: learning loop, rich rewrites, sync across devices\n"));
|
|
11786
|
+
const ready = await askYesNo(" create your free account now? ($1 first month to unlock everything)");
|
|
11782
11787
|
if (!ready) {
|
|
11783
|
-
console.log(import_chalk12.default.dim("\n
|
|
11788
|
+
console.log(import_chalk12.default.dim("\n no rush \u2014 your profile stays on this machine."));
|
|
11789
|
+
console.log(import_chalk12.default.dim(" whenever you want backup + learning:"));
|
|
11784
11790
|
console.log(import_chalk12.default.dim(" hyv init"));
|
|
11785
|
-
console.log(import_chalk12.default.dim(" hyv plan --upgrade"));
|
|
11791
|
+
console.log(import_chalk12.default.dim(" hyv plan --upgrade ($1 first month)"));
|
|
11786
11792
|
console.log(import_chalk12.default.dim(` ${PRICING_URL}
|
|
11787
11793
|
`));
|
|
11788
11794
|
return;
|
|
@@ -11808,7 +11814,7 @@ async function stepSignup(profileName) {
|
|
|
11808
11814
|
} catch {
|
|
11809
11815
|
console.log(import_chalk12.default.yellow(" profile saved locally \u2014 run `hyv sync` after you upgrade"));
|
|
11810
11816
|
}
|
|
11811
|
-
console.log(import_chalk12.default.cyan("\n opening pricing..."));
|
|
11817
|
+
console.log(import_chalk12.default.cyan("\n opening pricing \u2014 $1 first month to unlock learning + sync..."));
|
|
11812
11818
|
const { default: open3 } = await Promise.resolve().then(() => __toESM(require_open()));
|
|
11813
11819
|
const { assertSafeOpenUrl: assertSafeOpenUrl2 } = await Promise.resolve().then(() => (init_config(), config_exports));
|
|
11814
11820
|
await open3(assertSafeOpenUrl2(PRICING_URL));
|
package/package.json
CHANGED