-
-
Notifications
You must be signed in to change notification settings - Fork 40.6k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Feature Request
Description:
Add support for sending Telegram messages silently (without notification sound) via the message tool.
Use Case:
When sending automated notifications, heartbeat updates, or non-urgent messages, it would be useful to deliver them without triggering a notification sound on the recipient's device.
Telegram API:
The Telegram Bot API supports disable_notification parameter on all send methods (sendMessage, sendPhoto, etc.). The underlying grammy library already supports this.
Proposed Implementation:
- Add
silent(boolean) parameter to the message tool schema - Pass it through
telegramOutboundinchannels/plugins/outbound/telegram.js - Include
disable_notification: opts.silentin the send options intelegram/send.js
Example usage:
message(action="send", target="...", message="...", silent=true)
Thanks!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request