bump — for Claude Code agents-reverse-engineer, community, for Claude Code, ide skills, version management, GitHub release automation, semantic versioning, Keep a Changelog format, automated documentation update, Git commit analysis, Claude Code

v1.0.0

关于此技能

Perfect for DevOps Agents needing automated version management and GitHub release creation. The bump AI agent skill automates version management, updating documentation and creating GitHub releases, helping developers to efficiently manage their codebase and collaborate with their team.

功能特性

Automate version bumping using semantic versioning
Update documentation and create GitHub releases
Extract changelog from Git commits using Keep a Changelog format
Categorize changes into added, changed, fixed, removed, deprecated, and security updates

# 核心主题

GeoloeG-IsT GeoloeG-IsT
[13]
[5]
更新于: 4/1/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
39
Canonical Locale
en
Detected Body Locale
en

Perfect for DevOps Agents needing automated version management and GitHub release creation. The bump AI agent skill automates version management, updating documentation and creating GitHub releases, helping developers to efficiently manage their codebase and collaborate with their team.

核心价值

Empowers agents to automate version bumps, update documentation, and create GitHub releases using semver and git CLI, streamlining the development workflow with features like changelog extraction from git commits and Keep a Changelog format categorization.

适用 Agent 类型

Perfect for DevOps Agents needing automated version management and GitHub release creation.

赋予的主要能力 · bump

Automating version management for Node.js projects
Generating detailed changelogs from git commit history
Creating and publishing GitHub releases with updated documentation

! 使用限制与门槛

  • Requires authenticated gh CLI
  • Version argument is mandatory
  • Proceeds even with uncommitted changes in the working tree

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

bump 是什么?

Perfect for DevOps Agents needing automated version management and GitHub release creation. The bump AI agent skill automates version management, updating documentation and creating GitHub releases, helping developers to efficiently manage their codebase and collaborate with their team.

如何安装 bump?

运行命令:npx killer-skills add GeoloeG-IsT/agents-reverse-engineer。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

bump 适用于哪些场景?

典型场景包括:Automating version management for Node.js projects、Generating detailed changelogs from git commit history、Creating and publishing GitHub releases with updated documentation。

bump 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

bump 有哪些限制?

Requires authenticated gh CLI;Version argument is mandatory;Proceeds even with uncommitted changes in the working tree。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add GeoloeG-IsT/agents-reverse-engineer。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    bump 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

bump

Streamline your development workflow with the bump AI agent skill, automating version management and GitHub releases for efficient collaboration and...

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Bump the project version, update documentation, create a git tag, and publish a GitHub release.

<execution> ## Prerequisites
  • Version argument is REQUIRED (e.g., $bump 0.4.0)
  • Should be on main branch (warn if not, but proceed)
  • gh CLI must be authenticated
  • Dirty working tree is allowed — uncommitted changes will be included in the release commit

Phase 1: Validate

  1. Check version argument:

    • If no version provided, STOP and ask: "Please provide a version (e.g., $bump 0.4.0)"
    • Version must be valid semver (e.g., 0.4.0, 1.0.0-beta.1)
  2. Check git status:

    bash
    1git status --porcelain
    • If there are uncommitted changes, WARN the user but proceed anyway — these changes will be staged and included in the release commit.
  3. Check current branch:

    bash
    1git branch --show-current
    • Warn if not on main branch (but allow to proceed)
  4. Get current version:

    bash
    1node -p "require('./package.json').version"

Phase 2: Extract Changelog from Git Commits

CRITICAL: Do NOT use placeholder text like "Version bump". Extract real changes from git commits.

  1. Get commits since last version tag:

    bash
    1git log v<previous_version>..HEAD --oneline --no-merges
  2. For each meaningful commit, examine changes:

    bash
    1git show --stat <commit_hash> 2git diff v<previous_version>..HEAD -- <key_files>
  3. Categorize changes into Keep a Changelog format:

    • Added: New features, capabilities, or files
    • Changed: Modifications to existing behavior, enhancements, updated defaults
    • Fixed: Bug fixes, error corrections
    • Removed: Removed features or code
    • Deprecated: Features marked for future removal
    • Security: Security-related changes
  4. Write specific, detailed changelog entries:

    • Describe WHAT changed and WHY (from user perspective)
    • Include concrete details (e.g., "timeout increased from 120s to 300s")
    • Reference specific configuration changes, default values, etc.
    • ONLY use "Version bump" if literally nothing changed (empty git diff)

Phase 3: Update Files

3.1 Update package.json

Use the Edit tool to update the version field in package.json:

  • Change "version": "<old>" to "version": "<new>"

3.2 Update CHANGELOG.md

Read CHANGELOG.md and make these changes:

  1. Find the ## [Unreleased] section

  2. If there are entries under [Unreleased]:

    • Insert a new version section after ## [Unreleased]:
      ## [<version>] - <YYYY-MM-DD>
      
    • Move all content from [Unreleased] to the new version section
    • Leave [Unreleased] empty (just the header)
  3. If [Unreleased] is empty:

    • Insert a new version section with the changes extracted from git commits (Phase 2)
    • Use the categorized changelog entries from Phase 2
    • Example:
      ## [<version>] - <YYYY-MM-DD>
      
      ### Added
      - Feature 1 with specific details
      - Feature 2 with configuration changes
      
      ### Changed
      - Specific change with old → new values
      - Configuration update with details
      
  4. Update the version links at the bottom:

    • Update [Unreleased] link: [Unreleased]: https://github.com/GeoloeG-IsT/agents-reverse-engineer/compare/v<version>...HEAD
    • Add new version link after [Unreleased]: [<version>]: https://github.com/GeoloeG-IsT/agents-reverse-engineer/compare/v<previous>...v<version>

3.3 Check README.md (Optional)

Scan README.md for any hardcoded version references that need updating:

  • Badge URLs
  • Installation commands with specific versions
  • Only update if explicitly version-pinned (not @latest)

Phase 4: Commit and Tag

  1. Stage all changes (including any pre-existing dirty files):

    bash
    1git add -A
  2. Create commit:

    bash
    1git commit -m "$(cat <<'EOF' 2chore: release v<version> 3EOF 4)"
  3. Create annotated tag:

    bash
    1git tag -a v<version> -m "Release v<version>"

Phase 5: Push and Release

  1. Push commit and tag:

    bash
    1git push && git push --tags
  2. Create GitHub release: Extract the changelog section for this version and use it as release notes:

    bash
    1gh release create v<version> --title "v<version>" --notes "$(cat <<'EOF' 2<changelog section for this version> 3EOF 4)"

Phase 6: Report

Summarize what was done:

  • Version bumped: <old><new>
  • Files updated: package.json, CHANGELOG.md, (README.md if changed)
  • Git tag: v<version>
  • GitHub release: link to the release

Remind user: The GitHub Actions workflow will automatically publish to npm when the release is created. </execution>

相关技能

寻找 bump 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具