telegram-codex-linker

telegram-codex-linker is a skill for Claude Code, Codex from InDreamer/telegram-codex-bridge. It costs 70 tokens per session (1,660 once invoked), scanned A, a copy of telegram-codex-linker, MIT.

An installer and repair workflow for connecting Codex to Telegram through a bridge program. Telegram is a messaging app, and the bridge links messages there with Codex.

In plain words
What is it for?
Use it to set up the Telegram bridge, fix an existing installation, update it, or connect it to a different Telegram account.
Why use it?
It removes much of the manual setup involved in installing, configuring, repairing, or reconnecting that bridge.

Skill for Claude CodeCodex

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 skills/indreamer/telegram-codex-bridge/telegram-codex-linker
Any agent
npx skills add InDreamer/telegram-codex-bridge --skill telegram-codex-linker
Clone the repo
git clone --depth 1 https://github.com/InDreamer/telegram-codex-bridge

Made for: Claude Code, Codex.

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 telegram-codex-linker

README.md
[![agentmods](https://agentmods.dev/badge/skills/indreamer/telegram-codex-bridge/telegram-codex-linker.svg)](https://agentmods.dev/skills/indreamer/telegram-codex-bridge/telegram-codex-linker)
Your own site
<a href="https://agentmods.dev/skills/indreamer/telegram-codex-bridge/telegram-codex-linker"><img src="https://agentmods.dev/badge/skills/indreamer/telegram-codex-bridge/telegram-codex-linker.svg" alt="Measured on agentmods" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,660 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 91% 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 $0.00070 $0.01660
Opus 5 $0.00035 $0.00830
Sonnet 5 $0.00014 $0.00332
Haiku 4.5 $0.00007 $0.00166

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

Security

Grade A, and why

telegram-codex-linker 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 4d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/discover-project-scan-roots.ps1, scripts/discover-project-scan-roots.sh, scripts/install-bridge-from-github.ps1, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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

91% identical to telegram-codex-linker — 6 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/telegram-codex-linker/SKILL.md · 182 lines

How it starts

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

Telegram Codex Linker

Overview

This skill exists so the public entrypoint is only "install the skill". After that, the skill should do the bridge-core plus chosen-pack work itself.

The user should not be told to manually git clone, npm install, npm run build, or poke service managers unless local automation is genuinely blocked.

Primary Entry

Assume the user already installed this skill with a one-line GitHub command.

After that, the user should be able to say things like:

  • Use $telegram-codex-linker to set up my Telegram bridge
  • Install the Codex Bridge with the Telegram pack
  • Repair my Telegram bridge
  • Rebind the bridge to a new Telegram account

Your job is to take over from there.

Before acting, read references/install-strategy.md.

Never assume the current working directory is the skill directory. Resolve these first:

SKILL_ROOT="${CODEX_HOME:-$HOME/.codex}/skills/telegram-codex-linker"
INSTALL_SCRIPT="$SKILL_ROOT/scripts/install-bridge-from-github.sh"
ROOT_DISCOVERY_SCRIPT="$SKILL_ROOT/scripts/discover-project-scan-roots.sh"
CTB_BIN="${HOME}/.local/share/codex-telegram-bridge/bin/ctb"

Windows PowerShell equivalents:

$codexHome = if ($env:CODEX_HOME) { $env:CODEX_HOME } else { Join-Path $HOME ".codex" }
$localAppData = if ($env:LOCALAPPDATA) { $env:LOCALAPPDATA } else { Join-Path $HOME "AppData\Local" }
$skillRoot = Join-Path $codexHome "skills\telegram-codex-linker"
$installScript = Join-Path $skillRoot "scripts\install-bridge-from-github.ps1"
$rootDiscoveryScript = Join-Path $skillRoot "scripts\discover-project-scan-roots.ps1"
$ctbBin = Join-Path $localAppData "codex-telegram-bridge\bin\ctb.cmd"

For first install, use the bundled script:

bash "$INSTALL_SCRIPT" --pack telegram --telegram-token '<token>' --project-scan-roots '<path1:path2:path3>'

On Windows, use PowerShell instead:

powershell -ExecutionPolicy Bypass -File $installScript -Pack telegram -TelegramToken '<token>' -ProjectScanRoots '<path1;path2;path3>'

Read the full file on GitHub · 182 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 4d ago First seen · 182 lines · 70 tokens per session scan A 10f94870b0d6

Subscribe to this mod's changes

telegram-codex-linker is a skill published in the GitHub repository InDreamer/telegram-codex-bridge (26 stars, last pushed 3mo ago), licensed MIT. It adds 70 tokens to every session and 1,660 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to telegram-codex-linker, differing in 6 lines, and is treated as a copy.

Related

Other skills, from other repositories

langbot-eba-adapter-dev

Build, refactor, and test LangBot platform adapters for the Event-Based Agents architecture. Use when adding or migrating Telegram, Discord, or other messaging platform adapters to the EBA adapter layout, validating unified event/message conversion, writing live adapter probes, or using standalone plugin runtime plus…

langbot-app/LangBot · 73 tokens

langbot-plugin-dev

Develop, debug, and test LangBot plugins. Use when creating new LangBot plugins, fixing plugin bugs, setting up a LangBot test environment, or testing plugins via WebSocket. Covers plugin component architecture (EventListener, Command, Tool), the plugin SDK API (invokellm, getllmmodels, sendmessage, plugin storage)…

langbot-app/LangBot · 110 tokens

langbot-dev

Develop, build, and debug the LangBot core backend and web frontend. Use when working inside the LangBot repository — backend (Python/Quart, src/langbot/pkg), the Vite/React web UI, HTTP API controllers/services, Alembic migrations, or the MCP server. Covers the dev environment (uv, pnpm), repo layout, the API auth…

langbot-app/LangBot · 136 tokens

langbot-mcp-ops

Operate a LangBot instance through its built-in MCP (Model Context Protocol) server. Use when an AI agent needs to manage LangBot — list/create/update/delete bots, pipelines, models, knowledge bases, MCP servers, and skills — over MCP instead of raw HTTP. Covers the /mcp endpoint, API-key auth (web-UI lbk keys and the…

langbot-app/LangBot · 125 tokens

langbot-space-ops

Browse and search the LangBot Space marketplaces (plugins, MCP servers, skills) through the Space MCP server. Use when an AI agent needs to discover LangBot extensions on space.langbot.app over MCP. Covers the /mcp endpoint, Personal Access Token (PAT) auth, the tool surface, and client configuration. Triggers on…

langbot-app/LangBot · 101 tokens

langbot-testing

Test LangBot WebUI and core product flows with an automated browser and backend logs. Use when validating the configured LangBot frontend, pipeline Debug Chat, model provider setup and test buttons, bot and knowledge-base UI flows, or troubleshooting failed LangBot end-to-end tests.

langbot-app/LangBot · 58 tokens