원클릭으로
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.