tg-send

tg-send is a skill for Claude Code from Uri6407/claudegram. It costs 31 tokens per session (444 once invoked), scanned A, a copy of tg-send, MIT.

A procedure for sending a message to a Telegram chat, a messaging conversation, through a connected service after the user confirms the recipient and final text.

In plain words
What is it for?
Use it to parse a recipient and message, resolve usernames, inspect chat details, preview the text, choose plain or Markdown formatting when appropriate, and send the confirmed message.
Why use it?
It helps avoid sending a message to the wrong chat or with unintended formatting by checking the destination and requiring explicit confirmation first.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to parse a recipient and message, resolve usernames, inspect chat details, preview the text, choose plain or Markdown formatting when appropriate, and send the confirmed message.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/uri6407/claudegram/tg-send
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 Uri6407/claudegram --skill tg-send
Clone the repo
git clone --depth 1 https://github.com/Uri6407/claudegram

Made for: Claude Code.

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 tg-send

README.md
[![agentmods](https://agentmods.dev/badge/skills/uri6407/claudegram/tg-send.svg)](https://agentmods.dev/skills/uri6407/claudegram/tg-send)
Your own site
<a href="https://agentmods.dev/skills/uri6407/claudegram/tg-send"><img src="https://agentmods.dev/badge/skills/uri6407/claudegram/tg-send.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 444 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.00031 $0.00444
Opus 5 $0.00015 $0.00222
Sonnet 5 $0.00006 $0.00089
Haiku 4.5 $0.00003 $0.00044

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

Security

Grade A, and why

tg-send scanned grade A with 0 findings 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to tg-send — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/tg-send/SKILL.md · 34 lines

What it actually says

Отправить сообщение в Telegram.

Аргументы пришли как: $ARGUMENTS

Парсинг:

  1. Получатель — первое слово в $ARGUMENTS (@username, username или числовой id).
  2. Текст — всё остальное после первого пробела. Сохрани переносы строк, не трогай регистр.

Алгоритм:

  1. Разбери $ARGUMENTS по правилу выше. Если получатель пустой или текст пустой — попроси уточнить, не выдумывай.
  2. Если получатель — @username, преобразуй через mcp__plugin_claudegram_claudegram__resolve_username.
  3. Покажи мне краткую инфу о чате (тип, имя, id) через mcp__plugin_claudegram_claudegram__get_chat_info.
  4. Покажи мне финальный текст в блоке кода, чтобы я перечитал.
  5. Жди явного подтверждения прежде чем вызывать mcp__plugin_claudegram_claudegram__send_message.
  6. Если в тексте есть *, _, [, ], ~, \`` без явного намерения форматирования — передай parse_mode="none". Иначе оставь дефолт "markdown"`.
  7. После отправки покажи id отправленного сообщения (на случай редактирования / удаления).
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. 8d ago First seen · 34 lines · 31 tokens per session scan A ed7e14e50a1b

Subscribe to this mod's changes

tg-send is a skill published in the GitHub repository Uri6407/claudegram (2 stars, last pushed 2d ago), licensed MIT. It adds 31 tokens to every session and 444 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to tg-send, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

ha-mac-control

Hope Agent native macOS desktop control — the standard maccontrol status / diagnostics / apps / dock / spaces / snapshot / visual / windows / menu / clipboard / dialog loop, target-first action rules, no-blind-coordinate policy, and recovery for stale AX/window/menu/dialog state. Load whenever using maccontrol, or…

shiwenwen/hope-agent · 139 tokens

ha-skill-creator

Create, edit, improve, or audit Hope Agent skills. Use when the user wants to: (1) create a new skill from scratch, (2) edit or improve an existing skill, (3) review or clean up a SKILL.md file, (4) run evaluations to test skill effectiveness, (5) optimize skill descriptions for better trigger accuracy. Trigger…

shiwenwen/hope-agent · 106 tokens

ha-browser

Hope Agent browser automation — the standard status → tabs → snapshot → act loop, stale-ref recovery rules, and what to do when login / 2FA / captcha / camera-prompt / dialog blocks progress. Load this skill whenever you reach for the browser tool. Trigger on: user asks the agent to open / control / click / scrape /…

shiwenwen/hope-agent · 140 tokens

ha-logs

A read-only troubleshooting skill for querying Hope Agent’s local SQLite databases, which store logs, conversations, and background-job status.

shiwenwen/hope-agent · 183 tokens

ha-pet-import

Safely import, select, switch, or enable a compatible desktop pet in Hope Agent. Resolve packages from any origin, including local folders, zip archives, pet.json plus a sprite, PNG/WebP atlases, chat attachments, repository or cloud files, direct HTTPS artifact URLs, and download pages. Use whenever a user asks to…

shiwenwen/hope-agent · 109 tokens

feishu

A toolkit for working with Feishu, also called Lark, a workplace collaboration platform. It covers documents, spreadsheets, files, wikis, approvals, calendars, and contacts.

shiwenwen/hope-agent · 189 tokens