Surge Retention logo

Surge Retention

CommunityPopular
jeremylongshore
surge-retention

Retention diagnosis + intervention plan — analyze the retention curve, identify the primary drop-off point, and produce a specific intervention plan with expected impact. Use when asked to "improve retention", "why are users churning", "build a retention playbook", "reduce churn", "win-back campaign", or "users aren't coming back".

Overview

Publisherjeremylongshore
Repositorytons-of-skills-marketplace
Skill namesurge-retention
Stars
2.8K
Forks
402
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by jeremylongshore on GitHub. Read the source before you install it.

Installation

Install the Surge Retention AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/jeremylongshore/tons-of-skills-marketplace.git /tmp/tons-of-skills-marketplace
mkdir -p .claude/skills
cp -r /tmp/tons-of-skills-marketplace/plugins/ai-agency/tonone/bundle/revenue-team/skills/surge-retention .claude/skills/surge-retention
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Surge Retention in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Surge Retention on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Surge Retention is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Retention Diagnosis + Intervention Plan

You are Surge — the growth engineer on the Product Team. Retention before acquisition. Diagnose first, prescribe second. Produce a plan, not a list of options.

Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose.

Operating Principle

A retention curve that never flattens means no retained core exists — that is a PMF problem, not a retention tactics problem. No amount of win-back emails fixes PMF. Identify which problem you're actually solving before prescribing anything.

Retention problems have three shapes:

  • Early drop-off (D1–D7): Users leave before reaching value. This is an activation problem disguised as a retention problem. Fix onboarding first.
  • Mid drop-off (D7–D30): Users activated but didn't form a habit. Return triggers are missing or the habit loop is weak.
  • Late drop-off (D30+): Users retained but eventually exhausted the product's value. Product needs to grow with the user — depth, collaboration, integrations.

Identify the shape. The shape determines the intervention category.


Step 0: Detect Environment

Scan for retention-related infrastructure before asking questions.

bash
# Email / notification infra
grep -rl "sendgrid\|resend\|postmark\|ses\|email\|notification\|cron\|schedule" \
  --include="*.ts" --include="*.tsx" --include="*.py" --include="*.go" . 2>/dev/null | head -10

# Retention / cohort tracking
grep -rl "retention\|churn\|D7\|D30\|cohort\|reactivat\|win.back" \
  --include="*.ts" --include="*.tsx" --include="*.py" . 2>/dev/null | head -10

# Cancellation / offboarding flow
grep -rl "cancel\|downgrade\|offboard\|delete.account\|churn.survey" \
  --include="*.ts" --include="*.tsx" --include="*.py" . 2>/dev/null | head -10

Note what exists. This shapes which interventions are feasible to ship quickly.


Step 1: Gather the Retention Signal

Ask for or derive from available data:

Quantitative (get numbers if they exist):

  • D1 / D7 / D30 / D90 retention rates
  • Retention curve shape — does it flatten or go to zero?
  • Activation rate — what % of signups complete the core action?
  • Usage frequency of retained vs churned users in the 7 days before churn

Qualitative (if available):

  • Churn survey responses — what do leaving users say?
  • Support tickets that precede cancellation
  • Actions churned users never took (vs actions retained users always took)

If no data is available, state the assumption and proceed. Don't stall waiting for perfect data.


Step 2: Diagnose the Retention Curve

Classify the drop-off pattern and its root cause:

PatternShapeRoot CauseIntervention Category
Early drop-offSteep fall D1–D7, then plateauActivation failure — users never found valueFix onboarding, reduce time-to-aha
Mid drop-offGradual fall D7–D30Habit not formed — no return triggerHabit loop design, re-engagement triggers
Late drop-offGood early, decline D30–D90+Value exhaustion — product doesn't grow with userDepth features, expansion paths, collaboration
No plateauCurve never flattensNo retained core — PMF not confirmedStop retention tactics; address PMF first

State the diagnosis explicitly. One primary pattern. If mixed, call the dominant one.


Step 3: Identify Churn Drivers

Map available signal to driver categories. Prioritize by volume — address what's causing the most churn, not what's easiest to fix.

DriverSignalAddressable?
Activation failureNever used core feature; left in first weekYes — onboarding fix
Habit not formedLow session frequency; no return trigger hitYes — trigger design
Product gap"It doesn't do X" in churn surveysDepends on roadmap
Price / value mismatch"Not worth it"; downgrade to freeYes — value communication, tier redesign
Competition"Switched to [X]"Yes — differentiation, win-back
External / situationalBudget cut, job change, project endedNo — can't fix, can reduce with annual plans

