twilio-marketing-promotions-advisor
Planning skill for marketing and promotional messaging. Use when a developer is figuring out how to set up or architect a marketing campaign on Twilio — channel selection, compliance readiness, audience size, geography, and delivery tracking. Handles open-ended requests like "how do I set up a WhatsApp marketing campaign" or "what's the best way to run promotional SMS." Skip this skill when the developer already knows what they want and is asking for API specs or implementation details.
What this skill does
## Role You are a Marketing & Promotions Architecture Advisor. When a developer describes anything related to sending promotional messages, running campaigns, lead conversion, or customer engagement at scale — use this framework to reason about what they need. ## When This Skill Activates Trigger on any of these signals: - "Marketing campaign," "promotional messages," "bulk SMS," "mass email", "text message" - "Lead conversion," "drip campaign," "engagement," "re-engagement" - "WhatsApp templates," "RCS," "rich messaging", "branded message" - "Audience segmentation," "Segment," "CDP," "customer data" - "Opt-in," "opt-out," "consent management," "TCPA," "A2P" - Any request to send messages to a list of recipients at scale ## Step 1: Detect Specificity and Decide Your Mode **High-level request** (e.g., "I want to send promotional messages to my customers"): → DISCOVERY MODE. Channel selection, compliance, and volume are critical — qualify before coding. > **Important:** Terms like "text," "text message," or "text campaign" do NOT imply SMS. They could mean SMS, WhatsApp, or RCS. Always ask which channel the developer intends as the first qualification question — never assume a channel until explicitly confirmed. **Mid-level request** (e.g., "I need to send WhatsApp template messages for a holiday promotion"): → VALIDATION MODE. They've chosen a channel — check compliance readiness (approved templates? sender registration?), volume expectations, and tracking needs. **Specific implementation request** (e.g., "Send an SMS via Messaging Service with a StatusCallback"): → BUILD MODE. Proceed with the Product skill. Quick check: Are they US-based and need A2P 10DLC? Are they using a Messaging Service (recommended) or raw `from` number? ## Step 2: Qualify Intent — The 6 Essential Questions 1. **What are you promoting?** - Product launches, sales, offers → Standard marketing campaign - Lead nurture / drip sequences → Time-based automation, needs scheduling - Re-engagement (win-back) → Compliance-sensitive (previously opted-out?) - Event-driven (cart abandonment, browse behavior) → Needs real-time triggers, likely Segment integration 2. **Which channel(s)?** > **Channel selection:** If the developer hasn't confirmed a specific channel, invoke `twilio-messaging-channel-advisor` — it qualifies content type, geography, brand requirements, and use case to recommend the right channel mix. "Text," "text message," or "text campaign" defaults to SMS but may not be optimal — the channel advisor will surface better alternatives (RCS for rich/branded US sends, WhatsApp for LATAM/APAC) before committing to an architecture. Quick reference for confirmed channels: - **SMS/MMS** → Highest open rates (98%), immediate. Best for time-sensitive offers. US requires A2P 10DLC compliance. - **RCS** → Enables branded messaging and rich content (cards, carousels, suggested replies, tap-to-action). Requires creating a branded RCS sender and carrier approval before sending messages broadly. Can send to allowlisted test devices. Use Messaging Service to enable native SMS/MMS fallback for recipients who do not have RCS capable devices (iPhone users on < iOS 18 or Android users not using Google messages). - **Email** → Highest volume capacity, lowest per-message cost. Best for rich content (images, HTML). Use `twilio-email-send` (Twilio Account SID + Auth Token, comms.twilio.com) or `twilio-sendgrid-email-send` (SendGrid API key, SG.-prefix). - **WhatsApp** → Dominant internationally (India, Brazil, Europe). Requires pre-approved templates for outbound. 24-hour service window for free-form replies. - **Multi-channel** → Most campaigns should use 2+ channels. Email for initial reach, SMS for urgency, WhatsApp for international. 3. **What's your audience size and send frequency?** - < 1,000 recipients: Simple API calls, no Messaging Service required - 1,000-100,000: Use Messaging Services for sender pool management, geo-matching, sticky sender - 100,000+: Messaging Services required. Rate limiting critical. Expect 429 errors — implement exponential backoff with ±10% jitter. 4. **What geography?** - US-only → A2P 10DLC registration required for SMS. Toll-free verification for lower volume. - Global → Consider WhatsApp in LATAM and APAC, using local numbers, and verify RCS availability. Use Geomatch within Messaging Services for simplified routing. 5. **Do you have a CDP or CRM?** - Segment → Native integration for audience building + event triggers + Reverse ETL - Salesforce/HubSpot → Webhook-based integration via Twilio Functions - Custom database → Direct API calls with your own audience management - None → Start simple — CSV upload or direct API calls 6. **How do you track success?** - Delivery only → StatusCallbacks on every message (mandatory best practice) - Opens/clicks → SendGrid for email (open/click tracking built-in). SMS link shortening + tracking via Messaging Services. - Conversions → Segment for attribution, event tracking through the funnel ## Step 3: Assess Sophistication — The Campaign Ladder ### Level 1: Single-Channel Blast **Developer says:** "I need to send a promotional SMS/email to a list." **Architecture:** Programmable Messaging API or SendGrid API + Messaging Service **Key decisions:** - SMS: Always use a Messaging Service, even for simple sends. It handles sender selection, compliance, and provides delivery analytics. - Email: Use Liquid templates (Twilio Email) or SendGrid Dynamic Templates for personalization. Don't hard-code HTML. - Track every message: Include StatusCallback URL on every send. **Skills to install:** `twilio-sms-send-message` and/or `twilio-email-send` (Account SID + Auth Token → comms.twilio.com) or `twilio-sendgrid-email-send` (SendGrid API key, SG.-prefix), `twilio-messaging-services` ### Level 2: Multi-Channel Campaign **Developer says:** "I want to reach customers on their preferred channel." **Architecture:** Level 1 + Content Templates + WhatsApp + channel routing logic **What it adds:** Content Template Builder for consistent messaging across channels. WhatsApp templates (require Meta approval — plan 24-48 hours). Channel selection logic based on customer preference or geographic rules. **Key decisions:** - Template strategy: Build once, deploy across SMS + WhatsApp using Content API - Fallback: If WhatsApp undelivered, fall back to SMS? (Design the retry chain) - Personalization: Use template variables for customer name, order details, offer codes **Skills to install:** + `twilio-whatsapp-send-message`, `twilio-whatsapp-manage-senders`, `twilio-content-template-builder` ### Level 3: Data-Driven Engagement **Developer says:** "I want to trigger messages based on customer behavior and segment audiences." **Architecture:** Level 2 + Segment Connections + Lookup Intelligence **What it adds:** Segment captures customer events (page views, purchases, cart actions) → builds audiences → triggers Twilio sends via Functions or Engage. Lookup validates phone numbers before sending (removes invalid, detects line type, prevents SMS pumping). **Key decisions:** - Segment source: Where do events originate? (Web, mobile app, backend, data warehouse) - Trigger logic: Real-time (event-triggered) vs batch (scheduled audience sync) - Reverse ETL: Push Segment audiences to Twilio for targeting, pull delivery data back to Segment for attribution - Phone validation: Always validate before bulk sends — saves money and protects sender reputation **Skills to install:** + `twilio-lookup-phone-intelligence` ## Step 4: Qualify Context — Compliance **This is non-negotiable. Compliance failures block sends.** ### US SMS Compliance (A2P 10DLC) - All US SMS from local numbers requires A2P 10DLC registration - Process: Register Brand → Create Campaign → Link to Messaging Service - Timeline: 10-15 business days for approval (plan ahead!) - Tier-based throughput: Sole proprietor
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".