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

seo-migrationSEO 迁移

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/saccoai/agent-skills --skill seo-migration

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果。

  • 适用于 SEO 迁移、网站迁移相关研究、信息收集和线索筛选等场景。
  • 通过关键词、任务场景或来源线索快速定位候选结果,可结合来源仓库继续核验具体用法。
  • 安装命令:npx skills add https://github.com/saccoai/agent-skills --skill seo-migration。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

SKILL.md

This skill ensures zero SEO loss during a website migration. It maps old URLs to new ones, generates redirects, preserves metadata, creates sitemaps, and validates structured data.

The user provides: the original site URL, the new site URL (or route structure), and the type of migration (same domain redesign, domain change, or platform migration).

Migration Types

TypeWhat changesSEO risk
Redesign (same domain)URLs may change, content restructuredMedium — redirects critical
Domain changeEntire domain moves (old.com → new.com)High — 301s + Search Console change of address
Platform migrationCMS/framework change (WordPress → Next.js)High — URL patterns often change completely
HTTPS migrationHTTP → HTTPSLow — but every URL needs redirect

SEO Migration Checklist

Step 1: Crawl & Map URLs

Crawl the original site and build a complete URL inventory:

1. Fetch sitemap.xml (and any sitemap index files)
2. Crawl all pages recursively from the homepage
3. Check Google Search Console for indexed URLs (if available)
4. Check robots.txt for disallowed paths

Output: url-inventory.csv
| Original URL | Status | Title | Indexable | New URL | Redirect Type |

For each original URL, determine:

  • Keep as-is (same URL on new site)
  • Redirect to new URL (301 permanent)
  • Merge into another page (301 to merged page)
  • Remove intentionally (410 Gone, or 301 to nearest relevant page)

Step 2: Generate Redirect Map

Create the redirect configuration for the target platform:

Next.js (next.config.ts)

async redirects() {
  return [
    { source: '/old-page', destination: '/new-page', permanent: true },
    { source: '/blog/:slug', destination: '/articles/:slug', permanent: true },
    // ... all redirects
  ];
}

Vercel (vercel.json)

{
  "redirects": [
    { "source": "/old-page", "destination": "/new-page", "permanent": true }
  ]
}

Nginx

location /old-page { return 301 /new-page; }

Rules:

  • Always use 301 (permanent) for SEO migrations, never 302
  • Use pattern matching for bulk redirects (e.g., /blog/:slug/articles/:slug)
  • Never redirect to a page that itself redirects (no chains)
  • Never create redirect loops
  • Redirect old sitemap.xml URL to new sitemap location

Step 3: Preserve Metadata

For every page on the new site, ensure:

✅ <title> — Preserve original or improve (50-60 chars)
✅ <meta name="description"> — Preserve original or improve (150-160 chars)
✅ <link rel="canonical"> — Points to the correct canonical URL
✅ <html lang="xx"> — Correct language attribute
✅ Open Graph tags — og:title, og:description, og:image, og:url
✅ Twitter Card tags — twitter:card, twitter:title, twitter:description
✅ Heading hierarchy — H1 present and unique per page, no skipped levels

Generate a metadata comparison report:

| Page | Original Title | New Title | Match |
|------|---------------|-----------|-------|
| / | "Site — Home" | "Site — Home" | ✅ |
| /about | "About Us" | "Chi Siamo" | ⚠️ Changed |

Step 4: Structured Data

Preserve or add schema.org structured data:

1. Extract existing JSON-LD / microdata from original site
2. Map to equivalent structured data on new site
3. Add missing structured data where beneficial:
   - Organization (homepage)
   - BreadcrumbList (all pages)
   - Article (blog posts)
   - LocalBusiness (contact page)
   - Person (biography)
   - Book (publications)

Validate with Google's Rich Results Test or Schema.org validator.

Step 5: Sitemap & Robots

sitemap.xml

