# Send Telegram CTA Button to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tg-smart-cta",
    "name": "Telegram CTA Button",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/dendyadinirwana/tg-smart-cta",
    "canonicalUrl": "https://clawhub.ai/dendyadinirwana/tg-smart-cta",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tg-smart-cta",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tg-smart-cta",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/time_logic.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "tg-smart-cta",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T01:26:37.711Z",
      "expiresAt": "2026-05-11T01:26:37.711Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tg-smart-cta",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tg-smart-cta",
        "contentDisposition": "attachment; filename=\"tg-smart-cta-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tg-smart-cta"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tg-smart-cta"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tg-smart-cta",
    "downloadUrl": "https://openagent3.xyz/downloads/tg-smart-cta",
    "agentUrl": "https://openagent3.xyz/skills/tg-smart-cta/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tg-smart-cta/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tg-smart-cta/agent.md"
  }
}
```
## Documentation

### 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

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.



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.



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

See references/time_logic.md for detailed time-based button presets.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dendyadinirwana
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T01:26:37.711Z
- Expires at: 2026-05-11T01:26:37.711Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tg-smart-cta)
- [Send to Agent page](https://openagent3.xyz/skills/tg-smart-cta/agent)
- [JSON manifest](https://openagent3.xyz/skills/tg-smart-cta/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tg-smart-cta/agent.md)
- [Download page](https://openagent3.xyz/downloads/tg-smart-cta)