seo-competitor-analysis

Deep SEO competitor analysis — keyword mapping, backlink profiling, content strategy audit, SERP share analysis, and technical SEO comparison. Use when user asks to 'analyze competitor SEO', 'competitor keyword analysis', 'backlink comparison', 'SEO competitive intelligence', 'competitor content strategy', or 'SEO gap analysis'.

33 stars

Best use case

seo-competitor-analysis is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Deep SEO competitor analysis — keyword mapping, backlink profiling, content strategy audit, SERP share analysis, and technical SEO comparison. Use when user asks to 'analyze competitor SEO', 'competitor keyword analysis', 'backlink comparison', 'SEO competitive intelligence', 'competitor content strategy', or 'SEO gap analysis'.

Teams using seo-competitor-analysis should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/seo-competitor-analysis/SKILL.md --create-dirs "https://raw.githubusercontent.com/aAAaqwq/AGI-Super-Team/main/skills/seo-competitor-analysis/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/seo-competitor-analysis/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How seo-competitor-analysis Compares

Feature / Agentseo-competitor-analysisStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Deep SEO competitor analysis — keyword mapping, backlink profiling, content strategy audit, SERP share analysis, and technical SEO comparison. Use when user asks to 'analyze competitor SEO', 'competitor keyword analysis', 'backlink comparison', 'SEO competitive intelligence', 'competitor content strategy', or 'SEO gap analysis'.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# SEO Competitor Analysis Pro

Deep-dive SEO competitive intelligence — uncover competitors' keyword strategies, backlink profiles, content gaps, and technical advantages.

## When to Use
- Analyzing competitor SEO strategies
- Finding keyword gaps and opportunities
- Comparing backlink profiles
- Auditing competitor content strategies
- Benchmarking technical SEO
- Planning SEO attack strategies

## Capabilities

### 1. Competitor Discovery
```bash
# Find organic competitors for a keyword
WebSearch: "{keyword} site:ahrefs.com competitors"
WebSearch: "{keyword} site:semrush.com organic competitors"

# Find who ranks for your target keywords
WebSearch: "{keyword1}" → note top 5 domains
WebSearch: "{keyword2}" → note top 5 domains
# Domains appearing multiple times = true competitors
```

### 2. Keyword Gap Analysis

**Framework: Find keywords competitors rank for that you don't.**

```markdown
## Keyword Gap: {Your Site} vs {Competitor}

| Keyword | Your Rank | Competitor Rank | Volume | Difficulty | Opportunity |
|---------|-----------|-----------------|--------|------------|-------------|
| {kw1} | Not ranked | #3 | 5,400 | Medium | 🟢 High |
| {kw2} | #15 | #2 | 2,900 | Low | 🟢 High |
| {kw3} | #8 | #5 | 12,000 | High | 🟡 Medium |
```

**Free methods:**
```bash
# Check what pages a competitor has indexed
WebSearch: "site:{competitor.com}"

# Check specific keyword presence
WebSearch: "site:{competitor.com} {keyword}"

# Find their top pages
WebSearch: "site:{competitor.com}" # sort by relevance = their strongest pages
```

### 3. Backlink Profile Analysis

**Free backlink check methods:**
```bash
# Ahrefs free backlink checker
open "https://ahrefs.com/backlink-checker?input={competitor.com}"

# Check referring domains
WebSearch: "link:{competitor.com} -site:{competitor.com}"

# Find competitor's guest posts
WebSearch: "\"{competitor brand}\" guest post OR \"written by\" OR \"contributor\""
```

**Backlink comparison template:**
```markdown
| Metric | Your Site | Competitor A | Competitor B |
|--------|-----------|-------------|-------------|
| Referring Domains | X | X | X |
| Total Backlinks | X | X | X |
| Domain Rating | X | X | X |
| .edu/.gov links | X | X | X |
| Avg Link Quality | X | X | X |
```

### 4. Content Strategy Audit

**Analyze competitor content:**

```bash
# Sitemap analysis
curl -s "https://{competitor.com}/sitemap.xml" | grep -c "<url>" # total pages
curl -s "https://{competitor.com}/sitemap.xml" | grep "<loc>" | head -20

# Blog/content frequency
WebSearch: "site:{competitor.com}/blog" # count results
WebSearch: "site:{competitor.com} after:2026-01-01" # recent content
```

**Content audit template:**
```markdown
## Content Strategy: {competitor.com}

### Publishing Cadence
- Posts per month: X
- Content types: Blog / Case Study / Guide / Tool

### Content Pillars
1. {Topic cluster 1} — X articles
2. {Topic cluster 2} — X articles
3. {Topic cluster 3} — X articles

### Content Quality Indicators
- Avg word count: X
- Schema markup: Yes/No
- Internal linking density: X links/post
- External citations: X per post
- Multimedia: Images / Videos / Infographics
```

### 5. Technical SEO Comparison

```bash
# Page speed comparison
open "https://pagespeed.web.dev/analysis?url={competitor.com}"

# Mobile-friendly test
open "https://search.google.com/test/mobile-friendly?url={competitor.com}"

# Schema markup check
curl -sL "https://{competitor.com}" | grep -c "application/ld+json"
```

**Technical SEO scorecard:**
```markdown
| Factor | Your Site | Competitor A | Competitor B |
|--------|-----------|-------------|-------------|
| Page Speed (mobile) | X/100 | X/100 | X/100 |
| Core Web Vitals | Pass/Fail | Pass/Fail | Pass/Fail |
| Mobile Friendly | ✅/❌ | ✅/❌ | ✅/❌ |
| HTTPS | ✅/❌ | ✅/❌ | ✅/❌ |
| Schema Types | X | X | X |
| Sitemap | ✅/❌ | ✅/❌ | ✅/❌ |
| robots.txt | ✅/❌ | ✅/❌ | ✅/❌ |
| Canonical Tags | ✅/❌ | ✅/❌ | ✅/❌ |
```

