Applies Dart fixes and formats Dart code according to standard guidelines.
Install
mkdir -p .claude/skills/code-hygiene && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13798" && unzip -o skill.zip -d .claude/skills/code-hygiene && rm skill.zipInstalls to .claude/skills/code-hygiene
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Applies Dart fixes and formats Dart code according to standard guidelines.74 charsno explicit “when” trigger
About this skill
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.