Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

30x-seo-redirects30X SEO redirects 搜索

Agent Skill

30x-seo-redirects 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

808

周安装

34

GitHub Stars

24

下载量

283
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:30x-seo-redirects(30X SEO redirects 搜索)
来源仓库:https://github.com/norahe0304-art/30x-seo
仓库路径:skills/30x-seo-redirects
安装命令:
npx skills add https://github.com/norahe0304-art/30x-seo --skill 30x-seo-redirects
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/norahe0304-art/30x-seo --skill 30x-seo-redirects

简介

适用于需要快速检测网站重定向问题的场景,如排查页面跳转延迟或链接权重流失。

  • 核心能力是识别超过一层的重定向链、30x-seo-redirects 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 无限循环跳转及错误类型(如临时跳转未传递完整权重)。
  • 通过命令行工具执行,需确认是否具备网络访问权限及目标站点可爬取性。
  • 安装前请核实仓库维护状态与实际功能一致性。

SKILL.md

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.47%
按下载量换算100

Claude

29.18%
按下载量换算83

Cursor

19.67%
按下载量换算56

Gemini CLI

11.22%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills