telegram-listing-alert — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telegram-listing-alert (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.
Alerts when a token is listed on major CEX/DEX exchanges.
from lib.gumloop_telegram import BotConfig, send_alert, build_alert, ScheduledBot, escape_md
import requests, os, jsonconfig = BotConfig(bot_token=os.environ["TELEGRAM_BOT_TOKEN"], chat_id=os.environ["TELEGRAM_CHAT_ID"])
WATCH = os.environ.get("WATCH_TOKENS", "").split(",")def check():
feeds = {"Binance":"https://www.binance.com/en/blog/rss","Coinbase":"https://www.coinbase.com/blog/feed.xml"}
for name, url in feeds.items():
try:
text = requests.get(url, timeout=15).text.lower()
for tok in WATCH:
if tok.strip().lower() in text:
send_alert(config, f"📋 *Listing Detected*\n{escape_md(tok.strip())} on {name}")
except:
passFROM python:3.11-slim
WORKDIR /app
RUN pip install lib-gumloop-telegram requests
COPY bot.py .
CMD ["python", "bot.py"]docker build -t tg-listing-alert .
docker run -d -e TELEGRAM_BOT_TOKEN=x -e TELEGRAM_CHAT_ID=y -e WATCH_TOKENS=ETH,SOL,DOGE tg-listing-alertNot financial advice. Listing announcements can be faked.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.