What problem does it solve? Writing consistent, idiomatic Dart code is hard when teams interpret style guidelines differently. This Skill codifies the official Effective Dart guidelines into actionable rules so code reviews, refactoring, and new code all follow the same standard. ## Core Features & Use Cases - Style Enforcement: Applies naming conventions (UpperCamelCase, lowerCamelCase, lowercase_with_underscores), type annotation rules, and class modifier usage (final, sealed, interface). - Documentation Standards: Generates /// doc comments with single-sentence summaries, third-person verbs, and [identifier] references for public APIs. - Testing Patterns: Provides unit test templates with group/test and widget test templates using testWidgets and WidgetTester. - Use Case: When reviewing a Flutter pull request, use this Skill to verify naming, check that public members have doc comments, run dart format and dart analyze, and confirm zero issues before merging. ## Quick Start Review my Dart file for Effective Dart compliance and fix any naming, type annotation, or documentation issues.