@holdyourvoice/hyv 2.9.19 → 2.9.20

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/LICENSE ADDED
@@ -0,0 +1,26 @@
1
+ License
2
+ Copyright © 2025 Hold Your Voice (holdyourvoice.com)
3
+
4
+ All Rights Reserved.
5
+
6
+ This software ("@holdyourvoice/hyv") is proprietary and confidential.
7
+ It is provided for use solely by authorized licensees of Hold Your Voice.
8
+
9
+ 1. **Grant of License**: A non-exclusive, non-transferable, revocable license
10
+ is granted to use this software for its intended purpose as a writing
11
+ analysis tool.
12
+
13
+ 2. **Restrictions**: You may not:
14
+ a) Redistribute, sublicense, sell, or lease this software or any
15
+ derivative works.
16
+ b) Modify, reverse engineer, decompile, or disassemble this software.
17
+ c) Remove or alter any proprietary notices.
18
+ d) Use this software in violation of applicable law.
19
+
20
+ 3. **No Warranty**: This software is provided "as is" without warranty of
21
+ any kind, express or implied.
22
+
23
+ 4. **Limitation of Liability**: Hold Your Voice shall not be liable for any
24
+ damages arising from the use of this software.
25
+
26
+ For licensing inquiries: hello@holdyourvoice.com
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holdyourvoice/hyv",
3
- "version": "2.9.19",
3
+ "version": "2.9.20",
4
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": {
@@ -66,7 +66,8 @@
66
66
  "skills/",
67
67
  "agents/",
68
68
  "README.md",
69
- "CHANGELOG.md"
69
+ "CHANGELOG.md",
70
+ "LICENSE"
70
71
  ],
71
72
  "repository": {
72
73
  "type": "git",
@@ -5,12 +5,7 @@
5
5
  const path = require('path');
6
6
  const pkgDir = path.resolve(__dirname, '..');
7
7
  const quiet = process.env.HYV_POSTINSTALL_QUIET === '1' || process.argv.includes('--quiet');
8
- const hyvDir = require('path').join(require('os').homedir(), '.hyv');
9
- const {
10
- setupAgents,
11
- hasCompletedOnboarding,
12
- markOnboardingComplete,
13
- } = require('./postinstall-lib');
8
+ const { setupAgents } = require('./postinstall-lib');
14
9
 
15
10
  function print(msg) {
16
11
  if (!quiet) console.log(msg);
@@ -37,24 +32,4 @@ if (configured.length > 0) {
37
32
  if (warnings.length > 0 && !quiet) {
38
33
  print(' ! setup notes: ' + warnings.join('; '));
39
34
  print('');
40
- }
41
-
42
- const canShowOnboarding =
43
- process.stdout.isTTY || process.env.npm_config_foreground_scripts === 'true';
44
-
45
- if (!quiet && !hasCompletedOnboarding(hyvDir) && canShowOnboarding) {
46
- print('');
47
- print(' starting onboarding...');
48
- print('');
49
- try {
50
- const { execSync } = require('child_process');
51
- execSync('node "' + path.join(pkgDir, 'dist', 'index.js') + '" welcome', {
52
- stdio: 'inherit',
53
- env: { ...process.env, HYV_POSTINSTALL_ONBOARDING: '1' },
54
- });
55
- markOnboardingComplete(hyvDir, require('./postinstall-lib').readPkgVersion(pkgDir));
56
- } catch {
57
- print(' finish setup: hyv welcome');
58
- print('');
59
- }
60
35
  }