원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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.
SOC 직업 분류 기준
| 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.