channel-post

channel-post is a skill for Claude Code from n24q02m/better-telegram-mcp. It costs 23 tokens per session (751 once invoked), scanned A, original, Apache-2.0.

A workflow for writing and posting formatted messages to a Telegram channel, including attached photos or files. Telegram is a messaging service, and a channel is its broadcast-style publishing space.

In plain words
What is it for?
Use it to find a target channel, draft MarkdownV2 posts, send photos or documents, split long messages, and verify delivery.
Why use it?
It handles Telegram's formatting rules and message-length limits so posts and media are sent in the intended order.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: positional $N argument.

Part of the better-telegram-mcp plugin — 2 skills, 1 MCP server shipped together

Good fit Use it to find a target channel, draft MarkdownV2 posts, send photos or documents, split long messages, and verify delivery.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/n24q02m/better-telegram-mcp/channel-post
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 n24q02m/better-telegram-mcp --skill channel-post
Clone the repo
git clone --depth 1 https://github.com/n24q02m/better-telegram-mcp

Made for: Claude Code.

Or install better-telegram-mcp, the plugin that ships this one along with the rest of its 2 skills, 1 MCP server.

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 channel-post

README.md
[![agentmods](https://agentmods.dev/badge/skills/n24q02m/better-telegram-mcp/channel-post/github.svg)](https://agentmods.dev/skills/n24q02m/better-telegram-mcp/channel-post)
Your own site
<a href="https://agentmods.dev/skills/n24q02m/better-telegram-mcp/channel-post"><img src="https://agentmods.dev/badge/skills/n24q02m/better-telegram-mcp/channel-post/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 channel-post

Your own site · 80×15
<a href="https://agentmods.dev/skills/n24q02m/better-telegram-mcp/channel-post"><img src="https://agentmods.dev/badge/skills/n24q02m/better-telegram-mcp/channel-post.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 751 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00023 $0.00751
Opus 5 $0.00012 $0.00376
Sonnet 5 $0.00005 $0.00150
Haiku 4.5 $0.00002 $0.00075

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

Security

Grade A, and why

channel-post 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 11d 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

Copies of this mod

1 near-identical copy found in the catalogue:

skills/channel-post/SKILL.md · 80 lines

How it starts

The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Channel Post

Compose and post formatted content to a Telegram channel with correct formatting.

Steps

  1. Identify target channel:

    • chat(action="list") to find the channel
    • Channel chat_id is a negative number (e.g., -1001234567890) or @username
  2. Compose content with the user:

    • Draft the message text
    • Apply MarkdownV2 formatting (see escaping rules below)
    • Determine if media attachments are needed
  3. Handle media attachments (if any):

    • Photo with caption: media(action="send_photo", chat_id="...", file_path_or_url="...", caption="...") -- caption goes WITH the photo, not as a separate message
    • Document: media(action="send_file", chat_id="...", file_path_or_url="...")
    • Multiple photos: send as media group, first photo carries the caption
  4. Split long messages if content exceeds 4096 characters:

    • Split at paragraph boundaries (double newline) to preserve readability
    • Each chunk must be independently valid MarkdownV2 (no unclosed formatting)
    • Send chunks sequentially with the same parse_mode
  5. Send and verify:

    • message(action="send", chat_id="<channel>", text="<content>", parse_mode="MarkdownV2")
    • Verify the message appears correctly in the channel
    • If formatting breaks, check the escaping rules below

MarkdownV2 Escaping Rules

All these characters MUST be escaped with \ when used as literal text (outside formatting markup):

_ * [ ] ( ) ~ ` > # + - = | { } . !

Common patterns

Intent Correct MarkdownV2
Bold text *bold*
Italic text _italic_
Code inline `code`
Code block ```language\ncode\n```
Link [text](https://url)
Literal dot in "v2.0" v2\.0
Literal dash in list \- item
Price "$9.99" \$9\.99
Exclamation "Done!" Done\!
Parenthetical "(note)" \(note\)
Hashtag "#topic" \#topic

Formatting inside formatting

When nesting, the inner delimiter must also be escaped:

  • Bold italic: *_bold italic_* -- the _ inside *...* does NOT need escaping
  • But literal _ inside bold: *score\_value* -- MUST escape

Read the full file on GitHub · 80 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. 11d ago First seen · 80 lines · 23 tokens per session scan A 288d13e6cc4e

Subscribe to this mod's changes

channel-post is a skill published in the GitHub repository n24q02m/better-telegram-mcp (11 stars, last pushed today), licensed Apache-2.0. It adds 23 tokens to every session and 751 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

code-engine-deploy

IBM Code Engine deployment skill. Use when deploying, managing, or troubleshooting IBM Code Engine applications, jobs, secrets, config maps, domain mappings, container builds, or ICR images. Use for: deploy to code engine, code engine app, code engine job, build container image, push image, ICR registry, MCP tools…

markusvankempen/code-engine-mcp-server · 88 tokens

assets

Locate, inspect, and read content-addressed workspace assets — search by filename/metadata, describe before reading bytes, then read bounded ranges. Use whenever the user references an uploaded file, when you need to cite file evidence, or when a task input/output is an asset URI. Executes via the cloud asset CLI and…

Prismer-AI/PrismerCloud · 69 tokens

web-artifacts-builder

Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.

Prismer-AI/PrismerCloud · 64 tokens

requirements-authoring

To author, update, and validate functional/non-functional requirements as atomic units with user approval.

griddynamics/rosetta · 0 tokens

community-report

Publish a battle report after significant evolution progress.

Prismer-AI/PrismerCloud · 12 tokens

evolve-create

Create a reusable gene from a novel fix pattern. Only invoke manually.

Prismer-AI/PrismerCloud · 18 tokens