telegram-bot-types

A set of rules for defining options and data types in a Kotlin Telegram bot library. It explains how optional Telegram API settings are represented and converted to and from data.

In plain words
What is it for?
Adding or changing Telegram API option classes, shared option fields, and serialization behavior.
Why use it?
It prevents optional settings from being treated as required and keeps shared settings consistent across API types. It also provides a common approach to serialization, which is converting data into a transferable format.

Cursor rule for Cursor

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.

agentmods
npx agentmods add rules/vendelieu/telegram-bot/telegram-bot-types
Clone the repo
git clone --depth 1 https://github.com/vendelieu/telegram-bot

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 545 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00545
Opus 5 $0.00000 $0.00272
Sonnet 5 $0.00000 $0.00109
Haiku 4.5 $0.00000 $0.00055

Measured 2d ago against content hash 9257b007cd5d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

telegram-bot-types 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 2d 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.

.cursor/rules/telegram-bot-types.mdc · 57 lines

How it starts

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

Telegram Bot Types Rules

Options Pattern

  • Implement Options sealed interface plus mixins: OptionsCommon, OptionsParseMode, MediaSpoiler, ForumProps, etc.
  • Use data class with var prop: Type? = null for all optional parameters
  • Never use non-null types for optional API parameters
  • Mixin interfaces: Put optional parameters into separate mixin interfaces in IOptions.kt when they can be reused across multiple Options classes (e.g. parseMode in OptionsParseMode, thumbnail in ThumbnailProp). Add a new mixin only when the param is shared; single-use params stay in the Options data class.
@Serializable
data class MyOptions(
    override var parseMode: ParseMode? = null,
    override var disableNotification: Boolean? = null,
    override var protectContent: Boolean? = null,
) : OptionsCommon, OptionsParseMode

Options Mixins (from IOptions.kt)

  • OptionsCommon - disableNotification, replyParameters, protectContent
  • OptionsParseMode - parseMode
  • MediaSpoiler - hasSpoiler
  • LinkPreviewProp - linkPreviewOptions
  • ForumProps - messageThreadId
  • ThumbnailProp - thumbnail
  • ProtectContentProp - protectContent

Serialization

  • Serde uses explicitNulls = false - null values are omitted from JSON
  • namingStrategy = JsonNamingStrategy.SnakeCase - camelCase in Kotlin maps to snake_case in JSON
  • Options classes must be @Serializable

ImplicitFile and InputFile

  • ImplicitFile (sealed): FileId(file: String) for file_id; FileData(file: InputFile) for upload
  • InputFile: data class with data: ByteArray, fileName, contentType
  • ImplicitFile.Serde serializes FileId as string; FileData must be transformed before JSON (via transform(multipartData))
  • Use InputFile.toImplicitFile() or String.toImplicitFile() for conversion

Bad vs Good

// BAD - non-null for optional param
var disableNotification: Boolean = false

// GOOD - nullable for optional param
var disableNotification: Boolean? = null

Read the full file on GitHub · 57 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. 2d ago First seen · 57 lines · 0 tokens per session scan A 9257b007cd5d

Subscribe to this mod's changes

telegram-bot-types is a cursor rule published in the GitHub repository vendelieu/telegram-bot (248 stars, last pushed 6d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 545 tokens. 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.