con un clic
inline-buttons
Use inline buttons for interactive Telegram bot flows.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Use inline buttons for interactive Telegram bot flows.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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.