Tested tool guide
Tested browser tools
Checked August 16, 2026
What PR Description Generator does, with a checked example
This tool builds a pull request description in the four-section shape reviewers expect: a summary, a bulleted list of changes, how the change was tested, and screenshots. You fill in each field and it returns a ready-to-paste Markdown block with consistent heading levels and formatting. The thing most people get wrong is expecting the tool to write the content for them. It organizes and formats what you enter; it does not read your branch, diff, or commit history, and the description contains only your own words. The value is structure and completeness, not generation.
Worked example
A concrete input and expected output from the current implementation.
Input
Title: Add dark mode toggle
Summary: Adds a theme toggle to the header. The choice persists in localStorage and the saved theme is applied on page load.
Changes (one per line):
- Add the toggle button to the header
- Persist the choice in localStorage
- Apply the saved theme on page load
Testing: Verified the toggle in Chrome and Safari, reloaded the page to confirm persistence, and tabbed through the header to check focus.
Screenshots: header-light.png (Header in light mode), header-dark.png (Header in dark mode)
->
Expected output
## Summary
Adds a theme toggle to the header. The choice persists in localStorage and the saved theme is applied on page load.
## Changes
- Add the toggle button to the header
- Persist the choice in localStorage
- Apply the saved theme on page load
## Testing
Verified the toggle in Chrome and Safari, reloaded the page to confirm persistence, and tabbed through the header to check focus.
## Screenshots


Every line of the output traces to a line of input. The tool wraps the entered content in its template headings, converts each changes line into a hyphen bullet, and turns each screenshot file name and caption into an image link.