Claude Code Plugins

Community-maintained marketplace

Feedback

Generates clean, human-readable changelogs and release notes from git commits and file changes. Use when preparing for a release or summarizing recent work.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name change-writer
description Generates clean, human-readable changelogs and release notes from git commits and file changes. Use when preparing for a release or summarizing recent work.

Change Writer Skill

This skill analyzes recent changes in the repository to generate structured changelogs. It categorizes changes into Features, Fixes, and Refactors.

Instructions

  1. Analyze History: Run the git log command to see recent changes.
  2. Identify Impact: Look at changed files to understand the scope (e.g., UI, logic, infrastructure).
  3. Draft Notes: Group changes by type (Feat, Fix, Chore, Docs).
  4. Format: Output in Markdown format compatible with CHANGELOG.md or GitHub Releases.

Categories

  • ๐Ÿš€ Features: New functionality.
  • ๐Ÿ› Bug Fixes: Resolving issues.
  • โšก Performance: Speed optimizations.
  • ๐Ÿงน Chores: Internal tasks, dependency updates.
  • ๐Ÿ“ Documentation: Changes to docs.

Example Output

## [1.2.0] - 2025-12-27

### ๐Ÿš€ Features
- Added `Zustand` store for global theme management.
- Implemented `api-expert` skill for better backend integration.

### ๐Ÿ› Bug Fixes
- Fixed keyboard avoiding view overlap on Android.
- Resolved race condition in auth flow.

### ๐Ÿงน Chores
- Updated `expo` to SDK 54.
- Cleaned up unused assets.

Run scripts/get-changes.sh to see a summary of unstaged changes.