agentio-telegram

Send Telegram messages with formatting and silent options via the agentio CLI.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-telegram-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-telegram
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-telegram
Command: npx skills add https://github.com/plosson/agentio --skill agentio-telegram-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Sending Telegram notifications from scripts, CI/CD pipelines, or agent workflows normally requires writing bot API code and managing tokens. This Skill wraps the agentio CLI so an agent can post messages to a Telegram channel with a single command. ## Core Features & Use Cases - Channel Messaging: Send plain-text messages to a configured Telegram channel, including piped stdin input. - Rich Formatting: Pass HTML or Markdown content using the --parse-mode option. - Silent Delivery: Send messages without triggering device notifications using the --silent flag. - Use Case: In a GitHub Actions workflow, notify a Telegram channel when a deploy finishes, or pipe build output into a message for a monitoring channel. ## Quick Start Use the agentio telegram skill to send the message "Deploy completed" to my Telegram channel.

Frequently Asked Questions about agentio-telegram

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

FAQPage Schema
How do I send a Telegram message from the command line?▼

Run agentio telegram send followed by your message in quotes, for example agentio telegram send "Deploy completed". You can also pipe text via stdin, such as echo "Build green" | agentio telegram send.

How to send HTML or Markdown formatted Telegram messages?▼

Pass the --parse-mode option with either html or markdown, for example agentio telegram send "<b>Alert</b>: disk 90% full" --parse-mode html. The message body is then rendered with the chosen formatting in Telegram.

Can I send a Telegram message without a notification sound?▼

Yes, add the --silent flag to the send command, such as agentio telegram send "Nightly job done" --silent. The message is delivered to the channel without triggering a device ping.

Do I need to specify a profile when sending Telegram messages?▼

The --profile option is optional when only one agentio profile exists. If multiple profiles are configured, pass --profile <name> to select which Telegram account sends the message.

Can agentio Telegram messaging run in GitHub Actions?▼

Yes, agentio is designed for CI/CD. Authenticate locally once, export the encrypted config as a secret, then run agentio telegram send commands inside workflow steps after importing the vault.