소스 정보
- 저장소
- mikailustuner/OmniRule
- 최근 소스 활동
- 2026년 5월 8일 23:36
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/mikailustuner/OmniRule --skill email-patterns명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | email-patterns |
| description | Email: Transactional email, templates, delivery patterns, feedback loops. |
| triggers | {"keywords":["email","SMTP","SendGrid","nodemailer","transactional","Resend","template","newsletter"]} |
| auto_load_when | Building email sending functionality |
| agent | architect |
| tools | ["Read","Write","Bash"] |
Focus: Delivery, templates, reliability
When email is appropriate:
├── Transactional
&& Order confirmation
&& Password reset
&& Account notifications
│
├── Notifications
&& Alerts and monitoring
&& Scheduled reports
&& Activity digests
│
└── Marketing (with consent)
└── Welcome series
└── Product updates
└── Opt-in required
When NOT to use email:
├── Real-time communication
&& Chat is better
&& Users expect instant
│
├── User-to-user messaging
└── In-app messaging
|| Don't use email for this
│
└── Sensitive alerts
&& Security: in-app + push preferred
&& Don't rely on email alone
When to use what:
├── SendGrid/Mailgun/SES
&& Transactional email
&& Good deliverability
&& API-based
│
├── Postmark
&& Transactional focus
&& High deliverability
&& Good for startups
│
├── Mailchimp/Sendinblue
&& Marketing emphasis
&& Templates, campaigns
&& Less for transactional
│
└── Self-hosted (rarely)
&& Complete control
&& High cost, complexity
&& Only when needed
When to use templates:
├── Template engine (SendGrid, Handlebars)
&& Dynamic content needed
&& Multiple email types
&& Non-technical can edit
│
├── Static HTML
&& Simple emails
&& No personalization
|| Lower flexibility
│
└── Code-generated
&& Complex logic
&& Full control
&& Harder to maintain
Template best practices:
├── Plain text version always
├── Responsive design (mobile)
├── Fallback fonts
├── Clear unsubscribe (required by law)
└── Physical address (required by law)
How to ensure delivery:
├── Verification
&& SPF, DKIM, DMARC set up
&& Domain verified
&& Test with mail-tester.com
│
├── Error handling
&& Catch bounces
&& Suppress invalid emails
&& Track delivery status
│
├── Rate limiting
&& Respect provider limits
&& Batch sends
&& Exponential backoff on failure
│
└── Monitoring
&& Track open/click rates
&& Bounce rates
&& Deliverability issues
What to track:
├── Delivery metrics
&& Sent, delivered, bounced
&& By email type
│
├── Engagement
&& Open rate (with pixel tracking)
&& Click rate
&& Unsubscribe rate
│
├── Complaints
&& Spam reports
&& If high: review list quality
│
└── Time-based
&& Best send times
&& By user segment
When to act:
├── High bounce > 5%
&& Clean list
|| Verify addresses before send
│
├── Low engagement < 10% open
&& Review subject lines
|| Segment users differently
│
├── High complaints
|| Immediate list review
|| Consent verification
└── High unsubscribes
|| Too frequent?
|| Content not relevant?
❌ Sending email synchronously inside HTTP request handler
✅ Queue email; deliver async via background worker
❌ Plain-text email only (no HTML template)
✅ Multipart emails: text/plain fallback + text/html styled
❌ Sending bulk email through SMTP directly
✅ Use transactional ESP (Resend, SendGrid, Postmark) for deliverability
❌ No unsubscribe link in marketing emails
✅ CAN-SPAM / GDPR: unsubscribe + physical address required
❌ Not testing email rendering across clients
✅ Litmus / Email on Acid preview before sending
| Service | Use case | SDK |
|---|---|---|
| Resend | Transactional | resend npm |
| SendGrid | Transactional + marketing | @sendgrid/mail |
| Postmark | High deliverability | postmark |
| Mailchimp | Marketing / newsletters | API v3 |
| React Email | Template authoring | react-email |
| Header | Purpose | Required? |
|---|---|---|
| List-Unsubscribe | One-click unsubscribe | Marketing: Yes |
| DKIM | Email authentication | Always |
| SPF | Sender policy | Always |
| DMARC | Alignment policy | Recommended |