Install
openclaw skills install tg-smart-ctaEnhance Telegram replies with context-aware dynamic CTA buttons (Smart Launcher UI). Use when replying to users on Telegram to provide relevant, time-sensitive, and task-oriented options for better interaction.
openclaw skills install tg-smart-ctaThis skill enables the agent to provide an interactive and efficient user experience on Telegram by appending context-aware CTA (Call to Action) buttons to replies.
When responding to a user on Telegram, always consider if providing quick-action buttons would improve efficiency.
Time of Day Awareness:
Context Awareness:
The "Free Text" Fallback:
Use the message tool with the buttons parameter. The buttons array is an array of arrays (rows) of button objects [{text, callback_data}].
message({
action: "send",
target: "USER_ID",
message: "I've prepared the daily report for you.",
buttons: [
[
{ text: "📝 Daily Recap", callback_data: "/update" },
{ text: "🏠 Route Home", callback_data: "Check route home" }
],
[
{ text: "⏭️ Tomorrow's Agenda", callback_data: "What is the agenda for tomorrow?" },
{ text: "⌨️ Manual Input", callback_data: "keyboard_manual" }
]
]
})