Competitor keyword analysis
Quick answer
- 01What is it?
- Use for a quick SEO snapshot of a competitor's organic presence, or as input to competitor-content-analysis for deeper content strategy mapping. Its edge is a particular angle on competitive research, giving the agent tighter constraints than a plain competitor keyword analysis request.
- 02Inputs
- Context for competitive research: your goals, audience, constraints, and any source material the skill asks for.
- 03Output
- A ready-to-use result for competitive research: the analysis, copy, or recommendations the agent produces.
Add this skill
Install as a package
Installs this one skill package for your coding agent, including any supporting files that skill ships with — not every skill in the repository. Read the tutorial.
$ npx skills add superamped/ai-marketing-skills --skill competitor-keyword-analysisSkill instructions
The instruction file for this skill. The skill also includes other files you need to install to use it.
Competitor Keyword Analysis
Usage
Use for a quick SEO snapshot of a competitor's organic presence, or as input to competitor-content-analysis for deeper content strategy mapping.
Process
Step 1: Gather Inputs
Ask the user for:
- Competitor name — the company to analyze
- Competitor domain — e.g.,
example.com(no protocol) - Country code (optional) — defaults to "us"
Step 2: Validate MCP
Check that Keywords Everywhere MCP is connected.
If not connected, return empty data with the note: "Keywords Everywhere MCP not configured — SEO data not available." Don't block the user — return gracefully.
Step 3: Domain Keywords
Pull get_domain_keywords:
- domain: competitor domain
- country: from input or "us"
- num: 100
This returns the top keywords the competitor ranks for, with estimated monthly traffic and SERP position per keyword.
Step 4: Traffic Metrics
Pull get_domain_traffic_metrics:
- domains: [competitor domain]
- country: same as Step 3
This returns estimated monthly organic traffic and total ranking keywords for the domain.
Step 5: Cluster into Content Themes
Group the top keywords into 3-5 content themes by topic similarity. For each theme:
- Theme name — descriptive label (e.g., "project management guides", "pricing comparisons")
- Keywords in theme — count
- Combined estimated traffic — sum of traffic for keywords in the theme
- Top keyword — highest-traffic keyword in the theme
These themes represent the competitor's content pillars from an SEO perspective.
Output Format
# Keyword Analysis: [Competitor Name]
**Domain:** [domain]
**Date:** [current date]
**Estimated monthly organic traffic:** [X]
**Total ranking keywords:** [X]
## Top Keywords
| Keyword | Est. Monthly Traffic | SERP Position |
|---------|---------------------|---------------|
| | | |
## Content Themes
| Theme | Keywords | Combined Traffic | Top Keyword |
|-------|----------|-----------------|-------------|
| | | | |
## Data Sources
- Keywords Everywhere: connected / not connected
- Country: [code]
- Domain keywords pulled: [count]
Rules
- Never invent traffic numbers — all data comes from Keywords Everywhere.
- Never call
get_related_keywordsorget_pasf_keywords— those are for keyword expansion, not competitor mapping. - If the domain returns very few keywords (< 10), the competitor may have minimal organic presence or the domain may be wrong — flag it.
- If traffic metrics return zero, the domain may be too new or not indexed — flag it.
- If Keywords Everywhere MCP is not connected, clearly state that and return an empty report structure.
Common questions
How do I install Competitor keyword analysis in Cursor, Claude Code, or Codex?
Run npx skills add superamped/ai-marketing-skills --skill competitor-keyword-analysis in the project where you want it, then ask your agent for the skill by name. The --skill flag installs only Competitor keyword analysis, not every skill in the repository.
Where does Competitor keyword analysis come from and what license is it under?
Competitor keyword analysis comes from the superamped/ai-marketing-skills repository on GitHub. That repository has 49 GitHub stars. The skill is published under the MIT license.
Prefer plain text? Read the Competitor keyword analysis guide as markdown.
Related skills
More from superamped
More SEO skills