@hanna84/mcp-writing 3.15.1 → 3.16.0
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 +2 -2
- package/src/core/filesystem-boundary.js +764 -0
- package/src/core/helpers.js +51 -55
- package/src/review-bundles/review-bundles-writer.js +16 -68
- package/src/runtime/async-jobs.js +50 -10
- package/src/scripts/async-job-runner.mjs +19 -7
- package/src/scripts/normalize-scene-characters.mjs +1 -1
- package/src/structure/structure-export.js +8 -33
- package/src/styleguide/prose-styleguide.js +29 -2
- package/src/sync/importer.js +52 -8
- package/src/sync/scene-character-batch.js +1 -1
- package/src/sync/scrivener-direct.js +65 -70
- package/src/sync/sync.js +45 -7
- package/src/tools/editing.js +28 -1
- package/src/tools/metadata.js +62 -12
- package/src/tools/reference-link-persistence.js +1 -1
- package/src/tools/styleguide.js +184 -24
- package/src/tools/sync.js +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.16.0](https://github.com/hannasdev/mcp-writing/compare/v3.15.1...v3.16.0)
|
|
8
|
+
|
|
9
|
+
- feat: harden filesystem boundary mutations [`#212`](https://github.com/hannasdev/mcp-writing/pull/212)
|
|
10
|
+
|
|
7
11
|
#### [v3.15.1](https://github.com/hannasdev/mcp-writing/compare/v3.15.0...v3.15.1)
|
|
8
12
|
|
|
13
|
+
> 20 May 2026
|
|
14
|
+
|
|
9
15
|
- chore(security): add eslint security checks [`#211`](https://github.com/hannasdev/mcp-writing/pull/211)
|
|
16
|
+
- Release 3.15.1 [`0a09f12`](https://github.com/hannasdev/mcp-writing/commit/0a09f124f51df99dbb60af3da8dee600209d9740)
|
|
10
17
|
|
|
11
18
|
#### [v3.15.0](https://github.com/hannasdev/mcp-writing/compare/v3.14.1...v3.15.0)
|
|
12
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanna84/mcp-writing",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.0",
|
|
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",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"normalize:scene-characters": "node --experimental-sqlite src/scripts/normalize-scene-characters.mjs",
|
|
72
72
|
"setup:openclaw-env": "sh src/scripts/setup-openclaw-env.sh",
|
|
73
73
|
"release": "release-it",
|
|
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",
|
|
74
|
+
"lint": "eslint *.js eslint-rules 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
77
|
"check:docs": "npm run docs && git diff --exit-code -- docs/agents/tools.md",
|