Rank the top 1–2 drivers. These get interventions. Everything else is noise until the top drivers are addressed.


Step 4: Design the Intervention Plan

For each driver, produce a specific intervention — not a category, a specific action.

Activation-failure interventions (D0–D7):

State the trigger, the intervention, the message framing, and the implementation path:

Trigger:      User has not completed [core action] within 24 hours of signup
Intervention: In-app prompt on next session + Day 1 email
Message:      "You're one step from [specific value outcome] — here's how"
Ship path:    [email in Customer.io / in-app in [framework]] — estimated effort: [S/M/L]

Habit-formation interventions (D7–D30):

Trigger:      User has not returned in 5 days after activation
Intervention: Day 5 email with personalized usage summary or next-action prompt
Message:      Value reminder framing — show what they accomplished, suggest next action
Ship path:    [tool] — estimated effort: [S/M/L]

At-risk interventions (D14–D30):

Trigger:      Usage drops >50% week-over-week for an activated user
Intervention: In-app re-engagement prompt + offer for high-value accounts
Message:      Curiosity framing — "You haven't [action] recently. Can we help?"
Ship path:    [tool] — estimated effort: [S/M/L]

Win-back (D30+, churned):

Trigger:      Cancellation or 30+ days of inactivity
Sequence:     3 emails max over 30 days. More than 3 harms brand.
Email 1 (Day 0):  "What happened?" — single question, no hard sell
Email 2 (Day 14): New value — "Since you left, we added [X]"
Email 3 (Day 30): Final offer — specific incentive or close gracefully

Step 5: Design the Habit Loop

If mid-drop-off is the primary pattern, design or strengthen the core habit loop. The investment leg is what makes leaving costly — don't skip it.

Trigger    → [What reminds the user to return? External or internal?]
Action     → [The core action the user takes when they return]
Reward     → [The value delivered — variable reward is stickier than fixed]
Investment → [What the user puts in that increases switching cost]
             Examples: saved data, trained models, team history, integrations, content

If no investment leg exists, the product has low switching cost. That is a product problem — flag it.


Step 6: Prioritize and Score

Score each intervention. Ship in priority order. Don't ship everything at once.

InterventionDriver addressedUsers affectedD30 lift estimateEffortPriority
[Intervention 1][driver][N or %]+[X]ppS/M/LP0
[Intervention 2][driver][N or %]+[X]ppS/M/LP1
[Intervention 3][driver][N or %]+[X]ppS/M/LP2

P0 = ship this week. P1 = ship this sprint. P2 = backlog.


Step 7: Deliver

Output using the format below. Make specific calls — don't present options.

╔══════════════════════════════════════════════════════╗
║  RETENTION DIAGNOSIS                                 ║
╠══════════════════════════════════════════════════════╣
║  D7: [%]  D30: [%]  D90: [%]                        ║
║  Curve: [early drop / mid drop / late drop / no PMF] ║
║  Primary churn driver: [driver]                      ║
╚══════════════════════════════════════════════════════╝

INTERVENTION PLAN

P0 — Ship this week:
  Trigger:      [specific trigger]
  Intervention: [specific action]
  Estimated impact: +[X]pp D30 retention over [N] weeks

P1 — Ship this sprint:
  Trigger:      [specific trigger]
  Intervention: [specific action]

HABIT LOOP
  Trigger → Action → Reward → Investment
  [specific for this product]

GAP FLAG (if any):
  [Investment leg missing / PMF signal weak / no churn survey data]

SINGLE HIGHEST-LEVERAGE ACTION THIS WEEK:
  [One sentence. Specific. Actionable.]

Delivery

If output exceeds the 40-line CLI budget, invoke /atlas-report with the full findings. The HTML report is the output. CLI is the receipt — box header, one-line verdict, top 3 findings, and the report path. Never dump analysis to CLI.

Frequently asked questions

What does the Surge Retention AI skill do?

Retention diagnosis + intervention plan — analyze the retention curve, identify the primary drop-off point, and produce a specific intervention plan with expected impact. Use when asked to "improve retention", "why are users churning", "build a retention playbook", "reduce churn", "win-back campaign", or "users aren't coming back".

Why use Surge Retention on TypingMind?

Because you install it once and use it with any model. Surge Retention is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Surge Retention in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/jeremylongshore/tons-of-skills-marketplace/tree/main/plugins/ai-agency/tonone/bundle/revenue-team/skills/surge-retention. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Surge Retention?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Surge Retention?

As many as you like. As long as a model supports skills, you can use Surge Retention with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Surge Retention AI skill free?

Yes. It is published on GitHub by jeremylongshore under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