一键导入
inline-buttons
Use inline buttons for interactive Telegram bot flows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use inline buttons for interactive Telegram bot flows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage and discover files in the TARS workspace.
Manage your daily task list with interactive buttons in Telegram.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Search and install agent skills from ClawHub, the public skill registry.
Schedule reminders and recurring tasks.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
| name | inline_buttons |
| description | Use inline buttons for interactive Telegram bot flows. |
| metadata | {"platforms":["telegram"],"tools":["message"]} |
This skill allows you to create interactive flows in Telegram using inline buttons. You can attach buttons directly to a message, and when the user clicks them, you will receive a new message with the callback data.
To send a message with inline buttons, use the message tool with the reply_markup parameter.
{
"content": "What would you like to do?",
"reply_markup": {
"inline_keyboard": [
[
{"text": "Option A", "callback_data": "opt_a"},
{"text": "Option B", "callback_data": "opt_b"}
]
]
}
}
{
"content": "Check out our website!",
"reply_markup": {
"inline_keyboard": [
[
{"text": "Open Google", "url": "https://google.com"}
]
]
}
}
When a user clicks a button (with callback_data), you will receive a new inbound message that looks like this:
[User clicked button with callback_data: 'opt_a' on message: 'What would you like to do?']
You should:
callback_data (e.g., opt_a).callback_data short and descriptive.