Communications — Master Hub
Build chat, WhatsApp, SMS/voice, push, customer support, an omnichannel inbox + AI chatbot, and
advanced email — at staff/principal depth, with real APIs and 2026-current compliance.
How to use this hub
This single skill bundles all 7 communications skills. Each bundled skill's full instructions
live in skills/<name>/GUIDE.md — read the relevant GUIDE.md before acting, then combine
them: a real support product spans chat + WhatsApp + SMS + push + email + helpdesk + bot.
Workflow
- Match the request to one or more skills below; open its
GUIDE.md first.
- Compose. The cross-cutting invariants repeat across every channel — apply them everywhere:
- Verify every inbound webhook (signatures: WhatsApp
X-Hub-Signature-256, Twilio
X-Twilio-Signature, ESP signing) before doing anything.
- Idempotent + at-least-once: dedupe by provider message id; every channel redelivers.
- Consent/opt-in is mandatory (WhatsApp opt-in, TCPA STOP, email one-click unsubscribe, push permission).
- i18n/RTL Arabic: localize at send time,
dir="auto", ICU plurals, per-locale templates.
Bundled skills
- realtime-chat-messaging — Production real-time chat: stateless WebSocket gateway + Redis
Pub/Sub backplane, server-assigned total ordering, idempotent send, delivery/read receipts,
presence, reconnect+replay, fan-out scaling, backpressure, and per-conversation authz.
→ skills/realtime-chat-messaging/GUIDE.md
- whatsapp-business-integration — WhatsApp Cloud API (Graph v25.0): the 24h window vs approved
templates (HSM), per-message pricing (post-2025), interactive buttons/lists/Flows, signed webhooks,
status receipts, opt-in/quality, BSP abstraction, idempotent intake.
→ skills/whatsapp-business-integration/GUIDE.md
- voice-sms-telephony — Programmable SMS/MMS + voice (Twilio et al.): US A2P 10DLC + TCPA
compliance,
X-Twilio-Signature validation, inbound + STOP/HELP, status callbacks, TwiML IVR,
and real-time AI voice via Media Streams.
→ skills/voice-sms-telephony/GUIDE.md
- push-notifications-advanced — Cross-platform push + in-app: Web Push (VAPID), FCM HTTP v1
(legacy retired 2024), APNs token-based auth (.p8 JWT/HTTP2), token pruning, and an orchestration
layer with preferences, quiet hours, dedupe/digest, and email/SMS fallback.
→ skills/push-notifications-advanced/GUIDE.md
- support-helpdesk-system — Zendesk/Intercom-grade helpdesk: ticket state machine + event log,
omnichannel intake, an SLA engine computed in business hours with pause-on-pending + breach
escalation, routing (round-robin/load/skills), macros/automations, KB/deflection, CSAT/CES/NPS.
→ skills/support-helpdesk-system/GUIDE.md
- omnichannel-inbox-chatbot — Unify chat/WhatsApp/SMS/email/social into one inbox + AI agent:
channel adapters, identity resolution, RAG over the KB (grounded + cited), tool-calling with
guardrails, and confidence-gated human handoff with full context + agent-assist.
→ skills/omnichannel-inbox-chatbot/GUIDE.md
- email-integration-advanced — Advanced email: ESP send (Resend/SendGrid/SES), deliverability
(SPF/DKIM/DMARC/BIMI + RFC 8058 one-click unsub + Gmail/Yahoo/Microsoft 2024–2025 rules),
MJML/React Email, inbound parse, IMAP/Gmail/Graph two-way sync, threading, email-to-ticket,
bounce/complaint suppression.
→ skills/email-integration-advanced/GUIDE.md
Typical compositions
- Support platform: omnichannel-inbox-chatbot (brain) + support-helpdesk-system (tickets/SLA) +
realtime-chat-messaging (web chat) + whatsapp/voice-sms/email (channels) + push (agent/customer alerts).
- Transactional comms: email (receipts) + whatsapp (utility templates) + voice-sms (OTP) + push,
all behind one preference/consent layer.
Pairs well with
ai-mcp-master (prompt-engineering-advanced, mcp-builder for the chatbot/voice brain),
business-master (crm-builder for customer-360), backend-api-master (integrations-pro webhooks,
auth/MFA), analytics-master (engagement/deliverability), and ui-master (chat widget + dashboards).
Note
These bundled skills are intentionally not registered as separate Cursor skills (their files are
GUIDE.md, not SKILL.md) so only this master appears in the skills list. Read the relevant
GUIDE.md on demand.
1---2name: communications-master3description: Master hub for Communications — real-time chat, WhatsApp, voice/SMS, push, support/helpdesk, omnichannel AI inbox, and advanced email. Use to build production WebSocket/SSE chat, WhatsApp Business (Cloud API), SMS/voice (Twilio, A2P 10DLC), cross-platform push (Web Push/FCM v1/APNs), a Zendesk-grade helpdesk (tickets/SLA/CSAT), an omnichannel inbox with a RAG chatbot + human handoff, and advanced email (deliverability SPF/DKIM/DMARC, inbound parse, two-way sync, email-to-ticket). Bundles 7 specialized skills (in skills/<name>/GUIDE.md). Use for any chat, messaging, voice, push, support, or email task.4---56# Communications — Master Hub78Build chat, WhatsApp, SMS/voice, push, customer support, an omnichannel inbox + AI chatbot, and9advanced email — at staff/principal depth, with real APIs and 2026-current compliance.1011## How to use this hub1213This single skill bundles **all 7 communications skills**. Each bundled skill's full instructions14live in `skills/<name>/GUIDE.md` — **read the relevant `GUIDE.md` before acting**, then combine15them: a real support product spans chat + WhatsApp + SMS + push + email + helpdesk + bot.1617**Workflow**181. Match the request to one or more skills below; open its `GUIDE.md` first.192. Compose. The cross-cutting invariants repeat across every channel — apply them everywhere:20 - **Verify every inbound webhook** (signatures: WhatsApp `X-Hub-Signature-256`, Twilio21 `X-Twilio-Signature`, ESP signing) before doing anything.22 - **Idempotent + at-least-once**: dedupe by provider message id; every channel redelivers.23 - **Consent/opt-in** is mandatory (WhatsApp opt-in, TCPA STOP, email one-click unsubscribe, push permission).24 - **i18n/RTL Arabic**: localize at send time, `dir="auto"`, ICU plurals, per-locale templates.2526## Bundled skills2728- **realtime-chat-messaging** — Production real-time chat: stateless WebSocket gateway + Redis29 Pub/Sub backplane, server-assigned total ordering, idempotent send, delivery/read receipts,30 presence, reconnect+replay, fan-out scaling, backpressure, and per-conversation authz. 31 → `skills/realtime-chat-messaging/GUIDE.md`32- **whatsapp-business-integration** — WhatsApp Cloud API (Graph v25.0): the 24h window vs approved33 templates (HSM), per-message pricing (post-2025), interactive buttons/lists/Flows, signed webhooks,34 status receipts, opt-in/quality, BSP abstraction, idempotent intake. 35 → `skills/whatsapp-business-integration/GUIDE.md`36- **voice-sms-telephony** — Programmable SMS/MMS + voice (Twilio et al.): US A2P 10DLC + TCPA37 compliance, `X-Twilio-Signature` validation, inbound + STOP/HELP, status callbacks, TwiML IVR,38 and real-time AI voice via Media Streams. 39 → `skills/voice-sms-telephony/GUIDE.md`40- **push-notifications-advanced** — Cross-platform push + in-app: Web Push (VAPID), FCM HTTP v141 (legacy retired 2024), APNs token-based auth (.p8 JWT/HTTP2), token pruning, and an orchestration42 layer with preferences, quiet hours, dedupe/digest, and email/SMS fallback. 43 → `skills/push-notifications-advanced/GUIDE.md`44- **support-helpdesk-system** — Zendesk/Intercom-grade helpdesk: ticket state machine + event log,45 omnichannel intake, an SLA engine computed in **business hours** with pause-on-pending + breach46 escalation, routing (round-robin/load/skills), macros/automations, KB/deflection, CSAT/CES/NPS. 47 → `skills/support-helpdesk-system/GUIDE.md`48- **omnichannel-inbox-chatbot** — Unify chat/WhatsApp/SMS/email/social into one inbox + AI agent:49 channel adapters, identity resolution, RAG over the KB (grounded + cited), tool-calling with50 guardrails, and confidence-gated human handoff with full context + agent-assist. 51 → `skills/omnichannel-inbox-chatbot/GUIDE.md`52- **email-integration-advanced** — Advanced email: ESP send (Resend/SendGrid/SES), deliverability53 (SPF/DKIM/DMARC/BIMI + RFC 8058 one-click unsub + Gmail/Yahoo/Microsoft 2024–2025 rules),54 MJML/React Email, inbound parse, IMAP/Gmail/Graph two-way sync, threading, email-to-ticket,55 bounce/complaint suppression. 56 → `skills/email-integration-advanced/GUIDE.md`5758## Typical compositions59- **Support platform**: omnichannel-inbox-chatbot (brain) + support-helpdesk-system (tickets/SLA) +60 realtime-chat-messaging (web chat) + whatsapp/voice-sms/email (channels) + push (agent/customer alerts).61- **Transactional comms**: email (receipts) + whatsapp (utility templates) + voice-sms (OTP) + push,62 all behind one preference/consent layer.6364## Pairs well with65`ai-mcp-master` (prompt-engineering-advanced, mcp-builder for the chatbot/voice brain),66`business-master` (crm-builder for customer-360), `backend-api-master` (integrations-pro webhooks,67auth/MFA), `analytics-master` (engagement/deliverability), and `ui-master` (chat widget + dashboards).6869## Note7071These bundled skills are intentionally not registered as separate Cursor skills (their files are72`GUIDE.md`, not `SKILL.md`) so only this master appears in the skills list. Read the relevant73`GUIDE.md` on demand.