/cro-optimization
Analyzes landing pages and provides detailed CRO (Conversion Rate Optimization) recommendations. Use when user provides a landing page URL or HTML/CSS code and needs optimization advice to maximize conversions, signups, or sales. Extracts page elements, audits against proven CRO
$ npx -y skills add ognjengt/founder-skills --skill cro-optimization --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/cro-optimization
Context preview
The summary Claude sees to decide when to auto-load this skill.
Analyzes landing pages and provides detailed CRO (Conversion Rate Optimization) recommendations. Use when user provides a landing page URL or HTML/CSS code and needs optimization advice to maximize conversions, signups, or sales. Extracts page elements, audits against proven CRO
SKILL.md
cro-optimization.SKILL.mdname: cro-optimization
description: Analyzes landing pages and provides detailed CRO (Conversion Rate Optimization) recommendations. Use when user provides a landing page URL or HTML/CSS code and needs optimization advice to maximize conversions, signups, or sales. Extracts page elements, audits against proven CRO principles, and delivers actionable recommendations in report format.
CRO Optimization
Purpose
Analyze a landing page and deliver a comprehensive CRO audit with specific, actionable recommendations to maximize conversions.
---
Execution Logic
**Check $ARGUMENTS first to determine execution mode:**
If $ARGUMENTS is empty or not provided:
Respond with: "cro-optimization loaded, provide your landing page URL or paste your HTML/CSS code"
Then wait for the user to provide their landing page in the next message.
If $ARGUMENTS contains content:
Proceed immediately to Task Execution (skip the "loaded" message).
---
Task Execution
When landing page is available (either from initial $ARGUMENTS or follow-up message):
1. MANDATORY: Read Reference Files FIRST
**BLOCKING REQUIREMENT — DO NOT SKIP THIS STEP**
Before doing ANYTHING else, you MUST use the Read tool to read ALL three reference files:
Read: ./references/cro_principles.md
Read: ./references/landing_page_patterns.md
Read: ./references/element_audit_framework.md
**What you will find:**
- **cro_principles.md**: 13 core CRO principles with detection criteria and fix patterns
- **landing_page_patterns.md**: Real patterns from high-converting pages (ClickUp, Notion, Stripe, Apple, etc.) organized by category
- **element_audit_framework.md**: Systematic framework for auditing HTML elements, CTAs, forms, and visual hierarchy
**DO NOT PROCEED** to Step 2 until you have read all files and have the principles, patterns, and audit framework loaded in context.
2. Check for Business Context
Check if `FOUNDER_CONTEXT.md` exists in the project root.
- **If it exists:** Read it and use the business context to personalize recommendations (industry, target audience, product type, competitors).
- **If it doesn't exist:** Proceed with analysis based on page content alone.
3. Fetch and Extract Landing Page
If user provided a URL:
- Use WebFetch to retrieve the landing page content
- Extract and catalog key elements (see Element Extraction below)
If user provided HTML/CSS directly:
- Analyze the provided code directly
- Note any missing context (live styling, images, etc.)
4. Element Extraction
Extract and catalog these elements from the page:
**Typography:**
- H1 (should be exactly one)
- H2s (section headers)
- Body text samples
- CTA button copy
**Visual Structure:**
- Above-the-fold content
- Section sequence
- Image/visual placement
- Color scheme and contrast
**Conversion Elements:**
- Primary CTA (copy, placement, design)
- Secondary CTAs
- Forms (field count, labels)
- Trust signals (logos, testimonials, badges)
- Social proof (metrics, reviews, case studies)
**Technical:**
- Mobile responsiveness indicators
- Load speed concerns (large images, etc.)
5. Audit Against CRO Principles
For each of the 13 principles in cro_principles.md: 1. Check if the page violates the principle 2. Note specific violations with evidence 3. Determine severity (High/Medium/Low) 4. Draft specific recommendations
**Prioritize by impact:**
- High: Above-fold clarity, CTA effectiveness, major trust gaps
- Medium: Objection handling, visual hierarchy, scannability
- Low: Minor copy tweaks, nice-to-have additions
6. Compare to High-Converting Patterns
Using landing_page_patterns.md: 1. Identify the most relevant category (B2B SaaS, E-commerce, etc.) 2. Compare page structure to proven patterns 3. Note missing elements that top performers include 4. Identify opportunities to adopt successful patterns
7. Generate Recommendations
For each issue found, provide: 1. **What to change** — specific element and action 2. **Why it matters** — principle violated and expected impact 3. **How to implement** — concrete example or rewrite 4. **Priority** — High/Medium/Low with reasoning
8. Format and Verify
- Structure output according to **Output Format** section
- Complete **Quality Checklist** self-verification
- Ensure recommendations are specific and actionable (not generic advice)
---
Writing Rules
Hard constraints. No interpretation.
Core Rules
- Every recommendation must be specific and actionable
- Include before/after examples for copy changes
- Reference the specific principle violated
- Prioritize by conversion impact, not ease of implementation
- Frame changes as testable hypotheses when possible
- Never recommend changes without explaining the "why"
Analysis Rules
- Audit systematically — don't skip principles
- Note what's working well, not just problems
- Consider the page's apparent target audience
- Account for likely traffic sources
- Distinguish between critical issues and optimizations
Recommendation Rules
- Lead with highest-impact changes
- Group related recommendations together
- Provide specific copy rewrites, not just "make it clearer"
- Include placement suggestions, not just content suggestions
- Consider mobile experience separately
---
Output Format
# CRO Audit Report: [Page Name/URL]
## Executive Summary
[2-3 sentences: Overall assessment, biggest opportunities, expected impact]
---
## What's Working Well
[Bullet list of 3-5 elements that follow CRO best practices]
---
## Critical Issues (Fix First)
### Issue 1: [Specific Problem]
**Principle Violated:** [Principle name and number]
**Current State:** [What exists now]
**Problem:** [Why this hurts conversions]
**Recommendation:** [Specific fix]
**Example:**
BEFORE: [Current copy/element] AFTER: [Recommended copy/element]
**Expected Impact:** [What improvement to expect]
### Issue 2: [Specific Problem]
[Same structure]
---
## High-Impact Optimizations
### Optim
Read more
name: cro-optimization description: Analyzes landing pages and provides detailed CRO (Conversion Rate Optimization) recommendations. Use when user provides a landing page URL or HTML/CSS code and needs optimization advice to maximize conversions, signups, or sales. Extracts page elements, audits against proven CRO principles, and delivers actionable recommendations in report format.
CRO Optimization
Purpose
Analyze a landing page and deliver a comprehensive CRO audit with specific, actionable recommendations to maximize conversions.
---
Execution Logic
**Check $ARGUMENTS first to determine execution mode:**
If $ARGUMENTS is empty or not provided:
Respond with: "cro-optimization loaded, provide your landing page URL or paste your HTML/CSS code"
Then wait for the user to provide their landing page in the next message.
If $ARGUMENTS contains content:
Proceed immediately to Task Execution (skip the "loaded" message).
---
Task Execution
When landing page is available (either from initial $ARGUMENTS or follow-up message):
1. MANDATORY: Read Reference Files FIRST
**BLOCKING REQUIREMENT — DO NOT SKIP THIS STEP**
Before doing ANYTHING else, you MUST use the Read tool to read ALL three reference files:
Read: ./references/cro_principles.md Read: ./references/landing_page_patterns.md Read: ./references/element_audit_framework.md
**What you will find:**
- **cro_principles.md**: 13 core CRO principles with detection criteria and fix patterns
- **landing_page_patterns.md**: Real patterns from high-converting pages (ClickUp, Notion, Stripe, Apple, etc.) organized by category
- **element_audit_framework.md**: Systematic framework for auditing HTML elements, CTAs, forms, and visual hierarchy
**DO NOT PROCEED** to Step 2 until you have read all files and have the principles, patterns, and audit framework loaded in context.
2. Check for Business Context
Check if `FOUNDER_CONTEXT.md` exists in the project root.
- **If it exists:** Read it and use the business context to personalize recommendations (industry, target audience, product type, competitors).
- **If it doesn't exist:** Proceed with analysis based on page content alone.
3. Fetch and Extract Landing Page
If user provided a URL:
- Use WebFetch to retrieve the landing page content
- Extract and catalog key elements (see Element Extraction below)
If user provided HTML/CSS directly:
- Analyze the provided code directly
- Note any missing context (live styling, images, etc.)
4. Element Extraction
Extract and catalog these elements from the page:
**Typography:**
- H1 (should be exactly one)
- H2s (section headers)
- Body text samples
- CTA button copy
**Visual Structure:**
- Above-the-fold content
- Section sequence
- Image/visual placement
- Color scheme and contrast
**Conversion Elements:**
- Primary CTA (copy, placement, design)
- Secondary CTAs
- Forms (field count, labels)
- Trust signals (logos, testimonials, badges)
- Social proof (metrics, reviews, case studies)
**Technical:**
- Mobile responsiveness indicators
- Load speed concerns (large images, etc.)
5. Audit Against CRO Principles
For each of the 13 principles in cro_principles.md: 1. Check if the page violates the principle 2. Note specific violations with evidence 3. Determine severity (High/Medium/Low) 4. Draft specific recommendations
**Prioritize by impact:**
- High: Above-fold clarity, CTA effectiveness, major trust gaps
- Medium: Objection handling, visual hierarchy, scannability
- Low: Minor copy tweaks, nice-to-have additions
6. Compare to High-Converting Patterns
Using landing_page_patterns.md: 1. Identify the most relevant category (B2B SaaS, E-commerce, etc.) 2. Compare page structure to proven patterns 3. Note missing elements that top performers include 4. Identify opportunities to adopt successful patterns
7. Generate Recommendations
For each issue found, provide: 1. **What to change** — specific element and action 2. **Why it matters** — principle violated and expected impact 3. **How to implement** — concrete example or rewrite 4. **Priority** — High/Medium/Low with reasoning
8. Format and Verify
- Structure output according to **Output Format** section
- Complete **Quality Checklist** self-verification
- Ensure recommendations are specific and actionable (not generic advice)
---
Writing Rules
Hard constraints. No interpretation.
Core Rules
- Every recommendation must be specific and actionable
- Include before/after examples for copy changes
- Reference the specific principle violated
- Prioritize by conversion impact, not ease of implementation
- Frame changes as testable hypotheses when possible
- Never recommend changes without explaining the "why"
Analysis Rules
- Audit systematically — don't skip principles
- Note what's working well, not just problems
- Consider the page's apparent target audience
- Account for likely traffic sources
- Distinguish between critical issues and optimizations
Recommendation Rules
- Lead with highest-impact changes
- Group related recommendations together
- Provide specific copy rewrites, not just "make it clearer"
- Include placement suggestions, not just content suggestions
- Consider mobile experience separately
---
Output Format
# CRO Audit Report: [Page Name/URL] ## Executive Summary [2-3 sentences: Overall assessment, biggest opportunities, expected impact] --- ## What's Working Well [Bullet list of 3-5 elements that follow CRO best practices] --- ## Critical Issues (Fix First) ### Issue 1: [Specific Problem] **Principle Violated:** [Principle name and number] **Current State:** [What exists now] **Problem:** [Why this hurts conversions] **Recommendation:** [Specific fix] **Example:**
BEFORE: [Current copy/element] AFTER: [Recommended copy/element]
**Expected Impact:** [What improvement to expect] ### Issue 2: [Specific Problem] [Same structure] --- ## High-Impact Optimizations ### Optim
This repository contains 20+ Claude skills that will help you turn Claude into a Fortune 500 growth team. Stop prompting from scratch and use 20+ proven marketing, copywriting, and product skills companies pay millions for. Learn more at:
Repo: ognjengt/founder-skills
Other skills on founder-skills.
- /brand-copywriter
Writes marketing copy using proven copywriting frameworks. Use when user needs copy for ads (Facebook, Instagram, TikTok, YouTube), landing pages, sales pages, email sequences, LinkedIn posts, product descriptions, or any marketing content.
Open skill - /competitor-intel
Analyzes competitors using web research to provide verified business metrics, actionable leverage strategies, and predicted next moves. Use when user needs competitive intelligence, competitor analysis, market positioning insights, or strategic leverage opportunities.
Open skill - /go-to-market-plan
Analyzes the founder's business context to deliver 3 best go-to-market strategies tailored to their current stage, product, and market. Asks up to 10 diagnostic questions when needed to understand product readiness, target market clarity, competitive positioning, and
Open skill - /lead-magnet-generator
Creates viral lead magnet posts that drive comments and DMs. Produces 2 versions - a quick punchy format and a detailed format with bullet points. Use when user needs social media posts to give away a lead magnet in exchange for engagement.
Open skill - /linkedin-writer
Creates viral LinkedIn posts using proven formats, post templates, and voice matching. Use when user needs engaging, high-performing posts for LinkedIn.
Open skill - /marketing-ideas
Produces the best marketing ideas for your business by analyzing your FOUNDER_CONTEXT and matching it against a curated database of 170+ proven marketing strategies. Use when user needs creative, actionable marketing ideas tailored to their business.
Open skill

