landing-page-creator

landing-page-creator is a skill for Claude Code, Codex from Affitor/affiliate-skills. It costs 107 tokens per session (3,558 once invoked), scanned A, original, MIT.

A standalone HTML landing page for promoting one affiliate product or comparing two or three products. An affiliate product is one you recommend in exchange for a commission on resulting sales.

In plain words
What is it for?
Making product pages, sales pages, affiliate campaigns, and comparison or “versus” pages that direct visitors to product links.
Why use it?
It gives a campaign a focused page built around one action, instead of sending visitors to general blog content. The file is mobile-responsive and needs no build step or dependencies.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: mentions Claude Code; built for openclaw; mentions Gemini CLI.

Part of the landing-skills plugin — 4 skills shipped together

Good fit Making product pages, sales pages, affiliate campaigns, and comparison or “versus” pages that direct visitors to product links.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/affitor/affiliate-skills/landing-page-creator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Affitor/affiliate-skills --skill landing-page-creator
Clone the repo
git clone --depth 1 https://github.com/Affitor/affiliate-skills

Made for: Claude Code, Codex.

Or install landing-skills, the plugin that ships this one along with the rest of its 4 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for landing-page-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/affitor/affiliate-skills/landing-page-creator/github.svg)](https://agentmods.dev/skills/affitor/affiliate-skills/landing-page-creator)
Your own site
<a href="https://agentmods.dev/skills/affitor/affiliate-skills/landing-page-creator"><img src="https://agentmods.dev/badge/skills/affitor/affiliate-skills/landing-page-creator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for landing-page-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/affitor/affiliate-skills/landing-page-creator"><img src="https://agentmods.dev/badge/skills/affitor/affiliate-skills/landing-page-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,558 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 191
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00107 $0.03558
Opus 5 $0.00053 $0.01779
Sonnet 5 $0.00021 $0.00712
Haiku 4.5 $0.00011 $0.00356

Measured 12d ago against content hash 69ba5e0cc356, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

landing-page-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

2 near-identical copies found in the catalogue:

skills/landing/landing-page-creator/SKILL.md · 325 lines

How it starts

The opening of the file, as written. The whole thing — 325 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Landing Page Creator

Build dedicated affiliate landing pages that convert. Output is a single self-contained HTML file with inline CSS — no build step, no dependencies, mobile-responsive, deployable anywhere. Supports two page types: single product spotlight and multi-product comparison.

Stage

S4: Landing — Higher conversion than blog links because the entire page is designed around one goal: convert a visitor into a click. Landing pages are the bridge between traffic sources (social, email, ads) and the affiliate product.

When to Use

  • User wants a dedicated page to promote an affiliate product
  • User wants a comparison/vs page for 2-3 competing products
  • User has a product from S1 (affiliate-program-search) and needs a conversion page
  • User says anything like "landing page", "sales page", "product page", "comparison page", "vs page"
  • User wants to promote an affiliate product beyond blog content
  • User needs a deployable HTML page for an affiliate campaign

Input Schema

product:                    # REQUIRED — the affiliate product to feature
  name: string              # Product name (e.g., "HeyGen")
  description: string       # What it does
  reward_value: string      # Commission (e.g., "30% recurring")
  url: string               # Affiliate link URL
  reward_type: string       # "recurring" | "one-time" | "tiered"
  cookie_days: number       # Cookie duration
  tags: string[]            # e.g., ["ai", "video", "saas"]

page_type: string           # OPTIONAL — "single" | "comparison"
                            # Default: "single"

compare_with: object[]      # OPTIONAL — products for comparison page
  - name: string            # Competitor name
    description: string     # Brief description
    url: string             # URL (non-affiliate OK)
    pricing: string         # Starting price

angle: string               # OPTIONAL — marketing angle / hook
                            # e.g., "fastest", "cheapest", "best for beginners"
                            # Default: auto-generated from product strengths

color_scheme: string        # OPTIONAL — "blue" | "green" | "purple" | "orange" | "dark" | hex code
                            # Default: "blue" (#2563eb)

Read the full file on GitHub · 325 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 325 lines · 107 tokens per session scan A 69ba5e0cc356

Subscribe to this mod's changes

landing-page-creator is a skill published in the GitHub repository Affitor/affiliate-skills (656 stars, last pushed 6d ago), licensed MIT. It adds 107 tokens to every session and 3,558 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

landing-page-creator

Build high-converting affiliate landing pages as single self-contained HTML files. Triggers on: "create a landing page for", "build a landing page", "product landing page", "affiliate landing page", "comparison page for", "vs page", "single product page", "conversion page", "sales page for affiliate", "landing page…

gabrielmoreira/agent-skills-mirror · 107 tokens

landing-page-creator

Build high-converting affiliate landing pages as single self-contained HTML files. Triggers on: "create a landing page for", "build a landing page", "product landing page", "affiliate landing page", "comparison page for", "vs page", "single product page", "conversion page", "sales page for affiliate", "landing page…

Gingg7260/affiliate-skills · 107 tokens

grand-slam-offer

Design irresistible affiliate offers using the Hormozi Grand Slam framework. Triggers on: "create an offer for", "design my offer", "grand slam offer", "make an irresistible offer", "why should someone buy through my link", "offer framework", "value proposition for", "Hormozi offer", "offer stack", "make my offer…

jiaxiaojunQAQ/SkillJect · 100 tokens

webinar-registration-page

Build a webinar or live event registration page as a self-contained HTML file with countdown timer, speaker bio, agenda, and registration form. Triggers on: "build a webinar registration page", "create a webinar sign-up page", "event registration landing page", "live training registration page", "workshop sign-up…

gabrielmoreira/agent-skills-mirror · 115 tokens

product-showcase-page

Build a single-product deep-dive showcase page as a self-contained HTML file. Triggers on: "build a product showcase page", "deep dive landing page for [product]", "create a product spotlight page", "product feature page", "single product page", "detailed page about [product]", "build a page showing everything about…

gabrielmoreira/agent-skills-mirror · 110 tokens

squeeze-page-builder

Build email capture landing pages (squeeze pages) as single self-contained HTML files. Triggers on: "build a squeeze page", "email capture page", "lead magnet page", "create an opt-in page", "build an email list page", "lead capture landing page", "create a freebie page", "build a page to collect emails", "opt-in…

gabrielmoreira/agent-skills-mirror · 114 tokens