Help us improve
Share bugs, ideas, or general feedback.
From release-flow
CHANGELOG エントリ追加・バージョン計算。「CHANGELOG」「変更履歴」「changelog add」「version bump」「バージョン」「バージョンアップ」などのキーワードで自動適用。
npx claudepluginhub no-problem-dev/claude-code-plugins --plugin release-flowHow this skill is triggered — by the user, by Claude, or both
Slash command
/release-flow:changelog-manageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
CHANGELOG エントリの追加とセマンティックバージョニングに基づくバージョン計算。
Maintains a changelog in Keep a Changelog format: categorizes entries, manages Unreleased section, promotes to versioned releases, and converts free-form changelogs.
Generates changelog entries following Keep a Changelog format by reviewing Git history, classifying changes into Added, Changed, Deprecated, Removed, Fixed, Security categories with user-focused wording.
Generates CHANGELOG.md files in Keep a Changelog format with templates for Added, Changed, Deprecated, Removed, Fixed, and Security sections. Includes guidelines and examples for version history.
Share bugs, ideas, or general feedback.
CHANGELOG エントリの追加とセマンティックバージョニングに基づくバージョン計算。
CHANGELOG の「未リリース」セクションに変更エントリを追加する。
| カテゴリ | 英語 | 説明 |
|---|---|---|
| 追加 | Added | 新機能 |
| 変更 | Changed | 既存機能の変更 |
| 非推奨 | Deprecated | 将来削除予定の機能 |
| 削除 | Removed | 削除された機能 |
| 修正 | Fixed | バグ修正 |
| セキュリティ | Security | セキュリティ関連 |
説明には以下を含めることを推奨:
**Backend**:, **iOS**:, **API**:### 追加
- **API**: POST /api/v1/users エンドポイントを追加
- **iOS**: ダークモード対応(設定画面にトグルを追加)
### 修正
- **Backend**: トークン期限切れ時に適切なエラーメッセージを返すように修正
現在のバージョンから次のバージョンを計算する。
| 変更内容 | タイプ | 例 |
|---|---|---|
| バグ修正のみ | patch | 1.2.3 → 1.2.4 |
| 新機能追加(後方互換) | minor | 1.2.3 → 1.3.0 |
| 破壊的変更 | major | 1.2.3 → 2.0.0 |
git tag --sort=-v:refname | head -1
または CHANGELOG.md から最新バージョンを抽出