ワンクリックで
release-notes
Updates the changelog in both UpdateChangesNotification.kt and plugin.xml based on the current branch's changes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Updates the changelog in both UpdateChangesNotification.kt and plugin.xml based on the current branch's changes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | release-notes |
| description | Updates the changelog in both UpdateChangesNotification.kt and plugin.xml based on the current branch's changes |
This Skill helps you update the changelog in both UpdateChangesNotification.kt and plugin.xml based on the current branch's changes.
Get the current branch name using git branch --show-current
Get the commit history for the current branch using git log --oneline origin/dev..HEAD (or git log --oneline dev..HEAD if dev is local)
git log --oneline -10 to see recent commits if the above doesn't workAnalyze the commits to understand what changes were made. Look for:
Format the changelog entries following the existing pattern:
<li> tags for each bullet pointUpdate the files:
cloudContent, gatewayContent, nonCloudContent) with the new changelog entries<change-notes> section with the same changelog entriesFollow the existing structure:
Verify the changes:
<li><b>New Feature Name</b>
<ul>
<li>Description of the new feature.</li>
</ul>
</li>
<li><b>Fixes and Improvements</b>
<ul>
<li>Fixed bug where something was broken.</li>
<li>Improved something to work better.</li>
<li>Added new functionality for X.</li>
</ul>
</li>
getCurrentSweepPluginVersion()git log origin/dev..HEAD returns nothing, you might be on the dev branch. Use git log --oneline -10 to see recent commits instead.