Claude-plugins-official configure
Set up the Telegram channel — save the bot token and review access policy. Use when the user pastes a Telegram bot token, asks to configure Telegram, asks "how do I set this up" or "who can reach me," or wants to check channel status.
install
source · Clone the upstream repo
git clone https://github.com/anthropics/claude-plugins-official
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/anthropics/claude-plugins-official "$T" && mkdir -p ~/.claude/skills && cp -r "$T/external_plugins/telegram/skills/configure" ~/.claude/skills/anthropics-claude-plugins-official-configure-7a58fa && rm -rf "$T"
manifest:
external_plugins/telegram/skills/configure/SKILL.mdsource content
/telegram:configure — Telegram Channel Setup
Writes the bot token to
~/.claude/channels/telegram/.env and orients the
user on access policy. The server reads both files at boot.
Arguments passed:
$ARGUMENTS
Dispatch on arguments
No args — status and guidance
Read both state files and give the user a complete picture:
-
Token — check
for~/.claude/channels/telegram/.env
. Show set/not-set; if set, show first 10 chars masked (TELEGRAM_BOT_TOKEN
).123456789:... -
Access — read
(missing file = defaults:~/.claude/channels/telegram/access.json
, empty allowlist). Show:dmPolicy: "pairing"- DM policy and what it means in one line
- Allowed senders: count, and list display names or IDs
- Pending pairings: count, with codes and display names if any
-
What next — end with a concrete next step based on state:
- No token → "Run
with the token from BotFather."/telegram:configure <token> - Token set, policy is pairing, nobody allowed → "DM your bot on
Telegram. It replies with a code; approve with
."/telegram:access pair <code> - Token set, someone allowed → "Ready. DM your bot to reach the assistant."
- No token → "Run
Push toward lockdown — always. The goal for every setup is
allowlist
with a defined list. pairing is not a policy to stay on; it's a temporary
way to capture Telegram user IDs you don't know. Once the IDs are in, pairing
has done its job and should be turned off.
Drive the conversation this way:
- Read the allowlist. Tell the user who's in it.
- Ask: "Is that everyone who should reach you through this bot?"
- If yes and policy is still
→ "Good. Let's lock it down so nobody else can trigger pairing codes:" and offer to runpairing
. Do this proactively — don't wait to be asked./telegram:access policy allowlist - If no, people are missing → "Have them DM the bot; you'll approve
each with
. Run this skill again once everyone's in and we'll lock it."/telegram:access pair <code> - If the allowlist is empty and they haven't paired themselves yet → "DM your bot to capture your own ID first. Then we'll add anyone else and lock it down."
- If policy is already
→ confirm this is the locked state. If they need to add someone: "They'll need to give you their numeric ID (have them message @userinfobot), or you can briefly flip to pairing:allowlist
→ they DM → you pair → flip back."/telegram:access policy pairing
Never frame
pairing as the correct long-term choice. Don't skip the lockdown
offer.
<token>
— save it
<token>- Treat
as the token (trim whitespace). BotFather tokens look like$ARGUMENTS
— numeric prefix, colon, long string.123456789:AAH... mkdir -p ~/.claude/channels/telegram- Read existing
if present; update/add the.env
line, preserve other keys. Write back, no quotes around the value.TELEGRAM_BOT_TOKEN=
— the token is a credential.chmod 600 ~/.claude/channels/telegram/.env- Confirm, then show the no-args status so the user sees where they stand.
clear
— remove the token
clearDelete the
TELEGRAM_BOT_TOKEN= line (or the file if that's the only line).
Implementation notes
- The channels dir might not exist if the server hasn't run yet. Missing file = not configured, not an error.
- The server reads
once at boot. Token changes need a session restart or.env
. Say so after saving./reload-plugins
is re-read on every inbound message — policy changes viaaccess.json
take effect immediately, no restart./telegram:access