skills$openclaw/telegram-pairing-message-customization
crazypeace5.9k

by crazypeace

telegram-pairing-message-customization – OpenClaw Skill

telegram-pairing-message-customization is an OpenClaw Skills integration for coding workflows. Add custom messages to Telegram pairing replies for unapproved users. Insert custom text (e.g., group links, instructions) above the approval command in pairing messages. Use when unpaired Telegram users need additional guidance during the pairing process.

5.9k stars2.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nametelegram-pairing-message-customization
descriptionAdd custom messages to Telegram pairing replies for unapproved users. Insert custom text (e.g., group links, instructions) above the approval command in pairing messages. Use when unpaired Telegram users need additional guidance during the pairing process. OpenClaw Skills integration.
ownercrazypeace
repositorycrazypeace/telegram-pairing-message-customization
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @crazypeace/telegram-pairing-message-customization
last updatedFeb 7, 2026

Maintainer

crazypeace

crazypeace

Maintains telegram-pairing-message-customization in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
541 B
SKILL.md
1.5 KB
SKILL.md

name: telegram-pairing-message-customization description: Add custom messages to Telegram pairing replies for unapproved users. Insert custom text (e.g., group links, instructions) above the approval command in pairing messages. Use when unpaired Telegram users need additional guidance during the pairing process.

Telegram 配对消息自定义

request

实施本技能时, 需要用户提供一份 自定义消息

实施内容

目标文件:/usr/lib/node_modules/openclaw/dist/telegram/bot-message-context.js

修改前备份, 方便以后撤销实施

在数组中 "Ask the bot owner to approve with:" 项上方添加自定义消息:

修改前

fn: () => bot.api.sendMessage(chatId, [
    "OpenClaw: access not configured.",
    "",
    `Your Telegram user id: ${telegramUserId}`,
    "",
    `Pairing code: ${code}`,
    "",
    "Ask the bot owner to approve with:",
    formatCliCommand("openclaw pairing approve telegram <code>"),
].join("\n")),

修改后

fn: () => bot.api.sendMessage(chatId, [
    "OpenClaw: access not configured.",
    "",
    `Your Telegram user id: ${telegramUserId}`,
    "",
    `Pairing code: ${code}`,
    "",
    "YOUR_CUSTOM_MESSAGE_HERE",  // <- 插入自定义消息
    "Ask the bot owner to approve with:",
    formatCliCommand("openclaw pairing approve telegram <code>"),
].join("\n")),

完成配置

修改完成后重启服务:

openclaw gateway restart

验证:让未配对用户发送 /start 命令,确认收到带自定义信息的配对消息。

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install telegram-pairing-message-customization?

Run openclaw add @crazypeace/telegram-pairing-message-customization in your terminal. This installs telegram-pairing-message-customization into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/crazypeace/telegram-pairing-message-customization. Review commits and README documentation before installing.