update

update is a skill for Claude Code, Codex from k1p1l0/claude-telegram-supercharged. It costs 48 tokens per session (777 once invoked), scanned B, original, Apache-2.0.

An updater for the Telegram Supercharged plugin, which connects a Telegram bot to the assistant. It compares the installed code with the latest version from GitHub and applies available updates.

In plain words
What is it for?
Check for updates, download the latest plugin code, compare local and remote versions, and update the Telegram plugin.
Why use it?
It removes the need to manually find the repository, download changes, and compare versions. It also reports whether the installed plugin is already current and what changed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Check for updates, download the latest plugin code, compare local and remote versions, and update the Telegram plugin.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/k1p1l0/claude-telegram-supercharged/update
Install

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.

Any agent
npx skills add k1p1l0/claude-telegram-supercharged --skill update
Clone the repo
git clone --depth 1 https://github.com/k1p1l0/claude-telegram-supercharged

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for update

README.md
[![agentmods](https://agentmods.dev/badge/skills/k1p1l0/claude-telegram-supercharged/update/github.svg)](https://agentmods.dev/skills/k1p1l0/claude-telegram-supercharged/update)
Your own site
<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.

agentmods 80×15 button for update

Your own site · 80×15
<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>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 777 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 10d ago against content hash 4f8cd3758b07, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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"}'
skills/update/SKILL.md · 110 lines

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

Read the full file on GitHub · 110 lines

Changes

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.

  1. 10d ago First seen · 110 lines · 48 tokens per session scan B 4f8cd3758b07

Subscribe to this mod's changes

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.