@hanna84/mcp-writing 3.14.0 → 3.14.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 +7 -0
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,16 @@ 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.14.1](https://github.com/hannasdev/mcp-writing/compare/v3.14.0...v3.14.1)
|
|
8
|
+
|
|
9
|
+
- ci: optimize validation workflow [`#208`](https://github.com/hannasdev/mcp-writing/pull/208)
|
|
10
|
+
|
|
7
11
|
#### [v3.14.0](https://github.com/hannasdev/mcp-writing/compare/v3.13.1...v3.14.0)
|
|
8
12
|
|
|
13
|
+
> 19 May 2026
|
|
14
|
+
|
|
9
15
|
- feat: add deterministic structure exports [`#207`](https://github.com/hannasdev/mcp-writing/pull/207)
|
|
16
|
+
- Release 3.14.0 [`94fc46b`](https://github.com/hannasdev/mcp-writing/commit/94fc46bc98996688479a2bee9fc73415f69c3a86)
|
|
10
17
|
|
|
11
18
|
#### [v3.13.1](https://github.com/hannasdev/mcp-writing/compare/v3.13.0...v3.13.1)
|
|
12
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanna84/mcp-writing",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.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",
|
|
@@ -74,6 +74,9 @@
|
|
|
74
74
|
"lint": "eslint *.js src/index.js src/core src/review-bundles src/runtime src/setup src/scripts src/structure src/styleguide src/sync src/tools src/workflows src/world",
|
|
75
75
|
"guard:legacy-root-imports": "node src/scripts/check-legacy-root-imports.mjs",
|
|
76
76
|
"docs": "node src/scripts/generate-tool-docs.mjs",
|
|
77
|
+
"check:docs": "npm run docs && git diff --exit-code -- docs/agents/tools.md",
|
|
78
|
+
"check:static": "npm run lint && npm run guard:legacy-root-imports && npm run check:docs",
|
|
79
|
+
"check:pr": "npm run check:static && npm test",
|
|
77
80
|
"lint:metadata": "node src/scripts/lint-metadata.mjs",
|
|
78
81
|
"sync:server-json-version": "node src/scripts/sync-server-json-version.mjs",
|
|
79
82
|
"test:unit": "node --experimental-sqlite --test src/test/unit/*.test.mjs",
|