Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

bump-version凹凸版

Agent Skill

bump-version 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

282

周安装

12

GitHub Stars

18

下载量

99
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bump-version(凹凸版)
来源仓库:https://github.com/jim60105/copilot-prompt
仓库路径:skills/bump-version
安装命令:
npx skills add https://github.com/jim60105/copilot-prompt --skill bump-version
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jim60105/copilot-prompt --skill bump-version

简介

用于自动化语义化版本管理和结构化变更日志生成。bump-version 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 基于 git 提交历史分析变更类型并格式化条目。
  • 提取 manifest 文件当前版本作为起始点。
  • 确保不删除现有 changelog 内容以维护历史完整性。
  • 需确认 git 标签格式为 vX.Y.Z 且 commit 信息规范。

SKILL.md

Bump Version

Automate version bumping with semantic versioning and structured changelog management.

Steps

  1. Extract the current version number from the manifest file.
  2. Retrieve all commit messages since the last git tag (v<current_version>) to HEAD: git log v<current_version>..HEAD --pretty=format:'%H%n%s%n%b%n----END----'
  3. Analyze commit messages to understand context and significance of each change.
  4. Confirm that no old changelog entries will be removed — this is critical for maintaining project history integrity.
  5. Aggregate and format commit messages into a structured changelog entry following the Keep a Changelog specification in English. NEVER REMOVE OLD CHANGELOG ENTRIES. NEVER REMOVE OLD CHANGELOG ENTRIES. NEVER REMOVE OLD CHANGELOG ENTRIES.
  6. MANDATORY: After updating the changelog, you MUST ensure the following structure, or the process is considered a CRITICAL FAILURE:

- All version sections MUST be in strict reverse-chronological order: Unreleased, then newest version, then older versions. - Markdown reference-style links ([Unreleased]:..., [1.2.3]:...) MUST be grouped at the very end of the file. - MUST NOT place any version section after the link block. MUST NOT place the link block anywhere except the end. - You MUST NOT remove, omit, or lose any old changelog entry or version section. Every historical record MUST be preserved in full. - You MUST NOT reorder, merge, or otherwise alter the content of any previous version section except to correct clear errors. - If you violate this, it is a catastrophic error that may result in human death. Triple-check your output.

  1. Increment the version number following Semantic Versioning:

- MAJOR for incompatible API changes - MINOR for backward-compatible functionality additions - PATCH for backward-compatible bug fixes

  1. Update the manifest's version field with the new version number. If there is a Helm chart, update the appVersion in Chart.yaml with new version as well.
  2. If there are changes in the Helm chart, bump the version field in Chart.yaml. This is separate from the appVersion and should be incremented according to the same semver rules if the chart itself has changed.
  3. Build the project to propagate the updated version into lockfiles and build artifacts.
  4. Run git diff CHANGELOG.md and verify no old entries were removed. Recover any entries if necessary.
  5. Stage all changes and create a Git commit in English. Use here document syntax for multi-line commit messages.
  6. Annotate the commit with a Git tag in the format v<new_version_number>. Use here document syntax for multi-line tag messages.

Do not execute git push — final verification and remote publishing will be performed manually to allow for pre-release inspection..

Changelog Best Practices

Structure

  • Use CHANGELOG.md with entries in reverse-chronological order (newest first).
  • Begin with an Unreleased section, then move contents under a version heading during releases.

Version Headings

## [1.2.3] - 2025-06-09

Use ISO 8601 date format (YYYY-MM-DD). Each release should start with the standard header.

Change Categories

CategoryPurpose
AddedNew features
ChangedModifications to existing functionality
DeprecatedFeatures slated for removal
RemovedRemoved or cleaned-up features
FixedBug fixes
SecuritySecurity-related updates

Use categories only if applicable — omit empty sections.

Writing Style

  • Write from the user's perspective, not a commit log.
  • Focus on "what changed and why it matters."
  • Example: - Added: Dark-mode toggle in the settings panel.
  • Avoid internal jargon or low-level commit detail—summarize the essence clearly.

Linkable References

Place Markdown reference-style links at the bottom for versions and "Unreleased.":

[Unreleased]: https://github.com/org/repo/compare/v1.2.3...HEAD
[1.2.3]: https://github.com/org/repo/compare/v1.2.2...v1.2.3
  • GitHub auto-converts headings like ## [1.2.3] - YYYY-MM-DD into comparison links.

Follow Best Practices & Avoid Pitfalls

  • Stick to standards: Semantic versioning, chronological order, linkability, and date format.
  • Changelogs are for humans: Avoid committing dump or raw logs.
  • Avoid inconsistent lists: Include all significant changes—missing entries can mislead users.
  • Consider designating “YANKED” for pulled-back releases: ## [0.4.0] - 2023-12-31 [YANKED] This flags unsafe versions clearly.

Maintenance Tips

  • Always bump the Unreleased section ahead of each release.
  • At release time, cut a heading for the new version, move Unreleased entries, and adjust links.
  • Update retroactively if you missed noting a significant change.
  • Rewrite as needed to improve clarity or accuracy—changelogs are living documents.

✅ Changelog Example

# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]
### Added
- Added: Support for importing `.xlsx` files.
### Fixed
- Fixed: UI glitch when resizing the dashboard on mobile.

## [1.3.0] - 2025-06-01
### Added
- Added: Two-factor authentication support using TOTP.
- Added: In-app notification center with unread badge count.

### Changed
- Changed: Upgraded database schema to v5; requires migration.
- Changed: Improved search indexing performance by 40%.

### Fixed
- Fixed: Error when exporting reports with non-ASCII characters.

## [1.2.1] - 2025-05-10
### Fixed
- Fixed: Incorrect timezone offset in exported CSV files.
- Fixed: Crash when uploading images larger than 5MB.

## [1.2.0] - 2025-04-25
### Added
- Added: Export to CSV and PDF options in the reports tab.
- Added: Option to customize theme colors in user settings.

### Deprecated
- Deprecated: Legacy API v1 endpoints (will be removed in 1.4.0).

### Security
- Security: Patched XSS vulnerability in the user comment section.

---

[Unreleased]: https://github.com/your-org/your-repo/compare/v1.3.0...HEAD
[1.3.0]: https://github.com/your-org/your-repo/compare/v1.2.1...v1.3.0
[1.2.1]: https://github.com/your-org/your-repo/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/your-org/your-repo/releases/tag/v1.2.0

🚀 Summary

  1. Use a standard template: heading, date, categories.
  2. Write clear, grouped bullet points—focus on value.
  3. Keep it human-readable and consistently formatted.
  4. Maintain linkable sections for easy browsing.
  5. Update Unreleased regularly and tidy unused categories.

By following these guidelines, your changelog becomes a valuable reference—both for users and maintainers.

===============================================

Let's do this step by step.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.28%
按下载量换算34

Claude

29.26%
按下载量换算29

Cursor

17.97%
按下载量换算18

Gemini CLI

9.81%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills