Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

changelog-management变更日志管理

Agent Skill

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

总安装

12,796

周安装

644

GitHub Stars

239

下载量

4,979
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:changelog-management(变更日志管理)
来源仓库:https://github.com/sharex/xerahs
仓库路径:skills/changelog-management
安装命令:
npx skills add https://github.com/sharex/xerahs --skill 'Changelog Management'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sharex/xerahs --skill 'Changelog Management'

简介

changelog-management 提供 PowerShell 脚本辅助生成变更日志草稿,按提交分组归类。

  • 适用于 Windows 环境下的自动化发布流水线集成。
  • 支持从指定 tag 回溯或预览输出,避免误写正式文件。
  • 需配合 git 与 PowerShell 执行,跨平台兼容性有限。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Automation Script (Recommended)

Use the helper script to generate a draft section from commits since the last tag, grouped into changelog categories.

Script path:

.ai/skills/update-changelog/scripts/update-changelog.ps1

Preview only (prints generated markdown):

powershell -NoProfile -ExecutionPolicy Bypass -File .ai/skills/update-changelog/scripts/update-changelog.ps1

Generate draft from an explicit tag/version and save to a file:

powershell -NoProfile -ExecutionPolicy Bypass -File .ai/skills/update-changelog/scripts/update-changelog.ps1 -FromTag v0.18.9 -Version 0.19.0 -OutputPath build/changelog-draft.md

Apply directly to docs/CHANGELOG.md:

powershell -NoProfile -ExecutionPolicy Bypass -File .ai/skills/update-changelog/scripts/update-changelog.ps1 -FromTag v0.18.9 -Version 0.19.0 -Apply

Notes:

  • -Version defaults to root Directory.Build.props.
  • -FromTag defaults to git describe --tags --abbrev=0.
  • The script upserts ## vX.Y.Z (replaces existing section for that version or inserts after ## Unreleased).
  • Keep manual review for consolidation quality and contributor attribution rules.

Version Grouping Strategy

Git Tag-Based Consolidation

  • CRITICAL: Check git tag -l to identify the last released version tag.
  • All commits after the last git tag must be consolidated into a single heading for the next minor version.

- Example: If the last tag is v0.15.5, then ALL commits after that tag (including any changelog sections like v0.15.6, v0.15.7, v0.16.0, v0.16.1) must be merged into v0.16.0.

  • Never create multiple version headings between git tags. Only one version heading should exist between any two tags.

Minor Version Breakdowns

  • Always break changes down into minor versions (e.g., v0.8.0, v0.9.0, v0.10.0) even if Directory.Build.props or git tags do not explicitly show them.
  • Analyze git log and Directory.Build.props history to identify implicit boundaries where version bumps occurred or were implied.

Consolidation Rules

  • Patch Versions: Consolidate patch versions (e.g., v0.8.x) into the next significant minor version (e.g., v0.9.0) unless the patch version was a major standalone release.

- Example: Items from v0.8.1, v0.8.2, v0.8.3 should be merged and listed under v0.9.0. - Retain original context if needed (e.g., "Feature:... (v0.8.1)").

  • Pre-Release Fixes: Move post-release fixes from previous versions into the next minor version.

- Example: Fixes made *after* the v0.7.7 tag but historically listed under the v0.7.7 header should be moved to v0.8.0.

Commit Handling

Specific Commit Assignment

  • Respect specific user requests to assign certain commits to specific versions.
  • Example: "List commit 298457a under v0.11.0."
  • Always verify the commit hash and subject before assignment.

Attribution

  • External Contributors: Attribute Pull Requests from external contributors by including the PR number and their username.

