Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
finsilabs avatar

Customer Retention Engine

  • 71 installs
  • 41 repo stars
  • Updated March 13, 2026
  • finsilabs/awesome-ecommerce-skills

Build automated retention campaigns that detect at-risk customers by repurchase cadence and intervene with tiered offers before they lapse.

About

Sets up proactive churn-prevention flows in Klaviyo or AutomateWoo using predicted next-order dates and per-tier incentives. A developer uses it when repeat purchase rate declines or too many customers only buy once.

  • Churn-threshold table by product category (consumables, apparel, home goods)
  • Klaviyo/AutomateWoo flows plus custom Klaviyo API order-event tracking

Customer Retention Engine by the numbers

  • 71 all-time installs (skills.sh)
  • Ranked #512 of 853 Sales & Marketing skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill customer-retention-engine

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs71
repo stars41
Last updatedMarch 13, 2026
Repositoryfinsilabs/awesome-ecommerce-skills

What it does

Build automated retention campaigns that detect at-risk customers by repurchase cadence and intervene with tiered offers before they lapse.

Files

SKILL.mdMarkdownGitHub ↗

Customer Retention Engine

Overview

Acquiring a new customer costs 5–7x more than retaining an existing one. A retention engine identifies customers who show declining engagement — reduced purchase frequency, decreasing order values, browsing without buying — and intervenes with personalized campaigns before they lapse. Klaviyo and AutomateWoo can build these workflows with no custom code using predictive analytics built into the platform.

Note: For reactivating already-lapsed customers, see @win-back-reactivation. This skill focuses on proactive churn prevention before customers lapse.

When to Use This Skill

  • When repeat purchase rate is declining month-over-month
  • When a significant percentage of customers only ever purchase once
  • When you want to proactively contact customers before they go fully dormant
  • When building a post-purchase nurture program beyond the first 30 days
  • When needing to identify which customers are worth offering a discount vs. which will repurchase anyway

Core Instructions

Step 1: Choose the right tool for your platform

PlatformRecommended ToolWhy
ShopifyKlaviyoKlaviyo's predictive analytics automatically calculates expected next purchase date and churn risk for every customer; no manual scoring needed
WooCommerceAutomateWoo ($99/yr)Deep WooCommerce integration, "Customer win-back" workflow type, RFM segmentation built in
BigCommerceKlaviyo or OmnisendBoth integrate natively with BigCommerce order events and offer predictive churn scoring
Custom / HeadlessKlaviyo (via API)Send order events to Klaviyo; use their predictive analytics to identify at-risk customers

Step 2: Define your churn threshold

Churn timing depends on your product's natural repurchase cycle:

Product CategoryExpected Repurchase CycleAt-Risk ThresholdChurned Threshold
Consumables (skincare, supplements)30–60 days60+ days since last order120+ days
Apparel/fashion60–90 days90+ days180+ days
Home goods90–180 days180+ days365+ days
Electronics accessories120–365 days180+ days365+ days

In Klaviyo, go to Analytics → Predictive Analytics to see Klaviyo's automatically calculated churn risk for your customer base. Klaviyo uses your actual order history to set these thresholds — no manual calculation needed.

Step 3: Build retention flows

---

Shopify with Klaviyo

Flow 1: Early warning — customers approaching their expected repurchase date

1. Go to Klaviyo → Flows → Create Flow → Start from Scratch 2. Set trigger: Metric → Expected Date of Next Order is in 7 days

  • Klaviyo calculates this automatically using predictive analytics

3. Add an email action with subject line: "Your favorites are waiting for you"

  • Include: personalized product recommendations based on past purchases
  • Use the {{ person.predicted_next_purchase_date }} variable to acknowledge timing

4. Wait 3 days → Add a conditional: "Has placed an order since flow start?" → If No: send a follow-up email

Flow 2: High-value at-risk customers — personalized offer

1. Create a new flow triggered by: Segment → "High-Value At-Risk" segment (configure segment below) 2. Email: personalized exclusive offer (free shipping or 15% off for top-tier; no discount for mid-tier) 3. Wait 5 days → If no purchase: SMS follow-up (for SMS-consented customers)

Create the "High-Value At-Risk" segment in Klaviyo: 1. Go to Klaviyo → Segments → Create Segment 2. Conditions:

  • Predicted Churn Risk equals High OR Mid
  • AND Total Customer Value (Historic CLV) greater than $150
  • AND Has not placed order in last 60 days

3. Save as "High-Value At-Risk"

Flow 3: One-time buyer reminder

1. Create a flow triggered by: Metric → Placed Order 2. Wait 45 days 3. Check: "Total number of orders equals 1" → If yes: 4. Email: "Based on your [product name] purchase, you might love these..." with 3–4 complementary product recommendations 5. Wait 14 days → If still only 1 order: send final email with 10% welcome-back discount

