Telegram Sender
ACTIONSends messages via the Telegram Bot API. Called by the Events AI to respond to the user in Telegram conversations.
Endpoints
· 1POST/sendSends a Telegram message to a chat via the Bot API
Input Schema
{
"type": "object",
"required": [
"chatId",
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Message text to send"
},
"chatId": {
"type": [
"string",
"number"
],
"description": "Recipient chat ID"
},
"parseMode": {
"type": "string",
"description": "Optional parse mode (HTML, MarkdownV2, etc.)"
}
}
}Required Secrets
· 1TELEGRAM_BOT_TOKEN
✦
Similar ACTION Pieces
Shared Terminal
Full-featured web terminal with Node.js, Python, Deno, git, and build tools — running in a Podman container with Ubuntu 24.04
Coolify Logs Watcher
Polls Coolify API for application logs, stores in SQLite, exposes search endpoints for support email triage. Monitors free-copier-py, free-copier-express, and free-copier-next runtime logs. Used by the Events pipeline (Sydney) to find relevant errors when drafting support responses.
Coverter
Converts HTML content to PDF using headless Chromium (Puppeteer). Accepts raw HTML or a URL, returns a downloadable PDF.