Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

updating-npm-package更新 npm 包

Agent Skill

updating-npm-package 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

449

周安装

18

GitHub Stars

206

下载量

145
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:updating-npm-package(更新 npm 包)
来源仓库:https://github.com/spencerpauly/awesome-cursor-skills
仓库路径:skills/updating-npm-package
安装命令:
npx skills add https://github.com/spencerpauly/awesome-cursor-skills --skill updating-npm-package
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/spencerpauly/awesome-cursor-skills --skill updating-npm-package

简介

用于查找、检索和筛选相关信息。updating-npm-package 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在需要根据关键词或任务场景快速定位候选结果时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 注意该技能当前分类为研究检索,功能聚焦 npm 包管理。

SKILL.md

Updating an npm Package

Use this skill when the user asks to update, upgrade, or bump a specific npm dependency.

Steps

  1. Check the current version — read package.json to find the installed version: npm ls <package-name>
  2. Find the latest version on npm — fetch the package info: npm view <package-name> versions --json npm view <package-name> dist-tags --json This gives you the latest tag and all published versions.
  3. Determine the update type — compare current version to latest:

- Patch (1.2.3 → 1.2.4): bug fixes only - Minor (1.2.3 → 1.3.0): new features, backwards compatible - Major (1.2.3 → 2.0.0): breaking changes

  1. For patch or minor updates — just do it: npm install <package-name>@latest Run the build and tests to make sure nothing broke: npm run build && npm test If everything passes, commit and report what changed.
  2. For major updates — do a thorough investigation first: a. Fetch the changelog and release notes — check the package's GitHub repo for CHANGELOG.md, MIGRATION.md, or release notes. Use the web to find the official upgrade guide: Search: "<package-name> v<major> migration guide" OR "<package-name> v<major> upgrade guide" b. Read the breaking changes — identify every breaking change between the current and target version. Common things to check: c. Scan the codebase for impact — search for every usage of the package: # Find all imports grep -r "from ['\"]<package-name>" src/ grep -r "require(['\"]<package-name>" src/ For each usage, check if it's affected by a breaking change. d. Apply the update: npm install <package-name>@latest e. Fix breaking changes — update each affected usage based on the migration guide. Apply changes file by file. f. Verify — run the full suite: npm run lint && npx tsc --noEmit && npm test && npm run build g. Produce a migration report — summarize: ` ## Package Update: <package-name> v<old> → v<new> (Major) ### Breaking Changes Applied - oldFunction() renamed to newFunction() — updated in 3 files - Config format changed from .js to .config.ts — migrated - Dropped support for Node 16 — verified we're on Node 20 ### Files Modified - src/lib/client.ts — updated import and function call - src/config/settings.ts — migrated config format - package.json — bumped version ### Validation - ✅ Lint passes - ✅ TypeScript compiles - ✅ All 47 tests pass - ✅ Build succeeds `

- Removed or renamed APIs - Changed function signatures or return types - Dropped Node.js version support - New peer dependency requirements - Changed default behavior - Config file format changes

Notes

  • Always check peer dependency compatibility before updating — npm install will warn about mismatches.
  • For monorepos, check if the package is used in multiple workspaces and update them all together.
  • If the package has a codemod tool (e.g. npx @next/codemod), use it instead of manual migration.
  • Lock file (package-lock.json) changes are expected — commit them with the update.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.91%
按下载量换算54

Claude

29.56%
按下载量换算43

Cursor

17.91%
按下载量换算26

Gemini CLI

8.57%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills