Agent skill · Backend & API

telegram-bot-messaging

Send Telegram messages, files, and alerts via bot API; ask questions with inline buttons and wait for the answer. Supports multiple bots, named chat targets, and CI/cron/hook notifications.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorships scriptsMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill telegram-bot-messaging --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 4 KB
Bundled scripts: yes
Declared author: sanjay3290
Path: skills/telegram-bot-messaging/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Telegram ## When to Use - Use when you need to send a Telegram message, file, or alert from a workflow, hook, cron job, or CI pipeline - Use when a long-running task should notify you or ask for approval on your phone (inline-button questions that wait for the answer) - Use when wiring "notify me when done" or "ask me before proceeding" behavior into automated sessions Send updates, alerts, and files to Telegram; read replies; run ask-and-wait approval flows. Pure bash + curl + jq — no install beyond a bot token. First run: `bash scripts/telegram.sh setup` (guided BotFather walkthrough). ## Safety Gate Before setup, sending a message or file, reading replies, or enabling a hook, obtain the user's explicit approval for the target chat, bot account, and exact content or file. Never send workspace, customer, credential, or secret data automatically. Treat a token as a secret: do not echo it, commit it, or place it in shell history. ## Commands ```bash bash scripts/telegram.sh send "Deploy finished ✅" # basic alert bash scripts/telegram.sh send "low priority" --silent # no notification sound bash scripts/telegram.sh send "*bold* alert" --format md # MarkdownV2 (falls back to plain) b

What's inside
Steps it walks through
  1. When to Use
  2. Safety Gate
  3. Commands
  4. Config
  5. Claude Code hooks (settings.json)
  6. Limitations
Ships with 2 files
  • README.md
  • scripts/telegram.sh
Commands it runs
bash scripts/telegram.sh send "Deploy finished ✅"                    # basic alert
bash scripts/telegram.sh send "low priority" --silent                # no notification sound
bash scripts/telegram.sh send "*bold* alert" --format md             # MarkdownV2 (falls back to plain)
bash scripts/telegram.sh send "hi" --to alerts --bot work            # named target + named bot
bash scripts/telegram.sh file report.pdf "Q3 report"                 # document (photos auto-detected)
bash scripts/telegram.sh read                                        # new incoming messages since last read
exit 0 = answered (stdout = answer), 2 = timeout
if [ "$(bash scripts/telegram.sh ask 'Deploy to prod?' --options 'Yes,No')" = "Yes" ]; then
fi
More from agentic-awesome-skills
All skills →
About this skill
What does the telegram-bot-messaging skill do?

Send Telegram messages, files, and alerts via bot API; ask questions with inline buttons and wait for the answer. Supports multiple bots, named chat targets, and CI/cron/hook notifications.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill telegram-bot-messaging --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going