What problem does it solve? Bumping a Flutter or Dart SDK version touches pubspec.yaml environment constraints and CI workflow version pins, and the Flutter-to-Dart version mapping is easy to get wrong, producing version-solving failures and mixed-scope PRs. ## Core Features & Use Cases - Version Resolution: Looks up the Dart version bundled with a target Flutter release from the official archive instead of guessing from memory. - Constraint Updates: Applies the correct pinning format for each file — MAJOR.MINOR.x for Flutter CI, exact patch for Dart CI, and caret-pinned patch in pubspec.yaml. - Conflict Reporting: Diagnoses pub get version-solving failures, identifies blocking direct or transitive dependencies, and reports them without silently resolving. - Use Case: When asked to bump a repository to Flutter 3.41, the Skill updates the flutter_version in the reusable workflow, sets the matching Dart sdk: constraint in every package's pubspec, verifies with pub get and analyze, and keeps dependency bumps out of the PR. ## Quick Start Ask the assistant to bump Flutter to a target version in this repository and update the SDK constraints and CI workflow accordingly.