@holdyourvoice/hyv 2.8.1 → 2.8.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 +13 -0
- package/README.md +94 -50
- package/assets/FREE-PAID.md +46 -0
- package/dist/index.js +8334 -8004
- package/package.json +9 -3
- package/scripts/postinstall.js +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holdyourvoice/hyv",
|
|
3
|
-
"version": "2.8.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.8.2",
|
|
4
|
+
"description": "Free local AI writing scan for cursor & claude. MCP server, 220+ pattern detection, voice profiles. npx @holdyourvoice/hyv welcome",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"hyv": "dist/index.js",
|
|
@@ -28,7 +28,13 @@
|
|
|
28
28
|
"cli",
|
|
29
29
|
"brand-voice",
|
|
30
30
|
"content-gate",
|
|
31
|
-
"hyv"
|
|
31
|
+
"hyv",
|
|
32
|
+
"cursor",
|
|
33
|
+
"claude",
|
|
34
|
+
"mcp",
|
|
35
|
+
"ai-agent",
|
|
36
|
+
"ai-writing",
|
|
37
|
+
"voice-profile"
|
|
32
38
|
],
|
|
33
39
|
"author": "Hold Your Voice",
|
|
34
40
|
"license": "UNLICENSED",
|
package/scripts/postinstall.js
CHANGED
|
@@ -30,13 +30,13 @@ print('');
|
|
|
30
30
|
print(' make your ai agent sound exactly like you!');
|
|
31
31
|
print(' ✓ Free local scan engine ready (works offline)');
|
|
32
32
|
print('');
|
|
33
|
-
print('
|
|
34
|
-
print(' hyv scan your-draft.md');
|
|
35
|
-
print(' hyv fix your-draft.md');
|
|
36
|
-
print(' hyv check "your text here"');
|
|
33
|
+
print(' Free local — no account, works offline:');
|
|
34
|
+
print(' npx @holdyourvoice/hyv scan your-draft.md');
|
|
37
35
|
print(' npx @holdyourvoice/hyv welcome');
|
|
36
|
+
print(' hyv fix | hyv check | hyv mcp');
|
|
38
37
|
print('');
|
|
39
|
-
print('
|
|
38
|
+
print(' 30+ free web tools: https://holdyourvoice.com/tools');
|
|
39
|
+
print(' Profiles + learning (paid): hyv init | hyv plan --free');
|
|
40
40
|
print('');
|
|
41
41
|
|
|
42
42
|
const configured = [];
|