AI Skill Report Card

Generated Skill

B-70·Jan 24, 2026
YAML
--- name: optimizing-conversions description: Analyzes and improves conversion rates across landing pages, emails, and ads using data-driven testing methodologies. Use when conversion rates are low, A/B tests need setup, or performance optimization is needed. ---

Conversion Optimization

Python
# Basic conversion analysis framework conversion_audit = { 'current_rate': 2.3, # Current conversion % 'traffic_volume': 10000, # Monthly visitors 'funnel_steps': ['landing', 'signup', 'purchase'], 'drop_off_points': [] # To be identified } # Calculate potential impact def impact_calculator(current_rate, traffic, improvement_pct): current_conversions = (current_rate / 100) * traffic new_rate = current_rate * (1 + improvement_pct / 100) new_conversions = (new_rate / 100) * traffic return new_conversions - current_conversions # 25% improvement on 2.3% rate with 10k traffic = +58 conversions/month
Recommendation
Consider adding more specific examples

Progress:

  • Audit Current Performance - Baseline metrics and funnel analysis
  • Identify Friction Points - Heat maps, user recordings, analytics
  • Hypothesis Formation - Prioritize tests by impact/effort matrix
  • A/B Test Design - Statistical significance planning
  • Implementation - Test setup and tracking
  • Analysis & Iteration - Results interpretation and next steps

1. Performance Audit

Key Metrics to Track:
• Overall conversion rate
• Micro-conversions (clicks, signups, downloads)
• Traffic sources and their conversion rates  
• Device/browser performance
• Page load speeds
• Bounce rates by traffic source

2. Friction Point Analysis

  • Heat mapping - Where users click vs. where you want them to
  • Session recordings - User behavior patterns and confusion points
  • Form analytics - Field abandonment rates
  • Exit surveys - Why visitors leave without converting

3. Test Prioritization Matrix

Impact vs Effort Scoring:
High Impact, Low Effort (Do First):
• Headline changes
• CTA button text/color
• Value proposition clarity

High Impact, High Effort (Plan Carefully):
• Page redesigns
• Checkout flow overhauls
• Mobile optimization
Recommendation
Include edge cases

Example 1: Landing Page Optimization Input: SaaS landing page with 1.8% conversion rate Output:

  • Changed headline from "Best Project Management Tool" to "Save 10 Hours Per Week on Project Coordination"
  • Moved testimonials above the fold
  • Simplified signup form from 7 fields to 3
  • Result: 3.2% conversion rate (+78% improvement)

Example 2: Email Campaign Input: Welcome email series with 12% click-through rate Output:

  • Subject line A/B test: "Welcome!" vs "Your account is ready + next steps"
  • Personalized first line with signup source
  • Single clear CTA instead of multiple options
  • Result: 18.5% click-through rate (+54% improvement)

Example 3: Ad Campaign Input: Facebook ad with 0.8% conversion rate, $45 CPA Output:

  • Ad copy focused on specific pain point rather than features
  • Landing page matched ad messaging exactly
  • Added urgency element (limited-time offer)
  • Result: 1.4% conversion rate, $28 CPA (-38% cost reduction)

Test Design:

  • Run tests for full business cycles (include weekends)
  • Ensure 95% statistical significance before declaring winners
  • Test one element at a time for clear attribution
  • Document all tests in a centralized tracker

Copy Optimization:

  • Lead with benefits, not features
  • Use specific numbers ("Save 10 hours") vs vague claims ("Save time")
  • Address objections directly in copy
  • Match message consistency from ad → landing page

Design Principles:

  • F-pattern layout for text-heavy pages
  • Contrast ratios of at least 4.5:1 for CTAs
  • Mobile-first design approach
  • Page load speed under 3 seconds

Funnel Analysis:

  • Track micro-conversions, not just final conversions
  • Set up goal funnels in analytics
  • Monitor conversion rates by traffic source
  • Regular cohort analysis for retention patterns

Statistical Errors:

  • Stopping tests too early (false positives)
  • Running too many simultaneous tests (interaction effects)
  • Not accounting for seasonal variations
  • Ignoring confidence intervals

Design Mistakes:

  • Too many CTAs competing for attention
  • Forms that are too long or complex
  • Unclear value propositions
  • Poor mobile experience (60%+ of traffic)

Testing Blunders:

  • Changing multiple elements simultaneously
  • Not having a proper control group
  • Testing during atypical periods (holidays, launches)
  • Focusing only on conversion rate vs. revenue per visitor

Analysis Issues:

  • Cherry-picking data to support decisions
  • Not segmenting results by user type/source
  • Ignoring lifetime value in favor of immediate conversions
  • Making changes without proper measurement setup
0
Grade B-AI Skill Framework
Scorecard
Criteria Breakdown
Quick Start
11/15
Workflow
11/15
Examples
15/20
Completeness
15/20
Format
11/15
Conciseness
11/15