원클릭으로
changes-since-last-release
Summarize all changes in this repository since the most recent release tag.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Summarize all changes in this repository since the most recent release tag.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Stage unstaged changes into one or more atomic git commits with project-compliant commit messages
Stage unstaged working tree changes into one or more atomic commits with git-stage-batch. Use when the user wants Codex to split unstaged edits into a clean commit series with project-compliant commit messages. Do not use for already-staged changes or for generic git help.
Decompose unstaged working-tree changes into narrow concerns, peel them into git-stage-batch batches, rebuild as a fine-grained atomic commit series, or polish an already-built series
Decompose unstaged working-tree changes into a clean commit series by identifying narrow product, workflow, or architectural concerns, peeling them into git-stage-batch batches, rebuilding atomic commits, or polishing an already-built series.
Draft an algorithm-optimized tweet thread announcing the latest release.
Commit the current staged index as one project-compliant git commit. Use when the user has already staged the exact changes they want to commit and wants help inspecting that staged set, drafting a compliant message, and creating the commit. Do not use for splitting or staging unstaged changes.
| name | changes-since-last-release |
| description | Summarize all changes in this repository since the most recent release tag. |
| whenToUse | Use this when the user wants a release summary, changelog draft, or an overview of commits since the latest tagged release. |
| allowed-tools | Bash(git tag --sort=-creatordate), Bash(git describe --tags --abbrev=0), Bash(git log), Bash(git diff --stat), Bash(git shortlog), Bash(git status --short), Bash(rg), Read |
| user-invocable | true |
Your task is to summarize everything that changed since the last release in this repository.
Workflow:
git describe --tags --abbrev=0.<latest-tag>..HEAD.git diff --stat <latest-tag>..HEAD.Output requirements:
Changes since <tag>.git diff --stat.Do not create tags, commits, or release artifacts unless the user explicitly asks.