@holdyourvoice/hyv 2.9.14 → 2.9.16
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 +11 -0
- package/README.md +1 -1
- package/agents/chatgpt.md +12 -1
- package/agents/cursor.md +3 -1
- package/agents/generic.md +10 -1
- package/dist/index.js +902 -414
- package/package.json +1 -1
- package/scripts/install.ps1 +13 -1
- package/scripts/postinstall-lib.js +375 -37
- package/scripts/postinstall.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
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.15] — 2026-06-18
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- `mcp-profile-hydrate` — syncs voice profile into MCP agent configs after setup
|
|
9
|
+
- `mcp-integrate` — writes MCP server entries for cursor, claude, codex, windsurf, and more
|
|
10
|
+
- Postinstall detects installed agents and suggests `hyv mcp --setup`
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `hyv mcp --test` validates 13 setup checks including ChatGPT actions
|
|
14
|
+
- Agent docs updated for one-command MCP setup across all supported editors
|
|
15
|
+
|
|
5
16
|
## [2.9.11] — 2026-06-12
|
|
6
17
|
|
|
7
18
|
### Fixed
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ npx @holdyourvoice/hyv scan draft.md
|
|
|
20
20
|
curl -fsSL https://holdyourvoice.com/install.sh | bash
|
|
21
21
|
|
|
22
22
|
# windows (powershell)
|
|
23
|
-
irm https://holdyourvoice.com/install.ps1 | iex
|
|
23
|
+
powershell -ExecutionPolicy Bypass -c "irm https://holdyourvoice.com/install.ps1 | iex"
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
Already have node 18+?
|
package/agents/chatgpt.md
CHANGED
|
@@ -17,8 +17,19 @@ The user has a voice profile. All writing must match their personal style.
|
|
|
17
17
|
- Match the user's voice profile exactly
|
|
18
18
|
- Never add sections, hooks, CTAs, or commentary
|
|
19
19
|
|
|
20
|
+
## Voice profiles
|
|
21
|
+
- `hyv_profiles` — which profile MCP tools use (default + all local copies)
|
|
22
|
+
- Dashboard-built profiles: user runs `hyv init` once on their Mac — then MCP auto-syncs
|
|
23
|
+
- Terminal `hyv welcome` profiles are already local — no extra step
|
|
24
|
+
|
|
25
|
+
## MCP setup (no terminal)
|
|
26
|
+
- `hyv_mcp_setup` with `action=status` — see what's integrated and onboarding progress
|
|
27
|
+
- `hyv_mcp_setup` with `action=integrate` — refresh Cursor/Claude configs (`force=true` after hyv upgrade)
|
|
28
|
+
- `hyv_mcp_setup` with `action=chatgpt` — desktop connector steps (command: hyv, arguments: mcp)
|
|
29
|
+
- `hyv_welcome` — finish voice onboarding inside this chat
|
|
30
|
+
|
|
20
31
|
## Available tools
|
|
21
|
-
- `hyv_welcome` / `hyv_demo` — onboarding
|
|
32
|
+
- `hyv_mcp_setup` / `hyv_welcome` / `hyv_demo` — setup and onboarding
|
|
22
33
|
- `hyv_scan` / `hyv_analyze` — check for AI patterns (+ hybrid when paid)
|
|
23
34
|
- `hyv_clean` — full scan → fix → validate pipeline
|
|
24
35
|
- `hyv_fix` / `hyv_rewrite` / `hyv_validate`
|
package/agents/cursor.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Hold Your Voice
|
|
2
2
|
|
|
3
|
-
Use HYV MCP tools for all writing tasks. If no profile exists yet, call `hyv_welcome` or `hyv_profiles` first — free local scan works without a profile.
|
|
3
|
+
Use HYV MCP tools for all writing tasks. If no profile exists yet, call `hyv_welcome` or `hyv_profiles` first — free local scan works without a profile. For MCP host setup or refresh, call `hyv_mcp_setup` (no terminal).
|
|
4
4
|
|
|
5
5
|
## When to use
|
|
6
6
|
- Any email, post, doc, or content creation
|
|
@@ -18,6 +18,8 @@ Use HYV MCP tools for all writing tasks. If no profile exists yet, call `hyv_wel
|
|
|
18
18
|
7. After user accepts a big edit: suggest `hyv reinforce --last` (CLI)
|
|
19
19
|
|
|
20
20
|
## Tools
|
|
21
|
+
- `hyv_profiles` — active default + all MCP-ready profiles (dashboard profiles after `hyv init`)
|
|
22
|
+
- `hyv_mcp_setup` — integration status, refresh configs, ChatGPT steps
|
|
21
23
|
- `hyv_welcome` / `hyv_list_free_tools` / `hyv_demo` — onboarding (free)
|
|
22
24
|
- `hyv_scan` — local AI pattern + profile scan
|
|
23
25
|
- `hyv_analyze` — hybrid local + server analysis (paid when online)
|
package/agents/generic.md
CHANGED
|
@@ -19,10 +19,19 @@ You MUST use these tools automatically — do NOT wait for the user to mention "
|
|
|
19
19
|
**After the user accepts a substantial edit:**
|
|
20
20
|
- Suggest they run `hyv reinforce --last` so their profile learns from the change
|
|
21
21
|
|
|
22
|
-
**For new users:**
|
|
22
|
+
**For new users or MCP setup:**
|
|
23
23
|
- Call `hyv_welcome` — guide them: name profile → samples (use `hyv_welcome` with `mode=extract_prompt` to pull voice from chat) → `hyv_scan` test → signup last via `hyv init`
|
|
24
|
+
- Call `hyv_mcp_setup` — check integration status, refresh app configs (`action=integrate`), or ChatGPT Desktop steps (`action=chatgpt`). Works without a voice profile.
|
|
25
|
+
|
|
26
|
+
## Voice profiles (terminal + dashboard)
|
|
27
|
+
- Call **`hyv_profiles`** first if unsure which profile is active.
|
|
28
|
+
- **`hyv welcome`** (terminal) saves to this machine — MCP uses it immediately.
|
|
29
|
+
- **Dashboard** profiles sync here after the user runs **`hyv init`** once (MCP auto-downloads on start).
|
|
30
|
+
- Pass `profile: "<slug>"` on tools only when using a non-default profile (slug is lowercase-hyphenated name).
|
|
24
31
|
|
|
25
32
|
## Available tools
|
|
33
|
+
- `hyv_mcp_setup` — MCP status, integrate hosts, ChatGPT connector guide (no terminal)
|
|
34
|
+
- `hyv_profiles` — list MCP-ready profiles and active default
|
|
26
35
|
- `hyv_welcome` / `hyv_list_free_tools` / `hyv_demo` — onboarding
|
|
27
36
|
- `hyv_scan` — local scan (free, offline)
|
|
28
37
|
- `hyv_analyze` — hybrid server + local (paid)
|