seo-cluster

SERP-based semantic topic clustering for content architecture planning. Groups keywords by actual Google SERP overlap (not text similarity), designs…

INSTALLATION
npx skills add https://github.com/agricidaniel/claude-seo --skill seo-cluster
Run in your project or agent environment. Adjust flags if your CLI version differs.

SKILL.md

Semantic Topic Clustering

SERP-overlap-driven keyword clustering for content architecture. Groups keywords

by how Google actually ranks them (shared top-10 results), not by text similarity.

Designs hub-and-spoke content clusters with internal link matrices and generates

interactive cluster map visualizations.

Scripts: Located at the plugin root scripts/ directory.

Quick Reference

CommandWhat it does
/seo cluster plan Full planning workflow: expand, cluster, architect, visualize
/seo cluster plan --from strategyImport from existing /seo plan output
/seo cluster executeExecute plan: create content via claude-blog or output briefs
/seo cluster mapRegenerate the interactive cluster visualization

Planning Workflow

Step 1: Seed Keyword Expansion

Expand the seed keyword into 30-50 variants using WebSearch:

  • Related searches: Search the seed, extract "related searches" and "people also search for"
  • People Also Ask (PAA): Extract all PAA questions from SERP results
  • Long-tail modifiers: Append common modifiers: "best", "how to", "vs", "for beginners", "tools", "examples", "guide", "template", "mistakes", "checklist"
  • Question mining: Generate who/what/when/where/why/how variants
  • Intent modifiers: Add commercial modifiers: "pricing", "review", "alternative", "comparison", "free", "top"

Deduplication: Normalize variants (lowercase, strip articles), remove exact duplicates.

Target: 30-50 unique keyword variants. If under 30, run a second expansion pass

with the top PAA questions as seeds.

Step 2: SERP Overlap Clustering

This is the core differentiator. Load references/serp-overlap-methodology.md for

the full algorithm.

Process:

  • Group keywords by initial intent guess (reduces pairwise comparisons)
  • For each candidate pair within a group, WebSearch both keywords
  • Count shared URLs in the top 10 organic results (ignore ads, featured snippets, PAA)
  • Apply thresholds:
Shared ResultsRelationshipAction
7-10Same postMerge into single target page
4-6Same clusterGroup under same spoke cluster
2-3InterlinkPlace in adjacent clusters, add cross-links
0-1SeparateAssign to different clusters or exclude

Optimization: With 40 keywords, full pairwise = 780 comparisons. Instead:

  • Pre-group by intent (4 groups of ~10 = 4 x 45 = 180 comparisons)
  • Only cross-check group boundary keywords
  • Skip pairs where both are long-tail variants of the same head term (assume same cluster)

DataForSEO integration: If DataForSEO MCP is available, use serp_organic_live_advanced

instead of WebSearch for SERP data. Run claude-seo run dataforseo_costs.py check serp_organic_live_advanced --count N

before each batch. If "status": "needs_approval", show cost estimate and ask user.

If "status": "blocked", fall back to WebSearch.

Step 3: Intent Classification

Classify each keyword into one of four intent categories:

IntentSignalsInclude in Clusters?
Informationalhow, what, why, guide, tutorial, learnYes
Commercialbest, top, review, comparison, vs, alternativeYes
Transactionalbuy, price, discount, coupon, order, sign upYes
Navigationalbrand names, specific product names, loginNo (exclude)

Remove navigational keywords from clustering. Flag borderline cases for

manual review. Keywords can have mixed intent (e.g., "best CRM software" is

both commercial and informational) -- classify by dominant intent.

Step 4: Hub-and-Spoke Architecture

Load references/hub-spoke-architecture.md for full specifications.

Design the cluster structure:

  • Select the pillar keyword: Highest volume, broadest intent, most SERP overlap with other keywords
  • Group spokes into clusters: Each cluster is a subtopic area (2-5 clusters per pillar)
  • Assign posts to clusters: Each cluster gets 2-4 spoke posts
  • Select templates per post: Based on intent classification:
Intent PatternTemplate Options
Informational (broad)ultimate-guide
Informational (how)how-to
Informational (list)listicle
Informational (concept)explainer
Commercial (compare)comparison
Commercial (evaluate)review
Commercial (rank)best-of
Transactionallanding-page

-

Set word count targets:

  • Pillar page: 2500-4000 words
  • Spoke posts: 1200-1800 words

-

Cannibalization check: No two posts share the same primary keyword. If SERP

overlap is 7+, merge those keywords into a single post targeting both.

Step 5: Internal Link Matrix

Design the bidirectional linking structure:

Link TypeDirectionRequirement
Spoke to pillarspoke -> pillarMandatory (every spoke)
Pillar to spokepillar -> spokeMandatory (every spoke)
Spoke to spoke (within cluster)spoke spoke2-3 links per post
Cross-clusterspoke -> spoke (other cluster)0-1 links per post

Rules:

  • Every post must have minimum 3 incoming internal links
  • No orphan pages (every post reachable from pillar in 2 clicks)
  • Anchor text must use target keyword or close variant (no "click here")
  • Link placement: within body content, not just navigation/sidebar

Generate the link matrix as a JSON adjacency list:

