@holdyourvoice/hyv 2.5.0 → 2.5.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/agents/chatgpt.md +10 -0
- package/agents/windsurf.md +8 -1
- package/package.json +1 -1
package/agents/chatgpt.md
CHANGED
|
@@ -16,3 +16,13 @@ The user has a voice profile. All writing must match their personal style.
|
|
|
16
16
|
- Remove AI patterns line by line
|
|
17
17
|
- Match the user's voice profile exactly
|
|
18
18
|
- Never add sections, hooks, CTAs, or commentary
|
|
19
|
+
|
|
20
|
+
## Available tools
|
|
21
|
+
- `hyv_scan` — check text for AI patterns
|
|
22
|
+
- `hyv_fix` — auto-fix simple patterns (word swaps) without LLM
|
|
23
|
+
- `hyv_rewrite` — fix issues and match voice
|
|
24
|
+
- `hyv_check` — quick inline check, returns score + issues
|
|
25
|
+
- `hyv_score` — just a 0-100 score
|
|
26
|
+
- `hyv_diff` — show what auto-fixes would change
|
|
27
|
+
- `hyv_validate` — verify output matches voice
|
|
28
|
+
- `hyv_profiles` — list available profiles
|
package/agents/windsurf.md
CHANGED
|
@@ -4,9 +4,16 @@ Use HYV MCP tools for all writing tasks. The user has a voice profile.
|
|
|
4
4
|
|
|
5
5
|
## Auto-trigger
|
|
6
6
|
- `hyv_scan` before delivering any text
|
|
7
|
-
- `
|
|
7
|
+
- `hyv_fix` to auto-fix simple patterns (word swaps) without LLM
|
|
8
|
+
- `hyv_rewrite` to fix remaining issues with LLM
|
|
8
9
|
- `hyv_validate` after rewriting
|
|
9
10
|
|
|
11
|
+
## Quick tools
|
|
12
|
+
- `hyv_check` for inline spot-checks
|
|
13
|
+
- `hyv_score` when you just need a 0-100 number
|
|
14
|
+
- `hyv_diff` to show what would change before applying
|
|
15
|
+
|
|
10
16
|
## Rules
|
|
11
17
|
- Always scan user-facing content
|
|
18
|
+
- Use `hyv_fix` for quick word swaps before `hyv_rewrite`
|
|
12
19
|
- Preserve meaning, match voice profile
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holdyourvoice/hyv",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.1",
|
|
4
4
|
"description": "Hold Your Voice — voice gate layer for AI workflows. make your ai agent sound exactly like you! includes 220+ AI pattern detection engine.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|