Appendix E: Psychological Design Patterns
50+ Proven Psychological Design Patterns for SaaS Success
๐ง What Are Psychological Design Patterns?
Psychological design patterns are reusable solutions to common human behavior challenges in software design. They leverage cognitive psychology, behavioral economics, and social psychology to create more engaging, intuitive, and effective user experiences.
Each pattern in this collection has been:
Field-tested across multiple SaaS products
Psychologically validated through research
Measurably effective in improving key metrics
Ethically sound for responsible implementation
๐ Pattern Format
Each pattern includes:
Pattern Name: Clear, memorable identifier
Psychology: The underlying psychological principle
Problem: The human behavior challenge it solves
Solution: How to implement the pattern
Examples: Real-world SaaS implementations
Metrics: Expected impact on key performance indicators
Warnings: Potential negative effects and ethical considerations
๐ฏ Pattern Categories
๐ Acquisition Patterns
โจ Activation Patterns
๐ Engagement Patterns
๐ Retention Patterns
๐ฐ Monetization Patterns
๐ Viral Growth Patterns
๐ Acquisition Patterns
Pattern 1: Social Proof Cascade
Psychology
Humans use others' behavior as shortcuts for decision-making, especially under uncertainty. Multiple forms of social proof create a "cascade" effect where each proof reinforces the others.
Problem
New visitors don't trust an unknown SaaS product and need validation that others have successfully used it.
Solution
Layer multiple types of social proof throughout the acquisition funnel:
Statistical Proof: "Trusted by 10,000+ companies"
Expert Proof: "Used by Fortune 500 companies"
User Proof: Customer testimonials and reviews
Peer Proof: "Companies like yours use our product"
Certification Proof: Security badges, compliance logos
Implementation Pattern
graph LR
A[Landing Page] --> B[Statistical Social Proof]
B --> C[Expert Social Proof]
C --> D[User Testimonials]
D --> E[Peer Company Logos]
E --> F[Security/Trust Badges]
F --> G[Conversion Action]
SaaS Examples
Slack: "Trusted by companies of every size" + customer logos + testimonials
Zoom: Usage statistics + Fortune 500 logos + customer stories
HubSpot: "120,000+ customers" + G2 reviews + case studies
Expected Metrics
Conversion Rate: +15-35% improvement
Trust Score: +25-50% increase in user surveys
Time to Decision: 20-40% faster conversion
Implementation Code Pattern
<!-- Statistical Proof -->
<div class="social-proof-stats">
<span>Trusted by <strong>50,000+</strong> companies worldwide</span>
</div>
<!-- Expert Proof -->
<div class="customer-logos">
<img src="fortune500-logo.png" alt="Fortune 500 Customer">
</div>
<!-- User Proof -->
<div class="testimonial">
<blockquote>"This changed our business"</blockquote>
<cite>- CEO, TechCorp</cite>
</div>
โ ๏ธ Warnings
False Claims: All social proof must be accurate and verifiable
Overwhelming Effect: Too much social proof can create choice paralysis
Relevance: Ensure social proof matches target audience
Pattern 2: Authority Transfer
Psychology
People defer to perceived authority figures and transfer trust from known authorities to associated products.
Problem
Unknown SaaS products lack credibility and struggle to establish trust with potential customers.
Solution
Associate your product with recognized authorities through:
Expert Endorsements: Industry leaders recommend your product
Media Coverage: Press mentions from respected publications
Certification: Official certifications from trusted organizations
Partnership: Associations with established brands
Thought Leadership: Founders/team recognized as experts
Implementation Examples
"As featured in TechCrunch, Forbes, and Wired"
"SOC 2 Type II Certified"
"Recommended by [Industry Expert Name]"
"Official partner of [Major Platform]"
SaaS Examples
Notion: Featured in major tech publications, recommended by productivity experts
Figma: Adobe acquisition validates authority in design space
Stripe: YC alumni credibility, used by tech leaders
Expected Metrics
Credibility Score: +30-60% improvement
Conversion Rate: +10-25% lift
Brand Perception: +40-70% increase in trust
โ ๏ธ Warnings
False Authority: Don't fabricate or exaggerate credentials
Relevance: Authority must be relevant to your domain
Overreliance: Product quality must match authoritative positioning
Pattern 3: Scarcity Timer
Psychology
Scarcity increases perceived value and urgency. Time constraints trigger loss aversion and fear of missing out (FOMO).
Problem
Users procrastinate on signup/purchase decisions, leading to lost conversions.
Solution
Create legitimate time-based scarcity through:
Limited-Time Offers: Discount expires at specific time
Beta Access: Limited spots available for early access
Seasonal Promotions: Holiday or event-based timing
Product Launch: Early-bird pricing for new features
Cohort Limits: Limited seats in training or onboarding
Visual Implementation
graph TB
A[User Sees Offer] --> B[Countdown Timer Visible]
B --> C[Urgency Increases Over Time]
C --> D[Decision Pressure Builds]
D --> E[Action or Loss]
SaaS Examples
Black Friday SaaS Deals: Annual pricing promotions with clear end dates
Beta Program Access: "100 spots remaining for early access"
Conference Pricing: "Early bird pricing ends Friday"
Expected Metrics
Conversion Rate: +20-45% during scarcity period
Decision Speed: 50-70% faster conversion timing
Revenue: +15-30% from urgency-driven upgrades
Implementation Guidelines
// Countdown Timer Implementation
function createScarcityTimer(endDate) {
const timer = setInterval(() => {
const now = new Date().getTime();
const timeLeft = endDate - now;
if (timeLeft > 0) {
const hours = Math.floor(timeLeft / (1000 * 60 * 60));
const minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60));
document.getElementById('timer').innerHTML =
`โฐ ${hours}h ${minutes}m remaining`;
} else {
document.getElementById('timer').innerHTML = "Offer Expired";
clearInterval(timer);
}
}, 1000);
}
โ ๏ธ Warnings
False Scarcity: Never fake scarcity - it destroys trust when discovered
Anxiety Creation: Don't create unhealthy pressure or anxiety
Overuse: Constant urgency loses effectiveness
โจ Activation Patterns
Pattern 4: Success Spiral
Psychology
Early wins build confidence and momentum. Success experiences release dopamine and create positive associations with the product.
Problem
New users feel overwhelmed and abandon the product before experiencing core value.
Solution
Design a series of increasingly meaningful successes:
Micro-Success: Immediate small win (account creation, first login)
Quick Win: Fast value realization (first task completed)
Meaningful Success: Core value delivered (problem solved)
Social Success: Recognition or sharing opportunity
Mastery Success: Advanced feature mastery
Success Spiral Design
graph TB
A[Micro-Success: Sign Up] --> B[Quick Win: First Action]
B --> C[Meaningful Success: Core Value]
C --> D[Social Success: Share Achievement]
D --> E[Mastery Success: Advanced Features]
E --> F[Expert User Identity]
SaaS Examples
Canva: Template selection โ easy edit โ professional result โ share creation
Slack: Workspace created โ first message sent โ team joins โ productive conversation
Notion: Page created โ content added โ template used โ system organized
Expected Metrics
Activation Rate: +25-50% improvement
Feature Adoption: +35-60% increase
User Confidence: +40-70% in self-efficacy scores
Implementation Framework
// Success Tracking and Celebration
class SuccessSpiral {
constructor() {
this.successes = [
{ id: 'signup', message: '๐ Welcome! You\'re all set up.' },
{ id: 'first_action', message: '๐ Great! You completed your first task.' },
{ id: 'core_value', message: 'โญ Awesome! You\'ve unlocked the main benefit.' }
];
}
celebrateSuccess(successId) {
const success = this.successes.find(s => s.id === successId);
this.showCelebration(success.message);
this.trackProgress(successId);
}
}
โ ๏ธ Warnings
False Celebration: Don't celebrate meaningless actions
Over-Celebration: Too much praise can feel patronizing
Missing Substance: Ensure real value delivery, not just psychological tricks
Pattern 5: Progress Momentum
Psychology
The "Endowed Progress Effect" - people are more motivated to complete tasks when they see progress toward a goal.
Problem
Users abandon complex onboarding or setup processes due to perceived overwhelming length.
Solution
Show progress and momentum through:
Progress Bars: Visual representation of completion
Step Indicators: Current position in multi-step process
Completion Percentage: Quantified progress
Milestone Celebrations: Acknowledge progress points
Estimated Time: "2 minutes remaining"
Progress Psychology
graph LR
A[0% Complete] --> B[20% - First Step Done]
B --> C[40% - Halfway There!]
C --> D[60% - Making Great Progress]
D --> E[80% - Almost Finished]
E --> F[100% - Success!]
SaaS Examples
LinkedIn Profile: "Profile strength: 60% - Add skills to reach All-Star"
Dropbox Setup: "3 of 5 steps complete - Almost ready!"
Trello Onboarding: Progress bar with celebratory messages
Expected Metrics
Completion Rate: +20-35% improvement
Abandonment: 30-50% reduction in drop-offs
Time to Complete: 15-25% faster completion
Implementation Example
/* Progress Bar Psychology */
.progress-container {
width: 100%;
background-color: #f0f0f0;
border-radius: 10px;
margin: 20px 0;
}
.progress-bar {
height: 20px;
background: linear-gradient(90deg, #4CAF50, #8BC34A);
border-radius: 10px;
transition: width 0.3s ease;
position: relative;
}
.progress-text {
position: absolute;
width: 100%;
text-align: center;
line-height: 20px;
color: white;
font-weight: bold;
}
โ ๏ธ Warnings
False Progress: Don't show progress for steps that aren't actually required
Overwhelming Length: Even with progress bars, too many steps deter completion
Misleading Time: Accurate time estimates are crucial for trust
๐ Engagement Patterns
Pattern 6: Variable Reward Schedule
Psychology
Unpredictable rewards create stronger behavioral conditioning than predictable ones. This is the most addictive behavioral pattern in psychology.
Problem
Users lose interest in predictable experiences and stop engaging with the product regularly.
Solution
Implement unpredictable positive outcomes:
Random Rewards: Surprise bonuses, features, or content
Variable Content: Different experiences each time
Surprise Delights: Unexpected positive interactions
Random Recognition: Unpredictable acknowledgment
Discovery Elements: New things to find each visit
Variable Reward Loop
graph LR
A[User Action] --> B[Variable Outcome]
B --> C[Sometimes Reward]
C --> D[Sometimes Nothing]
D --> E[Sometimes Big Reward]
E --> F[Increased Motivation]
F --> A
SaaS Examples
Spotify Discover Weekly: New music surprises every Monday
Slack Emoji Reactions: Unpredictable social feedback
GitHub Contribution Graph: Variable commit activity creates patterns
Trello Power-Ups: Discover new capabilities
Expected Metrics
Daily Active Users: +30-60% increase
Session Length: +25-45% improvement
Return Rate: +20-40% higher retention
Implementation Strategies
// Variable Reward System
class VariableRewards {
constructor() {
this.rewardProbability = 0.3; // 30% chance
this.rewards = [
{ type: 'points', value: 10 },
{ type: 'badge', value: 'achiever' },
{ type: 'feature', value: 'premium_trial' }
];
}
checkForReward(userAction) {
if (Math.random() < this.rewardProbability) {
const reward = this.getRandomReward();
this.deliverReward(reward);
}
}
}
โ ๏ธ Warnings
Addiction Risk: Can create unhealthy compulsive behavior
Ethical Concerns: Consider user wellbeing, not just engagement
Balance Required: Mix predictable value with variable rewards
Pattern 7: Social Facilitation
Psychology
People perform better and are more engaged when they know others are watching or participating alongside them.
Problem
Users work in isolation and lose motivation without social accountability or recognition.
Solution
Make individual work social through:
Presence Indicators: Show who else is online/working
Activity Streams: Share what others are doing
Collaborative Spaces: Work alongside others
Public Progress: Make achievements visible to others
Peer Recognition: Enable others to acknowledge work
Social Facilitation Design
graph TB
A[Individual Work] --> B[Social Visibility]
B --> C[Peer Awareness]
C --> D[Increased Performance]
D --> E[Recognition Opportunities]
E --> F[Continued Engagement]
SaaS Examples
Figma: Real-time cursors show collaborators working
GitHub: Public contribution graphs and activity
Strava: Social fitness tracking and kudos
Notion: Page activity and collaboration indicators
Expected Metrics
Task Completion: +15-30% improvement
Quality of Work: +20-35% higher quality scores
Engagement Time: +25-40% longer sessions
Implementation Example
// Social Presence Indicators
class SocialPresence {
constructor() {
this.activeUsers = new Map();
this.activityFeed = [];
}
showActiveUsers() {
const userList = Array.from(this.activeUsers.values());
document.getElementById('presence').innerHTML =
`๐ฅ ${userList.length} people working right now`;
}
broadcastActivity(user, action) {
const activity = {
user: user.name,
action: action,
timestamp: new Date()
};
this.activityFeed.unshift(activity);
this.updateActivityStream();
}
}
โ ๏ธ Warnings
Privacy Concerns: Balance visibility with privacy needs
Performance Anxiety: Some users may feel pressured or stressed
Distraction Risk: Social elements can distract from core work
๐ Retention Patterns
Pattern 8: Sunk Cost Momentum
Psychology
People continue investing in something they've already invested time, effort, or money in, even when it's no longer optimal.
Problem
Users haven't invested enough in the product to feel committed and easily switch to competitors.
Solution
Create legitimate investment opportunities:
Data Investment: Users input valuable personal/business data
Customization Investment: Time spent personalizing the experience
Content Creation: Users create content within the platform
Integration Setup: Connect other tools and workflows
Learning Investment: Develop skills specific to your platform
Investment Accumulation
graph TB
A[Initial Use] --> B[Data Entry]
B --> C[Customization]
C --> D[Content Creation]
D --> E[Integration Setup]
E --> F[Skill Development]
F --> G[High Switching Cost]
SaaS Examples
Salesforce: Years of customer data and custom fields
Notion: Personal wikis and organizational systems
Slack: Message history and custom integrations
Airtable: Custom databases and automation workflows
Expected Metrics
Churn Rate: 25-50% reduction
Customer Lifetime Value: +40-80% increase
Feature Adoption: +30-55% higher usage
Ethical Investment Design
// Investment Tracking (Ethical)
class UserInvestment {
constructor() {
this.investmentTypes = {
data: { weight: 0.3, description: 'Information added' },
customization: { weight: 0.2, description: 'Settings configured' },
content: { weight: 0.4, description: 'Content created' },
integrations: { weight: 0.1, description: 'Tools connected' }
};
}
calculateInvestment(user) {
// Calculate actual value created, not just stickiness
return this.measureValueCreated(user);
}
}
โ ๏ธ Warnings
Ethical Boundaries: Create genuine value, not just switching costs
User Agency: Don't trap users - make leaving possible but naturally unlikely
Value Alignment: Investment should benefit users, not just retention
Pattern 9: Identity Reinforcement
Psychology
People act in ways consistent with their self-identity. Reinforcing positive identity associations increases loyalty and engagement.
Problem
Users don't see the product as part of their professional or personal identity.
Solution
Help users develop identity associations:
Role Recognition: "You're a [Designer/Analyst/Creator]"
Skill Badges: Certifications and expertise acknowledgment
Community Membership: Belonging to user groups
Achievement Titles: "Power User," "Expert," "Ambassador"
Professional Credentials: Certifications valuable in job market
Identity Formation Journey
graph TB
A[New User] --> B[First Success]
B --> C[Skill Recognition]
C --> D[Community Participation]
D --> E[Expertise Development]
E --> F[Identity Integration]
F --> G[Brand Advocacy]
SaaS Examples
Salesforce Trailhead: "Become a Salesforce Expert"
HubSpot Academy: "Certified Inbound Marketer"
Adobe Creative: "Creative Professional"
Tableau: "Data Rockstar"
Expected Metrics
User Retention: +35-65% improvement
Advocacy Rate: +50-100% increase in recommendations
Feature Usage: +25-45% deeper engagement
Implementation Strategy
// Identity Reinforcement System
class IdentityReinforcement {
constructor() {
this.identityMilestones = [
{ threshold: 5, title: 'Getting Started', badge: 'beginner' },
{ threshold: 25, title: 'Regular User', badge: 'active' },
{ threshold: 100, title: 'Power User', badge: 'expert' },
{ threshold: 500, title: 'Master', badge: 'master' }
];
}
checkIdentityProgress(user) {
const currentMilestone = this.getCurrentMilestone(user.activityScore);
if (currentMilestone.isNewAchievement) {
this.celebrateIdentityAchievement(user, currentMilestone);
}
}
}
โ ๏ธ Warnings
Authentic Identity: Identity must be genuinely earned and valuable
Inclusive Design: Don't exclude users who don't fit traditional profiles
Professional Value: Ensure identity benefits users beyond your platform
๐ฐ Monetization Patterns
Pattern 10: Value Ladder
Psychology
The "Foot-in-the-door" technique - people who agree to small requests are more likely to agree to larger ones later.
Problem
Users resist large upfront commitments and need gradual introduction to higher-value offerings.
Solution
Create ascending value propositions:
Free Value: Genuine utility at no cost
Small Commitment: Low-cost, low-risk first purchase
Increased Value: More features, higher price
Premium Service: High-touch, high-value offering
Enterprise: Custom, maximum value solution
Value Ladder Progression
graph TB
A[Free Tier: Basic Value] --> B[Starter: $9/month]
B --> C[Professional: $29/month]
C --> D[Business: $99/month]
D --> E[Enterprise: Custom Pricing]
F[Commitment Level] --> G[Low Risk โ High Value]
H[Price Sensitivity] --> I[Overcome Gradually]
SaaS Examples
Zoom: Basic (free) โ Pro ($14.99) โ Business ($19.99) โ Enterprise (custom)
Slack: Free โ Pro ($6.67) โ Business+ ($12.50) โ Enterprise Grid (custom)
Canva: Free โ Pro ($12.99) โ Teams ($14.99/user)
Expected Metrics
Upgrade Rate: +20-40% higher conversion through ladder
Customer Lifetime Value: +50-150% increase
Price Sensitivity: 30-50% reduction in price objections
Pricing Psychology Implementation
// Value Ladder Psychology
class ValueLadder {
constructor() {
this.tiers = [
{
name: 'Free',
price: 0,
features: ['Basic features'],
psychologyTrigger: 'risk_free_trial'
},
{
name: 'Starter',
price: 9,
features: ['Everything in Free', 'Advanced features'],
psychologyTrigger: 'small_commitment'
},
{
name: 'Pro',
price: 29,
features: ['Everything in Starter', 'Premium features'],
psychologyTrigger: 'professional_identity'
}
];
}
suggestUpgrade(user) {
const currentTier = this.getCurrentTier(user);
const nextTier = this.getNextTier(currentTier);
if (this.shouldSuggestUpgrade(user, nextTier)) {
this.presentUpgradeOpportunity(user, nextTier);
}
}
}
โ ๏ธ Warnings
Value Delivery: Each tier must deliver genuine increased value
Fair Pricing: Don't artificially limit lower tiers to force upgrades
Clear Differentiation: Users must understand what they gain at each level
๐ Viral Growth Patterns
Pattern 11: Collaborative Necessity
Psychology
When a tool's core value requires multiple people, each user becomes an acquisition channel for new users.
Problem
Organic growth is slow and expensive customer acquisition limits scaling.
Solution
Design features that require collaboration:
Shared Workspaces: Multiple people need access to same content
Review Processes: Work requires approval or feedback from others
Real-time Collaboration: Simultaneous multi-user experiences
Communication Integration: Built-in team communication
Permission Systems: Role-based access brings in team members
Viral Collaboration Loop
graph LR
A[User Creates Content] --> B[Needs Collaboration]
B --> C[Invites Team Members]
C --> D[New Users Join]
D --> E[Experience Core Value]
E --> F[Create Their Own Content]
F --> A
SaaS Examples
Figma: Design collaboration requires inviting team members
Slack: Team communication needs entire team participation
Notion: Shared wikis bring in whole organizations
Google Workspace: Document collaboration drives team adoption
Expected Metrics
Viral Coefficient: 1.2-3.5 (each user brings 1-3 others)
Organic Growth: 40-80% of new users from referrals
Team Penetration: 60-90% adoption within organizations
Implementation Framework
// Collaborative Necessity Engine
class CollaborativeGrowth {
constructor() {
this.collaborationTriggers = [
'document_sharing',
'team_workspace_creation',
'review_request',
'real_time_editing',
'permission_granting'
];
}
identifyGrowthOpportunity(userAction) {
if (this.collaborationTriggers.includes(userAction.type)) {
this.suggestTeamInvitation(userAction.user);
}
}
trackViralMetrics() {
// Measure invitation rates, acceptance rates, activation of invited users
return this.calculateViralCoefficient();
}
}
โ ๏ธ Warnings
Forced Collaboration: Don't artificially require collaboration where it's not natural
Privacy Concerns: Ensure users control what they share and with whom
Value Alignment: Collaboration should enhance, not complicate, core value
๐ Pattern Combination Strategies
The STACK Method
Most successful SaaS products don't use single patterns but combine multiple patterns strategically:
S - Start with Acquisition: Social proof + Authority transfer + Risk reversalT - Trigger Activation: Success spiral + Progress momentum + Achievement unlock A - Amplify Engagement: Variable rewards + Social facilitation + Curiosity loopsC - Create Retention: Sunk cost + Identity reinforcement + Network lock-inK - Keep Growing: Collaborative necessity + Social sharing + Value ladder
Pattern Interaction Matrix
Acquisition
Social Proof + Authority
Scarcity + Risk Reversal
Don't overwhelm with too many trust signals
Activation
Success Spiral + Progress
Achievement + Social Onboarding
Don't make success feel artificial
Engagement
Variable Rewards + Social
Curiosity + Status Progress
Avoid addiction-creating combinations
Retention
Investment + Identity
Network Effects + Habit Stack
Don't trap users unethically
Monetization
Value Ladder + Social Pressure
Premium Status + Usage Anxiety
Avoid manipulative pricing tactics
๐ฏ Implementation Guidelines
Pattern Selection Framework
Step 1: Identify Your Primary Challenge
What's your biggest user behavior challenge?
Where do users drop off in your funnel?
What would have the highest business impact?
Step 2: Choose Core Pattern
Select 1-2 primary patterns that address your challenge
Ensure patterns align with your product's natural behavior
Consider your users' psychological profile and preferences
Step 3: Add Supporting Patterns
Choose 2-3 supporting patterns that enhance the primary ones
Avoid conflicting psychological principles
Test individual patterns before combining
Step 4: Measure and Iterate
Define success metrics for each pattern
A/B test implementation approaches
Monitor for negative psychological effects
Ethical Implementation Checklist
Before implementing any psychological pattern, ask:
Testing Framework
Quantitative Metrics
Conversion Rate: Percentage improvement in desired actions
Engagement Time: Changes in session duration and frequency
User Satisfaction: NPS, satisfaction surveys, support tickets
Business Impact: Revenue, retention, and growth metrics
Qualitative Assessment
User Interviews: How do users describe their experience?
Behavioral Observation: What do users actually do vs. what they say?
Emotional Response: How do users feel during and after interactions?
Long-term Impact: What are the lasting effects on user behavior?
๐ฎ Advanced Pattern Applications
Contextual Pattern Adaptation
Different user segments may respond differently to the same patterns:
B2B vs B2C Psychology
B2B: Authority, social proof, risk reduction, professional identity
B2C: Instant gratification, social sharing, personal achievement, fun
Cultural Considerations
Individualistic Cultures: Personal achievement, competition, status
Collectivistic Cultures: Group harmony, social proof, consensus
User Experience Level
Beginners: Success spiral, progress momentum, guided discovery
Experts: Advanced features, efficiency shortcuts, power user status
Pattern Evolution Over Time
As your product and users mature, pattern effectiveness may change:
Early Stage (0-1000 users)
Focus on activation and initial value delivery
Heavy emphasis on success and progress patterns
Simple, clear psychological triggers
Growth Stage (1000-100,000 users)
Add social and viral growth patterns
Implement retention and investment patterns
Begin monetization psychology
Scale Stage (100,000+ users)
Advanced personalization and segmentation
Complex pattern combinations
Community and ecosystem effects
๐ Pattern Research & Validation
Academic Foundations
Each pattern is grounded in established psychological research:
Social Proof: Cialdini's Influence research (1984)
Variable Rewards: Skinner's reinforcement schedules (1957)
Progress Psychology: Koo & Fishbach goal gradient research (2008)
Loss Aversion: Kahneman & Tversky prospect theory (1979)
Social Facilitation: Zajonc's social presence theory (1965)
Ongoing Research
Psychology in digital products continues evolving:
Attention Economics: How digital attention differs from physical
AI Psychology: Human interaction with algorithmic recommendations
Privacy Psychology: How privacy concerns affect user behavior
Sustainability Psychology: Long-term user well-being in digital products
๐ Quick Reference Guide
Top 10 Patterns by Use Case
Need More Signups?
Social Proof Cascade
Authority Transfer
Risk Reversal
Scarcity Timer
Curiosity Gap
Users Not Activating?
Success Spiral
Progress Momentum
Competence Ladder
Achievement Unlock
Social Onboarding
Low Engagement?
Variable Reward Schedule
Social Facilitation
Curiosity Loop
Status Progress
Habit Stack
High Churn Rate?
Sunk Cost Momentum
Identity Reinforcement
Network Lock-in
Social Investment
Value Ladder
Need Revenue Growth?
Value Ladder
Social Pressure Upgrade
Premium Status
Usage Anxiety
Grandfathering Fear
โก Implementation Roadmap
Week 1-2: Foundation
Week 3-4: Implementation
Week 5-8: Optimization
Month 3+: Advanced Patterns
Remember: Psychological design patterns are powerful tools that must be used ethically and responsibly. The goal is to create genuine value for users while achieving business objectives, not to manipulate or exploit human psychology.
Last updated