/digital-marketing-pro:competitor-pages
Purpose
Create high-converting competitor comparison and alternatives pages that target competitive intent keywords with accurate, structured content and appropriate schema markup.
Input Required
The user must provide (or will be prompted for):
- Page type: "X vs Y", "alternatives to X", "best tools roundup", or "comparison table"
- Your product/service: The product being positioned
- Competitors: 1-5 competitor products to compare against
- Comparison criteria: Features, pricing, use cases to compare (or auto-detected)
- Target audience: Who is making this purchase decision
Page Types
1. "X vs Y" Comparison Pages
- Direct head-to-head comparison between two products/services
- Balanced feature-by-feature analysis
- Clear verdict or recommendation with justification
- Target keyword:
[Product A] vs [Product B]
2. "Alternatives to X" Pages
- List of alternatives to a specific product/service
- Each alternative with brief summary, pros/cons, best-for use case
- Target keyword:
[Product] alternatives, best alternatives to [Product]
3. "Best [Category] Tools" Roundup Pages
- Curated list of top tools/services in a category
- Ranking criteria clearly stated
- Target keyword:
best [category] tools [year], top [category] software
4. Comparison Table Pages
- Feature matrix with multiple products in columns
- Sortable/filterable layout recommendations
- Target keyword:
[category] comparison, [category] comparison chart
Process
- Load brand context: Read
~/.claude-marketing/brands/_active-brand.json for the active slug, then load ~/.claude-marketing/brands/{slug}/profile.json. Apply brand voice and compliance rules. Check for brand guidelines — especially restrictions on competitor mentions.
- Research competitors: Gather feature data, pricing, positioning from public sources. Verify all claims.
- Generate comparison structure: Feature matrix, content outline, section order
- Apply schema markup: Product, SoftwareApplication, or ItemList JSON-LD depending on page type (via
schema-generator.py --type <Type> — AggregateRating is not a standalone --type; it is a nested field inside Product, as shown in the Product template below)
- Optimize for conversion: CTA placement strategy, social proof sections, pricing highlights
- Apply fairness guidelines: Accuracy verification, source citations, affiliation disclosure
- Keyword optimization: Primary and secondary keyword targeting, title tag formulas, H1 patterns
- Internal linking strategy: Cross-link between related comparison pages, feature pages, case studies
Comparison Table Template
| Feature | Your Product | Competitor A | Competitor B |
|------------------|:------------:|:------------:|:------------:|
| Feature 1 | ✅ | ✅ | ❌ |
| Feature 2 | ✅ | ⚠️ Partial | ✅ |
| Feature 3 | ✅ | ❌ | ❌ |
| Pricing (from) | $X/mo | $Y/mo | $Z/mo |
| Free Tier | ✅ | ❌ | ✅ |
Data Accuracy Requirements
- All feature claims must be verifiable from public sources
- Pricing must be current (include "as of [date]" note)
- Update frequency: review quarterly or when competitors ship major changes
- Link to source for each competitor data point where possible
Schema Markup Templates
Product with AggregateRating (for X vs Y pages)
{
"@context": "https://schema.org",
"@type": "Product",
"name": "[Product Name]",
"description": "[Product Description]",
"brand": { "@type": "Brand", "name": "[Brand Name]" },
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "[Rating]",
"reviewCount": "[Count]",
"bestRating": "5",
"worstRating": "1"
}
}
SoftwareApplication (for software comparisons)
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "[Software Name]",
"applicationCategory": "[Category]",
"operatingSystem": "[OS]",
"offers": { "@type": "Offer", "price": "[Price]", "priceCurrency": "USD" }
}
ItemList (for roundup pages)
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "Best [Category] Tools [Year]",
"itemListOrder": "https://schema.org/ItemListOrderDescending",
"numberOfItems": "[Count]",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "[Product Name]", "url": "[Product URL]" }
]
}
Keyword Targeting
Comparison Intent Patterns
| Pattern |
Example |
Volume Signal |
[A] vs [B] |
"Slack vs Teams" |
High |
[A] alternative |
"Figma alternatives" |
High |
[A] alternatives [year] |
"Notion alternatives 2026" |
High |
best [category] tools |
"best project management tools" |
High |
[A] vs [B] for [use case] |
"AWS vs Azure for startups" |
Medium |
[A] vs [B] pricing |
"HubSpot vs Salesforce pricing" |
Medium |
is [A] better than [B] |
"is Notion better than Confluence" |
Medium |
Title Tag Formulas
- X vs Y:
[A] vs [B]: [Key Differentiator] ([Year])
- Alternatives:
[N] Best [A] Alternatives in [Year] (Free & Paid)
- Roundup:
[N] Best [Category] Tools in [Year], Compared & Ranked
Conversion-Optimized Layouts
CTA Placement
- Above fold: Brief comparison summary with primary CTA
- After comparison table: "Try [Your Product] free" CTA
- Bottom of page: Final recommendation with CTA
- Avoid aggressive CTAs in competitor description sections (reduces trust)
Social Proof Sections
- Customer testimonials relevant to comparison criteria
- G2/Capterra/TrustPilot ratings (with source links)
- Case studies showing migration from competitor
- "Switched from [Competitor]" stories
Trust Signals
- "Last updated [date]" timestamp
- Author with relevant expertise
- Methodology disclosure
- Disclosure of own product affiliation
- Balanced presentation — acknowledge competitor strengths honestly
Fairness Guidelines
- Accuracy: All competitor information must be verifiable from public sources
- No defamation: Never make false or misleading claims about competitors
- Cite sources: Link to competitor websites, review sites, or documentation
- Timely updates: Review and update when competitors release major changes
- Disclose affiliation: Clearly state which product is yours
- Balanced presentation: Acknowledge competitor strengths honestly
- Pricing accuracy: Include "as of [date]" disclaimers on all pricing data
Output
A structured competitor comparison page package containing:
- Page content template (minimum 1,500 words) with all sections
- Feature matrix table
- Schema markup (JSON-LD) appropriate to page type
- Primary and secondary keywords with title tag and H1 recommendations
- Internal linking plan (cross-link to related comparisons, feature pages, case studies)
- Conversion optimization recommendations
- Content gap analysis vs existing competitor pages
Agents Used
- seo-specialist — Keyword targeting, schema markup, on-page optimization
- content-creator — Comparison content writing, brand voice application
- competitive-intel — Competitor feature and pricing research
- brand-guardian — Ensure compliance with brand guidelines on competitor mentions
Scripts Used
- schema-generator.py — Generate Product, SoftwareApplication, or ItemList JSON-LD
- competitor-scraper.py — Extract competitor page data for comparison
- content-scorer.py — Score comparison page quality
Source: hashgraph-online/awesome-codex-plugins → plugins/indranilbanerjee/digital-marketing-pro/skills/competitor-pages/SKILL.md
1---2name: competitor-pages3description: Create competitor comparison pages. Use when: \"X vs Y\" layouts, alternatives pages, feature matrices, roundup pages.4---567# /digital-marketing-pro:competitor-pages89## Purpose1011Create high-converting competitor comparison and alternatives pages that target competitive intent keywords with accurate, structured content and appropriate schema markup.1213## Input Required1415The user must provide (or will be prompted for):1617- **Page type**: "X vs Y", "alternatives to X", "best tools roundup", or "comparison table"18- **Your product/service**: The product being positioned19- **Competitors**: 1-5 competitor products to compare against20- **Comparison criteria**: Features, pricing, use cases to compare (or auto-detected)21- **Target audience**: Who is making this purchase decision2223## Page Types2425### 1. "X vs Y" Comparison Pages26- Direct head-to-head comparison between two products/services27- Balanced feature-by-feature analysis28- Clear verdict or recommendation with justification29- Target keyword: `[Product A] vs [Product B]`3031### 2. "Alternatives to X" Pages32- List of alternatives to a specific product/service33- Each alternative with brief summary, pros/cons, best-for use case34- Target keyword: `[Product] alternatives`, `best alternatives to [Product]`3536### 3. "Best [Category] Tools" Roundup Pages37- Curated list of top tools/services in a category38- Ranking criteria clearly stated39- Target keyword: `best [category] tools [year]`, `top [category] software`4041### 4. Comparison Table Pages42- Feature matrix with multiple products in columns43- Sortable/filterable layout recommendations44- Target keyword: `[category] comparison`, `[category] comparison chart`4546## Process47481. **Load brand context**: Read `~/.claude-marketing/brands/_active-brand.json` for the active slug, then load `~/.claude-marketing/brands/{slug}/profile.json`. Apply brand voice and compliance rules. Check for brand guidelines — especially restrictions on competitor mentions.492. **Research competitors**: Gather feature data, pricing, positioning from public sources. Verify all claims.503. **Generate comparison structure**: Feature matrix, content outline, section order514. **Apply schema markup**: Product, SoftwareApplication, or ItemList JSON-LD depending on page type (via `schema-generator.py --type <Type>` — `AggregateRating` is not a standalone `--type`; it is a nested field inside `Product`, as shown in the Product template below)525. **Optimize for conversion**: CTA placement strategy, social proof sections, pricing highlights536. **Apply fairness guidelines**: Accuracy verification, source citations, affiliation disclosure547. **Keyword optimization**: Primary and secondary keyword targeting, title tag formulas, H1 patterns558. **Internal linking strategy**: Cross-link between related comparison pages, feature pages, case studies5657## Comparison Table Template5859```60| Feature | Your Product | Competitor A | Competitor B |61|------------------|:------------:|:------------:|:------------:|62| Feature 1 | ✅ | ✅ | ❌ |63| Feature 2 | ✅ | ⚠️ Partial | ✅ |64| Feature 3 | ✅ | ❌ | ❌ |65| Pricing (from) | $X/mo | $Y/mo | $Z/mo |66| Free Tier | ✅ | ❌ | ✅ |67```6869### Data Accuracy Requirements70- All feature claims must be verifiable from public sources71- Pricing must be current (include "as of [date]" note)72- Update frequency: review quarterly or when competitors ship major changes73- Link to source for each competitor data point where possible7475## Schema Markup Templates7677### Product with AggregateRating (for X vs Y pages)78```json79{80 "@context": "https://schema.org",81 "@type": "Product",82 "name": "[Product Name]",83 "description": "[Product Description]",84 "brand": { "@type": "Brand", "name": "[Brand Name]" },85 "aggregateRating": {86 "@type": "AggregateRating",87 "ratingValue": "[Rating]",88 "reviewCount": "[Count]",89 "bestRating": "5",90 "worstRating": "1"91 }92}93```9495### SoftwareApplication (for software comparisons)96```json97{98 "@context": "https://schema.org",99 "@type": "SoftwareApplication",100 "name": "[Software Name]",101 "applicationCategory": "[Category]",102 "operatingSystem": "[OS]",103 "offers": { "@type": "Offer", "price": "[Price]", "priceCurrency": "USD" }104}105```106107### ItemList (for roundup pages)108```json109{110 "@context": "https://schema.org",111 "@type": "ItemList",112 "name": "Best [Category] Tools [Year]",113 "itemListOrder": "https://schema.org/ItemListOrderDescending",114 "numberOfItems": "[Count]",115 "itemListElement": [116 { "@type": "ListItem", "position": 1, "name": "[Product Name]", "url": "[Product URL]" }117 ]118}119```120121## Keyword Targeting122123### Comparison Intent Patterns124| Pattern | Example | Volume Signal |125|---------|---------|--------------|126| `[A] vs [B]` | "Slack vs Teams" | High |127| `[A] alternative` | "Figma alternatives" | High |128| `[A] alternatives [year]` | "Notion alternatives 2026" | High |129| `best [category] tools` | "best project management tools" | High |130| `[A] vs [B] for [use case]` | "AWS vs Azure for startups" | Medium |131| `[A] vs [B] pricing` | "HubSpot vs Salesforce pricing" | Medium |132| `is [A] better than [B]` | "is Notion better than Confluence" | Medium |133134### Title Tag Formulas135- X vs Y: `[A] vs [B]: [Key Differentiator] ([Year])`136- Alternatives: `[N] Best [A] Alternatives in [Year] (Free & Paid)`137- Roundup: `[N] Best [Category] Tools in [Year], Compared & Ranked`138139## Conversion-Optimized Layouts140141### CTA Placement142- **Above fold**: Brief comparison summary with primary CTA143- **After comparison table**: "Try [Your Product] free" CTA144- **Bottom of page**: Final recommendation with CTA145- Avoid aggressive CTAs in competitor description sections (reduces trust)146147### Social Proof Sections148- Customer testimonials relevant to comparison criteria149- G2/Capterra/TrustPilot ratings (with source links)150- Case studies showing migration from competitor151- "Switched from [Competitor]" stories152153### Trust Signals154- "Last updated [date]" timestamp155- Author with relevant expertise156- Methodology disclosure157- Disclosure of own product affiliation158- Balanced presentation — acknowledge competitor strengths honestly159160## Fairness Guidelines161162- **Accuracy**: All competitor information must be verifiable from public sources163- **No defamation**: Never make false or misleading claims about competitors164- **Cite sources**: Link to competitor websites, review sites, or documentation165- **Timely updates**: Review and update when competitors release major changes166- **Disclose affiliation**: Clearly state which product is yours167- **Balanced presentation**: Acknowledge competitor strengths honestly168- **Pricing accuracy**: Include "as of [date]" disclaimers on all pricing data169170## Output171172A structured competitor comparison page package containing:173174- Page content template (minimum 1,500 words) with all sections175- Feature matrix table176- Schema markup (JSON-LD) appropriate to page type177- Primary and secondary keywords with title tag and H1 recommendations178- Internal linking plan (cross-link to related comparisons, feature pages, case studies)179- Conversion optimization recommendations180- Content gap analysis vs existing competitor pages181182## Agents Used183184- **seo-specialist** — Keyword targeting, schema markup, on-page optimization185- **content-creator** — Comparison content writing, brand voice application186- **competitive-intel** — Competitor feature and pricing research187- **brand-guardian** — Ensure compliance with brand guidelines on competitor mentions188189## Scripts Used190191- **schema-generator.py** — Generate Product, SoftwareApplication, or ItemList JSON-LD192- **competitor-scraper.py** — Extract competitor page data for comparison193- **content-scorer.py** — Score comparison page quality194195---196197**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/indranilbanerjee/digital-marketing-pro/skills/competitor-pages/SKILL.md`