Sprint Review Changelog Generator is a automation Claude Skill built by Rhesis AI. Best for: Engineering managers and developers automatically summarize team contributions for sprint reviews without manual PR parsing..
Generate markdown sprint review changelogs from GitHub PRs grouped by Features and Fixes.
Generate a markdown changelog from GitHub PRs for sprint review meetings.
gh api user --jq .loginBoth can be overridden if the user explicitly provides a different author or date.
gh api user --jq .login
gh pr list --author <username> --state all --search "created:>=<date>" --limit 100 \
--json number,title,state,createdAt,body,url \
| jq -r '.[] | "\(.number)|\(.title)|\(.state)|\(.createdAt)|\(.url)"'
Fetch PR bodies for context on what each PR does (use --json body).
Group PRs into two sections:
Consolidate similar PRs under a single description when they share the same goal (e.g. two PRs making different parts of the SDK async-first).
Write the markdown file to docs/changelog-<username>.md using this format:
## PR Changelog -- <username> (<start date> -- <end date>)
### Features
**Short heading**
One-to-two sentence description.
- [#<number> -- <title>](<url>)
- [#<number> -- <title>](<url>) *(open/draft if not merged)*
### Fixes
**Short heading**
One sentence description.
- [#<number> -- <title>](<url>)
### for Features / Fixes#<number> -- <title> as link text/plugin install sprint-review-changelog-generator@rhesis-aiRequires Claude Code CLI.
Engineering managers and developers automatically summarize team contributions for sprint reviews without manual PR parsing.
No reviews yet. Be the first to review this skill.
Rhesis AI
@rhesis-ai