Back to list
richardgill

add-changeset

by richardgill

A CLI for generating and applying patches to git repositories

11🍴 0📅 Jan 23, 2026

SKILL.md


name: add-changeset description: Create a changeset file for versioning and changelog generation. Use when the user asks to add a changeset, bump version, or prepare a release.

Add Changeset

First Todo list item: Find the code in this PR to get context.

Instructions

  1. If the user does not specify one of patch, minor, or major, use AskUserQuestion to prompt them:
    • patch: Bug fixes, small changes (backwards compatible)
    • minor: New features (backwards compatible)
    • major: Breaking changes

Only prompt if they do not provide it

  1. Create a changeset file in .changeset/ directory with a descriptive name based on the feature or change (e.g., add-dark-mode.md, fix-login-bug.md, rename-config-fields.md)

  2. Add a todo at the end to verify the changeset with bun run changeset status

Example Changeset

File: .changeset/add-export-feature.md

---
"patchy-cli": patch
---

Add CSV export functionality for usage metrics

Changeset Format

---
"package-name": patch|minor|major
---

Description of the change (used in CHANGELOG)

Naming Convention

Name changeset files descriptively based on the change:

  • add-dark-mode.md (new feature)
  • fix-auth-timeout.md (bug fix)
  • rename-config-fields.md (refactor)
  • breaking-api-v2.md (breaking change)

Avoid random/generated filenames.

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon