Install
openclaw skills install repo-release-notesDraft release notes and changelog entries from a local Git repository. Use when the user asks to summarize commits, compare refs or tags, prepare release notes for a version, or turn repository history into user-facing change summaries.
openclaw skills install repo-release-notesUse this skill to produce release notes from local Git history. Prefer read-only Git commands and avoid network calls unless the user explicitly asks for remote release publishing.
Establish the release range.
HEAD.Inspect the repository with read-only commands.
git status --short to understand whether local changes exist.git tag --sort=-creatordate or git tag --sort=-v:refname to find recent tags.git log --oneline --decorate <range> for commit scope.git diff --stat <range> and, when needed, git log --name-only --format=%H%x09%s <range> to identify affected areas.Decide whether to include uncommitted changes.
Draft release notes.
references/release-note-style.md before writing the final answer.Return a concise release note draft with: