@hanna84/mcp-writing 3.21.3 → 3.22.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 +1 -1
- package/src/sync/scene-character-batch.js +9 -0
- package/src/tools/metadata.js +972 -300
- package/src/tools/reference-link-persistence.js +5 -0
- package/src/tools/search.js +84 -44
- package/src/tools/sync.js +14 -2
- package/src/workflows/workflow-catalogue.js +20 -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.22.0](https://github.com/hannasdev/mcp-writing/compare/v3.21.3...v3.22.0)
|
|
8
|
+
|
|
9
|
+
- feat(metadata): add outcome relationship workflows [`#225`](https://github.com/hannasdev/mcp-writing/pull/225)
|
|
10
|
+
|
|
7
11
|
#### [v3.21.3](https://github.com/hannasdev/mcp-writing/compare/v3.21.2...v3.21.3)
|
|
8
12
|
|
|
13
|
+
> 28 May 2026
|
|
14
|
+
|
|
9
15
|
- fix(metadata): preserve sidecar structure fields on generic writes [`#224`](https://github.com/hannasdev/mcp-writing/pull/224)
|
|
16
|
+
- Release 3.21.3 [`91bc41f`](https://github.com/hannasdev/mcp-writing/commit/91bc41f98e6acf0f46cf93f329e1ecebad2e2305)
|
|
10
17
|
|
|
11
18
|
#### [v3.21.2](https://github.com/hannasdev/mcp-writing/compare/v3.21.1...v3.21.2)
|
|
12
19
|
|
package/package.json
CHANGED
|
@@ -234,6 +234,15 @@ export async function runSceneCharacterBatch({ syncDir, args, onProgress, should
|
|
|
234
234
|
cancelled: Boolean(typeof shouldCancel === "function" && shouldCancel() && processed_scenes < targetScenes.length),
|
|
235
235
|
project_id,
|
|
236
236
|
dry_run: Boolean(dry_run),
|
|
237
|
+
relationship_authority: {
|
|
238
|
+
canonical_owner: "SQLite scene_characters",
|
|
239
|
+
compatibility_source: "scene sidecar characters",
|
|
240
|
+
compatibility_mutation_surface: false,
|
|
241
|
+
apply_order: dry_run ? "preview_only" : "compatibility_output_then_sync_index",
|
|
242
|
+
note: dry_run
|
|
243
|
+
? "Dry run only reviews prose-derived character repairs."
|
|
244
|
+
: "M4 retains this batch repair as a prose-derived compatibility path; completion syncs the SQLite relationship index and refreshes backups for changed scenes.",
|
|
245
|
+
},
|
|
237
246
|
total_scenes: targetScenes.length,
|
|
238
247
|
processed_scenes,
|
|
239
248
|
scenes_changed,
|