Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

changelog-writer变更日志编写者

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add zbruhnke/claude-code-starter --skill "changelog-writer"

简介

自动生成项目变更日志的标准格式和内容。

  • 适用于版本发布管理和代码变更追踪场景。
  • 支持 Git 提交历史和版本差异的智能识别。
  • 需人工审核生成内容的准确性和完整性。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • changelog-writer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Changelog Writer

You are maintaining the project's CHANGELOG.md following the Keep a Changelog format.

Quick Start

If changes are specified, add them to the changelog immediately. If not:

I'll help you update the changelog.

Please provide:
1. **What changed**: Describe the changes (or I'll check git diff)
2. **Category**: Added, Changed, Fixed, etc. (or I'll determine from context)

Input Handling

If no specific changes are provided:

  1. Check git diff or recent commits for changes
  2. Identify what was modified
  3. Categorize the changes appropriately
  4. Ask for clarification if the changes are unclear

Never add changelog entries for changes you haven't verified.

Keep a Changelog Format

Categories

Use these categories in this order:

CategoryUse When
AddedNew features, capabilities, or functionality
ChangedChanges to existing functionality
DeprecatedFeatures that will be removed in future versions
RemovedFeatures that were removed
FixedBug fixes
SecuritySecurity-related changes or vulnerability fixes

Structure

# 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- New feature description

### Fixed
- Bug fix description

## [1.0.0] - 2024-01-15

### Added
- Initial release feature

Process

Step 1: Read the Existing Changelog

1. Check if CHANGELOG.md exists
2. If not, create one with the standard header
3. Find the [Unreleased] section
4. Note the existing format and style

Step 2: Understand the Changes

1. Review what was implemented/fixed
2. Identify the appropriate category
3. Write clear, user-facing descriptions
4. Consider the impact from the user's perspective

Step 3: Write the Entry

1. Add to the [Unreleased] section
2. Create the category section if it doesn't exist
3. Keep entries concise but descriptive
4. Use bullet points with dashes (-)

Step 4: Verify

1. Entry is in the correct category
2. Description is clear and accurate
3. Follows the existing style
4. No duplicate entries

Writing Good Entries

Be User-Focused

Write entries from the user's perspective, not implementation details.

BAD:  "Refactored UserService to use dependency injection"
GOOD: "User profile updates are now 50% faster"

BAD:  "Added validateInput() helper function"
GOOD: "Form validation now catches invalid email formats before submission"

Be Specific

BAD:  "Fixed bug"
GOOD: "Fixed issue where login failed after password reset"

BAD:  "Improved performance"
GOOD: "Reduced dashboard load time from 3s to 800ms"

Be Concise

One line per change. If you need more detail, link to docs or issues.

GOOD: "Add dark mode toggle in Settings (#123)"
BAD:  "Add a new toggle button in the Settings page that allows users to switch between light mode and dark mode, which changes the color scheme of the entire application including all components and pages"

Group Related Changes

If multiple changes are part of one feature, group them:

### Added
- User authentication system
  - Login and logout functionality
  - Password reset via email
  - Remember me option

Category Guidelines

Added

New features that didn't exist before.

### Added
- Export reports to PDF format
- Dark mode support
- API rate limiting with configurable thresholds

Changed

Modifications to existing behavior.

### Changed
- Dashboard now loads data lazily for better performance
- Increased default timeout from 30s to 60s
- Updated email templates with new branding

Deprecated

Features that will be removed (warn users).

### Deprecated
- `getUser()` function - use `fetchUser()` instead
- XML export format - will be removed in v3.0

Removed

Features that were removed.

### Removed
- Legacy v1 API endpoints
- Support for Node.js 14

Fixed

Bug fixes.

### Fixed
- Users could not log in with email containing "+" character
- Memory leak when processing large files
- Incorrect calculation in monthly reports

Security

Security fixes and improvements.

### Security
- Patch XSS vulnerability in comment rendering
- Add CSRF protection to all forms
- Upgrade dependencies with known vulnerabilities

Creating a New Changelog

If CHANGELOG.md doesn't exist, create it:

# 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- Initial feature

[Unreleased]: https://github.com/owner/repo/compare/v0.1.0...HEAD

Releasing a Version

When releasing, move [Unreleased] changes to a new version section:

## [Unreleased]

## [1.2.0] - 2024-03-15

### Added
- (items moved from Unreleased)

### Fixed
- (items moved from Unreleased)

Update the comparison links at the bottom:

[Unreleased]: https://github.com/owner/repo/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/owner/repo/compare/v1.1.0...v1.2.0

Anti-Hallucination Rules

Before adding changelog entries:

  1. Verify the change exists - Read the code or commit
  2. Confirm the category - Make sure it's the right type of change
  3. Check for duplicates - Don't add entries that already exist
  4. Use accurate descriptions - Don't exaggerate or understate
NEVER:
✗ Add entries for changes that weren't made
✗ Guess at what a change does
✗ Duplicate existing entries
✗ Add internal refactoring unless it has user impact

Output Format

When Adding Entries

## Changelog Updated

Added to `CHANGELOG.md` under [Unreleased]:

### Added
- Documentation-writer agent for automated documentation generation
- ADR-writer agent for architecture decision records
- Changelog-writer skill for maintaining changelog

### Changed
- Wiggum loop now includes documentation and changelog steps

When Creating New Changelog

## Changelog Created

Created `CHANGELOG.md` with initial structure and entries.

See: CHANGELOG.md

Quality Checklist

Before finishing, verify:

  • Entry is in the correct category
  • Description is clear and user-focused
  • No duplicate entries
  • Follows existing style and format
  • Entry accurately describes the change
  • [Unreleased] section exists and is used

Remember

  • User-focused - Write for people using the software
  • Honest - Don't hide breaking changes or security issues
  • Consistent - Follow the existing format
  • Timely - Add entries when changes are made, not at release time
  • Complete - Include all notable changes, skip trivial ones

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

windsurf

29.71%
按下载量换算22

trae

23.36%
按下载量换算17

OpenCode

18.91%
按下载量换算14

Codex

11.54%
按下载量换算9

Claude Code

8.51%
按下载量换算6

Antigravity

3.52%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills