@hanna84/mcp-writing 3.4.0 → 3.4.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 CHANGED
@@ -4,11 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v3.4.1](https://github.com/hannasdev/mcp-writing.git
8
+ /compare/v3.4.0...v3.4.1)
9
+
10
+ - docs: align styleguide existing-config response with VS Code UX contract [`#178`](https://github.com/hannasdev/mcp-writing.git
11
+ /pull/178)
12
+
7
13
  #### [v3.4.0](https://github.com/hannasdev/mcp-writing.git
8
14
  /compare/v3.3.2...v3.4.0)
9
15
 
16
+ > 5 May 2026
17
+
10
18
  - feat: add client-agnostic styleguide setup contract and VS Code handoff [`#176`](https://github.com/hannasdev/mcp-writing.git
11
19
  /pull/176)
20
+ - Release 3.4.0 [`3e24031`](https://github.com/hannasdev/mcp-writing.git
21
+ /commit/3e2403119538afa8c57c8dc7847ecce96fdc379a)
12
22
 
13
23
  #### [v3.3.2](https://github.com/hannasdev/mcp-writing.git
14
24
  /compare/v3.3.1...v3.3.2)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanna84/mcp-writing",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "MCP service for AI-assisted reasoning and editing on long-form fiction projects",
5
5
  "homepage": "https://hannasdev.github.io/mcp-writing/",
6
6
  "type": "module",
@@ -251,7 +251,7 @@ export function registerStyleguideTools(s, {
251
251
  if (fs.existsSync(targetPath) && !overwrite) {
252
252
  return errorResponse(
253
253
  "STYLEGUIDE_CONFIG_EXISTS",
254
- "Styleguide config already exists at target path. Set overwrite=true to replace it.",
254
+ "A prose styleguide config already exists at the target location.",
255
255
  { target_path: path.resolve(targetPath) }
256
256
  );
257
257
  }