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 agentmods add skills/vendelieu/telegram-bot/add-telegram-api-actionnpx skills add vendelieu/telegram-bot --skill add-telegram-api-actiongit clone --depth 1 https://github.com/vendelieu/telegram-botWrote 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/vendelieu/telegram-bot/add-telegram-api-action)<a href="https://agentmods.dev/skills/vendelieu/telegram-bot/add-telegram-api-action"><img src="https://agentmods.dev/badge/skills/vendelieu/telegram-bot/add-telegram-api-action.svg" alt="Measured on agentmods" 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.00061 | $0.01019 |
| Opus 5 | $0.00030 | $0.00509 |
| Sonnet 5 | $0.00012 | $0.00204 |
| Haiku 4.5 | $0.00006 | $0.00102 |
Grade A, and why
add-telegram-api-action 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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Add Telegram API Action
Workflow
1. Determine Action Type
- Requires chat_id? ->
Action(orMediaActionfor media) - No chat context? ->
SimpleAction(e.g. getMe, getUpdates, setWebhook)
2. Check Telegram API Spec
Consult core.telegram.org/bots/api for:
- Method name (snake_case)
- Required vs optional parameters
- Return type
3. Create Options Class (if optional params)
- Place in
telegram-bot/src/commonMain/kotlin/eu/vendeli/tgbot/types/options/ data classimplementingOptions+ mixins (OptionsCommon,OptionsParseMode,MediaSpoiler,ForumProps, etc.)- All optional params:
var prop: Type? = null - Add
@Serializable - Mixin interfaces: Put optional params into separate mixin interfaces in IOptions.kt when they can be reused by other Options classes. Add a new interface (e.g.
interface MyProp : Options { var myParam: Type? }) only when the param is shared; single-use params stay in the data class.
4. Create Action Class
Place in appropriate package under telegram-bot/src/commonMain/kotlin/eu/vendeli/tgbot/api/:
media/- photo, video, document, etc.message/- sendMessage, editMessage, etc.answer/- answerCallbackQuery, answerInlineQuerybotactions/- getMe, setWebhook, etc.chat/- getChat, banChatMember, etc.
Required:
@TgAPIon class@TgAPI.Name("methodName")onmethodwhen Kotlin name differs from APIoverride val method,returnType,options(if OptionsFeature)
Features (add as needed):
OptionsFeature- optional params viaoptions { }MarkupFeature- reply_markupCaptionFeature- caption, caption_entities (media)EntitiesFeature- entities (text)BusinessActionExt- chat-based actionsInlineActionExt- inline message actions
Parameter handling:
- Simple (String, Long, Int, Boolean):
parameters["key"] = value.toJsonElement() - Complex objects:
value.encodeWith(MyType.serializer()) - Lists:
list.encodeWith(ListSerializer(ItemType.serializer())) - Polymorphic ID (chat/user: Long or String):
value.encodeWith(DynamicLookupSerializer) - Enums:
value.encodeWith(EnumType.serializer()) - Required media:
handleImplicitFile(file, "paramName")ininit - Optional media in Options (thumbnail):
handleImplicitFile(options::thumbnail)inoverride val beforeReq - Complex types with nested ImplicitFile (InputProfilePhoto, InputStoryContent): transform in
beforeReq, thenencodeWith(Serializer)
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.
- 6d ago First seen · 84 lines · 61 tokens per session scan A 026e757e2a71
add-telegram-api-action is a skill published in the GitHub repository vendelieu/telegram-bot (248 stars, last pushed 9d ago), licensed Apache-2.0. It adds 61 tokens to every session and 1,019 once invoked, about $0.0003 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.
Other skills, from other repositories
compose-modifier-and-layout-style
Use when writing or reviewing Jetpack Compose layout APIs, modifier parameters, modifier chain construction, hardcoded root layout decisions, or layout wrappers around a single conditional. Technique-layer skill — complements the codebase-specific compose-expert.
desktop-expert
Compose Multiplatform Desktop patterns for the desktopApp/ module. Use when working with (1) Desktop-only APIs (Window, WindowState, Tray, MenuBar, Dialog), (2) keyboard shortcuts and menu systems with OS-aware conventions (Cmd vs Ctrl, isMacOS branching), (3) desktop navigation (NavigationRail/sidebar vs Android…
kotlin-coroutines-structured-concurrency
Use when writing or reviewing Kotlin code that stores CoroutineScope, launches from init/non-suspending APIs, calls runBlocking, or catches broad exceptions around suspend calls. Technique-layer skill — complements the codebase-specific kotlin-coroutines.
nostr-expert
Nostr protocol implementation patterns in Quartz (AmethystMultiplatform's KMP Nostr library). Use when working with: (1) Nostr events (creating, parsing, signing), (2) Event kinds and tags, (3) NIP implementations (80+ NIP packages in quartz/), (4) Event builders and TagArrayBuilder DSL, (5) Nostr cryptography…
gradle-expert
Build optimization, dependency resolution, and multi-module KMP troubleshooting for AmethystMultiplatform. Use when working with: (1) Gradle build files (build.gradle.kts, settings.gradle), (2) Version catalog (libs.versions.toml), (3) Build errors and dependency conflicts, (4) Module dependencies and source sets, (5)…
kotlin-multiplatform
Platform abstraction decision-making for Amethyst KMP project. Guides when to abstract vs keep platform-specific, source set placement (commonMain, jvmAndroid, platform-specific), expect/actual patterns. Covers primary targets (Android, JVM/Desktop, iOS — all mature) with web/wasm as possible future targets.…