Workflow for fixing package version conflicts. Use this when `pub get` fails due to incompatible package versions.
66
80%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./skills/dart-resolve-package-conflicts/SKILL.mdDart enforces a strict single-version rule for dependencies: a project and all its transitive dependencies must resolve to a single, shared version of any given package. This prevents runtime type mismatches but introduces the risk of "version lock."
To mitigate version lock, Dart relies on version constraints rather than pinned versions in the pubspec.yaml. The pubspec.lock file maintains the exact resolved versions for reproducible builds.
Understand the output columns of dart pub outdated:
pubspec.lock.pubspec.yaml. dart pub upgrade resolves to this.^1.2.3) for dependencies in pubspec.yaml. This allows pub to select newer, non-breaking versions (up to, but not including, the next major version) during resolution.dev_dependencies to the exact version currently used. This reduces resolution complexity and prevents older, incompatible dev tools from being selected.dart pub get --enforce-lockfile in CI/CD pipelines to ensure the exact versions tested locally are used in production.Run this workflow periodically to identify stale packages that may impact stability or performance.
Task Progress:
dart pub outdated.pubspec.yaml.pubspec.yaml to update.Use conditional logic based on the audit results to upgrade dependencies.
Task Progress:
dart pub upgrade.dart pub upgrade --tighten to automatically update the lower bounds in pubspec.yaml to match the newly resolved versions.pubspec.yaml to bump the version constraint to match the "Resolvable" column (e.g., change ^0.11.0 to ^0.12.1).dart pub upgrade to resolve the new constraints and update pubspec.lock.dart analyze -> review errors -> fix breaking API changes.dart test -> review failures -> fix regressions.When pub cannot find a set of concrete versions that satisfy all constraints, or when dealing with a retracted package version, manipulate the lockfile surgically.
NEVER delete the entire pubspec.lock file and run dart pub get. This causes uncontrolled upgrades across the entire dependency graph.
Task Progress:
pubspec.lock.dart pub get to fetch the newest compatible, non-retracted version for that specific package.dart pub deps -> verify the dependency graph resolves correctly.pubspec.yaml, and retry.When dart pub outdated shows a package is resolvable to a higher minor/patch version, use the --tighten flag to update the pubspec.yaml automatically.
Input (pubspec.yaml):
dependencies:
http: ^0.13.0Command:
dart pub upgrade --tighten httpOutput (pubspec.yaml):
dependencies:
http: ^0.13.5If package_a is retracted or locked in a conflict, remove only its block from pubspec.lock.
Before (pubspec.lock):
packages:
package_a:
dependency: "direct main"
description:
name: package_a
url: "https://pub.dev"
source: hosted
version: "1.0.0" # Retracted version
package_b:
dependency: "direct main"
# ...Action: Delete the package_a block entirely. Leave package_b untouched. Run dart pub get.
8aaa41d
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.