- Format: (#PR_NUMBER, @username) - Example: (#77, @Hexeption)

  • Maintainer Merges: Exclude merge commits from the main maintainer (e.g., McoreD) from having explicit attribution unless they contain significant unique work not covered by other commits. The focus is on crediting other users.

Categorization

Group changes within each version using standard categories:

  • Feature: New functionality.
  • Fix: Bug fixes.
  • Refactor: Code improvements without external behavior change.
  • Build: Build system, dependencies, and packaging.
  • Core: Core foundation changes.
  • Infrastructure: Repo, git, or workflow changes.

Entry Consolidation to Reduce Line Count

CRITICAL: Consolidate related commits into single entries to keep the changelog concise and readable.

Guidelines:

  • Group by Component and Purpose: Combine multiple commits that affect the same component and serve the same purpose.
  • Preserve All Commit Hashes: When consolidating, include all relevant commit hashes in a single line.
  • Target Reduction: Aim for 30-50% line reduction by consolidating related work.

Examples:

Before (verbose):

- **Media Explorer**: Add `IUploaderExplorer` interface `(9deedf9)`
- **Media Explorer**: Implement S3 file browser `(9deedf9)`
- **Media Explorer**: Implement Imgur album browser `(9deedf9)`
- **Media Explorer**: Add navigation, breadcrumbs, search, filter `(9deedf9)`
- **Media Explorer**: Add bandwidth savings banner `(e374160)`

After (consolidated):

- **Media Explorer**: Implement provider file browsing with S3 and Imgur support, including navigation, search, filtering, and CDN thumbnail optimization `(9deedf9, e374160)`

Before (mobile features):

- **Mobile**: Add adaptive mobile theming infrastructure `(4b79ddb)`
- **Mobile**: Refactor mobile views for adaptive native styling `(a7cfb22)`
- **Mobile**: Align mobile heads with native theming defaults `(1e5f9eb)`
- **Mobile**: Complete sprint 5 mobile theming polish and docs `(30bbe98)`
- **Mobile**: Add mobile upload queue and picker `(68d97d9)`
- **Mobile**: Add mobile upload history screens `(52d6ad2)`

After (consolidated):

- **Mobile**: Add adaptive theming infrastructure with native styling polish `(4b79ddb, a7cfb22, 1e5f9eb, 30bbe98)`
- **Mobile**: Add upload queue, picker, and history screens `(68d97d9, 52d6ad2)`

Before (fixes):

- **Scrolling Capture**: Always auto-scroll to top `(1fa45f2)`
- **Scrolling Capture**: Apply workflow settings and refresh hotkeys `(971219c)`
- **Scrolling Capture**: Use current scroll position for detection `(8ac2c8b)`

After (consolidated):

- **Scrolling Capture**: Improve auto-scroll behavior and workflow settings integration `(1fa45f2, 971219c, 8ac2c8b)`

When NOT to Consolidate:

  • Commits from different components (e.g., don't merge "Mobile" with "Linux Capture")
  • Commits with external contributor attribution (keep separate for visibility)
  • Significant standalone features that deserve their own entry

Format

Follow the Keep a Changelog format with Semantic Versioning.

## vX.Y.Z

### Features
- **Component**: Description `(short-hash)`
- **Component**: Description `(short-hash, short-hash)`

### Fixes
- Description `(short-hash)`

Workflow

Step-by-Step Process

  1. Identify Last Git Tag git tag -l | Sort-Object -Descending | Select-Object -First 1 This determines the boundary for version consolidation.
  2. Get Commits Since Last Tag git log v0.X.Y..HEAD --oneline --no-decorate Analyze all commits that need to be documented.
  3. Check Current Version in Directory.Build.props Read the <Version> property to determine the target version number.
  4. Consolidate Version Headings

- Remove ALL version headings between the last git tag and current HEAD - Create a SINGLE heading for the next minor version (from Directory.Build.props) - Move all commits into this single version heading

  1. Categorize Commits

- Group commits into: Features, Fixes, Refactor, Build, Documentation - Within each category, group by component (e.g., Mobile, Linux Capture, Editor)

  1. Consolidate Related Entries

- Identify commits affecting the same component with similar purpose - Merge them into single, comprehensive entries - Preserve all commit hashes - Aim for 30-50% reduction in line count

  1. Format and Verify

- Ensure proper markdown formatting - Verify all commit hashes are present - Check that external contributor attributions are preserved - Confirm adherence to Keep a Changelog format

Example Command Sequence

# Get last tag
$lastTag = git tag -l | Sort-Object -Descending | Select-Object -First 1

# Get commits since tag
git log $lastTag..HEAD --oneline --no-decorate

# Check current version
$version = Select-String -Path "Directory.Build.props" -Pattern '<Version>(.*)</Version>' | ForEach-Object { $_.Matches.Groups[1].Value }

# Update CHANGELOG.md with consolidated entries

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.72%
按下载量换算1,928

Claude

29.59%
按下载量换算1,473

Cursor

18.44%
按下载量换算918

Gemini CLI

8.54%
按下载量换算425

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills