kevmoo/dash_skills · skills/dart-best-practices/SKILL.md · General best practices for Dart development.
Covers code style, effective Dart, and language features.
kevmoo/dash_skills · skills/dart-doc-validation/SKILL.md · Best practices for validating Dart documentation comments.
Covers using `dart doc` to catch unresolved references and…
kevmoo/dash_skills · skills/dart-long-lines/SKILL.md · Guidelines for handling long lines in Dart code to adhere to the 80-column
rule. The `lines_longer_than_80_chars` lint.
kevmoo/dash_skills · skills/dart-matcher-best-practices/SKILL.md · Best practices for using `expect` and `package:matcher`.
Focuses on readable assertions, proper matcher selection, and…
kevmoo/dash_skills · skills/dart-modern-features/SKILL.md · Guidelines for using modern Dart features (v3.0 - v3.10) such as Records,
Pattern Matching, Switch Expressions…
kevmoo/dash_skills · skills/dart-multiline-strings/SKILL.md · Guidelines and best practices for refactoring consecutive prints, single-line
string concatenations, and complex output…
kevmoo/dash_skills · skills/dart-seal-type-hierarchies/SKILL.md · Identify closed type hierarchies that are not declared `sealed`, and seal
them so the compiler can enforce switch…
kevmoo/dash_skills · skills/dart-test-coverage/SKILL.md · Understand and improve test coverage in a Dart package.
Helps agents run coverage, interpret results, and identify…
kevmoo/dash_skills · skills/profile-dart-code/SKILL.md · Profile Dart command-line applications using the VM Service protocol to
capture CPU samples and identify performance…