agentsclimarketplace

Seo redirects

Skill fusengine/agents/plugins/seo/skills/seo-redirects

Redefining development through cognitive automation and collaborative agent systems.

Install
npx -y skills add fusengine/agents --skill 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

  • 22 stars22 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

Use when planning redirects or site migration. Covers 301 vs 302 vs 307/308, migration plans, redirect chains, link equity preservation, www/non-www, HTTP→HTTPS, 404 monitoring.

SKILL.md

1.7 KB, as published. Nobody here has run it

Redirects & Migrations

Status Codes

CodeUse CaseSEO Impact
301Permanent movePasses ~99% link equity
302Temporary (e.g. A/B test)Does NOT pass equity long-term
307Temporary, preserves HTTP methodSame as 302 for SEO
308Permanent, preserves HTTP methodSame as 301 for SEO

Migration Plan

  1. Map old URLs → new URLs (CSV: source, target, status)
  2. Implement 301s for every old URL
  3. Test in staging with curl -I <old-url> → expect 301 Location: <new>
  4. Update internal links to point directly to new URLs (avoid chain)
  5. Update sitemap.xml with new URLs only
  6. Submit to Google Search Console via Change of Address tool (if domain change)
  7. Monitor 404s for 90 days post-launch

Chain Detection

  • Chain: A → B → C (loses ~10% equity per hop)
  • Loop: A → B → A (infinite, broken)
  • Fix: A → C directly

Common Redirects

FromToStatus
http://https://301
www.non-www (or reverse, pick one)301
/page//page (or reverse)301
Old slugNew slug301

Anti-Patterns

  • ❌ Redirecting everything to homepage (mass 404 → 301 to /) → looks spammy
  • ❌ Soft 404s (200 status on missing pages)
  • ❌ JS-based redirects (Google may not follow)
  • ❌ Meta refresh redirects > 0s (use server-side)

Keep looking

Skills are one crate of 328,083. 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.