duo-retention Pass

Duolingo-style retention engineering for any product — habit loops, streaks, leagues, churn diagnostics, day-N drop-off, and the discipline of building a "forever product." Use when the user asks how to keep users coming back, debug churn, design a streak system, time push notifications, run a leaderboard, or shift a product's metric from acquisition to retention. Source the Duolingo Handbook (Take the Long View) and blog data posts; translate every pattern to the user's actual product.

0
stars
0
downloads
4
views

// Install Skill

Install Skill

Skills are third-party code from public GitHub repositories. SkillHub scans for known malicious patterns but cannot guarantee safety. Review the source code before installing.

Install globally (user-level):

npx skillhub install HKTITAN/signlingo/duo-retention

Install in current project:

npx skillhub install HKTITAN/signlingo/duo-retention --project

skill.install.customTargetHelp

npx skillhub install HKTITAN/signlingo/duo-retention --target-dir /path/to/skills

Suggested path: ~/.claude/skills/duo-retention/

SKILL.md Content

---
name: duo-retention
description: Duolingo-style retention engineering for any product — habit loops, streaks, leagues, churn diagnostics, day-N drop-off, and the discipline of building a "forever product." Use when the user asks how to keep users coming back, debug churn, design a streak system, time push notifications, run a leaderboard, or shift a product's metric from acquisition to retention. Source the Duolingo Handbook (Take the Long View) and blog data posts; translate every pattern to the user's actual product.
license: MIT
metadata:
  author: HKTITAN
  version: "1.0.0"
  graph: true
---

# Duolingo Retention — Map of Content

Duolingo's central business bet is that retention compounds and acquisition does not. The handbook frames the company as a "forever product": every decision is judged by long-term retention, not short-term revenue. This skill packages that bet into reusable patterns.

This skill is structured as a **graph**: scan the descriptions below, follow only the `[[wikilinks]]` you need. Don't read every node up front.

## Foundations

- [[references/forever-product]] — the operating premise: optimize for users who stick around for years, not quarters.
- [[references/habit-loop]] — trigger → action → variable reward → investment, the spine of every retention move.
- [[references/retention-vs-revenue]] — the explicit tradeoff Duolingo makes (and limits) between monetization and long-term return.

## Behavioral mechanics

- [[references/streak-mechanics]] — the daily-counter habit engine that became the company's icon.
- [[references/streak-freeze]] — why protecting the streak is the retention move, not the gentle one.
- [[references/loss-aversion]] — the asymmetry that makes streaks work: losing hurts more than winning feels good.
- [[references/variable-reward]] — unpredictable payoffs (chests, league finishes) outperform predictable ones.
- [[references/friction-as-stickiness]] — small required actions that build identity and habit.

## Social and competitive layers

- [[references/leagues]] — weekly time-boxed competition with promotion and demotion.
- [[references/daily-quests]] — short-horizon goals that set up the long-horizon streak.

## Diagnosing and fixing churn

- [[references/churn-diagnostics]] — how to find the day where users drop and what each drop-off shape implies.
- [[references/notification-discipline]] — the long-term cost of over-notifying, and how Duolingo decides cadence.

## Sibling skills

- [[../duo-gamification/SKILL]] — the play layer (XP, juicy feedback, hearts) that makes the retention loops survivable.
- [[../duo-voice/SKILL]] — the copy layer that makes a push notification fire instead of fizzle.
- [[../duo-experimentation/SKILL]] — every retention claim in this skill was originally an A/B test; here's how to run yours.
- [[../duo-product/SKILL]] — the "forever product" mental model lives in the product skill too; the long-view bet starts there.

## Sources

- Duolingo Handbook (2025), Principle #1: *Take the Long View*
- blog.duolingo.com — streak society, league design, push-notification science posts

License

Declared license: MIT

MIT License

Copyright (c) 2026 HKTITAN

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View the license in the source repositorythe version published there is authoritative.