dart-tooling

Installation
SKILL.md

Dart Tooling & Package Workflows

Contents

Static Analysis Resolution

Use this sequential workflow to identify, fix, and verify static analysis errors in a Dart project.

  1. Run Static Analyzer: dart analyze . --fatal-infos
  2. Apply Automated Fixes:
    • dart fix --dry-run
    • dart fix --apply
  3. Resolve Manually: Address Type Mismatches, Null Safety, or Invalid Overrides that dart fix couldn't automatically resolve.
  4. Performance Diagnostics: Utilize the Analysis Server diagnostics page (available at http://localhost:8082 when analyzer runs) to trace and diagnose slow analysis times.
  5. Verify: Ensure both dart analyze . and dart test pass.

Resolving Package Conflicts

Installs
42
GitHub Stars
29
First Seen
May 10, 2026
dart-tooling — dhruvanbhalara/skills