Generate a new sitemap with all pages on the new site:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://example.com/</loc>
    <lastmod>2026-02-25</lastmod>
    <changefreq>monthly</changefreq>
    <priority>1.0</priority>
  </url>
  <!-- ... all pages -->
</urlset>

For Next.js, generate via app/sitemap.ts:

import type { MetadataRoute } from 'next';

export default function sitemap(): MetadataRoute.Sitemap {
  return [
    { url: 'https://example.com', lastModified: new Date(), priority: 1 },
    // ...
  ];
}

robots.txt

User-agent: *
Allow: /
Sitemap: https://example.com/sitemap.xml

For Next.js, generate via app/robots.ts:

import type { MetadataRoute } from 'next';

export default function robots(): MetadataRoute.Robots {
  return {
    rules: { userAgent: '*', allow: '/' },
    sitemap: 'https://example.com/sitemap.xml',
  };
}

Step 6: Validation

After deployment, verify:

1. Test EVERY redirect — curl -I each old URL, confirm 301 to correct new URL
2. Verify no redirect chains (A→B→C should be A→C)
3. Verify no redirect loops
4. Verify no 404s for previously indexed URLs
5. Confirm sitemap.xml is accessible and valid
6. Confirm robots.txt allows crawling
7. Test canonical URLs resolve correctly
8. Validate structured data with Rich Results Test
9. Check Google Search Console for crawl errors (after a few days)

Generate seo-migration-report.md:

# SEO Migration Report

## Redirects
- Total: 47
- Tested: 47
- Passing: 45
- ❌ /old-blog/post-3 → 404 (redirect target missing)
- ❌ /events → /events → /events/archive (chain detected)

## Metadata
- Pages with matching titles: 12/12
- Pages with descriptions: 12/12
- Pages with canonical: 12/12
- Pages with OG tags: 12/12

## Structured Data
- Organization: ✅
- BreadcrumbList: ✅ (all pages)
- LocalBusiness: ✅ (contact page)

## Sitemap
- sitemap.xml accessible: ✅
- Pages in sitemap: 12
- All pages return 200: ✅

## Robots
- robots.txt accessible: ✅
- Sitemap referenced: ✅

Agent Team Integration

When used as a teammate in website-refactor:

  • Runs as part of the Lead's coordination, typically in Phase 2 (setup) and Phase 6 (validation)
  • Owns: seo-migration-report.md, redirect configuration, app/sitemap.ts, app/robots.ts
  • Inputs: URL inventory from content-extractor, new route structure from designer
  • Outputs: Redirect config, sitemap, robots.txt, structured data, validation report

Standalone Usage

Invoke independently for:

  • Pre-migration planning: "Map all URLs from old site and plan redirects"
  • Post-migration validation: "Verify all redirects work and no SEO was lost"
  • SEO audit: "Check this site's metadata, structured data, sitemap, and robots.txt"
  • Domain change: "Generate redirect map from old-domain.com to new-domain.com"

Common Pitfalls

  • Missing redirects: Every indexed URL MUST redirect somewhere. Even obscure pages. Check Search Console for the full list of indexed URLs.
  • Redirect chains: A→B→C loses link equity. Always redirect directly to the final destination.
  • Soft 404s: Pages that return 200 but show "not found" content. Search engines treat these poorly.
  • Losing backlinks: High-authority pages with external backlinks MUST redirect. Check backlink profiles (Ahrefs, Moz) to prioritize.
  • Canonical confusion: If both old and new sites are live temporarily, canonicals on the new site must point to new URLs, not old ones.
  • Sitemap with old URLs: The new sitemap must only contain new URLs. Don't include redirected URLs.
  • Forgetting trailing slashes: /about and /about/ are different URLs. Be consistent and redirect the non-canonical version.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.65%
按下载量换算27

Claude

30.38%
按下载量换算22

Cursor

18.44%
按下载量换算14

Gemini CLI

9.3%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills