@holdyourvoice/hyv 3.4.4 → 3.4.5

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.
Binary file
@@ -174,7 +174,7 @@ test('CLI and MCP rebuild helpers share fingerprints', () => {
174
174
  version: '1', audience: 'operators', intent: 'explain', format: 'outreach',
175
175
  });
176
176
  assert.match(briefTask.prompt, /# WritingBrief/);
177
- assert.equal(HYV_VERSION, '3.4.4');
177
+ assert.equal(HYV_VERSION, '3.4.5');
178
178
  });
179
179
  test('apply rejects forged tasks, missing capability, and substituted profiles', () => {
180
180
  const reduction = rebuildRecommendation();
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const HYV_VERSION = '3.4.4';
1
+ export const HYV_VERSION = '3.4.5';
package/package.json CHANGED
@@ -1,18 +1,63 @@
1
1
  {
2
2
  "name": "@holdyourvoice/hyv",
3
- "version": "3.4.4",
3
+ "version": "3.4.5",
4
4
  "description": "A local-first dual-engine writing gate that protects voice and catches generic AI patterns.",
5
5
  "type": "module",
6
- "bin": { "hyv": "dist/cli.js" },
7
- "files": ["dist", "skills", "Readme.md", "LICENSE"],
8
- "scripts": { "build": "tsc -p tsconfig.json", "bundle:claude": "esbuild src/mcp.ts --bundle --platform=node --format=esm --target=node20 --outfile=mcpb/server/index.js", "build:claude": "npm run build && npm run bundle:claude", "pack:claude": "npm run build:claude && node scripts/pack-claude.mjs", "scorecard": "node scripts/public-scorecard.mjs benchmarks", "validate:rule-contributions": "node scripts/validate-rule-contributions.mjs", "stage1:evaluate": "node scripts/evaluate-rewrite-benchmark.mjs", "stage1:dry-run": "npm run build && node scripts/run-stage1-dry-run.mjs", "stage1:human-packet": "npm run build && node scripts/run-stage1-human-packet.mjs", "stage2:human-packet": "npm run build && node scripts/run-stage2-human-packet.mjs", "test": "npm run build && node --test \"dist/**/*.test.js\"", "check:release": "node scripts/release-audit.mjs", "prepack": "npm run check:release && npm test" },
9
- "engines": { "node": ">=20" },
6
+ "bin": {
7
+ "hyv": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "skills",
12
+ "Readme.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsc -p tsconfig.json",
17
+ "bundle:claude": "esbuild src/mcp.ts --bundle --platform=node --format=esm --target=node20 --outfile=mcpb/server/index.js",
18
+ "build:claude": "npm run build && npm run bundle:claude",
19
+ "pack:claude": "npm run build:claude && node scripts/pack-claude.mjs",
20
+ "scorecard": "node scripts/public-scorecard.mjs benchmarks",
21
+ "validate:rule-contributions": "node scripts/validate-rule-contributions.mjs",
22
+ "stage1:evaluate": "node scripts/evaluate-rewrite-benchmark.mjs",
23
+ "stage1:dry-run": "npm run build && node scripts/run-stage1-dry-run.mjs",
24
+ "stage1:human-packet": "npm run build && node scripts/run-stage1-human-packet.mjs",
25
+ "stage2:human-packet": "npm run build && node scripts/run-stage2-human-packet.mjs",
26
+ "test": "npm run build && node --test \"dist/**/*.test.js\"",
27
+ "check:release": "node scripts/release-audit.mjs",
28
+ "prepack": "npm run check:release && npm test && npm run pack:claude"
29
+ },
30
+ "engines": {
31
+ "node": ">=20"
32
+ },
10
33
  "license": "MIT",
11
- "keywords": ["ai-writing", "cli", "editing", "voice", "writing"],
12
- "repository": { "type": "git", "url": "git+https://github.com/shashank-sn/holdyourvoice.git" },
13
- "bugs": { "url": "https://github.com/shashank-sn/holdyourvoice/issues" },
34
+ "keywords": [
35
+ "ai-writing",
36
+ "cli",
37
+ "editing",
38
+ "voice",
39
+ "writing"
40
+ ],
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/shashank-sn/holdyourvoice.git"
44
+ },
45
+ "bugs": {
46
+ "url": "https://github.com/shashank-sn/holdyourvoice/issues"
47
+ },
14
48
  "homepage": "https://github.com/shashank-sn/holdyourvoice#readme",
15
- "publishConfig": { "access": "public" },
16
- "devDependencies": { "@types/node": "^22.0.0", "@types/yazl": "^3.3.1", "esbuild": "^0.28.1", "typescript": "^5.7.0", "yazl": "^3.3.1" },
17
- "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0", "zod": "^4.4.3" }
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^22.0.0",
54
+ "@types/yazl": "^3.3.1",
55
+ "esbuild": "^0.28.1",
56
+ "typescript": "^5.7.0",
57
+ "yazl": "^3.3.1"
58
+ },
59
+ "dependencies": {
60
+ "@modelcontextprotocol/sdk": "^1.30.0",
61
+ "zod": "^4.4.3"
62
+ }
18
63
  }