원클릭으로
sprint-review
// Generate a sprint review changelog from GitHub pull requests. Lists PRs by a given author since a given date, groups them into Features and Fixes, and writes a markdown summary.
// Generate a sprint review changelog from GitHub pull requests. Lists PRs by a given author since a given date, groups them into Features and Fixes, and writes a markdown summary.
| name | sprint-review |
| description | Generate a sprint review changelog from GitHub pull requests. Lists PRs by a given author since a given date, groups them into Features and Fixes, and writes a markdown summary. |
| disable-model-invocation | true |
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 textDesign, run, and analyze AI test suites on the Rhesis platform. Use when the user wants to test an AI endpoint or chatbot, create test sets, run evaluations, explore endpoint capabilities, or analyze test results.
Runs Ruff linting and formatting on Python files. Use only before pushing changes (e.g. before git push or creating a PR).