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 rules/vendelieu/telegram-bot/telegram-bot-apigit clone --depth 1 https://github.com/vendelieu/telegram-botWhat 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 | $0.00000 | $0.01114 |
| Opus 5 | $0.00000 | $0.00557 |
| Sonnet 5 | $0.00000 | $0.00223 |
| Haiku 4.5 | $0.00000 | $0.00111 |
Grade A, and why
telegram-bot-api 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.
How it starts
The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Telegram Bot API Rules
TgAPI Annotation
- Mark Action classes and top-level API functions with
@TgAPI(required for api-sentinel validation) - Use
@TgAPI.Name("methodName")on themethodproperty when the Kotlin name differs from the Telegram API method (e.g.sendMessagevsmessage) - Use
@TgAPI.Ignoreon params/classes to exclude from validation
beforeReq
protected open val beforeReq = {}runs right before the request (indoRequest/doRequestReturning)- Override when you need to process data at request time (e.g. multipart, transform files)
- Use for: uploading files from Options (thumbnail, certificate), transforming nested ImplicitFile in complex types (InputProfilePhoto, InputStoryContent)
beforeReqruns afterinit; it has access toparameters,multipartData, andoptions
override val beforeReq: () -> Unit = {
handleImplicitFile(options::thumbnail) // optional file from Options
}
ImplicitFile Handling
- ImplicitFile =
FileId(String file_id) orFileData(InputFile for upload) - Use
handleImplicitFile(file, "paramName")ininitfor required media params - For optional media in Options (thumbnail, cover):
handleImplicitFile(options::thumbnail)inbeforeReq transform(multipartData): FileData -> uploads to multipart, returns FileId withattach://filename- Convert:
String.toImplicitFile(),InputFile.toImplicitFile(),ByteArray.toImplicitFile("name.ext") - Complex types (InputProfilePhoto, InputStoryContent): use
file.transform(multipartData)in beforeReq, then replacefilewith result and encode
Action Hierarchy
- TgAction (base) -> Action (chat-based:
send(to, via)) or SimpleAction (no chat:send(via)) - Use Action when the method requires
chat_id(messages, media, etc.) - Use SimpleAction when no chat context (getMe, getUpdates, setWebhook, etc.)
- MediaAction extends Action; overrides
entitiesFieldName = "caption_entities" - Extensions: BusinessActionExt (business connection), InlineActionExt (inline message ID)
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.
- 2d ago First seen · 99 lines · 1,114 tokens per session scan A 9df1ea7e2127
telegram-bot-api is a cursor rule published in the GitHub repository vendelieu/telegram-bot (248 stars, last pushed 5d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,114 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.
Other cursor rules, from other repositories
cursorrules
CLAUDE.md.
frontend-web
Cursor rule "frontend-web" from groupultra/telegram-search, covering frontend (apps/web), routing, layouts & navigation, state & data fetching, ui, styling & ux and error handling & notifications.
backend-server
Cursor rule "backend-server" from groupultra/telegram-search, covering backend server (apps/server), bootstrap & lifecycle, http & websocket design, configuration & environment and error handling & observability.
contributing
Cursor rule "contributing" from groupultra/telegram-search, covering contribution & refactor guidelines, 1. before large changes (refactors, new infra, new domains), 2. backend mindset, 3. typescript style and 4. pr hygiene.
testing
Cursor rule "testing" from groupultra/telegram-search, covering testing (vitest), general guidelines, core & db tests and client & web tests.
db
Cursor rule "db" from groupultra/telegram-search, covering database & migrations, schema definition, migrations and performance & indexing.