From efc650390e35615cb7551bf1036c90021ea88d47 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Thu, 20 Aug 2026 23:19:00 -0400 Subject: [PATCH] fix(plugin-context): the empty write-path payload carries the divergence key too Co-Authored-By: Claude Fable 5 --- src/scribe/services/plugin_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scribe/services/plugin_context.py b/src/scribe/services/plugin_context.py index b31afb7..5629e02 100644 --- a/src/scribe/services/plugin_context.py +++ b/src/scribe/services/plugin_context.py @@ -765,7 +765,7 @@ async def build_write_path_hint( """ cfg = await get_writepath_config(user_id) empty = {"context": "", "note_ids": [], "sync_note_ids": [], "config": cfg, - "stamped": []} + "stamped": [], "divergence": []} path = (path or "").strip() if not cfg["enabled"] or not path: return empty