courier-notification-skills
Multi-channel notifications via email, SMS, push, and chat.
Developer Setup
Setup & Installation
npx skills add https://github.com/trycourier/courier-skills/blob/main/SKILL.md --skill courier-skillsnpx skills add https://github.com/trycourier/courier-skills/blob/main/SKILL.md --skill courier-skillsOverview
What This Skill Does
Provides guidelines for building deliverable and engaging notifications across all channels (email, SMS, push, Slack, Teams, WhatsApp) using the Courier SDK.
Application
When to use this Skill
- Building notifications with Courier across email, SMS, push, in-app inbox, Slack, Teams, or WhatsApp.
- Implementing transactional messages like password reset, OTP, billing, or order confirmation.
- Creating multi-step notification journeys, routing strategies, or templates via the Courier SDK.
- Migrating notification workloads to Courier from systems like Knock, Novu, or custom code.
Documentation
Show Skills.md file
Courier Notification Skills
Guidance for building deliverable and engaging notifications across all channels.
How to Use This Skill
- Identify the task — What channel, notification type, or cross-cutting concern is the user working on?
- Read only what's needed — Use the routing tables below to find the 1-2 files relevant to the task. Do NOT read all files.
- Check for live docs — For current API signatures and SDK methods, fetch
https://www.courier.com/docs/llms.txt - Synthesize before coding — Plan the complete implementation (channels, routing, error handling) before writing code.
- Apply the rules — Each resource file starts with a "Quick Reference" section containing hard rules. Treat these as constraints, not suggestions.
- Check universal rules — Before generating any notification code, verify it doesn't violate the Universal Rules below.
Handling Vague Requests
If the user's request doesn't clearly map to a specific channel, notification type, or guide, ask clarifying questions before reading any resource files. Don't guess — a wrong routing wastes time and produces irrelevant code.
Ask these questions as needed:
- What channel? — "Which channel are you sending through: email, SMS, push, in-app, Slack, Teams, or WhatsApp?"
- What type? — "Is this a transactional notification (triggered by a user action, like a password reset or order confirmation) or a marketing/growth notification (sent proactively, like a feature announcement)?"
- New or existing? — "Are you starting from scratch, or do you have existing Courier code? If existing, what SDK packages do you have installed?"
- What language? — "Are you using TypeScript/Node.js, Python, or another language?"
You don't need to ask all four — just the ones needed to route to the right 1-2 files. If the request is clearly about a specific topic (e.g., "help me with SMS"), skip the questions and go directly to the relevant resource.
Recommendations