ソース情報
- リポジトリ
- lazarv/rolldown
- ソースの最終更新活動
- 2026年1月20日 05:11
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/lazarv/rolldown --skill upgrade-oxcコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | upgrade-oxc |
| description | Upgrade oxc, run codegen, and fix any breaking changes. |
CRITICAL: Run each step sequentially ONE AT A TIME. Wait for each command to FULLY COMPLETE before proceeding to the next step. DO NOT run multiple commands in parallel - they have dependencies on each other.
git checkout main && git pull origin mainjust setupnpm view @oxc-project/types version - note the versionpnpm-workspace.yaml: update @oxc-project/runtime, @oxc-project/types, oxc-minify, oxc-parser, oxc-transform to the version from step 3 (use =x.y.z format)cargo search oxc_allocator --limit 1 - note the versioncargo search oxc_resolver --limit 1 - note the versionCargo.toml: update oxc, oxc_allocator, oxc_ecmascript, oxc_minify_napi, oxc_parser_napi, oxc_transform_napi, oxc_traverse to version from step 5; update oxc_resolver, oxc_resolver_napi to version from step 6cargo update oxc oxc_allocator oxc_ecmascript oxc_minify_napi oxc_parser_napi oxc_transform_napi oxc_traverse oxc_resolver oxc_resolver_napi oxc_sourcemap oxc_indexpnpm install - install updated npm packagescargo check - if there are errors, fix all breaking changes before proceeding. Common breaking changes include renamed types, changed method signatures, or removed APIs. Study the error messages carefully and update the code accordingly.just update-generated-codejust test-updatejust uedjust roll - run the full build, lint, and test suite. Fix any remaining breaking changes or test failures before proceeding.git status --short && git diff --stat - verify expected files changed