Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

email-marketing电子邮件营销

Agent Skill

email-marketing 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,909

周安装

78

GitHub Stars

4

下载量

618
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:email-marketing(电子邮件营销)
来源仓库:https://github.com/dengineproblem/agents-monorepo
仓库路径:skills/email-marketing
安装命令:
npx skills add https://github.com/dengineproblem/agents-monorepo --skill email-marketing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dengineproblem/agents-monorepo --skill email-marketing

简介

端到端电子邮件营销策略与执行的专业知识库。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 包含列表建设、分段、自动化流与送达率优化机制。
  • 适用于用户唤醒、培育转化与客户维系等场景。
  • 需重视 ISP 关系维护与反垃圾邮件合规要求。
  • email-marketing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Email Marketing Expert

Comprehensive expertise in email marketing strategy and execution.

Core Competencies

Strategy

  • List building and segmentation
  • Email calendar planning
  • Lifecycle marketing
  • Personalization strategy
  • A/B testing frameworks

Automation

  • Welcome sequences
  • Nurture campaigns
  • Trigger-based emails
  • Re-engagement flows
  • Win-back sequences

Deliverability

  • Sender reputation management
  • Authentication (SPF, DKIM, DMARC)
  • List hygiene
  • Spam trap avoidance
  • ISP relationship management

Email Types

Marketing Emails

  • Newsletters
  • Promotional campaigns
  • Product announcements
  • Event invitations
  • Content distribution

Automated Sequences

  • Welcome series
  • Onboarding sequences
  • Lead nurturing
  • Abandoned cart
  • Re-engagement
  • Win-back

Transactional Emails

  • Order confirmations
  • Shipping updates
  • Password resets
  • Account notifications

Email Authentication Setup

# SPF Record
v=spf1 include:_spf.google.com include:sendgrid.net ~all

# DKIM Record
selector._domainkey.example.com IN TXT "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3..."

# DMARC Record
_dmarc.example.com IN TXT "v=DMARC1; p=quarantine; rua=mailto:dmarc@example.com"

Key Metrics

MetricBenchmarkDescription
Open Rate20-25%Unique opens / Delivered
Click Rate2-5%Unique clicks / Delivered
Click-to-Open10-15%Clicks / Opens
Unsubscribe Rate<0.5%Unsubscribes / Delivered
Bounce Rate<2%Bounces / Sent
Spam Complaints<0.1%Complaints / Delivered
Conversion RateVariesConversions / Clicks

Segmentation Strategies

Behavioral Segmentation:
  - Purchase history
  - Email engagement
  - Website activity
  - Product preferences
  - Cart abandonment

Demographic Segmentation:
  - Location/timezone
  - Job title/industry
  - Company size
  - Age/gender

Lifecycle Stages:
  - New subscribers
  - Active customers
  - At-risk (declining engagement)
  - Churned (re-activation target)
  - VIP/high-value

Automation Workflows

Welcome Sequence

Day 0 - Welcome Email:
  trigger: subscription_confirmed
  content: Brand introduction, expectations
  cta: Complete profile

Day 2 - Value Email:
  trigger: previous_opened OR time_delay
  content: Top content, quick wins
  cta: Explore resources

Day 5 - Social Proof:
  trigger: time_delay
  content: Customer stories, testimonials
  cta: See case studies

Day 7 - Soft CTA:
  trigger: time_delay
  content: Product introduction
  cta: Start free trial

Abandoned Cart Flow

Hour 1 - Reminder:
  trigger: cart_abandoned
  content: Items in cart reminder
  cta: Complete purchase

Hour 24 - Urgency:
  trigger: no_purchase
  content: Items may sell out
  cta: Secure your items

Hour 72 - Incentive:
  trigger: no_purchase
  content: Special discount offer
  cta: Get 10% off

A/B Testing Framework

Test Elements

Subject Lines:
  - Length (short vs long)
  - Personalization
  - Emojis
  - Questions vs statements
  - Urgency words

Content:
  - Layout (single vs multi-column)
  - Image count and placement
  - CTA button color/text
  - Copy length
  - Personalization depth

Timing:
  - Send day
  - Send time
  - Timezone optimization

Statistical Significance

import scipy.stats as stats

