version-bump

仓库创建 2025年9月1日最近提交 3 天前SkillHot 收录 20 天前
▸ 精选理由

把复杂的发版细节流水线化,减少人为出错与重复劳动。

▸ 风险提示

会执行推送/发布等高权限操作,需谨慎授权。

这个 Skill 做什么

自动化处理 Claude Code 插件的语义化版本、构建校验、打 tag 与发布流程。

把 Claude Code 插件的语义化版本号、package.json/marketplace.json/plugin.json 等清单、git tag、GitHub Release 和 changelog 流程自动化处理。需要发布新版本、做构建校验和打 tag 时用。会做版本判断、构建验证和变更日志生成,但最终的 npm 发布留给人工确认以保证安全。

▸ 展开 SKILL.md 英文原文

Automated semantic versioning and release workflow for Claude Code plugins. Handles version increments across package.json, marketplace.json, plugin.json manifests, build verification, git tagging, GitHub releases, and changelog generation. NPM publishing (so `npx claude-mem@X.Y.Z` resolves) is handed off to the human maintainer, who raised npm security.

开发编程发布流程语义化版本ChangelogClaude Code
8.9w
Stars
7.7k
Forks
21
仓库内 Skill
+2.5k
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/thedotmack/claude-mem/main/plugin/skills/version-bump/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/thedotmack/claude-mem/main/plugin/skills/version-bump/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Version Bump & Release Workflow

**IMPORTANT:** Plan and write detailed release notes before starting.

**CRITICAL:** Commit EVERYTHING (including build artifacts). At the end of this workflow, NOTHING should be left uncommitted or unpushed. Run `git status` at the end to verify.

## Preparation

1.  **Analyze**: Determine if the change is **PATCH** (bug fixes), **MINOR** (features), or **MAJOR** (breaking).
2.  **Environment**: Identify repository owner/name from `git remote -v`.
3.  **Paths — every file that carries the version string**:
    - `package.json` — **the npm/npx-published version** (`npx claude-mem@X.Y.Z` resolves from this)
    - `plugin/package.json` — bundled plugin runtim
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有