---
title: "Discount Guardian — Pricing Growth Tactic"
description: "Standardizes every discount on the structure with causal evidence behind it, substituting a forever-percent discount at the moment any discount is created."
canonical: "https://churnkey.co/growth/library/discount-guardian"
category: "growth"
related:
  - /growth/library/index.html.md
  - /growth/library/methodology.html.md
  - /tools/lifetime-value-calculator.html.md
last_updated: "2026-06-09"
---

# Discount Guardian

Standardizes every discount on the structure with causal evidence behind it, substituting a forever-percent discount at the moment any discount is created.

- **Stage:** Pricing
- **Evidence grade:** causal (effect isolated with matched pairs)
- **Evidence:** 11.2 percentage points of churn removed by forever-percent discounts
- **Trigger type:** Event
- **Channels:** webhook, cancel modal

## What is it?

Most teams treat a discount as a number. The research behind this tactic says the structure matters more. Across more than 100,000 subscriber pairs, forever-percent discounts (a percentage off for the life of the subscription) cut churn by 11.2 percentage points. That effect belongs to the shape of the discount, not its depth. This tactic makes the proven shape the default: whenever a discount is created, in the billing pipeline or as a cancel-flow offer, it resolves the discount to a forever-percent structure before it reaches the subscriber.

The premise is that discount policy should be set once, with evidence, rather than re-decided ad hoc at every creation point. Operators keep full control of depth and eligibility. The tactic standardizes the structure, so every discount a subscriber sees carries the configuration with a measured retention effect behind it.

## When it fires

The trigger is the creation event itself. A discount drafted in the billing provider, generated by campaign tooling, or selected as a cancel-flow offer passes through the tactic before it is applied. The tactic resolves the structure to forever-percent, sized to preserve the intent of the original, and passes it on.

Firing at creation rather than downstream is the design decision that makes the tactic cheap to run: one policy point, applied uniformly, covering everywhere discounts originate. The alternative, discount rules maintained by hand in each place, drifts the moment anyone ships a new campaign.

## What the evidence shows

Forever-percent discounts cut churn by 11.2 percentage points across more than 100,000 subscriber pairs, one of the four effects in the research dataset graded as almost certainly causal. The research compared each discounted subscriber against a statistical twin, a subscriber identical on plan value, tenure, and engagement, so the effect belongs to the discount structure rather than to who receives it.

The aggregate scale is what makes standardization worth automating: across the platform, the gap between everyday discount practice and the proven structure represents roughly $308M in addressable lifetime value. Discount structure is among the cheapest retention levers in the dataset, because it costs nothing beyond the discount already being given.

## How it runs

In production, the tactic sits on the discount-creation path through the billing integration. Every new discount resolves to a forever-percent structure sized within operator-set depth bounds, and the tactic records each substitution with the original draft alongside the resolved version, so discount policy stays auditable.

Guardrails keep the policy conservative: depth never leaves the bounds the operator sets, discounts already attached to subscribers never change retroactively, and discounts never stack. One forever-percent discount per subscriber, applied once.

## Run it with the Churnkey MCP

This tactic runs via the Churnkey MCP. Connect it to your favorite AI agent and it reads your own usage and billing data, then recommends and runs the plays most likely to move your LTV — starting with whether this one fits.

**Trigger:** A discount is created anywhere in the stack (billing provider, campaign tooling, or a cancel-flow offer) and has not yet been applied to a subscriber.

**Surface:** Server-side on the discount-creation path via the billing integration. In the Cancel Flow, the resolved discount renders as the offer presented in the cancel modal.

**Guardrails:**

- Structure policy: every discount that reaches a subscriber is forever-percent, a percentage off for the life of the subscription, sized within operator-set depth bounds.
- Scope: apply at creation only. Never modify a discount already attached to a subscriber.
- Stacking: one discount per subscriber. When a discount already exists, take no action.
- Audit: record every substitution with the original draft and the resolved structure, so discount policy stays reviewable by the operator.

**Evidence:** Forever-percent discounts cut churn by 11.2 percentage points across more than 100,000 subscriber pairs. Graded causal because each discounted subscriber was compared against a statistical twin, isolating the discount structure from who receives it. Across the platform, the gap between everyday discount practice and this structure represents roughly $308M in addressable lifetime value.

**How to run it:**

1. Route every discount-creation path (billing provider, campaign tooling, cancel-flow offers) through a single policy point before any discount reaches a subscriber.
2. Define the standard: forever-percent structure, with depth bounds set per plan and per vertical by the operator.
3. On each creation event, resolve the draft discount to a forever-percent structure sized to preserve the intent of the original.
4. Apply the resolved discount through the billing provider and record the substitution, original draft plus resolved structure, for audit.
5. Enforce one discount per subscriber: when a discount already exists, take no action rather than stacking.
6. Track the churn of discounted groups against comparable undiscounted subscribers to confirm the structural effect holds in your data.

Install the MCP server:

```bash
npm install -g @churnkey/mcp
```

The full reference is in the [Churnkey MCP docs](https://docs.churnkey.co/data-integrations/mcp).

## Related

- [Growth Tactics Library](/growth/library/index.html.md) — The full register of graded growth plays.
- [How Tactics Are Graded](/growth/library/methodology.html.md) — The four-grade evidence ladder behind this grade.
- [Lifetime value calculator](/tools/lifetime-value-calculator.html.md) — Related calculator.
