Agent skill · Testing & QA

od-code-migration

Default reference pipeline for the code-migration taskKind — code-import → design-extract → token-map → rewrite-plan → patch-edit ↔ build-test devloop → diff-review → handoff.

nexu95,528★ · +2,037/wk · 5 repos on radarProfile →
claude-codecodexcursorApache-2.0
Install
npx skills add nexu-io/open-design --skill od-code-migration --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 1 KB
Bundled scripts: none
Path: plugins/_official/scenarios/od-code-migration/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 83,577 · +1,339 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# od-code-migration (scenario) Spec §1 / §10.1 / §20.3 / §21.3.2 / §23.3.3: the canonical code-migration flow. The pipeline cannot ship an `accept` decision without a passing build — the patch-edit ↔ build-test devloop is the convergence engine. ## Default pipeline ```jsonc { "stages": [ { "id": "import", "atoms": ["code-import"] }, { "id": "tokens", "atoms": ["design-extract", "token-map"] }, { "id": "plan", "atoms": ["rewrite-plan"] }, { "id": "verify", "atoms": ["patch-edit", "build-test"], "repeat": true, "until": "(build.passing && tests.passing) || iterations>=8" }, { "id": "review", "atoms": ["diff-review"] }, { "id": "handoff", "atoms": ["handoff"] } ] } ``` The scenario uses `build.passing && tests.passing` as the convergence signal — promoted into the spec §22.4 vocabulary by the `build-test` atom. ## Required user inputs A plugin built on this scenario typically declares `od.inputs`: - `repoPath` (string, required): pulled from `od project import`. - `targetStack` (form): collected by `rewrite-plan`. - `testCommand` / `buildCommand` (string, optional): overrides the inferred package.json scripts in the `build-test` atom.

What's inside
Steps it walks through
  1. Default pipeline
  2. Required user inputs
Ships with 2 files
  • examples/jquery-to-react.html
  • open-design.json
More from open-design
All skills →
About this skill
What does the od-code-migration skill do?

Default reference pipeline for the code-migration taskKind — code-import → design-extract → token-map → rewrite-plan → patch-edit ↔ build-test devloop → diff-review → handoff.

How do I install it?

Run `npx skills add nexu-io/open-design --skill od-code-migration --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From nexu-io/open-design, a repository with 83,577 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going