From 4595e0dffd8df3212b0fa4a8fef48ba8581e5de0 Mon Sep 17 00:00:00 2001 From: kami Date: Thu, 30 Jul 2026 23:49:22 +0400 Subject: [PATCH] Enable nudge digestion in the deployed config Turns on the existing digest path on homesrv: a 30m batching window, at most 5 items per flush, and a severity ceiling of 2 so anything more urgent still goes out immediately instead of waiting for the batch. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01X5JApcrCRVGmqrxnhynSik --- deploy/mavend.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/deploy/mavend.json b/deploy/mavend.json index 9a19173..3a8c122 100644 --- a/deploy/mavend.json +++ b/deploy/mavend.json @@ -18,6 +18,13 @@ "chat_id": "${TELEGRAM_CHAT_ID}" }, + "digest": { + "enabled": true, + "window": "30m", + "max_items": 5, + "severity_ceiling": 2 + }, + "nexus": { "url": "http://nexus:9740" }, "praxis": { "url": "http://praxis:8989" }, "hexis": { "url": "http://hexis:9741" },