### 6. SERP Share Analysis

**Calculate SERP visibility share:**
```
For each target keyword:
1. Check positions of all competitors
2. Calculate Click-Through Rate (CTR) by position
3. Multiply by search volume = estimated traffic

Position CTR estimates:
#1: 31.7% | #2: 24.7% | #3: 18.6% | #4: 13.3% | #5: 9.5%
#6: 6.3%  | #7: 4.2%  | #8: 3.1%  | #9: 2.4%  | #10: 1.8%
```

## Workflow

1. **Identify**: List 3-5 main SEO competitors
2. **Keywords**: Run keyword gap analysis
3. **Backlinks**: Compare backlink profiles
4. **Content**: Audit content strategies
5. **Technical**: Benchmark technical SEO
6. **Report**: Generate competitive intelligence report
7. **Strategy**: Create action plan to outrank competitors

## Output: Competitive Intelligence Report

```markdown
# SEO Competitive Intelligence Report

## Executive Summary
{1-paragraph overview of competitive landscape}

## Competitor Rankings
| Competitor | Keyword Overlap | Content Volume | Domain Strength | Threat Level |
|-----------|----------------|----------------|-----------------|-------------|
| {comp1} | X% | X pages | DR X | 🔴 High |
| {comp2} | X% | X pages | DR X | 🟡 Medium |

## Key Findings
1. {Biggest competitor advantage}
2. {Biggest gap/opportunity}
3. {Quick win available}

## Recommended Strategy
### Quick Wins (1-2 weeks)
- ...
### Medium-term (1-3 months)
- ...
### Long-term (3-6 months)
- ...
```

## Trigger Words
- "竞品SEO分析"
- "competitor SEO"
- "SEO gap analysis"
- "关键词差距"
- "外链对比"
- "竞争对手分析"
- "SEO competitive intelligence"
- "backlink comparison"

Related Skills

technical-analysis

33
from aAAaqwq/AGI-Super-Team

Master of price action, chart patterns, and technical indicators - combining classical Wyckoff/Dow theory with modern quantitative validation for edge identificationUse when "technical analysis, chart pattern, indicator, RSI, MACD, support resistance, trend, candlestick, price action, fibonacci, trading, technical-analysis, charts, indicators, price-action, patterns, support-resistance, trend-following" mentioned.

static-code-analysis

33
from aAAaqwq/AGI-Super-Team

Implement static code analysis with linters, formatters, and security scanners to catch bugs early. Use when enforcing code standards, detecting security vulnerabilities, or automating code review.

serp-analysis

33
from aAAaqwq/AGI-Super-Team

Analyze Google SERP (Search Engine Results Pages) — featured snippets, PAA (People Also Ask), AI Overview, knowledge panels, local packs. Detect AI Overview trigger conditions and optimize content to be cited by AI. Use when user asks to 'analyze SERP', 'check search results', 'AI Overview analysis', 'featured snippet optimization', 'PAA research', or 'how to get cited by Google AI'.

roi-analysis

33
from aAAaqwq/AGI-Super-Team

Use when calculating marketing ROI on Xiaohongshu, measuring campaign return on investment, analyzing cost per acquisition, evaluating marketing spend efficiency, or proving marketing value to stakeholders

market-sizing-analysis

33
from aAAaqwq/AGI-Super-Team

Use when the user asks to calculate TAM, determine SAM, estimate SOM, size a market, calculate market opportunity, ask for total addressable market, or do market sizing for a startup or business opportunity.

ecommerce-competitor-analyzer

33
from aAAaqwq/AGI-Super-Team

Multi-platform e-commerce competitor analysis skill that automatically scrapes product data from Amazon, Temu, Shopee and generates comprehensive analysis reports using AI. Use when you need to analyze competitor products, extract product insights, or batch analyze multiple product listings. Supports bulk processing with structured outputs including title, price, rating, reviews, and strategic analysis.

developer-growth-analysis

33
from aAAaqwq/AGI-Super-Team

Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a personalized growth report to your Slack DMs.

competitor-teardown

33
from aAAaqwq/AGI-Super-Team

Structured competitive analysis with feature matrices, SWOT, positioning maps, and UX review. Covers research frameworks, pricing comparison, review mining, and visual deliverables. Use for: market research, competitive intelligence, investor decks, product strategy, sales enablement. Triggers: competitor analysis, competitive analysis, competitor teardown, market research, competitive intelligence, swot analysis, competitor comparison, market landscape, competitor review, competitive landscape, feature comparison, market positioning

competitor-price-tracker

33
from aAAaqwq/AGI-Super-Team

Monitor competitor pricing pages and send alerts when prices change. Track discount patterns, promotional cycles, and pricing strategy shifts.

competitor-alternatives

33
from aAAaqwq/AGI-Super-Team

When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' 'competitive landing pages,' 'how do we compare to X,' 'battle card,' or 'competitor teardown.' Use this for any content that positions your product against competitors. Covers four formats: singular alternative, plural alternatives, you vs competitor, and competitor vs competitor. For sales-specific competitor docs, see sales-enablement.

competitive-analysis

33
from aAAaqwq/AGI-Super-Team

Help users understand and respond to competition. Use when someone is positioning against competitors, evaluating market threats, running competitive war games, or deciding how much to focus on competitors versus customers.

apify-competitor-intelligence

33
from aAAaqwq/AGI-Super-Team

Analyze competitor strategies, content, pricing, ads, and market positioning across Google Maps, Booking.com, Facebook, Instagram, YouTube, and TikTok.