agentsclimarketplace

30x seo redirects

Skill square-lupus579/30x-seo/skills/30x-seo-redirects

Deliver comprehensive SEO automation with 24 AI-powered skills covering audits, technical SEO, content, links, local SEO, and keyword research.

Install
npx -y skills add square-lupus579/30x-seo --skill 30x-seo-redirects

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Redirect chain audit and analysis. Detects redirect loops, long chains, mixed protocols, and orphaned redirects. Use when user says "redirect audit", "301 redirect", "redirect chain", "redirect loop", or "migration redirects".

SKILL.md

4.3 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it

Redirect Audit

What This Skill Does

Analyzes website redirects to find problems that hurt SEO and user experience.

Why Redirects Matter

  • Every redirect = delay: 301 redirects add 100-500ms latency
  • Chains lose link equity: Google follows max ~5 hops, then stops
  • Wrong type = lost ranking: 302 (temporary) doesn't pass full link juice
  • Loops = crawl waste: Googlebot hits loop, gives up, page not indexed

Check Categories

1. Redirect Chains

A redirect pointing to another redirect, pointing to another...

BAD:  /old → /old-2 → /old-3 → /final  (3 hops, slow, loses equity)
GOOD: /old → /final                     (1 hop, fast, full equity)

Rule: Maximum 1 redirect hop. More than 1 = fix immediately.

2. Redirect Loops

Page A redirects to B, B redirects back to A. Infinite loop.

BAD:  /page-a → /page-b → /page-a  (loop!)

Detection: Follow redirects up to 10 hops. If same URL appears twice = loop.

3. Redirect Type Audit

TypeWhen to UseSEO Impact
301Permanent movePasses ~95% link equity
302Temporary (A/B test, maintenance)Passes less equity, can cause issues if permanent
307Temporary (preserves HTTP method)Same as 302
308Permanent (preserves HTTP method)Same as 301
Meta refreshNEVER for SEOBad UX, slow, not recommended
JavaScript redirectAvoid if possibleGooglebot may not follow

Rule: Permanent moves must use 301 or 308. Using 302 for permanent = error.

4. Protocol Issues

BAD:  https://site.com → http://site.com  (downgrade, security warning)
BAD:  http → https → http                 (mixed, confusing)
GOOD: http://site.com → https://site.com  (upgrade, correct)

5. Domain Consistency

BAD:  www.site.com → site.com → www.site.com  (inconsistent)
GOOD: Pick ONE (www or non-www) and redirect all others to it

6. Trailing Slash Consistency

BAD:  /page → /page/ → /page  (loop risk)
GOOD: Pick ONE pattern (/page or /page/) and redirect all others

7. Post-Migration Orphans

After site migration/redesign:

  • Old URLs that redirect to 404 or homepage (should go to equivalent new page)
  • Important pages with no redirect (losing all link equity)

8. Soft 404s via Redirect

Redirecting deleted pages to homepage = soft 404 penalty risk.

BAD:  /deleted-product → /  (Google sees this as soft 404)
GOOD: /deleted-product → 410 Gone (or related category page)

How to Run Audit

Method 1: Crawl-based (recommended)

Use squirrel audit or similar crawler to:

  1. Crawl entire site
  2. Follow all internal links
  3. Record redirect chains

Method 2: Log-based (for large sites)

Analyze server access logs for:

  • All 301/302 responses
  • Most-hit redirect URLs
  • External referrers hitting redirects

Method 3: URL list

If you have a list of old URLs (from migration):

  1. Check each URL
  2. Record final destination
  3. Flag chains, loops, 404s

Output Format

Redirect Health Score: XX/100

Critical Issues (Fix Immediately)

Issue TypeCountExample
Redirect loopsX/a → /b → /a
5+ hop chainsX/old → ... → /new
HTTPS downgradeXhttps → http

High Priority (Fix This Week)

Issue TypeCountExample
3-4 hop chainsX/old → /mid → /new
302 used for permanentX/old-page 302→ /new-page
Soft 404 redirectsX/deleted → /

Medium Priority (Fix This Month)

Issue TypeCountExample
2 hop chainsX/old → /mid → /new
Inconsistent trailing slashX/page and /page/ both exist

Redirect Map

Top 20 most-accessed redirects and their chains:

Source URLHopsFinal DestinationTypeMonthly Hits

Recommendations

  1. [Specific fix instructions based on findings]

[PROTOCOL]: Update this header on changes, then check CLAUDE.md

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most marketing audience skills give in ~1.1k tokens

Counted across 690 of the 894 authors here whose files we hold, read 2026-08-07

  • Apply Poppins font to headingsin 41 of 690, across 6 files
  • Apply Lora font to body textin 41 of 690, across 6 files
  • Use Arial fallback for headingsin 39 of 690, across 4 files
  • Use Georgia fallback for body textin 39 of 690, across 4 files
  • Maintain text hierarchy and formattingin 39 of 690, across 4 files
  • Use accent colors for non-text shapesin 38 of 690, across 3 files
  • Use RGB values for precise color matchingin 38 of 690, across 3 files
  • Use brand colors for primary text and backgroundsin 36 of 690, across 1 file
  • Read product marketing context file before asking questions, starting, or auditingin 35 of 690, across 23 files
  • Use active voice instead of passive voicein 26 of 690, across 10 files
  • Implement or generate appropriate JSON-LD structured datain 24 of 690, across 17 files
  • Prioritize clarity over clevernessin 22 of 690, across 8 files

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 327,069. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.