mcpbeat Sign in

Blog Cannibalization Skill for Claude

> Detect keyword cannibalization across blog posts by extracting primary keywords from titles and headings, clustering semantically similar targets, and flagging posts competing for the same search intent. Supports local-only mode (grep-based) and DataForSEO API mode (Page Intersection endpoint at ~$0.01/call). Outputs severity-scored report with merge or differentiate recommendations. Use when user says "cannibalization", "keyword overlap", "competing pages", "duplicate keywords", "cannibalize".

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1556
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/AgriciDaniel/claude-blog --skill blog-cannibalization

The instruction itself

24 sections, as written by the author

Blog Cannibalization - Keyword Overlap Detection

Detect when multiple blog posts compete for the same search keywords. Two modes:

local-only analysis (default) and DataForSEO API mode for SERP-level data.

Two Modes

| Mode | Flag | Cost | Data Source |

|------|------|------|-------------|

| Local | (default) | Free | File content analysis via Grep/Read |

| API | --api | ~$0.01/call | DataForSEO Page Intersection + Ranked Keywords |

Local mode works without any API keys. API mode requires DataForSEO credentials

set as environment variables: DATAFORSEO_LOGIN and DATAFORSEO_PASSWORD.

Local Mode Workflow

Step 1: Scan Blog Files

Use Glob to find all content files in the target directory:

  • Patterns: /*.md, /*.mdx, **/*.html
  • Skip files in node_modules/, .git/, drafts/

Step 2: Extract Primary Keywords

For each file, read and extract keyword signals from:

  • Title tag or H1 heading (highest weight)
  • H2 headings (medium weight)
  • First paragraph (supporting signal)
  • Meta description if present in frontmatter

Primary keyword extraction method:

  • Tokenize title, H1, H2s, meta description, and first paragraph into 1-gram,

2-gram, and 3-gram phrases.

  • Normalize deterministically: lowercase, remove locale-aware stop words,

lemmatize or stem consistently, preserve product names, and keep intent

modifiers such as "best", "pricing", "vs", "review", "template", and year.

  • Score sections separately: title/H1 highest, meta description and H2s medium,

first paragraph supporting.

  • Select the top-scoring 2-3 word phrase as the primary keyword and record

secondary keywords from H2 headings.

Step 3: Cluster by Similarity

Group posts into clusters using these matching rules (in priority order):

  • Exact match - identical primary keyword across 2+ posts
  • Stem match - same root word (e.g., "optimize" vs "optimization")
  • Semantic overlap - Assign explicit intent labels such as informational,

commercial, transactional, comparison, or troubleshooting. Include confidence

and a one-sentence rationale, or use an embeddings workflow with a documented

threshold.

  • Subset match - one keyword contains another (e.g., "email marketing"

vs "email marketing for startups")

Step 4: Score and Flag

For each cluster with 2+ posts, assess severity and generate a recommendation.

Step 5: Output Report

Display the results table and per-cluster recommendations.

API Mode Workflow (DataForSEO)

Requires the --api flag and a dedicated local CLI wrapper that reads

DATAFORSEO_LOGIN and DATAFORSEO_PASSWORD from the environment and emits

JSON. Do not use WebFetch for DataForSEO POST calls and never expose Basic auth

headers, login, password, or encoded credentials in prompts or reports. If no

wrapper exists in the project, report SKIPPED: DataForSEO wrapper unavailable

and run local mode.

Endpoints Used

Page Intersection - find keywords where multiple URLs rank:

POST https://api.dataforseo.com/v3/dataforseo_labs/google/page_intersection/live

{
  "pages": {
    "1": "https://example.com/post-a",
    "2": "https://example.com/post-b"
  },
  "language_code": "en",
  "location_code": 2840
}

Cost: ~$0.01 per call. Returns overlapping keywords with position, volume, CPC.

Ranked Keywords - get all keywords a single URL ranks for:

POST https://api.dataforseo.com/v3/dataforseo_labs/google/ranked_keywords/live

{
  "target": "https://example.com/post-a",
  "language_code": "en",
  "location_code": 2840
}

The wrapper sends DataForSEO auth headers from environment variables and never

prints them.

API Analysis Steps

  • Collect all published URLs from the user (or sitemap)
  • Run Ranked Keywords for each URL to build keyword profiles
  • Run Page Intersection for URL pairs that share keyword clusters
  • Calculate severity using the formula below
  • Output enriched report with search volume and position data

Severity Scoring

Four severity levels based on overlap signals:

| Level | Criteria | Action Urgency |

|-------|----------|----------------|

| Critical | Same exact keyword, both pages in top 20 | Immediate |

| High | Same keyword cluster, one page outranks the other | This week |

| Medium | Related keywords with partial SERP overlap | This month |

| Low | Semantic similarity but different confirmed intents | Monitor |

Severity Formula (API Mode)

severity_score = overlap_count x avg_search_volume x (1 / position_gap)

Where:

  • overlap_count = number of shared ranking keywords
  • avg_search_volume = mean monthly volume of shared keywords
  • position_gap = absolute difference in average ranking position (min 1)

Higher score = more urgent cannibalization problem.

Severity Heuristic (Local Mode)

Without SERP data, use a simplified scoring:

  • Critical: Exact primary keyword match between posts
  • High: Stem match on primary keyword, or 3+ shared H2 keywords
  • Medium: Semantic overlap on primary keyword
  • Low: Subset match only, or shared secondary keywords

