rstackjs/agent-skills

migrate-to-rsbuild

Migrate webpack, Vite, create-react-app (CRA/CRACO), or Vue CLI projects to Rsbuild.

First seen Feb 26, 2026

Installation

$ npx skills add rstackjs/agent-skills --skill migrate-to-rsbuild

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from rstackjs/agent-skills · top by installs.

npx skills add rstackjs/agent-skills

Browse all from rstackjs/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 93
License LICENSE
Default branch main
Open issues 2
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,733 B
  • docs SUMMARY.md 1,651 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 283 installs

SKILL.md

Migrate to Rsbuild

Goal

Migrate webpack, Vite, create-react-app (CRA/CRACO), or Vue CLI projects to Rsbuild with minimal behavior changes and clear verification.

Supported source frameworks

  • webpack
  • Vite
  • CRA / CRACO
  • Vue CLI

Migration principles (must follow)

  1. Official guide first: treat Rsbuild migration docs as source of truth.
  2. Smallest-change-first: complete baseline migration first, then migrate custom behavior.
  3. Do not change business logic: avoid touching app runtime code unless user explicitly asks.
  4. Validate before cleanup: keep old tool dependencies/config temporarily if needed; remove only after Rsbuild is green.

Workflow

  1. Detect source framework

- Check package.json dependencies/scripts and config files: - webpack: webpack.config. - Vite: vite.config. - CRA/CRACO: react-scripts, @craco/craco, craco.config. - Vue CLI: @vue/cli-service, vue.config.

  1. Apply framework-specific deltas

- webpack: references/webpack.md - Vite: references/vite.md - CRA/CRACO: references/cra.md - Vue CLI: references/vue-cli.md

  1. Validate behavior

- Run dev server to verify the project starts without errors. - Run build command to verify the project builds successfully. - If issues remain, compare the old project configuration with the migration guide and complete any missing mappings.

  1. Cleanup and summarize

- Remove obsolete dependencies/config only after validation passes. - Summarize changed files and any remaining manual follow-ups.