telegram-market-cap-threshold-bot — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telegram-market-cap-threshold-bot (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 crosses a specified market cap threshold.
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", "bitcoin:1000000000000").split(",")def mcap(sym):
return requests.get(f"https://api.coingecko.com/api/v3/coins/{sym.lower()}", timeout=15).json().get("market_data",{}).get("market_cap",{}).get("usd", 0)
def check():
for entry in WATCH:
parts = entry.strip().split(":")
sym, th = parts[0], float(parts[1]) if len(parts) > 1 else 1_000_000_000
c = mcap(sym)
if c >= th:
send_alert(config, f"🎯 *MCAP Threshold*\n{escape_md(sym.upper())}\n${c:,.0f} > ${th:,.0f}")FROM python:3.11-slim
WORKDIR /app
RUN pip install lib-gumloop-telegram requests
COPY bot.py .
CMD ["python", "bot.py"]docker build -t tg-mcap-bot .
docker run -d -e TELEGRAM_BOT_TOKEN=x -e TELEGRAM_CHAT_ID=y -e WATCH_TOKENS="bitcoin:1000000000000,ethereum:500000000000" tg-mcap-botNot financial advice. Data may be delayed.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.