bump-publish

bump-publish is a skill for Claude Code from jenkinsm13/resolve-mcp. It costs 36 tokens per session (502 once invoked), scanned A, original, MIT.

A release workflow for increasing the version of the resolve-mcp Python package and publishing it to PyPI, the main public package index for Python. It can update the package files, build the release, upload it, and create a Git tag.

In plain words
What is it for?
Use it for patch, minor, or major releases of the package, including building the distribution, uploading it with a PyPI token, and tagging the source code.
Why use it?
It groups the version, build, publishing, and Git release steps into one documented process. A dry-run option lets you preview the version change without editing or publishing.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the resolve-mcp plugin — 16 skills, 25 agents, 2 hooks, 1 MCP server shipped together

Good fit Use it for patch, minor, or major releases of the package, including building the distribution, uploading it with a PyPI token, and tagging the source code.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jenkinsm13/resolve-mcp/bump-publish
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.

Any agent
npx skills add jenkinsm13/resolve-mcp --skill bump-publish
Clone the repo
git clone --depth 1 https://github.com/jenkinsm13/resolve-mcp

Made for: Claude Code.

Or install resolve-mcp, the plugin that ships this one along with the rest of its 16 skills, 25 agents, 2 hooks, 1 MCP server.

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 bump-publish

README.md
[![agentmods](https://agentmods.dev/badge/skills/jenkinsm13/resolve-mcp/bump-publish/github.svg)](https://agentmods.dev/skills/jenkinsm13/resolve-mcp/bump-publish)
Your own site
<a href="https://agentmods.dev/skills/jenkinsm13/resolve-mcp/bump-publish"><img src="https://agentmods.dev/badge/skills/jenkinsm13/resolve-mcp/bump-publish/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bump-publish

Your own site · 80×15
<a href="https://agentmods.dev/skills/jenkinsm13/resolve-mcp/bump-publish"><img src="https://agentmods.dev/badge/skills/jenkinsm13/resolve-mcp/bump-publish.svg" alt="Reviewed on agentmods" width="80" 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 502 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00502
Opus 5 $0.00018 $0.00251
Sonnet 5 $0.00007 $0.00100
Haiku 4.5 $0.00004 $0.00050

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

Security

Grade A, and why

bump-publish 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 10d 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.

skills/bump-publish/SKILL.md · 78 lines

What it actually says

Bump & Publish

Bump the resolve-mcp version, build, and publish to PyPI.

Arguments

  • <level> — one of patch (default), minor, or major
  • --dry-run — show what would happen without making changes

Procedure

1. Read current version

grep '^version' pyproject.toml

2. Calculate new version

Parse the current version = "X.Y.Z" line.

  • patch → X.Y.(Z+1)
  • minor → X.(Y+1).0
  • major → (X+1).0.0

If --dry-run was passed, print the old → new version and stop here.

3. Update pyproject.toml

Use the Edit tool to replace the version line:

old: version = "X.Y.Z"
new: version = "A.B.C"

IMPORTANT: This is the ONE case where editing the version field is allowed. The PreToolUse hook will block generic version edits — this skill has explicit permission because the user invoked /bump-publish intentionally.

4. Update init.py docstring (if version is mentioned)

Check if resolve_mcp/__init__.py mentions the old version and update it too.

5. Build and publish

uv build && uv publish --token $PYPI_TOKEN

If PYPI_TOKEN is not set, remind the user to set it:

export PYPI_TOKEN=pypi-...

6. Git commit and tag

git add pyproject.toml resolve_mcp/__init__.py
git commit -m "release: v{NEW_VERSION}"
git tag "v{NEW_VERSION}"
git push origin main --tags

7. Confirm

Print a summary:

✅ resolve-mcp v{OLD} → v{NEW}
   Published to PyPI: https://pypi.org/project/resolve-mcp/{NEW}/
   Tagged: v{NEW}
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. 10d ago First seen · 78 lines · 36 tokens per session scan A 86309193a71e

Subscribe to this mod's changes

bump-publish is a skill published in the GitHub repository jenkinsm13/resolve-mcp (6 stars, last pushed 4mo ago), licensed MIT. It adds 36 tokens to every session and 502 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.