skills$openclaw/telegram-smart-launcher
dendyadinirwana7.1k

by dendyadinirwana

telegram-smart-launcher – OpenClaw Skill

telegram-smart-launcher is an OpenClaw Skills integration for planning workflows. Enhance 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.

7.1k stars3.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026planning

Skill Snapshot

nametelegram-smart-launcher
descriptionEnhance 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 integration.
ownerdendyadinirwana
repositorydendyadinirwana/tg-smart-cta
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @dendyadinirwana/tg-smart-cta
last updatedFeb 7, 2026

Maintainer

dendyadinirwana

dendyadinirwana

Maintains telegram-smart-launcher in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
references
time_logic.md
1.4 KB
_meta.json
292 B
SKILL.md
2.3 KB
SKILL.md

name: telegram-smart-launcher description: Enhance 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.

Telegram Smart Launcher (Smart Launcher UI)

This 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.

Usage Guidelines

When responding to a user on Telegram, always consider if providing quick-action buttons would improve efficiency.

Button Selection Logic

  1. Time of Day Awareness:

    • Morning (07:00 - 10:00): Focus on daily briefings, commute status, and agenda checks.
    • Work Hours (10:00 - 16:00): Focus on task progress, deep research, and project-specific actions.
    • Wrap-up (16:00 - 18:00): Focus on daily recaps, route home status, and tomorrow's preparation.
    • Night (20:00 - 23:00): Focus on reflection, mood checks, and planning for the next day.
  2. Context Awareness:

    • If the user is working on administrative or planning tasks, offer buttons for document drafting or data lookup.
    • If the user is working on creative or design tasks, offer buttons for tool links or asset management.
    • If a task just finished, offer "Next Steps" or "Recap" buttons.
  3. The "Free Text" Fallback:

    • Always include an option for free text input (e.g., "⌨️ Manual Input") to ensure the user feels in control.

Implementation Pattern

Use the message tool with the buttons parameter. The buttons array is an array of arrays (rows) of button objects [{text, callback_data}].

Example (Wrap-up Phase)

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" }
    ]
  ]
})

References

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install telegram-smart-launcher?

Run openclaw add @dendyadinirwana/tg-smart-cta in your terminal. This installs telegram-smart-launcher into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/dendyadinirwana/tg-smart-cta. Review commits and README documentation before installing.