vgv-dart-flutter-sdk-upgrade
Installation
SKILL.md
VGV Flutter/Dart SDK Upgrade — Quick Reference
One PR per project. Only CI workflow and pubspec.yaml changes — no logic, no dependency
version bumps, no test changes.
Core Standards
Apply these standards to ALL SDK upgrade work:
- Flutter and Dart versions differ — always look up the Dart version bundled with the target Flutter release from https://docs.flutter.dev/install/archive
- Flutter CI uses
MAJOR.MINOR.x— no caret,.xwildcard resolves to latest patch - Dart CI uses exact patch —
MAJOR.MINOR.PATCH, no caret, no wildcard - pubspec pins exact patch — use
^MAJOR.MINOR.PATCHwith the specific patch version - Pure Dart packages — use the Dart version directly, no Flutter mapping needed
- Verify with
pub getandanalyze— don't silently resolve conflicts