bump — for Claude Code agents-reverse-engineer, community, for Claude Code, ide skills, agents-md, claude-code, code-assistant, codebase, developer-tools

v1.0.0

Über diesen Skill

Geeigneter Einsatz: Ideal for AI agents that need bump the project version, update documentation, create a git tag, and publish a github release. Lokalisierte Zusammenfassung: Reverse engineer your codebase to let your agents work efficiently Bump the project version, update documentation, create a git tag, and publish a GitHub release. It covers agents, agents-md, ai workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

Funktionen

Bump the project version, update documentation, create a git tag, and publish a GitHub release.
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

# Core Topics

GeoloeG-IsT GeoloeG-IsT
[13]
[5]
Updated: 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 teams, 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
49
Canonical Locale
en
Detected Body Locale
en

Geeigneter Einsatz: Ideal for AI agents that need bump the project version, update documentation, create a git tag, and publish a github release. Lokalisierte Zusammenfassung: Reverse engineer your codebase to let your agents work efficiently Bump the project version, update documentation, create a git tag, and publish a GitHub release. It covers agents, agents-md, ai workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

Warum diese Fähigkeit verwenden

Empfehlung: bump helps agents bump the project version, update documentation, create a git tag, and publish a github release. Reverse engineer your codebase to let your agents work efficiently Bump the project version

Am besten geeignet für

Geeigneter Einsatz: Ideal for AI agents that need bump the project version, update documentation, create a git tag, and publish a github release.

Handlungsfähige Anwendungsfälle for bump

Anwendungsfall: Applying Bump the project version, update documentation, create a git tag, and publish a GitHub release
Anwendungsfall: Applying Version argument is REQUIRED (e.g., $bump 0.4.0)
Anwendungsfall: Applying Should be on main branch (warn if not, but proceed)

! Sicherheit & Einschränkungen

  • Einschraenkung: gh CLI must be authenticated
  • Einschraenkung: Version must be valid semver (e.g., 0.4.0, 1.0.0-beta.1)
  • Einschraenkung: node -p "require('./package.json').version"

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.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is bump?

Geeigneter Einsatz: Ideal for AI agents that need bump the project version, update documentation, create a git tag, and publish a github release. Lokalisierte Zusammenfassung: Reverse engineer your codebase to let your agents work efficiently Bump the project version, update documentation, create a git tag, and publish a GitHub release. It covers agents, agents-md, ai workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

How do I install bump?

Run the command: npx killer-skills add GeoloeG-IsT/agents-reverse-engineer. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for bump?

Key use cases include: Anwendungsfall: Applying Bump the project version, update documentation, create a git tag, and publish a GitHub release, Anwendungsfall: Applying Version argument is REQUIRED (e.g., $bump 0.4.0), Anwendungsfall: Applying Should be on main branch (warn if not, but proceed).

Which IDEs are compatible with bump?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for bump?

Einschraenkung: gh CLI must be authenticated. Einschraenkung: Version must be valid semver (e.g., 0.4.0, 1.0.0-beta.1). Einschraenkung: node -p "require('./package.json').version".

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add GeoloeG-IsT/agents-reverse-engineer. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use bump immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

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

Install bump, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

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>

Verwandte Fähigkeiten

Looking for an alternative to bump or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Entwickler