configure

GitHub

配置 Telegram 频道,保存 Bot Token 并设置访问策略。支持查看状态、引导用户完成配对及锁定白名单,确保通道安全可用。

external_plugins/telegram/skills/configure/SKILL.md anthropics/claude-plugins-official

Trigger Scenarios

用户提供 Telegram Bot Token 询问如何配置 Telegram 询问 'how do I set this up' 询问 'who can reach me' 希望检查频道状态

Install

npx skills add anthropics/claude-plugins-official --skill configure -g -y
More Options

Non-standard path

npx skills add https://github.com/anthropics/claude-plugins-official/tree/main/external_plugins/telegram/skills/configure -g -y

Use without installing

npx skills use anthropics/claude-plugins-official@configure

指定 Agent (Claude Code)

npx skills add anthropics/claude-plugins-official --skill configure -a claude-code -g -y

安装 repo 全部 skill

npx skills add anthropics/claude-plugins-official --all -g -y

预览 repo 内 skill

npx skills add anthropics/claude-plugins-official --list

SKILL.md

Frontmatter
{
    "name": "configure",
    "description": "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.",
    "allowed-tools": [
        "Read",
        "Write",
        "Bash(ls *)",
        "Bash(mkdir *)",
        "Bash(echo *)",
        "Bash(chmod *)"
    ],
    "user-invocable": true
}

/telegram:configure — Telegram Channel Setup

Writes the bot token to <state-dir>/.env and orients the user on access policy. The server reads both files at boot.

Resolve the state directory first (it may be overridden for multi-bot or per-project setups):

echo "${TELEGRAM_STATE_DIR:-${CLAUDE_CONFIG_DIR:-$HOME/.claude}/channels/telegram}"

Use the printed path everywhere below in place of <state-dir>. The default is ~/.claude/channels/telegram.

Arguments passed: $ARGUMENTS


Dispatch on arguments

No args — status and guidance

Read both state files and give the user a complete picture:

  1. Token — check <state-dir>/.env for TELEGRAM_BOT_TOKEN. Show set/not-set; if set, show first 10 chars masked (123456789:...).

  2. Access — read <state-dir>/access.json (missing file = defaults: dmPolicy: "pairing", empty allowlist). Show:

    • 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
  3. What next — end with a concrete next step based on state:

    • No token → "Run /telegram:configure <token> with the token from BotFather."
    • 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."

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:

  1. Read the allowlist. Tell the user who's in it.
  2. Ask: "Is that everyone who should reach you through this bot?"
  3. If yes and policy is still pairing"Good. Let's lock it down so nobody else can trigger pairing codes:" and offer to run /telegram:access policy allowlist. Do this proactively — don't wait to be asked.
  4. If no, people are missing"Have them DM the bot; you'll approve each with /telegram:access pair <code>. Run this skill again once everyone's in and we'll lock it."
  5. 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."
  6. If policy is already allowlist → 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: /telegram:access policy pairing → they DM → you pair → flip back."

Never frame pairing as the correct long-term choice. Don't skip the lockdown offer.

<token> — save it

  1. Treat $ARGUMENTS as the token (trim whitespace). BotFather tokens look like 123456789:AAH... — numeric prefix, colon, long string.
  2. mkdir -p the resolved <state-dir>.
  3. Read existing .env if present; update/add the TELEGRAM_BOT_TOKEN= line, preserve other keys. Write back, no quotes around the value.
  4. chmod 600 on <state-dir>/.env — the token is a credential.
  5. Confirm, then show the no-args status so the user sees where they stand.

clear — remove the token

Delete 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 .env once at boot. Token changes need a session restart or /reload-plugins. Say so after saving.
  • access.json is re-read on every inbound message — policy changes via /telegram:access take effect immediately, no restart.

Version History

  • 0fc2bb1 Current 2026-08-20 04:00

    v0.0.7: 修复技能硬编码路径问题,支持通过环境变量自定义状态目录;增加 PID 验证防止误杀进程;移除孤儿监控导致的启动失败问题。

  • f6a8253 2026-07-25 09:48

Same Skill Collection

external_plugins/discord/skills/access/SKILL.md
external_plugins/discord/skills/configure/SKILL.md
external_plugins/imessage/skills/access/SKILL.md
external_plugins/imessage/skills/configure/SKILL.md
external_plugins/telegram/skills/access/SKILL.md
plugins/claude-code-setup/skills/claude-automation-recommender/SKILL.md
plugins/claude-md-management/skills/claude-md-improver/SKILL.md
plugins/claude-security/skills/claude-security/SKILL.md
plugins/cwc-makers/skills/cardputer-buddy/SKILL.md
plugins/cwc-makers/skills/m5-onboard/SKILL.md
plugins/example-plugin/skills/example-command/SKILL.md
plugins/example-plugin/skills/example-skill/SKILL.md
plugins/frontend-design/skills/frontend-design/SKILL.md
plugins/hookify/skills/writing-rules/SKILL.md
plugins/mcp-server-dev/skills/build-mcp-app/SKILL.md
plugins/mcp-server-dev/skills/build-mcp-server/SKILL.md
plugins/mcp-server-dev/skills/build-mcpb/SKILL.md
plugins/playground/skills/playground/SKILL.md
plugins/plugin-dev/skills/agent-development/SKILL.md
plugins/plugin-dev/skills/command-development/SKILL.md
plugins/plugin-dev/skills/mcp-integration/SKILL.md
plugins/plugin-dev/skills/plugin-settings/SKILL.md
plugins/plugin-dev/skills/plugin-structure/SKILL.md
plugins/plugin-dev/skills/skill-development/SKILL.md
plugins/session-report/skills/session-report/SKILL.md
plugins/skill-creator/skills/skill-creator/SKILL.md
plugins/math-olympiad/skills/math-olympiad/SKILL.md
plugins/plugin-dev/skills/hook-development/SKILL.md
plugins/project-artifact/skills/project-artifact/SKILL.md
plugins/receipts/skills/receipts/SKILL.md

Metadata

Files
0
Version
0fc2bb1
Hash
16b06bf2
Indexed
2026-07-25 09:48

- 위키
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 08:36
浙ICP备14020137号-1 $방문자$