agentsclimarketplace

Conversion optimization

Skill Mattakushi432/Claude-Code-Skills-Custom-DevTools-Pack/plugins/devtools-pack/skills/conversion-optimization

When to activate: CRO, conversion rate optimization, landing page optimization, heatmaps, session recordings, form optimization, trust signals, social proofFrom its SKILL.md

Install
npx -y skills add Mattakushi432/Claude-Code-Skills-Custom-DevTools-Pack --skill conversion-optimization

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

7.3 KB, ~1.7k tokens by cl100k_base, as published. Nobody here has run it

Conversion Rate Optimization

CRO Methodology

Research → Hypothesis → Test → Implement Cycle

1. RESEARCH   — Gather quantitative + qualitative data
2. ANALYZE    — Identify friction and opportunity
3. HYPOTHESIZE — Form specific, testable hypothesis
4. PRIORITIZE — Score and order hypotheses (ICE/PIE)
5. TEST       — Run A/B test or implement directly
6. LEARN      — Document result and extract insight
7. ITERATE    — Use learnings to inform next hypothesis

Data Sources for Research

SourceWhat It Tells You
Google AnalyticsWhere people drop off, what pages perform
Heatmaps (Hotjar)What users click, where they scroll to
Session recordingsHow users actually navigate
Exit surveysWhy users didn't convert
User interviewsWhat users think, feel, need
Support ticketsWhat confuses or frustrates customers
Sales call recordingsObjections, hesitations, vocabulary

Landing Page Optimization

Above-the-Fold Checklist

  • Headline communicates value proposition in ≤8 words
  • Subheadline explains what it is and who it's for
  • CTA button visible without scrolling
  • CTA copy is action-oriented and benefit-specific
  • Hero image/video shows outcome (not product interface alone)
  • At least one social proof element visible (logos, review count)
  • No navigation menu (removes exits from landing pages)
  • Page load time < 2.5s LCP

Conversion Killers Audit

  • Slow page speed (test with PageSpeed Insights, target LCP < 2.5s)
  • Generic headlines ("Welcome to our platform")
  • Weak CTA ("Submit", "Click here")
  • Too many form fields
  • No social proof
  • Unclear pricing
  • No mobile optimization
  • Competing CTAs (multiple primary actions)
  • No urgency or reason to act now
  • Trust signals absent (SSL indicator, privacy policy link, reviews)

Landing Page Structure (High-Converting)

[HERO]
  Headline + Subheadline
  Primary CTA + friction reducer
  Hero visual

[SOCIAL PROOF BAR]
  Company logos or review count + star rating

[PROBLEM STATEMENT]
  Relatable pain description

[SOLUTION INTRODUCTION]
  How your product solves it

[FEATURES → BENEFITS]
  3–5 benefit blocks (feature name + outcome + proof)

[SOCIAL PROOF (DEEP)]
  2–3 customer testimonials with photos, company, title
  Or case study snapshot: Before/After metrics

[OBJECTION HANDLERS]
  FAQ covering top 5 objections from sales calls

[FINAL CTA]
  Repeat primary CTA + urgency + friction reducer

[FOOTER]
  Minimal: privacy, terms, company name

Heatmap Analysis

What to Look For

PatternMeaningFix
Click on non-link elementsUsers expect it to be clickableMake it clickable or redesign
No clicks on CTACTA is not visible or compellingMove up, increase contrast, rewrite copy
Rage clicksBroken element or user frustrationFix the element
High scroll depth onlyContent is engaging but CTA placed wrongMove CTA to where users stop scrolling
Low scroll depthAbove-the-fold not compellingRedesign hero

Hotjar Scroll Map Action

  • If 70%+ of users don't scroll past fold: redesign hero
  • Place CTAs where scroll depth drops significantly (that's where users are deciding)
  • If desktop and mobile scroll maps differ: optimize separately

Session Recording Analysis

What to Watch For

  1. Where do users hesitate before clicking?
  2. Do users back up and re-read anything?
  3. Do users start filling out a form then abandon?
  4. Do users try to click non-clickable elements?
  5. Do users use site search? What do they search for?

Recording Review Protocol

  • Watch 20 recordings per week minimum
  • Tag each: convert / bounce / rage-click / confusion
  • Note top 3 observations per session
  • Aggregate patterns across 20+ sessions before acting

Form Optimization

Form Conversion Principles

  1. One column beats multi-column for completion rate
  2. Label above field beats placeholder-only labels (accessibility + mobile)
  3. Inline validation beats submit-time error (immediate feedback)
  4. Progress indicator for multi-step forms
  5. Autofill compatibility — correct autocomplete attributes

Form Field Audit

FieldNecessary?Can We Get It Later?Remove?
First nameYesNoKeep
Last nameMaybeYes (MOFU)Remove
PhoneMaybeYesRemove (unless required)
CompanyYes (B2B)NoKeep
Company sizeNice to haveYesRemove
How did you hearNice to haveYesRemove

Autocomplete Attributes (HTML)

<input type="text" name="firstname" autocomplete="given-name">
<input type="text" name="lastname" autocomplete="family-name">
<input type="email" name="email" autocomplete="email">
<input type="tel" name="phone" autocomplete="tel">
<input type="text" name="company" autocomplete="organization">

Trust Signals

Trust Signal Hierarchy

  1. Security: SSL badge, SOC 2, GDPR compliance
  2. Social proof: Logo bar (known brands), review ratings (G2, Capterra)
  3. Specificity: "12,847 teams" beats "thousands of teams"
  4. Guarantees: 30-day money-back, free cancellation
  5. Media mentions: "As seen in [Forbes/TechCrunch/etc]"
  6. Awards: Industry awards with badge
  7. Team / founders: Faces and names (humanizes company)

Review Widget Placement

  • Hero section: Star rating + review count
  • Pricing page: Industry-specific testimonial adjacent to each plan
  • Checkout/trial: Recent review + reviewer photo

Social Proof Patterns

Types of Social Proof (by strength)

TypeStrengthExample
Expert endorsementVery High"Recommended by [Industry Analyst]"
Customer case studyHigh"Acme increased conversion 40% in 90 days"
Testimonial with photoHighQuote + real person + company + title
G2/Capterra ratingHigh4.8/5 from 847 reviews
Customer logosMediumRow of recognizable brand logos
User countMedium"Join 12,000+ teams"
Press mentionMediumTechCrunch / Forbes logos
Generic quoteLow"Great product!" — J.S.

Testimonial Template (high-converting)

"[Specific result achieved] in [timeframe]. 
Before [your product], we [painful before state].
Now [specific after state with metric]."

— [Full Name], [Title], [Company]
[Company logo] [Photo]

Quick Wins Checklist

Implement these before running A/B tests:

  • Clear, benefit-driven headline
  • CTA button color contrasts with background (not just "green works")
  • Remove all navigation from landing pages
  • Add 3+ trust signals above fold
  • Reduce form to minimum required fields
  • Add friction reducers under CTA
  • Ensure mobile-optimized (test on real devices)
  • Fix any page speed issues (LCP > 2.5s)
  • Add customer logos or review count
  • Make phone number/chat visible for high-intent visitors

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,852. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.