Systems Lab

Agent skill

conversion-ops

activeReaches the webActs undeclared630 words

From ericosiu/ai-marketing-skills · 21 skills · 3,449 · pushed 2026-08-16

What it does when it runs

Read from the skill and the 4 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.

Keys and connectors you must supply
None found.
Hosts it reaches
  • a.com
  • b.com
  • levelingup.beehiiv.com
  • singlebrain.com
  • www.singlegrain.com
  • yoursite.com
Tool permissions it declares
No allowed-tools in the frontmatter. It does act, so it runs under whatever permissions your session already grants.
Actions present in the files
shellwrites filesnetwork

Ask about conversion-ops

Opens your assistant with this page's verified links already in the prompt.

Is this safe to install?ClaudeChatGPT
Adapt it to my stackClaudeChatGPT
What else do I need for it to workClaudeChatGPT
Rather ask a human? Talk to Cheetah
git clone --depth 1 --filter=blob:none --sparse https://github.com/ericosiu/ai-marketing-skills.git /tmp/ai-marketing-skills
git -C /tmp/ai-marketing-skills sparse-checkout set "conversion-ops"
mkdir -p ~/.claude/skills/conversion-ops
cp -R "/tmp/ai-marketing-skills/conversion-ops/." ~/.claude/skills/conversion-ops/

Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗

The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.

Reproduced in full from ericosiu/ai-marketing-skills/blob/2eb0f34edb8d6111ca8b2930fed92413c9af7002/conversion-ops/SKILL.md, which is licensed MIT (repository). 630 words, 22 headings.

AI Conversion Ops

Preamble (runs on skill start)

# Version check (silent if up to date)
python3 telemetry/version_check.py 2>/dev/null || true

# Telemetry opt-in (first run only, then remembers your choice)
python3 telemetry/telemetry_init.py 2>/dev/null || true

Privacy: This skill logs usage locally to ~/.ai-marketing-skills/analytics/. Remote telemetry is opt-in only. No code, file paths, or repo content is ever collected. See telemetry/README.md.


AI-powered conversion rate optimization: landing page audits, CRO scoring, survey segmentation, and lead magnet generation.

When to Use

  • User asks for a landing page audit or CRO analysis
  • User wants to score a page across conversion dimensions
  • User needs to identify conversion bottlenecks on a URL
  • User has survey data and wants to segment respondents by pain point
  • User wants lead magnet ideas generated from survey responses
  • User needs batch CRO analysis across multiple URLs

Tools

CRO Audit (cro_audit.py)

Fetches a landing page and scores it across 8 conversion dimensions. No headless browser needed.

# Single URL audit
python cro_audit.py --url https://example.com/landing-page

# Batch mode — multiple URLs
python cro_audit.py --urls https://example.com/page1 https://example.com/page2

# URLs from a file (one per line)
python cro_audit.py --file urls.txt

# Specify industry for benchmark comparison
python cro_audit.py --url https://example.com --industry saas

# JSON output
python cro_audit.py --url https://example.com --json

# Save report to file
python cro_audit.py --url https://example.com --output report.json

Scoring dimensions (each 0–100):

  1. Headline Clarity — Is the value prop obvious in <5 seconds?
  2. CTA Visibility — Are CTAs prominent, contrasting, above the fold?
  3. Social Proof — Testimonials, logos, case studies, numbers?
  4. Urgency — Scarcity, deadlines, limited offers?
  5. Trust Signals — Security badges, guarantees, privacy, certifications?
  6. Form Friction — How many fields? Is the form intimidating?
  7. Mobile Responsiveness — Viewport meta, responsive patterns, touch targets?
  8. Page Speed Indicators — Image optimization, script count, resource size?

Overall CRO Score = Weighted average across all 8 dimensions.

Output includes:

  • Per-dimension score with specific findings
  • Priority fixes ranked by impact
  • Before/after suggestions for each issue
  • Industry benchmark comparison
  • Overall letter grade (A+ through F)

Supported industries: saas, ecommerce, agency, finance, healthcare, education, b2b, general

Survey-to-Lead-Magnet Engine (survey_lead_magnet.py)

Ingests survey CSV data, clusters respondents by pain point, and generates lead magnet briefs for each segment.

# Basic usage — analyze survey CSV
python survey_lead_magnet.py --csv survey_responses.csv

# Specify which columns contain pain points / challenges
python survey_lead_magnet.py --csv survey.csv --pain-columns "biggest_challenge" "top_frustration"

# Limit number of segments
python survey_lead_magnet.py --csv survey.csv --top-segments 5

# JSON output
python survey_lead_magnet.py --csv survey.csv --json

# Save output
python survey_lead_magnet.py --csv survey.csv --output lead_magnets.json

What it produces:

  • Pain point clusters with respondent counts
  • Segments ranked by size and commercial potential
  • For each top segment, a lead magnet brief:
    • Title, format (guide/checklist/template/calculator), hook
    • Content outline (5–7 sections)
    • Target CTA and distribution channel
    • Viral potential score + conversion potential score
  • Prioritized implementation roadmap

CSV format: Questions as column headers, one respondent per row. Works with any survey tool export (Typeform, Google Forms, SurveyMonkey, etc.)

Configuration

No API keys required. Both tools work with local analysis only.

Optional environment variables:

VariableRequiredDescription
USER_AGENTNoCustom user agent for page fetching (default provided)
REQUEST_TIMEOUTNoHTTP timeout in seconds (default: 15)

Recommended Workflow

  1. Weekly: Run cro_audit.py on your top landing pages to track CRO scores over time
  2. Post-survey: Run survey_lead_magnet.py to turn survey data into content strategy
  3. Pre-launch: Audit new landing pages before driving paid traffic
  4. Monthly: Batch audit competitor landing pages to benchmark against

Dependencies

pip install -r requirements.txt

Files bundled with it

These load only when the skill asks for them, so they cost nothing until it runs.

Other skills for the same job

Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.

Need help setting it up?

This page tells you what conversion-ops does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.

Book a call →

The directory stays free. There is nothing gated behind this.