release

release is a skill for Claude Code from henkisdabro/Claude-Code-MCP-Server-Selector. It costs 36 tokens per session (1,641 once invoked), scanned A, original, MIT.

A release checklist for publishing a Node.js package to npm, a registry where developers download JavaScript packages.

In plain words
What is it for?
Use it when releasing or publishing a package, including creating the GitHub release and checking that npm received the new version.
Why use it?
It keeps version changes, tests, Git commits, tags, GitHub releases, and npm publishing in the order required by the project.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; names the AskUserQuestion tool.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/henkisdabro/claude-code-mcp-server-selector/release
Any agent
npx skills add henkisdabro/Claude-Code-MCP-Server-Selector --skill release
Clone the repo
git clone --depth 1 https://github.com/henkisdabro/Claude-Code-MCP-Server-Selector

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for release

README.md
[![agentmods](https://agentmods.dev/badge/skills/henkisdabro/claude-code-mcp-server-selector/release.svg)](https://agentmods.dev/skills/henkisdabro/claude-code-mcp-server-selector/release)
Your own site
<a href="https://agentmods.dev/skills/henkisdabro/claude-code-mcp-server-selector/release"><img src="https://agentmods.dev/badge/skills/henkisdabro/claude-code-mcp-server-selector/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,641 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.01641
Opus 5 $0.00018 $0.00821
Sonnet 5 $0.00007 $0.00328
Haiku 4.5 $0.00004 $0.00164

Measured 5d ago against content hash e7ea1123851c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

release scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/release/SKILL.md · 250 lines

How it starts

The opening of the file, as written. The whole thing — 250 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Release Skill

Complete npm release workflow that handles version bumping, git operations, and GitHub releases in the correct order to trigger automatic npm publishing.

Trigger Words

Use when user says: "release", "publish", "ship it", "create release", "npm publish", "/release"

Critical: Correct Order of Operations

The workflow MUST follow this exact sequence to ensure npm publishing works:

1. Version Bump (all files)
2. Build & Test
3. Git Commit (version changes)
4. Git Tag (annotated)
5. Push Commits to main
6. Push Tag to origin
7. Create GitHub Release (triggers npm publish)
8. Verify npm publication
9. Auto-update global installation

Why Order Matters

  • GitHub Actions trigger: The deploy.yml workflow only runs npm publish when github.ref starts with refs/tags/v
  • Tag must exist on remote: If you create a GitHub release before pushing the tag, it fails
  • Commits must be pushed first: The tag must point to a commit that exists on the remote

Pre-flight Checks

Before starting, verify:

# 1. Clean working directory (or only version-related changes)
git status

# 2. On main branch
git branch --show-current

# 3. GitHub CLI authenticated
gh auth status

# 4. Current versions in sync
echo "package.json: $(node -p "require('./package.json').version")"
echo "CLI source:   $(grep "const VERSION" src/cli/index.ts | grep -oP "'[^']+'" | tr -d "'")"
echo "README:       $(grep -oP 'v[0-9]+\.[0-9]+\.[0-9]+' README.md | head -1)"
echo "docs/index:   $(grep -oP '"softwareVersion": "[^"]+"' docs/index.html | grep -oP '[0-9]+\.[0-9]+\.[0-9]+')"

Version Locations

ALL of these MUST be updated to the same version:

File Line Pattern
package.json 3 "version": "X.Y.Z"
src/cli/index.ts 18 const VERSION = 'X.Y.Z';
README.md 12 > **vX.Y.Z**:
docs/index.html 45 "softwareVersion": "X.Y.Z"

Complete Workflow

Step 1: Determine Version

Read the full file on GitHub · 250 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 250 lines · 36 tokens per session scan A e7ea1123851c

Subscribe to this mod's changes

release is a skill published in the GitHub repository henkisdabro/Claude-Code-MCP-Server-Selector (8 stars, last pushed 29d ago), licensed MIT. It adds 36 tokens to every session and 1,641 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

write-release-notes

Generate engaging, high-energy release notes for a given version tag. Fetches the release from GitHub, retrieves every linked PR's title and description, then synthesizes all changes into a polished, user-facing release note with an enthusiastic tone. Use when the user asks to write, generate, or create release notes…

tailcallhq/forgecode · 105 tokens

release

Cut a new shellshare release: pick the right semver version, run make release, watch CI, and write the narrative GitHub release notes. Use this whenever the user wants to release, ship a new version, cut a release, tag a release, bump the version, or publish — even if they just say "release this" or "ship it". The…

vitorbaptista/shellshare · 120 tokens

release

Cut a versioned release of harness-mini — bump VERSION, roll the CHANGELOG, tag, and publish a GitHub release. Use when shipping a new version. Wraps bin/harness.sh release; covers the human-judgment steps (semver choice, changelog curation) the script can't make.

harness-mini/harness-mini · 66 tokens

npm-release

Guide for setting up automated npm package releases via GitHub Actions using Trusted Publishing (OIDC). Use when creating release workflows, publishing to npm, or troubleshooting CI/CD publish failures.

OzzyCzech/dotfiles · 39 tokens

gitlab-cli

Reference guide for GitLab CLI (glab) commands. Use when running glab commands for issues, merge requests, pipelines, releases, or CI/CD operations, or when the user asks about GitLab CLI syntax.

OzzyCzech/dotfiles · 48 tokens

release-announcement

Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.

paperclipai/paperclip · 42 tokens