telegram-notifications

Automates Telegram bot notifications for Golden Touch booking order lifecycle events.

Updated Feb 4, 2026
One-click install
npx skills add https://github.com/Saidabbos/homemessage-admin --skill telegram-notifications
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: telegram-notifications
Source: https://github.com/Saidabbos/homemessage-admin/tree/main/.ai/skills/telegram-notifications
Command: npx skills add https://github.com/Saidabbos/homemessage-admin --skill telegram-notifications

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill provides a blueprint for implementing Telegram bot notifications for the Golden Touch booking system, enabling reliable, role-specific alerts for owners, dispatchers, and therapists.

Core Features & Use Cases

  • Telegram-based notifications for NEW, PAID, and READY events to distinct groups.
  • Config-driven tokens and chat IDs ensuring secure routing and easy deployment.
  • Use Case: When a new order is created, OPS receives a NEW alert; when payment completes, OPS receives a PAID alert; when an order is ready, therapists receive a READY alert with detailed order data.

Quick Start

Set up two Telegram bots (OPS and Therapist), configure their tokens and group chat IDs in the config, and ensure APP_URL is defined. Implement a TelegramService to format and send messages via the Telegram Bot API, with robust error handling so failures do not disrupt business logic.

Frequently Asked Questions about telegram-notifications

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I send Telegram notifications for Laravel order management events?

To send Telegram notifications for Laravel order management, implement a TelegramService that formats messages and calls the Telegram Bot API using bot tokens and group chat IDs. Configure two bots to route alerts to specific groups.

How do I set up a Telegram bot to alert different groups for NEW and PAID orders?

Set up separate Telegram bots for OPS and Therapists, then configure their tokens and group chat IDs. Dispatch NEW and PAID alerts to the OPS group, and READY alerts to the Therapists group with detailed order data.

Can I send Telegram bot alerts without blocking my main Laravel business flow?

Yes, you can send Telegram bot alerts without blocking business flow by implementing robust error handling in your notification service. Catch API failures silently so they do not interrupt the main order processing logic.

Do I need two separate Telegram bots for dispatching OPS and therapist notifications?

Yes, you need two separate Telegram bots for dispatching OPS and therapist notifications. This config-driven approach ensures secure routing, separating NEW and PAID alerts for operators from READY alerts for therapists.

What is the best way to configure Telegram bot tokens and chat IDs in a Laravel application?

The best way to configure Telegram bot tokens and chat IDs in Laravel is using a dedicated config file. Store the tokens and group chat IDs there to ensure secure routing and easy deployment across different environments.

Why are my Telegram bot notifications failing to reach the OPS group during order processing?

Telegram bot notifications fail to reach the OPS group when bot tokens or group chat IDs are misconfigured, or the APP_URL is missing. Ensure the config file has correct values so the TelegramService can properly call the API.