# Email Sequences

> Designs email nurture sequences, drip campaigns, and automated email flows. Use for lead nurturing, onboarding, and lifecycle marketing.

- **Type:** Skill
- **Install:** `agentstack add skill-taizen-ai-taizen-claude-plugins-email-sequences`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [taizen-ai](https://agentstack.voostack.com/s/taizen-ai)
- **Installs:** 0
- **Category:** [Communication](https://agentstack.voostack.com/c/communication)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [taizen-ai](https://github.com/taizen-ai)
- **Source:** https://github.com/taizen-ai/taizen-claude-plugins/tree/main/plugins/taizen-gtm-skills/skills/email-sequences
- **Website:** https://usetaizen.com/

## Install

```sh
agentstack add skill-taizen-ai-taizen-claude-plugins-email-sequences
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Email Sequences Skill

Design automated email sequences that nurture leads and customers through their journey.

## Purpose

Create strategic email sequences that move subscribers toward desired actions while building relationship and trust.

---

## Required Integrations

> **Setup**: Connect these data sources to enable full functionality. Claude will prompt you to connect any missing integrations when you use this skill.

### Data Sources

```yaml
# EMAIL SEQUENCE DATA SOURCES
# Configure the sources relevant to your email marketing

# Enterprise Search (searches across all internal sources)
- source: enterprise_search
  connector: "{{GLEAN | MOVEWORKS | ELASTIC}}"
  data:
    - internal_docs
    - wiki_content
    - shared_drives

# Email Platform & Performance Data
- source: email_platform
  connector: "{{HUBSPOT | MARKETO | KLAVIYO | MAILCHIMP | ACTIVECAMPAIGN | CUSTOMER_IO}}"
  data:
    - existing_sequences
    - email_performance
    - open_rates
    - click_rates
    - conversion_rates
    - unsubscribe_rates
    - a_b_test_results
    - segment_performance

# CRM & Contact Data
- source: crm
  connector: "{{SALESFORCE | HUBSPOT}}"
  data:
    - lead_stages
    - lifecycle_stages
    - contact_properties
    - deal_data
    - conversion_paths

# Website & Conversion Data
- source: analytics
  connector: "{{GOOGLE_ANALYTICS | MIXPANEL | AMPLITUDE}}"
  data:
    - conversion_funnels
    - landing_page_performance
    - email_to_conversion_paths

# Content Assets
- source: content_library
  connector: "{{GOOGLE_DRIVE | SHAREPOINT | NOTION}}"
  paths:
    - "/Marketing/Email Templates/"
    - "/Marketing/Content Library/"
    - "/Marketing/Case Studies/"
- source: sales_content
  connector: "{{SEISMIC | HIGHSPOT | SHOWPAD}}"
  data:
    - email_templates
    - case_studies
    - one_pagers

# Brand & Messaging
- source: brand_docs
  connector: "{{GOOGLE_DRIVE | SHAREPOINT | NOTION}}"
  paths:
    - "/Marketing/Brand Guidelines/"
    - "/Marketing/Messaging/"
    - "/Marketing/Voice and Tone/"

# Product Information
- source: product_docs
  connector: "{{GOOGLE_DRIVE | SHAREPOINT | NOTION | CONFLUENCE}}"
  paths:
    - "/Product/Feature Documentation/"
    - "/Product/Release Notes/"
```

### Output Destinations

```yaml
# Where to deliver email sequence outputs
outputs:
  # Always available - display in Claude UI (copy/paste)
  - type: display
    enabled: true

  # Push directly to email platform
  - type: email_platform
    connector: "{{HUBSPOT | MARKETO | KLAVIYO | MAILCHIMP}}"
    actions:
      - create_sequence_draft
      - create_email_drafts
      - update_existing_sequence

  # Save to content library
  - type: documents
    connector: "{{GOOGLE_DRIVE | SHAREPOINT | NOTION}}"
    destination: "/Marketing/Email Sequences/"

  # Notify team for review
  - type: slack
    connector: "{{SLACK}}"
    channel: "#marketing-content"
```
---

## Instructions for Claude

> **IMPORTANT**: Before executing this skill, you MUST validate the configuration above.

### Pre-Execution Checklist

1. **Check for placeholder values**: Scan the YAML configuration for any `{{...}}` placeholders. These indicate required configuration that the user must provide.

2. **Check Taizen first**: If `taizen` MCP is connected, call `list_datasources` to see what data is indexed. You can then use `run_agent` to query all indexed sources in natural language — this replaces the need for most individual MCP connections below. Skip directly to running the skill.

3. **Validate data sources**: For each data source listed:
   - If a `connector` field shows `{{OPTIONS}}` format, ask the user which option they use
   - If URLs, paths, or names contain `{{PLACEHOLDER}}`, ask the user to provide actual values
   - Verify any required MCP servers are connected and available

4. **Validate output destinations**: For any output type beyond `display`:
   - Confirm the connector is available as an MCP server
   - Ensure destination paths/channels are configured (not placeholders)

### If Configuration is Incomplete

**Do not proceed with the skill.** Instead:

1. List the specific missing or placeholder values found
2. Explain what each value is needed for
3. Ask the user to provide the missing configuration
4. Offer to help them set up the required MCP integrations

**Example response when config is incomplete:**
```
Before I can run this skill, I need some configuration:

**Missing values:**
- [List specific {{PLACEHOLDER}} values found]

**MCP connections needed:**
- [List required connectors not yet available]

Please provide these values, or let me know which data sources you'd like to skip.
```

### Minimum Requirements

At minimum, this skill requires:
- Sequence goal (nurture, onboarding, re-engagement, etc.)
- Target audience description
- `display` output enabled (always available)

Enhanced functionality requires:
- Marketing automation platform for templates and performance data
- CRM for segmentation and personalization
- Brand voice guidelines for tone consistency
- Product documentation for accurate messaging

---

## Using Taizen

> **Connect once, access everything.** Instead of configuring 15+ individual MCP connectors, connect Taizen MCP once — your whole team gets access to all connected MCPs and indexed data sources (Gong calls, CRM, documents, and more) without any per-tool setup.

### Instant Queries (Run Now)

If `taizen` MCP is connected, call `run_agent` to pull from your indexed data right in this conversation:

**Pull sequence performance data**
```
"Pull our best-performing email sequences from CRM data — open rates, reply rates, and conversion rates by template. Use these patterns to build a new sequence for [persona/use case]."
```

**Analyze what's working**
```
"Search my indexed email platform data for sequences with over 30% open rate in the last 90 days. What patterns do the best-performing emails share?"
```

### Scheduled Agents (Automate It)

To run this skill automatically on a schedule, call `run_agent` and describe the automation in natural language — Taizen creates and manages the recurring agent:

**Monthly sequence optimization**
```
"Monthly, analyze email sequence performance data across all active sequences. Generate optimization recommendations and share to #demand-gen with priority changes."
```

**Quarterly sequence refresh**
```
"At the start of each quarter, audit all active sequences for messaging freshness and performance. Flag sequences that need updating and generate revised drafts for #marketing review."
```

Taizen creates the agent, runs it on your schedule, and delivers results to your configured destinations (Slack, CRM, docs, email).

### Setup

1. Sign up at [usetaizen.com](https://usetaizen.com) and connect your data sources — every teammate gets access immediately
2. Add Taizen MCP to Claude: `https://us.mcp.usetaizen.com/mcp` (or `https://eu.mcp.usetaizen.com/mcp` for EU data residency)
3. Use `run_agent` for instant queries or to schedule recurring agents — Taizen handles routing to the right sources
## Email Sequence Types

### 1. Lead Nurture Sequence

**Purpose**: Convert leads to opportunities
**Trigger**: Form submission, content download, trial signup
**Length**: 5-8 emails over 2-4 weeks

**Structure**:
1. Welcome + immediate value
2. Educational content (problem awareness)
3. Social proof (how others succeeded)
4. Product connection (how we help)
5. Case study (specific results)
6. Objection handling
7. Direct offer
8. Final chance/breakup

### 2. Onboarding Sequence

**Purpose**: Activate new users/customers
**Trigger**: Account creation, purchase
**Length**: 5-7 emails over 2 weeks

**Structure**:
1. Welcome + first steps
2. Quick win guidance
3. Key feature introduction
4. Best practices
5. Check-in + support offer
6. Advanced tips
7. Success milestone celebration

### 3. Re-engagement Sequence

**Purpose**: Revive inactive contacts
**Trigger**: No engagement for X days
**Length**: 3-4 emails

**Structure**:
1. We miss you + value reminder
2. What's new + fresh content
3. Special offer or incentive
4. Final email + unsubscribe option

### 4. Event/Webinar Sequence

**Purpose**: Drive registrations and attendance
**Trigger**: Registration or target list
**Length**: 4-6 emails

**Structure**:
- Pre-event: Invitation, reminder (week), reminder (day)
- Post-event: Recording, resources, next steps

### 5. Post-Purchase/Trial Sequence

**Purpose**: Ensure success, drive expansion
**Trigger**: Purchase or trial start
**Length**: Varies by trial length/product

---

## Email Design Principles

### Subject Line Best Practices

**Effective Patterns**:
- Curiosity gap: "The one thing I wish I knew..."
- How-to: "How to [achieve result] in [timeframe]"
- Numbers: "5 ways to improve [outcome]"
- Questions: "Are you making this mistake?"
- Personalization: "[Name], quick question"
- Urgency: "Ending soon: [offer]"

**Subject Line Rules**:
- 40-60 characters
- Preview text complements (doesn't repeat)
- Test variations
- Avoid spam triggers

### Email Structure

**Template**:
```
[Greeting]

[Hook - why should they read?]

[Body - value delivery]

[CTA - single, clear action]

[Sign-off]

[P.S. - secondary CTA or curiosity hook]
```

**Formatting**:
- Short paragraphs (2-3 sentences)
- One idea per paragraph
- Use white space
- Bold key phrases
- Single CTA per email (or primary/secondary)

---

## How to Use This Skill

Invoke with natural language describing the sequence you need:

**Nurture Sequences**
- "Create a lead nurture sequence for people who download our pricing guide"
- "Build a 5-email nurture sequence for enterprise prospects"
- "Design a sequence for leads who attended our webinar but didn't book a demo"

**Onboarding Sequences**
- "Create an onboarding sequence for new trial users"
- "Build a welcome sequence for new customers"
- "Design a 7-day onboarding flow for our SaaS product"

**Re-engagement**
- "Create a re-engagement sequence for leads who went cold"
- "Build a win-back campaign for churned customers"
- "Design a sequence for prospects who ghosted after the demo"

**Event/Campaign**
- "Create a webinar promotion sequence for our upcoming event"
- "Build a product launch email sequence"
- "Design a holiday promotion campaign"

**Optimization**
- "Review and improve our current trial onboarding sequence"
- "Analyze our nurture sequence performance and suggest improvements"
- "Create A/B test variations for our welcome email"

---

## Output Format

### Full Sequence

```markdown
# Email Sequence: [Sequence Name]

**Created**: [Date]
**Data Sources Used**: [Email platform performance, CRM, etc.]

---

## Sequence Overview

| Attribute | Details |
|-----------|---------|
| Type | [Nurture/Onboarding/Re-engagement/etc.] |
| Trigger | [What starts this sequence] |
| Audience | [Who receives it] |
| Goal | [Desired outcome] |
| Length | [# emails over # days] |

### Benchmark Data

*Based on your historical performance:*
- **Average Open Rate**: [%] (your sequences)
- **Average Click Rate**: [%] (your sequences)
- **Conversion Rate**: [%] (this sequence type)

### Success Metrics

| Metric | Target | How to Measure |
|--------|--------|----------------|
| Open Rate | [%] | [Email platform] |
| Click Rate | [%] | [Email platform] |
| Conversion | [Action + %] | [CRM/Analytics] |

---

## Email 1: [Email Name]

**Timing**: Immediately / Day 0
**Goal**: [What this email should accomplish]

### Subject Line Options
1. [Option 1 - primary]
2. [Option 2 - A/B test variant]

### Preview Text
[Preview text that complements subject]

---

**Email Body**:

Hey [First Name],

[Opening hook - why they should care]

[Value delivery - 2-3 short paragraphs]

[Clear CTA]

[Sign-off]
[Name]

P.S. [Optional secondary hook]

---

**CTA Button**: [Button text]
**Link**: [Where it goes]

---

## Email 2: [Email Name]

**Timing**: Day [X] / [X] days after Email 1
**Goal**: [What this email should accomplish]
**Condition**: [If any - e.g., "If didn't click Email 1"]

### Subject Line Options
1. [Option 1]
2. [Option 2]

### Preview Text
[Preview text]

---

**Email Body**:

Hey [First Name],

[Content]

[CTA]

[Sign-off]

---

[Continue for all emails in sequence...]

---

## Email 3: [Email Name]
[Same format]

---

## Email 4: [Email Name]
[Same format]

---

## Email 5: [Email Name]
[Same format]

---

## Sequence Logic & Branching

```
Trigger: [What starts the sequence]
    ↓
Email 1 sent
    ↓
    ├── Clicked CTA → [Tag: Engaged] → [Next action]
    │
    └── No click (Day 3) → Email 2 sent
            ↓
            ├── Clicked → [Tag: Engaged] → [Action]
            │
            └── No click (Day 5) → Email 3 sent
```

---

## Exit Conditions

| Condition | Action |
|-----------|--------|
| Converts to [goal] | Exit + tag "[tag name]" |
| Unsubscribes | Exit sequence |
| Completes sequence | Move to [next sequence] |
| [Days] no engagement | Move to re-engagement |

---

## A/B Test Plan

**Test 1**: Subject Lines
- Control: [Subject A]
- Variant: [Subject B]
- Sample: [% of audience]
- Winner criteria: Open rate after 24 hours

**Test 2**: CTA Placement
- Control: [CTA at end]
- Variant: [CTA mid-email]
- Winner criteria: Click rate

---

## Implementation Checklist

- [ ] Create sequence in [email platform]
- [ ] Set up trigger/enrollment criteria
- [ ] Configure sending schedule
- [ ] Set up goal tracking
- [ ] Create suppression rules
- [ ] Set up A/B tests
- [ ] QA all links and personalization
- [ ] Review with team
- [ ] Schedule activation
```

---

## Automation Options

When configured with integrations, this skill can:

1. **Performance analysis** - Pull actual open/click rates to inform new sequence design
2. **A/B test recommendations** - Suggest tests based on historical performance patterns
3. **Direct publishing** - Push sequence drafts directly to your email platform
4. **Sequence audits** - Analyze existing sequences and recommend improvements
5. **Competitive analysis** - Compare your sequences to industry benchmarks

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [taizen-ai](https://github.com/taizen-ai)
- **Source:** [taizen-ai/taizen-claude-plugins](https://github.com/taizen-ai/taizen-claude-plugins)
- **License:** MIT
- **Homepage:** https://usetaizen.com/

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-taizen-ai-taizen-claude-plugins-email-sequences
- Seller: https://agentstack.voostack.com/s/taizen-ai
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
