원클릭으로
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