| name | code-hygiene |
| description | Applies Dart fixes and formats Dart code according to standard guidelines. |
Instructions
When the user asks to clean up the codebase, fix linting issues, or format code, perform the following actions using the run_in_terminal tool:
1. Apply Dart Fixes
To resolve common linting issues (like removing unused imports, adding const modifiers):
dart fix --apply
2. Format Dart Code
To format all Dart files recursively:
dart format .
Report the results of both operations back to the user.