def calculate_significance(control_opens, control_sent,
                          variant_opens, variant_sent,
                          confidence=0.95):
    """Calculate if A/B test result is significant."""

    control_rate = control_opens / control_sent
    variant_rate = variant_opens / variant_sent

    # Pooled proportion
    pooled = (control_opens + variant_opens) / (control_sent + variant_sent)

    # Standard error
    se = (pooled * (1 - pooled) * (1/control_sent + 1/variant_sent)) ** 0.5

    # Z-score
    z = (variant_rate - control_rate) / se

    # P-value
    p_value = 2 * (1 - stats.norm.cdf(abs(z)))

    return {
        'control_rate': control_rate,
        'variant_rate': variant_rate,
        'lift': (variant_rate - control_rate) / control_rate * 100,
        'p_value': p_value,
        'significant': p_value < (1 - confidence)
    }

Best Practices

Subject Lines

  • Under 50 characters
  • Create curiosity or urgency
  • Personalize when appropriate
  • A/B test consistently
  • Avoid spam trigger words

Email Copy

  • Clear value proposition
  • Single primary CTA
  • Mobile-optimized layout
  • Scannable format with headers
  • Personalization tokens
  • Alt text for images

Deliverability

  • Clean lists regularly (remove bounces, unengaged)
  • Authenticate domains (SPF, DKIM, DMARC)
  • Maintain consistent sending volume
  • Monitor sender reputation
  • Use double opt-in
  • Honor unsubscribes immediately

Send Time Optimization

def optimize_send_time(subscriber_data):
    """Analyze historical engagement to find optimal send times."""

    engagement_by_hour = {}

    for subscriber in subscriber_data:
        local_time = convert_to_local(subscriber['open_time'],
                                      subscriber['timezone'])
        hour = local_time.hour

        if hour not in engagement_by_hour:
            engagement_by_hour[hour] = {'opens': 0, 'total': 0}

        engagement_by_hour[hour]['opens'] += 1
        engagement_by_hour[hour]['total'] += 1

    # Calculate open rates by hour
    for hour, data in engagement_by_hour.items():
        data['rate'] = data['opens'] / data['total']

    # Find best hours
    sorted_hours = sorted(engagement_by_hour.items(),
                         key=lambda x: x[1]['rate'],
                         reverse=True)

    return sorted_hours[:3]  # Top 3 hours

List Hygiene

Engagement Scoring

-- Calculate subscriber engagement score
SELECT
    subscriber_id,
    email,
    COUNT(CASE WHEN event_type = 'open' THEN 1 END) as opens_30d,
    COUNT(CASE WHEN event_type = 'click' THEN 1 END) as clicks_30d,
    MAX(event_date) as last_activity,
    CASE
        WHEN COUNT(CASE WHEN event_type = 'open' THEN 1 END) >= 5 THEN 'highly_engaged'
        WHEN COUNT(CASE WHEN event_type = 'open' THEN 1 END) >= 2 THEN 'engaged'
        WHEN COUNT(CASE WHEN event_type = 'open' THEN 1 END) >= 1 THEN 'somewhat_engaged'
        ELSE 'unengaged'
    END as engagement_tier
FROM email_events
WHERE event_date >= CURRENT_DATE - INTERVAL '30 days'
GROUP BY subscriber_id, email;

Sunset Policy

Re-engagement Campaign:
  trigger: no_opens_60_days
  sequence:
    - Day 0: "We miss you" email
    - Day 7: "Last chance" with offer
    - Day 14: Final warning

  action_after_sequence:
    if: no_engagement
    then: move_to_suppression_list

Tools Proficiency

ESP Platforms

  • SMB: Klaviyo, Mailchimp, ConvertKit
  • Mid-Market: HubSpot, ActiveCampaign, Drip
  • Enterprise: Salesforce Marketing Cloud, Marketo, Braze

Transactional

  • SendGrid, Postmark, Amazon SES, Mailgun

Testing & Preview

  • Litmus, Email on Acid

Analytics

  • Google Analytics (UTM tracking)
  • Native ESP analytics
  • Custom data warehouse

Лучшие практики

  1. Permission-based — только подтверждённые подписчики
  2. Segmentation — релевантный контент для сегментов
  3. Testing — постоянное A/B тестирование
  4. Automation — автоматизируйте lifecycle emails
  5. Deliverability — мониторинг репутации отправителя
  6. Mobile-first — 60%+ открытий на мобильных

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.24%
按下载量换算218

Claude

31.11%
按下载量换算192

Cursor

17.57%
按下载量换算109

Gemini CLI

9.97%
按下载量换算62

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills