Install
$ agentstack add skill-sinedied-agent-skills-telegram-send ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Telegram Send
Send a message (with optional media) to the user via Telegram using the Bot API. Look for a .env file if environment variables are not set.
Setup
1. Create a Telegram Bot
- Open Telegram and search for @BotFather.
- Send
/newbotand follow the prompts to choose a name and username. - BotFather will give you a bot token (e.g.
123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11). Save it.
2. Get Your Chat ID
- Start a conversation with your new bot (search for it by username and press Start).
- Send any message to the bot (e.g. "hello").
- Open this URL in a browser, replacing `` with your token:
`` https://api.telegram.org/bot/getUpdates ``
- Look for
"chat":{"id": ...}in the JSON response. That number is your chat ID.
3. Configure Environment Variables
Set these environment variables (e.g. in your shell profile, .env file, or VS Code settings):
export TELEGRAM_BOT_TOKEN="your-bot-token"
export TELEGRAM_CHAT_ID="your-chat-id"
Usage
To send a text message:
node .agents/skills/telegram-send/scripts/send.mjs "Your message here"
To send a media file (image, video, or document) with an optional caption:
node .agents/skills/telegram-send/scripts/send.mjs --media path/to/file.mp4 "Optional caption"
Supported media types:
- Photos:
.jpg,.jpeg,.png,.gif,.webp - Videos:
.mp4,.mov,.avi,.mkv,.webm - Documents: any other file type
The script supports Markdown formatting in messages and captions.
When to Use
Use this skill when the user asks to:
- Send a Telegram message or notification
- Notify them when a long-running task completes
- Send a status update or alert via Telegram
- Share an image, video, or file via Telegram
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sinedied
- Source: sinedied/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.