What problem does it solve? Dart and Flutter projects accumulate lint violations, type errors, and outdated API usages that are tedious to find and fix manually. This Skill standardizes static analysis configuration and automates the detection and resolution of mechanical code issues before commits. ## Core Features & Use Cases - Static Analysis Execution: Run dart analyze against a target directory to surface type errors, warnings, and style violations, with optional --fatal-infos enforcement. - Automated Fixes: Preview changes with dart fix --dry-run and apply them with dart fix --apply, then format results with dart format. - Analyzer Configuration: Configure analysis_options.yaml with strict type checks (strict-casts, strict-inference, strict-raw-types), linter rules, formatter settings, and plugin support. - Diagnostic Suppression: Suppress false positives at file, line, or pubspec level using ignore and ignore_for_file comments or glob-based exclusions. - Use Case: Before committing a Flutter feature branch, run the analyzer to catch implicit downcasts, preview automated fixes for deprecated APIs, apply them, and re-verify a clean diagnostic report. ## Quick Start Run dart analyze on my project, apply safe automated fixes with dart fix, and format the modified files.