@hanna84/mcp-writing 3.15.1 → 3.17.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 +14 -0
- package/README.md +3 -3
- 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,23 @@ 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.17.0](https://github.com/hannasdev/mcp-writing/compare/v3.16.0...v3.17.0)
|
|
8
|
+
|
|
9
|
+
- feat: support runnable Docker workflow [`#213`](https://github.com/hannasdev/mcp-writing/pull/213)
|
|
10
|
+
|
|
11
|
+
#### [v3.16.0](https://github.com/hannasdev/mcp-writing/compare/v3.15.1...v3.16.0)
|
|
12
|
+
|
|
13
|
+
> 22 May 2026
|
|
14
|
+
|
|
15
|
+
- feat: harden filesystem boundary mutations [`#212`](https://github.com/hannasdev/mcp-writing/pull/212)
|
|
16
|
+
- Release 3.16.0 [`f2637eb`](https://github.com/hannasdev/mcp-writing/commit/f2637eb72e35dc58959fee328d535eed8b8f4525)
|
|
17
|
+
|
|
7
18
|
#### [v3.15.1](https://github.com/hannasdev/mcp-writing/compare/v3.15.0...v3.15.1)
|
|
8
19
|
|
|
20
|
+
> 20 May 2026
|
|
21
|
+
|
|
9
22
|
- chore(security): add eslint security checks [`#211`](https://github.com/hannasdev/mcp-writing/pull/211)
|
|
23
|
+
- Release 3.15.1 [`0a09f12`](https://github.com/hannasdev/mcp-writing/commit/0a09f124f51df99dbb60af3da8dee600209d9740)
|
|
10
24
|
|
|
11
25
|
#### [v3.15.0](https://github.com/hannasdev/mcp-writing/compare/v3.14.1...v3.15.0)
|
|
12
26
|
|
package/README.md
CHANGED
|
@@ -28,9 +28,9 @@ Instead of feeding an entire manuscript to an AI and hoping it fits in the conte
|
|
|
28
28
|
|
|
29
29
|
**Current status:**
|
|
30
30
|
- **Core platform complete:** Metadata-first analysis, sidecar-backed metadata maintenance, AI-assisted prose editing with confirmation + git history, review bundles, and Scrivener Direct extraction are all implemented.
|
|
31
|
-
- **Recently completed:**
|
|
32
|
-
- **Active development:**
|
|
33
|
-
- **Deferred backlog:** embeddings search.
|
|
31
|
+
- **Recently completed:** Filesystem Boundary Hardening centralized local file mutation through application-aware helpers and lint guardrails.
|
|
32
|
+
- **Active development:** Docker, CI, and Deployment Workflow is making Docker a supported way to build, run, smoke-test, and deploy Writing MCP.
|
|
33
|
+
- **Deferred backlog:** OpenClaw integration, client-agnostic setup, chapter-structure follow-up, and embeddings search.
|
|
34
34
|
- **Ideas and open questions:** tracked separately so future exploration does not distort the active roadmap.
|
|
35
35
|
|
|
36
36
|
## Who it is for
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanna84/mcp-writing",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.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",
|