{

  "links": [

    { "from": "pillar", "to": "cluster-0-post-0", "type": "mandatory", "anchor": "keyword" },

    { "from": "cluster-0-post-0", "to": "pillar", "type": "mandatory", "anchor": "keyword" }

  ]

}

Step 6: Interactive Cluster Map

Generate cluster-map.html using the template at templates/cluster-map.html.

  • Read the template file
  • Build the CLUSTER_DATA JSON object from the cluster plan:
{

  pillar: { title, keyword, volume, template, wordCount, url },

  clusters: [{ name, color, posts: [{ title, keyword, volume, template, wordCount, url, status }] }],

  links: [{ from, to, type }],

  meta: { totalPosts, totalClusters, totalLinks, estimatedWords }

}
  • Replace the CLUSTER_DATA placeholder in the template with the actual JSON
  • Write the completed HTML file to the output directory
  • Inform user: "Open cluster-map.html in a browser to explore the interactive cluster map."

Strategy Import

When invoked with --from strategy:

  • Look for the most recent /seo plan output in the current directory (search for

files matching *SEO*Plan*, *strategy*, *content-strategy*)

  • Parse markdown tables for: keywords, page types, content pillars, URL structures
  • Validate extracted data: check for duplicates, missing keywords, incomplete entries
  • Enrich with SERP data: run SERP overlap analysis on extracted keywords
  • Build cluster plan using the imported keywords as the starting set (skip Step 1)

If no strategy file is found, prompt the user: "No existing SEO plan found in the

current directory. Run /seo plan first, or provide a seed keyword for fresh clustering."

Execution Workflow

When /seo cluster execute is invoked:

Check for claude-blog

Test: Does ~/.claude/skills/blog/SKILL.md exist?

If claude-blog IS installed:

  • Load references/execution-workflow.md for the full algorithm
  • Read cluster-plan.json from the current directory
  • Check for resume state: scan output directory for already-written posts
  • Execute in priority order: pillar first, then spokes by volume (highest first)
  • For each post, invoke the blog-write skill with cluster context:
  • Cluster role (pillar or spoke)
  • Position in cluster (cluster index, post index)
  • Target keyword and secondary keywords
  • Template type and word count target
  • Internal links to include (with anchors)
  • Links to receive from future posts (placeholder markers)
  • After each post is written, scan previous posts for backward link placeholders

and inject the new post's URL

  • After all posts are written, generate the cluster scorecard

If claude-blog is NOT installed:

  • Generate detailed content briefs for each post in the cluster plan
  • Each brief includes:
  • Title and meta description
  • Primary keyword and secondary keywords
  • Template type and suggested structure (H2/H3 outline)
  • Word count target
  • Internal links to include (with anchor text)
  • Key points to cover
  • Competing pages to differentiate from
  • Write briefs to cluster-briefs/ directory as individual markdown files

to auto-create content. Briefs saved to cluster-briefs/."

Cluster Scorecard

Post-execution quality report. Run automatically after /seo cluster execute or

on demand via analysis of the output directory.

MetricTargetHow Measured
Coverage100%Posts written / posts planned
Link Density3+ per postCount internal links per post

| Orphan Pages | 0 | Posts with

Map Regeneration

When /seo cluster map is invoked:

  • Read cluster-plan.json from the current directory
  • Scan output directory and update post statuses (planned vs written)
  • Regenerate cluster-map.html with updated statuses
  • Report: posts written vs planned, link completion percentage

Output Files

All outputs are written to the current working directory:

FileDescription
cluster-plan.jsonMachine-readable cluster plan (full data)
cluster-plan.mdHuman-readable cluster plan summary
cluster-map.htmlInteractive SVG visualization
cluster-briefs/Content briefs (if no claude-blog)
cluster-scorecard.mdPost-execution quality report

Cross-Skill Integration

SkillRelationship
seo-planImport source: strategy import reads seo-plan output
seo-contentQuality check: E-E-A-T validation of generated content
seo-schemaSchema markup: Article, BreadcrumbList, ItemList for cluster pages
seo-dataforseoData source: SERP data when DataForSEO MCP is available
seo-googleReporting: generate PDF report of cluster plan and scorecard

After cluster planning or execution completes, offer:

"Generate a PDF report? Use /seo google report"

Error Handling

ErrorCauseResolution
"No seed keyword provided"Missing argumentPrompt user for seed keyword or URL

| "Insufficient keyword variants" | Expansion yielded

Security

  • All URLs fetched via claude-seo run render_page.py <url> --mode auto (SPA-aware SSRF protection via url_safety)
  • No credentials stored or transmitted
  • Output files contain no PII or API keys
  • DataForSEO cost checks run before every API call

FLOW Framework Integration

For prompt-guided keyword research and gap analysis, use /seo flow find [url|topic]: FLOW's 5 find-stage prompts complement the SERP-overlap clustering methodology with structured discovery prompts.

BrowserAct

Let your agent run on any real-world website

Bypass CAPTCHA & anti-bot for free. Start local, scale to cloud.

Explore BrowserAct Skills →

Stop writing automation&scrapers

Install the CLI. Run your first Skill in 30 seconds. Scale when you're ready.

Start free
free · no credit card