From 650ceb9862d4d993326dbd9396e729c87c6bf9f3 Mon Sep 17 00:00:00 2001 From: teknium1 Date: Tue, 28 Apr 2026 06:54:44 -0700 Subject: [PATCH] docs(config): surface telegram.reactions in DEFAULT_CONFIG MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The telegram.reactions key was already wired up (gateway/config.py bridges it to TELEGRAM_REACTIONS at startup) but was undocumented and missing from DEFAULT_CONFIG, so users had no way to discover it. Add it with the existing off-by-default behavior preserved. No behavior change — runtime default stays False. --- hermes_cli/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hermes_cli/config.py b/hermes_cli/config.py index e94441373dd6..a3b4d6338175 100644 --- a/hermes_cli/config.py +++ b/hermes_cli/config.py @@ -932,6 +932,7 @@ def _ensure_hermes_home_managed(home: Path): # Telegram platform settings (gateway mode) "telegram": { + "reactions": False, # Add 👀/✅/❌ reactions to messages during processing "channel_prompts": {}, # Per-chat/topic ephemeral system prompts (topics inherit from parent group) },