30x seo redirects
Deliver comprehensive SEO automation with 24 AI-powered skills covering audits, technical SEO, content, links, local SEO, and keyword research.
npx -y skills add square-lupus579/30x-seo --skill 30x-seo-redirectsAssembled 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
| Type | When to Use | SEO Impact |
|---|---|---|
| 301 | Permanent move | Passes ~95% link equity |
| 302 | Temporary (A/B test, maintenance) | Passes less equity, can cause issues if permanent |
| 307 | Temporary (preserves HTTP method) | Same as 302 |
| 308 | Permanent (preserves HTTP method) | Same as 301 |
| Meta refresh | NEVER for SEO | Bad UX, slow, not recommended |
| JavaScript redirect | Avoid if possible | Googlebot 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:
- Crawl entire site
- Follow all internal links
- 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):
- Check each URL
- Record final destination
- Flag chains, loops, 404s
Output Format
Redirect Health Score: XX/100
Critical Issues (Fix Immediately)
| Issue Type | Count | Example |
|---|---|---|
| Redirect loops | X | /a → /b → /a |
| 5+ hop chains | X | /old → ... → /new |
| HTTPS downgrade | X | https → http |
High Priority (Fix This Week)
| Issue Type | Count | Example |
|---|---|---|
| 3-4 hop chains | X | /old → /mid → /new |
| 302 used for permanent | X | /old-page 302→ /new-page |
| Soft 404 redirects | X | /deleted → / |
Medium Priority (Fix This Month)
| Issue Type | Count | Example |
|---|---|---|
| 2 hop chains | X | /old → /mid → /new |
| Inconsistent trailing slash | X | /page and /page/ both exist |
Redirect Map
Top 20 most-accessed redirects and their chains:
| Source URL | Hops | Final Destination | Type | Monthly Hits |
|---|
Recommendations
- [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.