telegram-send

Send messages to Telegram groups and DMs from Claude Code workflows.

5|1|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/lycfyi/community-agent-plugin --skill telegram-send
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: telegram-send
Source: https://github.com/lycfyi/community-agent-plugin/tree/main/plugins/telegram-connector/skills/telegram-send
Command: npx skills add https://github.com/lycfyi/community-agent-plugin --skill telegram-send

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enables sending messages to Telegram channels or direct messages from Claude Code workflows, reducing the manual steps required to post updates or replies.

Core Features & Use Cases

  • Post messages to Telegram groups or DMs, including replies to specific messages.
  • Support topic-based messaging for forum-like groups and quick-targeting.
  • Use in automation to push alerts, summaries, or announcements directly to Telegram.

Quick Start

Set up your Telegram session and target group/user according to the PLUGIN docs, then issue a command like:

  • Send a message to a group: python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_send.py --group GROUP_ID --message "Hello!"
  • Send a DM: python ${CLAUDE_PLUGIN_ROOT}/tools/telegram_send.py --dm USER_ID --message "Hello!"

Frequently Asked Questions about telegram-send

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I send automated messages to Telegram groups from my workflows?

To send automated messages to Telegram groups, you use a Python script within your workflow that targets a specific group ID and passes the message text. This automates posting updates or announcements directly to Telegram chats without manual intervention.

Can I automate sending direct messages to Telegram users?

Yes, you can automate sending direct messages to Telegram users by invoking the script with a target user ID and message payload. This requires an active Telegram session configured beforehand to authenticate the automated DM workflow.

Does sending Telegram messages require any specific dependencies or environment setup?

Sending Telegram messages requires an active Telegram session and the target chat identifier, such as a group ID or user ID. The workflow invokes a Python script to execute the send operation, meaning Python must be available in the execution environment.

What's the best way to push automated alerts and summaries to Telegram?

The best way to push automated alerts and summaries to Telegram is by integrating a message-sending script into your workflow's output stage. You configure the target chat and pass the alert text as the message argument to automate the delivery.

Can I reply to specific messages in Telegram groups using automation?

Yes, the automation supports replying to specific messages within Telegram groups. The script allows you to target a group and include a reply reference, enabling automated contextual responses within ongoing chat discussions.

Does this approach support topic-based messaging for Telegram forum groups?

Yes, topic-based messaging is supported for forum-like Telegram groups. The script allows targeting specific topics within these groups, enabling quick-targeting of automated messages to the correct discussion thread.