Output Format

Summary Table

| Post A | Post B | Shared Keywords | Severity | Recommendation |
|--------|--------|-----------------|----------|----------------|
| /best-crm-tools | /top-crm-software | best crm, crm tools, crm software | Critical | MERGE |
| /email-tips | /email-marketing-guide | email marketing | High | DIFFERENTIATE |
| /seo-basics | /seo-for-beginners | seo basics, beginner seo | Critical | CANONICAL |
| /react-hooks | /react-state-mgmt | react, state | Low | NO ACTION |

Per-Cluster Detail

For each flagged cluster, provide:

  • Both post titles and URLs
  • Full list of overlapping keywords (with volume if API mode)
  • Which post is stronger (more comprehensive, better structured)
  • Specific recommendation with rationale

Recommendations

Four possible actions for each cannibalization cluster:

MERGE

When both pages are thin or cover the same intent with similar depth.

  • Combine the best content from both into one comprehensive post
  • 301 redirect the weaker URL to the merged post
  • Preserve all internal links pointing to either URL

DIFFERENTIATE

When pages serve different intents but keyword targeting overlaps.

  • Shift the primary keyword of the weaker post to a related long-tail
  • Update the title, H1, and meta description to reflect the new focus
  • Add internal links between the two posts to signal distinct topics

CANONICAL

When one post is clearly the authority and the other is a lesser duplicate.

  • Add rel="canonical" on the weaker page pointing to the authority
  • Do not combine canonical and noindex casually. Use noindex only when removal

from search is intended

  • Link from the weaker page to the authority page

NOINDEX

When a page should be removed from search results but still exist for users.

  • Confirm the page has no meaningful unique search demand or business value
  • Keep it crawlable until the noindex directive is observed
  • Do not use as the default duplicate-content fix

NO ACTION

When intent is genuinely different despite surface-level keyword similarity.

  • Document the reasoning for future audits
  • Monitor rankings quarterly for any position changes
  • Re-evaluate if either post drops in rankings

Error Handling

  • No blog files found: If the directory contains no .md, .mdx, or .html files, report "No blog files found in [directory]" and suggest checking the path
  • DataForSEO credentials missing: In API mode, if credentials are not configured, fall back to local mode automatically and notify the user
  • API rate limits: DataForSEO has per-minute rate limits. If a 429 response is received, wait and retry once. If it persists, switch to local mode for remaining URLs
  • API request failures: If DataForSEO returns an error, retry once within

rate limits. If it still fails, switch to local mode for remaining URLs and

report the failed endpoint without credentials

  • Single-post directory: If only one blog post exists, report "Cannibalization analysis requires at least 2 posts" and exit gracefully

Other skills for the same job

different authors, same section of the catalogue
Copy Editing
by lingxling
×1

You are an expert copy editor specializing in marketing and conversion copy. Your goal is to systematically improve existing copy through focused editing passes while preserving the core message.

3k tokens
Copywriting
by lingxling
×1

Write rigorous, conversion-focused marketing copy for landing pages and emails. Enforces brief confirmation and strict no-fabrication rules.

1k tokens
Blog Writer
by ComeOnOliver
×1

Write and add new blog posts for this Next.js site by matching the existing BlogPost structure in `src/lib/blog-data.ts`. Use when asked to draft a new blog article, update blog content, or produce SEO metadata/slug/image details for a new post.

3k tokens
Internationalizing Websites
by ComeOnOliver
×1

Adds multi-language support to Next.js websites with proper SEO configuration including hreflang tags, localized sitemaps, and language-specific content. Use when adding new languages, setting up i18n, optimizing for international SEO, or when user mentions localization, translation, multi-language, or specific languages like Japanese, Korean, Chinese.

30k tokens scripts
Linkedin Content
by ComeOnOliver
×1

LinkedIn post writing with hook formulas, formatting rules, and engagement patterns. Covers post types, algorithm signals, character limits, and content pillars. Use for: LinkedIn posts, professional content, thought leadership, B2B content, personal branding. Triggers: linkedin post, linkedin content, linkedin writing, linkedin strategy, linkedin engagement, linkedin algorithm, linkedin hook, linkedin formatting, thought leadership, professional content, b2b content, linkedin growth

5k tokens
Copywriting
by nexu-io

| Write and rewrite marketing copy for landing pages, homepages, and ads. Useful as a copy chief partner during launches.

298 tokens
Xiaohongshu Auto Posting
by browser-act

Automates the complete Xiaohongshu (XHS / Little Red Book) content operation workflow: pain-point topic collection → style case collection → topic selection → content writing → publishing → performance tracking. Use when user mentions xiaohongshu auto posting, xhs auto post, little red book posting, xiaohongshu post, xiaohongshu auto posting, xiaohongshu content operations, xhs content marketing, post to xiaohongshu, publish on xhs, post on xiaohongshu, xiaohongshu promotion, xiaohongshu operations, xiaohongshu automation, xhs automation, track xhs performance, track xiaohongshu performance, xiaohongshu data tracking, xiaohongshu analytics, switch xhs account, update xhs keywords.

4k tokens
Ecommerce Copywriter
by anbeime

电商图片文案创作技能,支持多品类产品的吸引性文案生成,适用于电商平台的商品营销推广

20k tokens zh

How to use it

Copy the folder

Take agricidaniel/blog-cannibalization from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

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.