telegram-social-sentiment-tracker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telegram-social-sentiment-tracker (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.
Aggregates social buzz and sentiment analysis for specified tokens.
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,ethereum").split(",")
POS = {"moon","pump","bullish","gem","lfg","hodl","rocket"}
NEG = {"dump","bearish","sell","scam","rug","fud","rekt"}def score(text):
w = set(text.lower().split())
p, n = len(w & POS), len(w & NEG)
return (p - n) / (p + n) if p + n else 0
def digest():
lines = ["📊 *Social Sentiment*\n"]
for t in WATCH:
# In production: fetch from Twitter/Reddit API
score_val = 0 # placeholder
em = "🟢" if score_val > 0.2 else "🔴" if score_val < -0.2 else "🟡"
lines.append(f"{em} {escape_md(t.title())}: sentiment score {score_val:.2f}")
send_alert(config, "\n".join(lines))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-sentiment .
docker run -d -e TELEGRAM_BOT_TOKEN=x -e TELEGRAM_CHAT_ID=y -e WATCH_TOKENS="bitcoin,ethereum,solana" tg-sentimentHeuristic only. Sentiment can be gamed. Not financial advice.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.