一键导入
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.