一键导入
ncu
Use this skill when the user asks you to update outdated dependencies.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill when the user asks you to update outdated dependencies.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill when the user wants a download/adoption report for PaceBar releases — totals per operating system, per release, or a raw CSV of GitHub release download counts.
Use this skill when cutting a release — bumping or setting the PaceBar app version across all source-of-truth files (package.json, Cargo, tauri.conf, worker).
Commit changes in thematic groups with short messages that follow the repo's semantic conventions.
Migrate a project (single-app or monorepo) from any Vite version (4, 5, 6, 7, or rolldown-vite) to Vite 8 with Rolldown/Oxc. Covers discovery, intermediate upgrades, dependency bumps, config migration, build verification, and cleanup.
| name | ncu |
| description | Use this skill when the user asks you to update outdated dependencies. |
run pnpm ncu at the repo root to check for outdated packages
if you find any, group them by topic/area so that packages that are related get updated together
for each group, run pnpm ncu -u -f ... with the appropriate filters (that's what the -f flag is for) to update the version specs in package.json files then pnpm install to install the updated packages
at each step, run a full build and test to make sure we do not introduce breakages. If you find that there were no breakages, commit the changes with a message like chore(deps): update <area/topic> packages
always use pnpm and/or turbo, and observe the monorepo structure when updating packages