telegram-notify

Send Telegram bot notifications to reviewers and admins from CI/CD pipelines.

Updated Mar 24, 2026
One-click install
npx skills add https://github.com/NEXUZ-SYS/nxz-tutorial-agents --skill telegram-notify-nexuz-sys
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: telegram-notify
Source: https://github.com/NEXUZ-SYS/nxz-tutorial-agents/tree/main/skills/telegram-notify
Command: npx skills add https://github.com/NEXUZ-SYS/nxz-tutorial-agents --skill telegram-notify-nexuz-sys

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Telegram notifications streamline alerting from squads, triggering human attention for checkpoints, completions, or errors, without leaving your workflow.

Core Features & Use Cases

  • Broadcast: Send real-time alerts to Telegram chats via Bot API.
  • Flexible targets: Route messages to reviewers, admins, or both depending on event type.
  • Use Case: Notify a reviewer when a checkpoint requires approval, or alert admins when a pipeline fails.

Quick Start

Configure TELEGRAM_BOT_TOKEN and chat IDs in your .env file, then send a test notification to a Telegram chat.

Frequently Asked Questions about telegram-notify

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

FAQPage Schema
How do I send Telegram notifications from a CI/CD pipeline?

You can send Telegram notifications from a CI/CD pipeline by using the Telegram Bot API sendMessage endpoint to deliver real-time alerts directly to specified chat IDs for pipeline events.

What environment variables do I need to configure for Telegram bot alerts?

Configuring Telegram bot alerts requires setting three environment variables in a .env file: TELEGRAM_BOT_TOKEN, TELEGRAM_NOTIFY_CHAT_ID, and TELEGRAM_ADMIN_CHAT_ID to route messages successfully.

Can I route pipeline alerts to different Telegram chats for errors and approvals?

Yes, you can route pipeline alerts to different Telegram chats by configuring separate chat IDs, sending checkpoint notifications to reviewers and error alerts to admins based on the event type.

When do I need to trigger Telegram alerts for human attention in workflows?

You need to trigger Telegram alerts for human attention in squad workflows when CI/CD pipelines reach checkpoints requiring approval, complete execution, or encounter errors that need admin intervention.

Does this Telegram notification approach work without adding external dependencies?

Yes, this Telegram notification approach works without external dependencies by directly calling the Telegram Bot API sendMessage endpoint using environment variables configured in your local .env file.