@hanna84/mcp-writing 3.19.0 → 3.21.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 +21 -0
- package/README.md +4 -3
- package/package.json +1 -1
- package/src/structure/project-backup-restore.js +1299 -0
- package/src/sync/sync.js +123 -8
- package/src/tools/sync.js +58 -0
- package/src/workflows/workflow-catalogue.js +13 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,30 @@ 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.21.1](https://github.com/hannasdev/mcp-writing/compare/v3.21.0...v3.21.1)
|
|
8
|
+
|
|
9
|
+
- fix(sync): preserve managed canonical structure [`#222`](https://github.com/hannasdev/mcp-writing/pull/222)
|
|
10
|
+
|
|
11
|
+
#### [v3.21.0](https://github.com/hannasdev/mcp-writing/compare/v3.20.0...v3.21.0)
|
|
12
|
+
|
|
13
|
+
> 26 May 2026
|
|
14
|
+
|
|
15
|
+
- feat(backup): apply project restores transactionally [`#221`](https://github.com/hannasdev/mcp-writing/pull/221)
|
|
16
|
+
- Release 3.21.0 [`4097165`](https://github.com/hannasdev/mcp-writing/commit/40971653b4332af83c15a9337fa1089b61aa0973)
|
|
17
|
+
|
|
18
|
+
#### [v3.20.0](https://github.com/hannasdev/mcp-writing/compare/v3.19.0...v3.20.0)
|
|
19
|
+
|
|
20
|
+
> 24 May 2026
|
|
21
|
+
|
|
22
|
+
- feat(backup): add project restore dry-run planning [`#220`](https://github.com/hannasdev/mcp-writing/pull/220)
|
|
23
|
+
- Release 3.20.0 [`0237cae`](https://github.com/hannasdev/mcp-writing/commit/0237cae3743e46cd19433e3e47cf5582d37dfe7c)
|
|
24
|
+
|
|
7
25
|
#### [v3.19.0](https://github.com/hannasdev/mcp-writing/compare/v3.18.1...v3.19.0)
|
|
8
26
|
|
|
27
|
+
> 24 May 2026
|
|
28
|
+
|
|
9
29
|
- feat: add project database backup foundation [`#219`](https://github.com/hannasdev/mcp-writing/pull/219)
|
|
30
|
+
- Release 3.19.0 [`b2f501c`](https://github.com/hannasdev/mcp-writing/commit/b2f501c5d4406ea80491a12aa247e0127b927f40)
|
|
10
31
|
|
|
11
32
|
#### [v3.18.1](https://github.com/hannasdev/mcp-writing/compare/v3.18.0...v3.18.1)
|
|
12
33
|
|
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
|
-
- **Previous milestone:**
|
|
33
|
-
- **Active development:**
|
|
31
|
+
- **Recently completed:** Database Backup and Recovery added project backup export, freshness diagnostics, advisory operation history, automatic backup refresh after sanctioned project-scoped canonical mutations, dry-run restore planning, transactional restore application, and backup/restore operations guidance.
|
|
32
|
+
- **Previous milestone:** Docker, CI, and Deployment Workflow made Docker a supported way to build, run, smoke-test, and deploy Writing MCP.
|
|
33
|
+
- **Active development:** Post-initiative stabilization and backlog selection.
|
|
34
34
|
- **Deferred backlog:** OpenClaw integration, client-agnostic setup, divisions, and embeddings search.
|
|
35
35
|
- **Ideas and open questions:** tracked separately so future exploration does not distort the active roadmap.
|
|
36
36
|
|
|
@@ -47,6 +47,7 @@ Instead of feeding an entire manuscript to an AI and hoping it fits in the conte
|
|
|
47
47
|
| [docs/guides/setup.md](docs/guides/setup.md) | Prerequisites, first-time setup, Scrivener import, native sync format |
|
|
48
48
|
| [mcp-writing-vscode](https://github.com/hannasdev/mcp-writing-vscode) | VS Code extension for client-native setup flows |
|
|
49
49
|
| [docs/guides/docker.md](docs/guides/docker.md) | Docker Compose, deployment operations, MCP gateway notes |
|
|
50
|
+
| [docs/guides/backup-recovery.md](docs/guides/backup-recovery.md) | Project backup artifacts, diagnostics, and explicit restore workflow |
|
|
50
51
|
| [docs/foundations/managed-structure-contract.md](docs/foundations/managed-structure-contract.md) | Design boundaries for structural mutation, generated views, import, and maintenance workflows |
|
|
51
52
|
| [docs/agents/tools.md](docs/agents/tools.md) | Full tool reference — auto-generated from source |
|
|
52
53
|
| [docs/agents/README.md](docs/agents/README.md) | Index of agent-focused guidance, examples, and boot files |
|
package/package.json
CHANGED