{
  "schemaVersion": "1.0",
  "item": {
    "slug": "telegram-inline-buttons",
    "name": "Telegram Inline Buttons",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/RahulSinghalChicago/telegram-inline-buttons",
    "canonicalUrl": "https://clawhub.ai/RahulSinghalChicago/telegram-inline-buttons",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/telegram-inline-buttons",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=telegram-inline-buttons",
    "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-inline-buttons"
    },
    "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-inline-buttons",
    "agentPageUrl": "https://openagent3.xyz/skills/telegram-inline-buttons/agent",
    "manifestUrl": "https://openagent3.xyz/skills/telegram-inline-buttons/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/telegram-inline-buttons/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": "Default rule",
        "body": "When sending a proactive message or asking Rahul to choose/confirm something on Telegram, prefer inline buttons over free-text prompts.\n\nUse buttons for:\n\nY/N confirmations\nA/B (or A/B/C) choices\n“Do it now vs later”\nSelecting one of a few next actions\n\nDo not use buttons when:\n\nThe message is purely informational (no action required)\nThe user needs to paste/enter a value (then ask for text input)\nThere are >5 options (summarize + offer “Show more”)"
      },
      {
        "title": "Button design",
        "body": "Keep button labels short (1–4 words)\n2–4 buttons is ideal\nAlways include a safe escape hatch when appropriate:\n\n“Not now” / “Later” / “Skip”\n\n\nMap button presses to clear next actions in follow-up turns"
      },
      {
        "title": "After a button selection (automatic)",
        "body": "Telegram doesn’t support arbitrary text color in normal bot messages. To make the selection visually pop, do this automatically after a click:\n\nEdit the original message to remove the inline keyboard\nAppend a standout selection line using emoji / symbols (chosen based on meaning)"
      },
      {
        "title": "Emoji mapping (standard)",
        "body": "✅ / 🟩 = approve / yes / proceed / confirm\n🟥 = no / cancel / stop\n⬛ = later / skip / defer\n\nDo not send an extra follow-up message that repeats the selection—editing is sufficient unless there’s additional context/results to report.\n\nTooling rule: if you used functions.message (send/edit) as the user-visible delivery, respond in chat with NO_REPLY (unless you need to include additional results/details beyond what the edit shows)."
      },
      {
        "title": "Duplicate / stale callbacks",
        "body": "If a callback arrives after the message was already finalized (buttons removed / selection committed), do nothing:\n\nNo extra message\nNo additional edits\nJust silently ignore"
      },
      {
        "title": "OpenClaw message tool pattern",
        "body": "When using functions.message with action=send, include a buttons grid.\n\nRecommended layouts:"
      },
      {
        "title": "2-button (binary)",
        "body": "Row 1: [\"Yes\"] [\"No\"]"
      },
      {
        "title": "3-button (decision + defer)",
        "body": "Row 1: [\"Do it\"] [\"Not now\"]\nRow 2: [\"More info\"]"
      },
      {
        "title": "A/B/C",
        "body": "Row 1: [\"A\"] [\"B\"] [\"C\"]"
      },
      {
        "title": "Confirm action",
        "body": "Text: \"Want me to proceed with <action>?\"\nButtons: [Proceed] [Hold]"
      },
      {
        "title": "Pick next step",
        "body": "Text: \"Pick the next move:\"\nButtons: [Option A] [Option B] [Option C] [Not now]"
      },
      {
        "title": "Scheduling",
        "body": "Text: \"When should I remind you?\"\nButtons: [15m] [1h] [Tonight] [Tomorrow]"
      },
      {
        "title": "Notes",
        "body": "If a button-triggered flow will branch, keep the first message short; put details in the follow-up after the click.\nMulti-step flows: (1) edit prior message to commit selection, then (2) send the next question with buttons. Don’t narrate the selection separately.\nKeep callback_data stable and unique per flow step (e.g., flow_step_choice)."
      }
    ],
    "body": "Telegram Inline Buttons\nDefault rule\n\nWhen sending a proactive message or asking Rahul to choose/confirm something on Telegram, prefer inline buttons over free-text prompts.\n\nUse buttons for:\n\nY/N confirmations\nA/B (or A/B/C) choices\n“Do it now vs later”\nSelecting one of a few next actions\n\nDo not use buttons when:\n\nThe message is purely informational (no action required)\nThe user needs to paste/enter a value (then ask for text input)\nThere are >5 options (summarize + offer “Show more”)\nButton design\nKeep button labels short (1–4 words)\n2–4 buttons is ideal\nAlways include a safe escape hatch when appropriate:\n“Not now” / “Later” / “Skip”\nMap button presses to clear next actions in follow-up turns\nAfter a button selection (automatic)\n\nTelegram doesn’t support arbitrary text color in normal bot messages. To make the selection visually pop, do this automatically after a click:\n\nEdit the original message to remove the inline keyboard\nAppend a standout selection line using emoji / symbols (chosen based on meaning)\nEmoji mapping (standard)\n✅ / 🟩 = approve / yes / proceed / confirm\n🟥 = no / cancel / stop\n⬛ = later / skip / defer\n\nDo not send an extra follow-up message that repeats the selection—editing is sufficient unless there’s additional context/results to report.\n\nTooling rule: if you used functions.message (send/edit) as the user-visible delivery, respond in chat with NO_REPLY (unless you need to include additional results/details beyond what the edit shows).\n\nDuplicate / stale callbacks\n\nIf a callback arrives after the message was already finalized (buttons removed / selection committed), do nothing:\n\nNo extra message\nNo additional edits\nJust silently ignore\nOpenClaw message tool pattern\n\nWhen using functions.message with action=send, include a buttons grid.\n\nRecommended layouts:\n\n2-button (binary)\n\nRow 1: [\"Yes\"] [\"No\"]\n\n3-button (decision + defer)\n\nRow 1: [\"Do it\"] [\"Not now\"] Row 2: [\"More info\"]\n\nA/B/C\n\nRow 1: [\"A\"] [\"B\"] [\"C\"]\n\nCopy-ready micro-templates (Telegram)\nConfirm action\n\nText: \"Want me to proceed with <action>?\" Buttons: [Proceed] [Hold]\n\nPick next step\n\nText: \"Pick the next move:\" Buttons: [Option A] [Option B] [Option C] [Not now]\n\nScheduling\n\nText: \"When should I remind you?\" Buttons: [15m] [1h] [Tonight] [Tomorrow]\n\nNotes\nIf a button-triggered flow will branch, keep the first message short; put details in the follow-up after the click.\nMulti-step flows: (1) edit prior message to commit selection, then (2) send the next question with buttons. Don’t narrate the selection separately.\nKeep callback_data stable and unique per flow step (e.g., flow_step_choice)."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/RahulSinghalChicago/telegram-inline-buttons",
    "publisherUrl": "https://clawhub.ai/RahulSinghalChicago/telegram-inline-buttons",
    "owner": "RahulSinghalChicago",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/telegram-inline-buttons",
    "downloadUrl": "https://openagent3.xyz/downloads/telegram-inline-buttons",
    "agentUrl": "https://openagent3.xyz/skills/telegram-inline-buttons/agent",
    "manifestUrl": "https://openagent3.xyz/skills/telegram-inline-buttons/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/telegram-inline-buttons/agent.md"
  }
}