Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add k1p1l0/claude-telegram-supercharged --skill updategit clone --depth 1 https://github.com/k1p1l0/claude-telegram-superchargedWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/k1p1l0/claude-telegram-supercharged/update)<a href="https://agentmods.dev/skills/k1p1l0/claude-telegram-supercharged/update"><img src="https://agentmods.dev/badge/skills/k1p1l0/claude-telegram-supercharged/update/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/k1p1l0/claude-telegram-supercharged/update"><img src="https://agentmods.dev/badge/skills/k1p1l0/claude-telegram-supercharged/update.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00048 | $0.00777 |
| Opus 5 | $0.00024 | $0.00388 |
| Sonnet 5 | $0.00010 | $0.00155 |
| Haiku 4.5 | $0.00005 | $0.00078 |
Grade B, and why
update scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
cat ~/.claude/cache/telegram-update-check.json 2>/dev/null || echo '{"update_available":"unknown"}' How it starts
The opening of the file, as written. The whole thing — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Update Telegram Supercharged Plugin
Pull the latest version from GitHub and apply it to the installed plugin.
Process
Step 1: Check current state
# Get local file hash
LOCAL_FILE="$HOME/.claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/server.ts"
LOCAL_HASH=$(shasum -a 256 "$LOCAL_FILE" 2>/dev/null | cut -c1-12)
echo "Local hash: $LOCAL_HASH"
Step 2: Check for updates
# Read cache if available
cat ~/.claude/cache/telegram-update-check.json 2>/dev/null || echo '{"update_available":"unknown"}'
Step 3: Pull latest from GitHub
If update is available (or unknown), pull the latest:
cd /tmp
if [ -d "claude-telegram-supercharged" ]; then
cd claude-telegram-supercharged && git pull
else
git clone https://github.com/k1p1l0/claude-telegram-supercharged.git
cd claude-telegram-supercharged
fi
Step 4: Compare versions
REMOTE_HASH=$(shasum -a 256 /tmp/claude-telegram-supercharged/server.ts 2>/dev/null | cut -c1-12)
echo "Remote hash: $REMOTE_HASH"
echo "Local hash: $LOCAL_HASH"
If hashes match, report "Already up to date" and exit.
Step 5: Show what changed
cd /tmp/claude-telegram-supercharged && git log --oneline -10
Show the user the recent commits and ask for confirmation before updating.
Step 6: Apply update
After user confirms:
PLUGIN_DIR="$HOME/.claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram"
# Copy core files
cp /tmp/claude-telegram-supercharged/server.ts "$PLUGIN_DIR/server.ts"
cp /tmp/claude-telegram-supercharged/package.json "$PLUGIN_DIR/package.json"
cp /tmp/claude-telegram-supercharged/bun.lock "$PLUGIN_DIR/bun.lock"
# Copy skills
cp -r /tmp/claude-telegram-supercharged/skills/* "$PLUGIN_DIR/skills/"
# Copy supervisor
mkdir -p "$HOME/.claude/scripts"
cp /tmp/claude-telegram-supercharged/supervisor.ts "$HOME/.claude/scripts/telegram-supervisor.ts"
# Install dependencies
cd "$PLUGIN_DIR" && bun install --no-summary
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 110 lines · 48 tokens per session scan B 4f8cd3758b07
update is a skill published in the GitHub repository k1p1l0/claude-telegram-supercharged (113 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 48 tokens to every session and 777 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
ai-ml-development
AI and machine learning development with PyTorch, TensorFlow, and LLM integration. Use when building ML models, training pipelines, fine-tuning LLMs, or implementing AI features.
authentication-patterns
OAuth 2.0, JWT, SSO, MFA, NextAuth/Clerk/Supabase Auth implementation patterns.
case-interview-practice
Interactive consulting case interview practice with structured frameworks, feedback mechanisms, and progressive difficulty. Use when preparing for management consulting interviews, case competitions, or business problem-solving exercises.
i18n-localization
Internationalization and localization for global applications. Use when adding multi-language support, handling regional formats, or preparing apps for global markets.
research-archival
Scrape AI research URLs, archive with frontmatter, create GitHub Issues with identity verification.
cloudflare-workers-publish
Deploy static HTML files to Cloudflare Workers with 1Password credential management.