tag-release-npm — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited tag-release-npm (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Bump the npm package version, tag the release, and push.
Note: For team repos or any repo with a CI/CD pipeline, automated versioning and publishing via a pipeline (e.g. GitHub Actions triggered on merge to main) is strongly preferred over running this command manually. Use this command for solo projects or when no pipeline is set up.
Steps:
ls package.json 2>/dev/null to confirm this is an npm project. If not, tell the user and stop.git tag --sort=-version:refname | head -1 to find the most recent tag. Run git log <last-tag>..HEAD --oneline to see commits since the last tag. If no tags exist, use all commits. If there are no new commits, tell the user there is nothing to release and stop.major if any commit contains BREAKING CHANGEminor if any commit is type featpatch for all other changespackage.json), the proposed new version, the bump reason, and the list of commits that will be included.npm version <major|minor|patch> --no-git-tag-version to update package.json and package-lock.json without creating a git tag yet.git add package.json package-lock.json.CHANGELOG.md exists, regenerate the ## Unreleased section using the same rules as the /changelog command, rename it to ## <new-version>, and stage CHANGELOG.md with git add CHANGELOG.md.git commit -m "chore(release): <new-version>".git tag v<new-version> && git push && git push origin v<new-version>.$ARGUMENTS
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.