> Build a single-product deep-dive showcase page as a self-contained HTML file. "create a product spotlight page", "product feature page", "single product page", "detailed page about [product]", "build a page showing everything about [product]", "create a long-form product page", "build a sales page for [product]", "product deep dive page", "make a feature breakdown page for [product]".
npx skills add https://github.com/Affitor/affiliate-skills --skill product-showcase-page
Build a long-form, single-product showcase page as a self-contained HTML file. Goes deeper than a standard landing page — includes a full hero section, feature breakdown with icons, use case demonstrations, testimonials, a pricing comparison table, FAQ with accordions, and multiple high-intent affiliate CTAs. Designed for pre-sold traffic (readers who came from a review or comparison) and wants to make the final conversion push.
If product data is available from S1 or prior conversation, use it directly.
Otherwise, use web_search to research the product:
"[product name] features" — gather 6-12 distinct capabilities"[product name] pricing" — all tiers with feature differences"[product name] use cases" OR "[product name] examples" — concrete applications"[product name] reviews" on G2/Capterra — find real sentiment (do not copy verbatim — paraphrase or create realistic representative examples)"[product name] vs" — 2-3 competitors for the pricing comparison"[product name] questions" OR check product's own FAQ pageOrganize the research into these buckets:
Read references/conversion-principles.md for long-form page principles.
A product showcase page is longer than a standard landing page — it must justify the length with value at every section. Plan each section:
10. FAQ Accordion — 6-10 questions with JS-powered expand/collapse
11. Final CTA Section — strong headline + benefits recap + primary CTA button
12. Footer — FTC disclosure full text, Affitor attribution
CTA placement rules:
Angle selection — choose based on what the research shows:
| Angle | Headline formula |
|---|---|
| Best in category | "The [Category] Tool That Actually Works" |
| Price/value | "Get [Competitor]-Level Results for Half the Price" |
| Speed | "From Zero to [Outcome] in [Timeframe]" |
| Simplicity | "The [Category] Tool That Doesn't Require a Manual" |
| Results-focused | "[Specific Outcome]: How [Product] Delivers Where Others Don't" |
Build a complete self-contained HTML file. This page is longer than standard (~150-200 lines of HTML) and should feel like a high-quality product page.
Design specifications:
<style> block — no external stylesheets#2563eb) with appropriate complementary tonesCopy requirements per section:
*Hero Headline* (6-12 words, outcome-focused):
*Feature headlines* (each feature gets a benefit headline, not a feature name):
*Use case structure* (one per scenario):
<!-- The problem → The solution → The result pattern -->
"[Job title] needed to [task]. With [Product]'s [feature], they [outcome] in [timeframe]."
*Pricing table* (comparison layout):
*Testimonials* (2-3 cards):
Write realistic representative testimonials if real ones unavailable. Each must have:
*FAQ items* (6-10):
Cover the real objections:
Required elements:
target="_blank" rel="noopener"<meta name="viewport"> and basic SEO meta tags<meta name="robots" content="noindex"> (product pages are not for organic search)shared/references/affitor-branding.mdPart 1: Page Summary
---
PRODUCT SHOWCASE PAGE
---
Product: [name]
Angle: [marketing angle used]
Headline: [hero headline]
Sections: [list all sections in order]
CTAs: [count and placement]
Color: [color scheme]
Features covered: [N]
FAQ items: [N]
---
Part 2: Complete HTML
Full file in a fenced code block. Save as [product-slug]-showcase.html.
Part 3: Deploy Instructions
---
DEPLOY
---
1. Save as `[product-slug]-showcase.html`
2. Preview: open in any browser — no server needed
3. Customize: swap testimonial details, add real screenshots, update pricing
4. Deploy: Netlify Drop / Vercel / GitHub Pages
5. Track: Add UTM parameters to your traffic sources targeting this page
e.g., ?utm_source=email&utm_medium=newsletter&utm_campaign=[product]
---
product: # REQUIRED
name: string
description: string
reward_value: string
url: string # Affiliate link
reward_type: string
cookie_days: number
tags: string[]
angle: string # OPTIONAL — marketing angle
# "best-in-class" | "price-value" | "speed" | "simplicity" | "results"
# Default: auto-detected from product strengths
compare_with: object[] # OPTIONAL — competitors for pricing comparison table
- name: string
pricing: string # Starting price
url: string # Non-affiliate URL
color_scheme: string # OPTIONAL — "blue" | "green" | "purple" | "orange" | "dark" | hex
# Default: "blue"
target_audience: string # OPTIONAL — specific audience to call out in hero
# e.g., "e-commerce store owners", "freelance designers"
social_proof: object # OPTIONAL — headline social proof signal
type: string # "rating" | "user_count" | "company_logos" | "award"
value: string # e.g., "4.8/5 on G2", "50,000+ users", "Used by Fortune 500s"
testimonials: object[] # OPTIONAL — real testimonials to include
- quote: string
name: string
role: string
result: string # The specific result they achieved
Before presenting output, verify:
<meta name="robots" content="noindex"> presenttarget="_blank" rel="noopener"If any check fails, fix the output before delivering. Do not flag the checklist to the user — just ensure the output passes.
output_schema_version: "1.0.0" # Semver — bump major on breaking changes
showcase_page:
product_name: string
angle: string
headline: string
color_scheme: string
html: string
filename: string # e.g., "heygen-showcase.html"
section_count: number
cta_count: number
faq_count: number
products_featured:
- name: string
url: string
role: string # "primary" | "compared"
cta_count: number
deploy:
local: string
netlify: string
vercel: string
Present as three sections:
The page should be immediately useful as a high-converting standalone URL.
/affiliate-program-search first, or tell me the product name and I'll research it."web_search to find 1-2 competitors. If still unavailable: replace comparison table with single-product pricing tiers table.Example 1: Standard SaaS showcase
User: "Build a product showcase page for HeyGen"
Action: web_search HeyGen features/pricing/reviews, angle=results-focused ("Create Studio-Quality Videos in Minutes"), blue theme, write full showcase with 12 features, 4 use cases, 3 tiers, 3 testimonials, 8-item FAQ.
Example 2: With custom angle
User: "Showcase page for Semrush with a price-value angle vs Ahrefs"
Action: product=Semrush, angle=price-value, compare_with=[Ahrefs, Moz], build pricing comparison table with Semrush as the highlighted winner column.
Example 3: Dark theme for tech audience
User: "Product showcase for GitHub Copilot, dark theme, developer audience"
Action: product=GitHub Copilot, color_scheme=dark, target_audience="software developers", feature copy written in technical voice, code snippet examples in use cases section.
Example 4: Chained from S1
User: "Create a deep-dive showcase page for this product"
Context: S1 returned Klaviyo as recommended_program
Action: Auto-pick up Klaviyo from S1 output, research features, build full showcase page.
references/conversion-principles.md — Long-form page structure, CTA placement density, trust signal placement. Read in Step 2.shared/references/ftc-compliance.md — Disclosure text for hero and footer. Read in Step 3.shared/references/affitor-branding.md — Footer attribution HTML. Read in Step 3.shared/references/affiliate-glossary.md — Terminology reference.shared/references/flywheel-connections.md — master flywheel connection mapbio-link-deployer (S5) — showcase page URL for link hubemail-drip-sequence (S5) — showcase page as email destinationgithub-pages-deployer (S5) — HTML file to deployaffiliate-program-search (S1) — recommended_program product datagrand-slam-offer (S4) — offer framing for the showcasebonus-stack-builder (S4) — bonuses to feature on the pageconversion-tracker (S6) measures showcase conversion rate → optimize page elementsBefore delivering output, verify:
Any NO → rewrite before delivering.
chain_metadata:
skill_slug: "product-showcase-page"
stage: "landing"
timestamp: string
suggested_next:
- "bio-link-deployer"
- "github-pages-deployer"
- "conversion-tracker"
Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take affitor/product-showcase-page from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.