@holdyourvoice/hyv 2.8.10 → 2.9.1
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 +21 -0
- package/agents/claude-code.md +1 -1
- package/agents/cursor.md +1 -1
- package/agents/generic.md +2 -2
- package/dist/index.js +7784 -3577
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
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.1] — 2026-06-12
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Welcome step 3 is skippable (Enter or `s`)
|
|
9
|
+
- Multiline draft paste for testing (no more single-line shell chaos)
|
|
10
|
+
- Document extraction for samples and scans: `.md`, `.txt`, `.html`, `.docx`, `.pdf`, `.skill`
|
|
11
|
+
- Recursive folder scan; single files (including `.skill` archives) work in step 2
|
|
12
|
+
- Minimal terminal spinners while reading, saving, and scanning
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Step 3 crash when scanning pasted text (`Cannot read properties of undefined (reading 'match')`) — profile now loads correctly
|
|
16
|
+
- `ENOTDIR` when pointing at a file instead of a folder
|
|
17
|
+
|
|
18
|
+
## [2.9.0] — 2026-06-12
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- `hyv welcome` — profile-first flow: name → samples (paste/folder/link/chat) → test draft → signup
|
|
22
|
+
- Keeps tagline; drops install/init/mcp step list from welcome
|
|
23
|
+
- MCP `hyv_welcome` supports `step`, `mode=extract_prompt`, and `profile` for agent-led onboarding
|
|
24
|
+
- Postinstall points to `hyv welcome` instead of `hyv init`
|
|
25
|
+
|
|
5
26
|
## [2.8.10] — 2026-06-12
|
|
6
27
|
|
|
7
28
|
### Fixed
|
package/agents/claude-code.md
CHANGED
|
@@ -21,7 +21,7 @@ ALWAYS run `hyv_rewrite` or use the `hyv_rewrite` MCP tool when:
|
|
|
21
21
|
## How to use
|
|
22
22
|
|
|
23
23
|
### MCP tools (preferred — if MCP is connected):
|
|
24
|
-
1. `hyv_welcome`
|
|
24
|
+
1. `hyv_welcome` for new users (step 2: extract_prompt from chat history)
|
|
25
25
|
2. `hyv_scan` (fast local) or `hyv_analyze` (hybrid when paid) → get issues
|
|
26
26
|
3. `hyv_clean` → scan + fix + validate + rewrite prompt in one call
|
|
27
27
|
4. Or stepwise: `hyv_fix` → `hyv_rewrite` → `hyv_validate`
|
package/agents/cursor.md
CHANGED
|
@@ -6,7 +6,7 @@ Use HYV MCP tools for all writing tasks. If no profile exists yet, call `hyv_wel
|
|
|
6
6
|
- Any email, post, doc, or content creation
|
|
7
7
|
- Before delivering any prose to the user
|
|
8
8
|
- When editing or improving text
|
|
9
|
-
- New users:
|
|
9
|
+
- New users: `hyv_welcome` (name → samples via extract_prompt → scan → signup last)
|
|
10
10
|
|
|
11
11
|
## Tool flow (preferred)
|
|
12
12
|
1. `hyv_scan` — fast local check (free, offline)
|
package/agents/generic.md
CHANGED
|
@@ -20,7 +20,7 @@ You MUST use these tools automatically — do NOT wait for the user to mention "
|
|
|
20
20
|
- Suggest they run `hyv reinforce --last` so their profile learns from the change
|
|
21
21
|
|
|
22
22
|
**For new users:**
|
|
23
|
-
- Call `hyv_welcome`
|
|
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
24
|
|
|
25
25
|
## Available tools
|
|
26
26
|
- `hyv_welcome` / `hyv_list_free_tools` / `hyv_demo` — onboarding
|
|
@@ -35,4 +35,4 @@ You MUST use these tools automatically — do NOT wait for the user to mention "
|
|
|
35
35
|
- NEVER skip scanning for user-facing content
|
|
36
36
|
- Preserve original meaning exactly when rewriting
|
|
37
37
|
- Match the voice profile's rhythm, vocabulary, and tone
|
|
38
|
-
- If no profile exists,
|
|
38
|
+
- If no profile exists, run onboarding via `hyv_welcome` (step 2 extract_prompt from chat history)
|