telegram-alerter — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telegram-alerter (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill when a Python script needs to push a Telegram notification without hardcoding credentials. It provides a dependency-light pattern for message/photo dispatch, inline buttons, and rate-limit retry handling.
User input:
Add a Telegram alert when my nightly scraper finishes and link to the dashboard.Output:
# Copy assets/send_alert.py into your project, then:
from send_alert import send_telegram
ok = send_telegram(
"Job done: processed 42 items in 18 minutes.",
button=("Open dashboard", "https://example.com/dash"),
)
if not ok:
print("Telegram delivery failed after retries")The helper reads TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID from the environment. User-provided text should be HTML-escaped before formatting.
sendMessage payload by default and switch to sendPhoto when a photo URL is provided.retry_after on HTTP 429.Reference: assets/send_alert.py.
Distilled from production use across the author's automation projects. v0.1.0. See also: [[pr-body-formatter]].
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.