content-cannibalization — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited content-cannibalization (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You find cannibalization and recommend the specific fix. Cannibalization is the single most common cause of "we have lots of content but rankings are stuck" — and it's invisible without joining GSC query-level data with the site's page intents.
============================================================ === PRE-FLIGHT === ============================================================
/gsc-pull skill (or direct connection)./internal-link-graph if available).Recovery:
/internal-link-graph as authority proxy.============================================================ === PHASE 1: CANNIBALIZATION DETECTION === ============================================================
For each unique query in GSC (filter to impressions ≥ 50 in window):
def detect_cannibalization(gsc_rows, min_impressions=50, position_max=50):
"""
Returns clusters where a single query has 2+ URLs both within
position 1-50 with non-trivial impressions.
"""
by_query = defaultdict(list)
for row in gsc_rows:
if row.impressions >= min_impressions and row.position <= position_max:
by_query[row.query].append(row)
clusters = {}
for query, rows in by_query.items():
if len(rows) >= 2:
clusters[query] = sorted(rows, key=lambda r: -r.clicks)
return clustersOutput cannibalization_clusters.csv:
| Query | URL | Impressions | Clicks | Avg Position | CTR | Cluster Size |
|---|---|---|---|---|---|---|
| best CRM | /blog/best-crm | 8400 | 240 | 8.2 | 2.9% | 3 |
| best CRM | /pricing | 1100 | 12 | 22.4 | 1.1% | 3 |
| best CRM | /reviews | 600 | 5 | 31.8 | 0.8% | 3 |
VALIDATION: Detection produces non-zero clusters on any site with > 500 pages and > 100 ranking queries.
============================================================ === PHASE 2: ROOT-CAUSE CLASSIFICATION === ============================================================
For each cluster, classify the cannibalization type:
| Class | Signal | Typical fix |
|---|---|---|
| True duplicate | Embedding similarity > 0.95 between competing pages | Consolidate, 301 weaker → stronger, remove |
| Intent overlap | Same query, different intents (e.g., transactional + informational) | Differentiate H1 / content; canonical NOT same |
| Template confusion | Multiple variant/filter pages indexable, same query | Canonicalize to parent; or noindex variants |
| Accidental same H1 | Different topics but same H1 / title | Rewrite the H1 / title of one |
| Variant page leakage | UTM / session ID / filter query strings indexed | Set <link rel="canonical"> to clean URL; robots Disallow query strings |
| Author overlap | Same author bio repeated, body content overlaps in intro paragraphs | Update author template to be lighter |
Detection per class:
?color=, ?sort=, /category/page/2/).VALIDATION: Each cluster has a class label + confidence (0-1).
============================================================ === PHASE 3: RESOLUTION RECOMMENDATIONS === ============================================================
Per cluster, produce one of five resolutions:
A. Consolidate-and-301 (best for true duplicates):
B. Canonicalize (best for variant leakage):
<link rel="canonical" href="https://example.com/canonical"> on variants.C. Differentiate-intent (best for intent overlap):
D. Noindex-the-weaker (best for template / pagination):
<meta name="robots" content="noindex,follow"> on weaker pages.rel="next/prev" pagination semantics where applicable.E. Update-internal-links-only (lightest touch, valid when both pages should stay live):
Per cluster, output resolution_{cluster_id}.md with:
VALIDATION: Recommendation per cluster is concrete and tied to evidence.
============================================================ === PHASE 4: REDIRECT RULES & CANONICAL PATCHES === ============================================================
Generate platform-specific implementation:
Nginx:
location = /blog/old-url { return 301 /blog/winner-url; }Apache (.htaccess):
RewriteRule ^blog/old-url$ /blog/winner-url [R=301,L]Next.js (`next.config.js`):
async redirects() {
return [
{ source: '/blog/old-url', destination: '/blog/winner-url', permanent: true },
...
]
}Cloudflare Workers / Vercel `vercel.json` / Netlify `_redirects`:
/blog/old-url /blog/winner-url 301WordPress (Redirection plugin export):
source,target,type
/blog/old-url,/blog/winner-url,301Canonical tag patches for "B. Canonicalize":
<link rel="canonical" href="https://example.com/canonical-url">VALIDATION: Generated redirects parse correctly in their target stack.
============================================================ === PHASE 5: RECOVERY MODEL === ============================================================
Estimate post-fix click recovery:
Expected clicks per cluster after fix =
(sum of impressions in cluster) × (CTR at winner's new expected position)
Position lift from consolidation:
if total cluster clicks > 100 and lift ~ -1 to -3 positions (closer to top)
use CTR-by-position curve (Google avg: pos 1=27%, pos 2=15%, pos 3=11%, pos 4=8%, pos 5=7%, etc.)For each cluster:
Aggregate: total expected click gain across all cannibalization fixes. Prioritize highest-gain × lowest-effort first.
VALIDATION: Recovery model uses real CTR-by-position curves, not made-up multipliers.
============================================================ === PHASE 6: ACTION QUEUE === ============================================================
Generate action_queue.md ordered by impact × inverse effort:
# Cannibalization Action Queue — {site}
## P0 — High impact, low effort
1. [Consolidate] "best CRM" cluster: 301 /blog/reviews + /pricing → /blog/best-crm. Expected: +180 clicks/week. Effort: 30 min. Risk: low.
## P1 — High impact, medium effort
2. [Differentiate] "API rate limits" cluster: rewrite /docs/api-limits to focus on technical reference vs /blog/api-rate-limits which keeps tutorial focus. Expected: +90 clicks/week. Effort: 4 hours.
## P2 — Polish
3. [Canonicalize] "/?utm_source=*" variants: add canonical pointing to clean URL. Expected: +5 clicks/week (de-duped indexing). Effort: 1 hour.VALIDATION: Action queue has per-item expected gain + effort.
============================================================ === SELF-REVIEW === ============================================================
Common gap: recommending 301 on a page that's still gaining traffic. Always check trend before consolidating — growing-but-second-best may overtake.
============================================================ === LEARNINGS CAPTURE === ============================================================
~/.claude/skills/content-cannibalization/LEARNINGS.md.
============================================================ === STRICT RULES === ============================================================
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.