migrate-site

calm-north/seojuice-skills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/calm-north/seojuice-skills --skill migrate-site
0 commentsdiscussion
summary

Execute website migrations safely with redirect mapping, pre-flight audits, and recovery monitoring.

  • Covers six migration types (domain changes, CMS switches, URL restructures, protocol upgrades, subdomain moves, redesigns) with risk assessment and redirect strategies for each
  • Includes five-phase workflow: pre-migration inventory and high-value page identification, redirect mapping with conflict resolution, technical setup checklist, post-migration monitoring schedule (daily week 1, wee
skill.md

Migrate Site

Guide a domain migration, CMS switch, or URL restructure without losing rankings — redirect mapping, monitoring plan, and rollback criteria.

Migration Types

Type Risk Level Example
Domain change High olddomain.com → newdomain.com
Protocol change Low HTTP → HTTPS
CMS switch Medium-High WordPress → Next.js, Shopify → custom
URL restructure Medium /blog/2024/post → /blog/post
Subdomain migration Medium blog.example.com → example.com/blog
Design/template change Low-Medium Same URLs, new templates

All migrations carry SEO risk. The goal is to minimize the traffic dip and speed up recovery.

Phase 1: Pre-Migration Audit

Inventory Everything

Before touching anything, document the current state:

Pages:

  • Full list of all indexed URLs (from sitemap + Search Console)
  • Each page's monthly traffic (Search Console, last 6 months)
  • Each page's top keywords and positions
  • Each page's backlink count (pages with external links need special attention)

Technical:

  • Current robots.txt
  • Current XML sitemap(s)
  • Current redirect rules
  • Current structured data
  • Current canonical tags
  • Current internal linking structure

Performance:

  • Total organic traffic baseline (weekly and monthly)
  • Top 50 pages by traffic
  • Core Web Vitals scores
  • Crawl stats from Search Console

Save everything. You need this data to compare against post-migration.

Identify High-Value Pages

Not all pages are equal. Flag these for extra attention:

  • Pages with the most organic traffic (top 20%)
  • Pages with external backlinks
  • Pages that rank for high-value keywords
  • Landing pages tied to conversions
  • Pages with featured snippets

These pages must have working redirects and should be verified individually after migration.

Phase 2: Redirect Mapping

The redirect map is the most critical artifact. Every old URL must map to the right new URL.

Mapping Rules

Old URL New URL Type Notes
/old-page /new-page 301 Content matches
/removed-page /closest-relevant-page 301 Consolidated into related page
/deleted-page / 301 No relevant page — send to homepage (last resort)

Rules:

  • Use 301 redirects for permanent moves (not 302)
  • Map each old URL to the most relevant new URL (not all to homepage)
  • Preserve URL structure where possible (fewer redirects = less risk)
  • Avoid redirect chains (old → intermediate → new). Every redirect should be direct.
  • Handle URL variations: with/without trailing slash, with/without www, HTTP/HTTPS

Common Pitfalls

  • Forgetting to redirect paginated URLs (/page/2, /page/3)
  • Missing query parameter URLs that have backlinks
  • Case sensitivity issues (some servers treat /Page and /page differently)
  • Redirecting everything to the homepage (kills page-level authority)

Phase 3: Technical Setup

Before the Switch

  • New site is fully crawlable (no staging robots.txt left behind)
  • All redirect rules are implemented and tested
  • New XML sitemap is ready (with new URLs)
  • Canonical tags on new pages point to new URLs (not old)
  • Internal links updated to new URLs (don't rely on redirect chains for internal links)
  • Structured data updated with new URLs
  • Hreflang tags updated (if multilingual)
  • Google Search Console property created for new domain (if domain change)
  • Analytics tracking updated on new site
  • CDN/caching configured for new site

The Switch

  • Deploy redirect rules
  • Deploy new site
  • Verify redirects are working (spot-check 20+ URLs)
  • Submit new sitemap to Search Console
  • If domain change: use Search Console's Change of Address tool
  • Force-crawl key pages using Search Console URL Inspection
  • Monitor server errors in real-time for the first 24 hours

Phase 4: Post-Migration Monitoring

Week 1 (daily checks)

  • Check Search Console for crawl errors (404s, 5xx errors)
  • Verify organic traffic hasn't dropped catastrophically
  • Check that redirects are still working
  • Look for pages returning 404 that should redirect
  • Monitor server response times (migration can reveal performance issues)

Weeks 2-4 (weekly checks)

  • Compare organic traffic to pre-migration baseline
  • Check indexation status in Search Console (indexed page count)
  • Verify key pages are indexed under new URLs
  • Check ranking positions for top keywords
  • Review crawl stats for anomalies

Months 2-3 (monthly checks)

  • Traffic should be recovering to pre-migration levels
  • All old URLs should show as redirected in Search Console
  • New URLs should be indexed and ranking
  • Core Web Vitals should be stable

Expected Timeline

  • Traffic dip: Normal. Expect 10-30% drop in the first 2-4 weeks.
  • Recovery: Most sites recover within 2-3 months if redirects are correct.
  • Full stabilization: 3-6 months for large sites.
  • Red flag: If traffic hasn't started recovering after 4 weeks, investigate.

Phase 5: Rollback Plan

Before migrating, define rollback criteria:

Rollback if:

  • Organic traffic drops > 50% for more than 7 days
  • More than 20% of redirects are broken
  • Critical conversion pages are not accessible
  • Server errors exceed acceptable threshold

Rollback steps:

  1. Revert DNS (if domain change) or redeploy old site
  2. Remove or reverse redirects
  3. Re-submit old sitemap
  4. Investigate what went wrong before attempting again

Output Format

Migration Plan: [old] → [new]

Migration Type: [domain change / CMS switch / URL restructure / etc.] Risk Level: [low / medium / high] Estimated Timeline: [preparation + execution + monitoring]

Pre-Migration Inventory

  • Total indexed pages: [count]
  • Pages with backlinks: [count]
  • Top traffic pages: [list top 10]
  • Current monthly organic traffic: [baseline]

Redirect Map [Table — full mapping of old → new URLs]

Technical Checklist [Checklist from Phase 3]

Monitoring Schedule [Checkpoints from Phase 4]

Rollback Criteria [Defined thresholds and steps]

Risk Areas

  • High-value pages that need extra attention
  • Known technical challenges for this migration type
  • External backlinks that must be preserved

Pro Tip: Use the free Broken Link Checker to verify redirects post-migration, and the Htaccess Generator to build redirect rules. SEOJuice MCP users can run /seojuice:site-health for a full page inventory with link data, /seojuice:keyword-analysis to identify high-value pages, and list_changes to detect content differences post-migration.

how to use migrate-site

How to use migrate-site on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add migrate-site
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/calm-north/seojuice-skills --skill migrate-site

The skills CLI fetches migrate-site from GitHub repository calm-north/seojuice-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/migrate-site

Reload or restart Cursor to activate migrate-site. Access the skill through slash commands (e.g., /migrate-site) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.634 reviews
  • Ganesh Mohane· Dec 28, 2024

    migrate-site reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Aanya Brown· Dec 20, 2024

    We added migrate-site from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Michael Kim· Dec 16, 2024

    migrate-site reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Amina White· Dec 12, 2024

    Keeps context tight: migrate-site is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Sofia Iyer· Dec 4, 2024

    migrate-site has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Hassan Shah· Nov 23, 2024

    migrate-site fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Sakshi Patil· Nov 19, 2024

    I recommend migrate-site for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Lucas Singh· Nov 11, 2024

    Solid pick for teams standardizing on skills: migrate-site is focused, and the summary matches what you get after install.

  • Zaid Li· Nov 7, 2024

    I recommend migrate-site for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Aisha Johnson· Oct 26, 2024

    Useful defaults in migrate-site — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

showing 1-10 of 34

1 / 4