Replatformer
Re-platforms websites from managed hosting providers into deployable static code. Inventories pages, assets, and metadata from the source site; extracts content into a modern JavaScript framework (Next.js or Astro); normalizes assets locally; re-points dynamic features to serverless alternatives; generates deployment-ready projects for Vercel, Netlify, or Cloudflare Pages; and verifies visual and functional equivalence. Ships three skills: replatform-site (core migration), replatforming-observer (automated evaluation loop for self-improvement), and oz-orchestrated-replatforming (cloud-based parallel execution driver). Third-party, MIT, by warpdotdev-demos.
Install the Replatformer skills
This project ships three agent skills under .agents/skills/. Clone the repo at the pinned commit and point your agent config at the skill files.
- 1
Clone the repo at the pinned commit
From your project directory, clone the repository and check out the pinned commit. The clone lands in a
replatformer/subdirectory; subsequent steps copy from it.git clone https://github.com/warpdotdev-demos/replatformer.git && git -C replatformer checkout 3b40192e332c6ec67038a983cac0ee82c8a738ce - 2
Use the core replatform-site skill
Copy the entire
replatform-site/directory into your project's.claude/skills/. The skill'sSKILL.mdreferences sibling filesreferences/providers.md(provider-specific extraction strategies) andreferences/frameworks.md(framework scaffolding details) via relative paths, so copying onlySKILL.mdwill lose that guidance.mkdir -p .claude/skills && cp -r replatformer/.agents/skills/replatform-site .claude/skills/ - 3
Run a migration
Tell your agent to re-platform a site. Example:
replatform https://example-shop.myshopify.com --to next --deploy-target vercel. The skill handles inventorying, extraction, asset normalization, dynamic-feature re-pointing, deploy config, and local verification. - 4
(Optional) use the observer and orchestrator skills
To use the optional skills, copy them as siblings so their relative paths resolve correctly. The
replatforming-observerruns an automated evaluation loop that tests migration output against example sites and iteratively refines the skill definition; it requires shell access and browser/computer-use child agents. Theoz-orchestrated-replatformingdrives parallel cloud-based batch migrations through authenticated Oz cloud-agent orchestration and consumes Warp credits. Both are optional; the corereplatform-siteskill works independently.cp -r replatformer/.agents/skills/replatforming-observer .claude/skills/ && cp -r replatformer/.agents/skills/oz-orchestrated-replatforming .claude/skills/
Your skill is downloading.
Get an email when we ship new skills and updates.
You're on the list. We'll email you when new skills drop.
What's in this toolkit
This is a toolkit of multiple skills, each with its own SKILL.md. Open the source on GitHub (at the pinned commit) to read the instructions for the skills you install.
Replatformer is a third-party, MIT-licensed website migration toolkit by warpdotdev-demos that converts hosted sites (Shopify, Webflow, Wix, Squarespace, WordPress) into static, source-controlled code deployable to Vercel, Netlify, or Cloudflare Pages. It ships three skills: a core migration workflow, an automated evaluation loop for self-improvement, and a cloud-based parallel execution driver. This catalog entry pins commit 3b40192e332c6ec67038a983cac0ee82c8a738ce. The authoritative skill definition is the repo’s replatform-site/SKILL.md at that commit.