
Validate Pr
- 29 installs
- 3.1k repo stars
- Updated August 5, 2026
- flutter/website
Validates a Flutter site PR by syncing code excerpts, formatting Dart examples, and checking for broken Markdown link references.
About
Runs dash_site commands to refresh code excerpts, format Dart, and check link references when reviewing a Flutter site pull request. A developer uses it to validate site changes before merging a docs PR.
- Refresh code excerpts and format Dart with dash_site
- Check for broken link references and patch them before merge
Validate Pr by the numbers
- 29 all-time installs (skills.sh)
- Ranked #939 of 1,879 Documentation skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/flutter/website --skill validate-prAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 29 |
|---|---|
| repo stars | ★ 3.1k |
| Last updated | August 5, 2026 |
| Repository | flutter/website ↗ |
What it does
Validates a Flutter site PR by syncing code excerpts, formatting Dart examples, and checking for broken Markdown link references.
Files
Validate the site
Sync code excerpts
Ensure that any changed code excerpts are properly run and synced to the Markdown files:
dart run dash_site refresh-excerptsUpdate formatting
Update the formatting of the site examples and tools to ensure they follow the official Dart format:
dart run dash_site format-dartCheck for broken links
Run the following command to check for any unlinked or broken Markdown link references in the site output:
dart run dash_site check-link-referencesIf any broken links are found, try to patch them or alert the user.