---

WooCommerce with AutomateWoo

1. Go to AutomateWoo → Workflows → Add Workflow 2. Set trigger: Customer → Win Back

  • AutomateWoo has a built-in "Customer Win Back" trigger that fires at configurable intervals after last purchase

3. Set timing rules:

  • Workflow A: 45 days since last purchase — send personalized recommendations email
  • Workflow B: 75 days since last purchase — send exclusive offer email with discount

4. Add a rule to each workflow: "Customer has not purchased since workflow was created" — auto-cancels on conversion 5. For VIP customers: add a rule "Customer total spend > $500" to route to a separate workflow with better offers

AutomateWoo also includes built-in RFM segmentation — go to AutomateWoo → Reports → RFM Analysis to see your customer segments visually.

---

BigCommerce

1. Install Klaviyo from the BigCommerce App Marketplace 2. Klaviyo automatically syncs all BigCommerce order history 3. Follow the same Klaviyo flow setup described in the Shopify section above 4. BigCommerce order events trigger Klaviyo flows in real-time after the integration is connected

---

Custom / Headless

Send order events to Klaviyo's API to trigger retention flows:

// Send order event to Klaviyo when an order is completed
async function trackKlaviyoOrder(order: Order) {
  await fetch('https://a.klaviyo.com/api/events/', {
    method: 'POST',
    headers: {
      'Authorization': `Klaviyo-API-Key ${process.env.KLAVIYO_PRIVATE_KEY}`,
      'Content-Type': 'application/json',
      'revision': '2024-10-15',
    },
    body: JSON.stringify({
      data: {
        type: 'event',
        attributes: {
          metric: { data: { type: 'metric', attributes: { name: 'Placed Order' } } },
          profile: { data: { type: 'profile', attributes: { email: order.customerEmail } } },
          properties: {
            $value: order.subtotal,
            OrderId: order.id,
            Items: order.lineItems.map(i => ({ ProductName: i.name, ItemPrice: i.price })),
          },
        },
      },
    }),
  });
}

Klaviyo's predictive analytics then automatically calculates churn risk and expected next purchase date based on these events.

Step 4: Configure intervention timing and incentives

Match interventions to customer value tier:

Customer TierInterventionIncentive
VIP (6+ orders, $500+ LTV)Personalized email from "founder"No discount — just recognition and early access
High-value (3–5 orders)Email + SMS follow-upFree shipping (protects margin)
Standard (1–2 orders)Email sequence10% discount at final step only
One-time buyerEmail at 45 days10% off second order

Step 5: Measure retention lift

Track these in Klaviyo or AutomateWoo dashboards:

MetricTargetWhere to Find
Flow revenueGrowing month-over-monthKlaviyo → Flows → Analytics
Repeat purchase rate> 25% of customersShopify: Analytics → Customer cohorts. Klaviyo: Segment analytics
At-risk segment shrinkingDecrease vs. prior monthKlaviyo → Segments → Size history
Churn rateDecliningCompare lapsed customer count month-over-month

Best Practices

  • Never discount VIP customers reflexively — high-LTV customers who are slightly overdue may just be busy; a soft nudge without discount often works and protects margin
  • Personalize based on actual purchase history — Klaviyo's dynamic product blocks automatically show recommendations based on what the customer has bought
  • Set a contact frequency cap — in Klaviyo, use Smart Sending and set a daily message limit; at-risk customers should not receive more than one touchpoint per week
  • Use Klaviyo's predictive analytics — do not manually calculate churn scores; Klaviyo computes expected next purchase date and churn risk automatically from your order data
  • Close the loop with CS for high-value customers — for accounts over $1,000 LTV showing high churn risk, route to a customer success rep via Gorgias or Zendesk for personal outreach

Common Pitfalls

ProblemSolution
Sending retention emails to customers who just boughtAdd a flow filter in Klaviyo: "Has placed an order in last 7 days → skip"; AutomateWoo's "Customer has not purchased since workflow was created" rule handles this
Discounts eroding margin on customers who would have repurchased anywayUse Klaviyo's predictive analytics: only offer discounts when predicted churn risk is "High"; skip for "Mid" and "Low"
Single-purchase customers receiving win-back messaging too earlySet a minimum 45-day window before treating a one-time buyer as at-risk
Flows sending to unsubscribed contactsKlaviyo respects unsubscribes automatically; ensure your Shopify/WooCommerce unsubscribe events sync to Klaviyo in real-time

Related Skills

  • @lifecycle-marketing-automation
  • @win-back-reactivation
  • @loyalty-program-optimization
  • @email-marketing-automation
  • @email-list-segmentation

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.