{
  "schemaVersion": "1.0",
  "item": {
    "slug": "telegram-pairing-message-customization",
    "name": "Telegram 配对消息自定义 |  Customize Telegram Pairing Messages",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/crazypeace/telegram-pairing-message-customization",
    "canonicalUrl": "https://clawhub.ai/crazypeace/telegram-pairing-message-customization",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/telegram-pairing-message-customization",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=telegram-pairing-message-customization",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/telegram-pairing-message-customization"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/telegram-pairing-message-customization",
    "agentPageUrl": "https://openagent3.xyz/skills/telegram-pairing-message-customization/agent",
    "manifestUrl": "https://openagent3.xyz/skills/telegram-pairing-message-customization/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/telegram-pairing-message-customization/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "request",
        "body": "实施本技能时, 需要用户提供一份 自定义消息"
      },
      {
        "title": "1. 找到需要修改的文件",
        "body": "在你正在运行的代码中搜索下面的代码段\n\nfn: () => bot.api.sendMessage(chatId, [\n    \"OpenClaw: access not configured.\",\n    \"\",\n    `Your Telegram user id: ${telegramUserId}`,\n    \"\",\n    `Pairing code: ${code}`,\n    \"\",\n    \"Ask the bot owner to approve with:\",\n    formatCliCommand(\"openclaw pairing approve telegram <code>\"),\n].join(\"\\n\")),"
      },
      {
        "title": "2. 备份文件",
        "body": "修改前备份, 方便以后撤销实施"
      },
      {
        "title": "3. 实施修改",
        "body": "在数组中 \"Ask the bot owner to approve with:\" 项上方添加自定义消息：\n\n修改后\n\nfn: () => bot.api.sendMessage(chatId, [\n    \"OpenClaw: access not configured.\",\n    \"\",\n    `Your Telegram user id: ${telegramUserId}`,\n    \"\",\n    `Pairing code: ${code}`,\n    \"\",\n    \"YOUR_CUSTOM_MESSAGE_HERE\",  // <- 插入自定义消息\n    \"Ask the bot owner to approve with:\",\n    formatCliCommand(\"openclaw pairing approve telegram <code>\"),\n].join(\"\\n\")),"
      },
      {
        "title": "4. 修改完成后重启服务",
        "body": "openclaw gateway restart"
      },
      {
        "title": "验证",
        "body": "让未配对用户发送 /start 命令，确认收到带自定义信息的配对消息。"
      },
      {
        "title": "一些建议",
        "body": "在寻找需要修改的文件时, 建议先搜索 Ask the bot owner to approve with: 可以帮助你先大幅缩小处理范围, 过滤出最有可能的几个文件.\n\n一个建议的起始目录为 /usr/lib/node_modules/openclaw/"
      }
    ],
    "body": "Telegram 配对消息自定义\nrequest\n\n实施本技能时, 需要用户提供一份 自定义消息\n\n实施内容\n1. 找到需要修改的文件\n\n在你正在运行的代码中搜索下面的代码段\n\nfn: () => bot.api.sendMessage(chatId, [\n    \"OpenClaw: access not configured.\",\n    \"\",\n    `Your Telegram user id: ${telegramUserId}`,\n    \"\",\n    `Pairing code: ${code}`,\n    \"\",\n    \"Ask the bot owner to approve with:\",\n    formatCliCommand(\"openclaw pairing approve telegram <code>\"),\n].join(\"\\n\")),\n\n2. 备份文件\n\n修改前备份, 方便以后撤销实施\n\n3. 实施修改\n\n在数组中 \"Ask the bot owner to approve with:\" 项上方添加自定义消息：\n\n修改后\n\nfn: () => bot.api.sendMessage(chatId, [\n    \"OpenClaw: access not configured.\",\n    \"\",\n    `Your Telegram user id: ${telegramUserId}`,\n    \"\",\n    `Pairing code: ${code}`,\n    \"\",\n    \"YOUR_CUSTOM_MESSAGE_HERE\",  // <- 插入自定义消息\n    \"Ask the bot owner to approve with:\",\n    formatCliCommand(\"openclaw pairing approve telegram <code>\"),\n].join(\"\\n\")),\n\n4. 修改完成后重启服务\nopenclaw gateway restart\n\n验证\n\n让未配对用户发送 /start 命令，确认收到带自定义信息的配对消息。\n\n一些建议\n\n在寻找需要修改的文件时, 建议先搜索 Ask the bot owner to approve with: 可以帮助你先大幅缩小处理范围, 过滤出最有可能的几个文件.\n\n一个建议的起始目录为 /usr/lib/node_modules/openclaw/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/crazypeace/telegram-pairing-message-customization",
    "publisherUrl": "https://clawhub.ai/crazypeace/telegram-pairing-message-customization",
    "owner": "crazypeace",
    "version": "1.0.6",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/telegram-pairing-message-customization",
    "downloadUrl": "https://openagent3.xyz/downloads/telegram-pairing-message-customization",
    "agentUrl": "https://openagent3.xyz/skills/telegram-pairing-message-customization/agent",
    "manifestUrl": "https://openagent3.xyz/skills/telegram-pairing-message-customization/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/telegram-pairing-message-customization/agent.md"
  }
}